diff options
author | BlackNoxis <steven.darklight@gmail.com> | 2014-02-15 23:24:26 +0200 |
---|---|---|
committer | BlackNoxis <steven.darklight@gmail.com> | 2014-02-15 23:24:26 +0200 |
commit | 7224c1253228e5c29c78cb3f0f26ce34770f2356 (patch) | |
tree | 1684924656132935256e034f35f92abee6623265 /media-sound/djplay/djplay-0.5.0.ebuild |
Added ebuilds for kogaion desktop
Diffstat (limited to 'media-sound/djplay/djplay-0.5.0.ebuild')
-rw-r--r-- | media-sound/djplay/djplay-0.5.0.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/media-sound/djplay/djplay-0.5.0.ebuild b/media-sound/djplay/djplay-0.5.0.ebuild new file mode 100644 index 00000000..7b294a6b --- /dev/null +++ b/media-sound/djplay/djplay-0.5.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit eutils unpacker + +DESCRIPTION="Djplay sound application" +HOMEPAGE="http://djplay.sourceforge.net/" +SRC_URI="http://http.us.debian.org/debian/pool/main/d/${PN}/${PN}_${PV}-3.1+b1_amd64.deb" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="x11-libs/qt-meta:3" +DEPEND="${RDEPEND}" + +S="${WORKDIR}" + +src_unpack() { + unpack "${A}" +} + +src_prepare() { + unpack_deb http://http.us.debian.org/debian/pool/main/d/${PN}/${PN}_${PV}-3.1+b1_amd64.deb +} + +src_install() { + insinto / + doins -r "${S}"/usr + fperms u+x /usr/bin/djplay* +} |