diff options
author | Brad Teaford Cowan <bcowan@gentoo.org> | 2004-03-14 07:22:26 +0000 |
---|---|---|
committer | Brad Teaford Cowan <bcowan@gentoo.org> | 2004-03-14 07:22:26 +0000 |
commit | a71319ff47b0a5b2d89e8eba7254a11a1bcd6584 (patch) | |
tree | d4f188e8d83e4a6c0a1338411f656ef749663a45 /xfce-extra/xfce4-xmms-controller/xfce4-xmms-controller-1.4.3.ebuild | |
parent | removed entries for console-tools and console-data, since those packages were... (diff) | |
download | historical-a71319ff47b0a5b2d89e8eba7254a11a1bcd6584.tar.gz historical-a71319ff47b0a5b2d89e8eba7254a11a1bcd6584.tar.bz2 historical-a71319ff47b0a5b2d89e8eba7254a11a1bcd6584.zip |
Initial import. Thanks to spyderous and iggy for the help.
Diffstat (limited to 'xfce-extra/xfce4-xmms-controller/xfce4-xmms-controller-1.4.3.ebuild')
-rw-r--r-- | xfce-extra/xfce4-xmms-controller/xfce4-xmms-controller-1.4.3.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/xfce-extra/xfce4-xmms-controller/xfce4-xmms-controller-1.4.3.ebuild b/xfce-extra/xfce4-xmms-controller/xfce4-xmms-controller-1.4.3.ebuild new file mode 100644 index 000000000000..b27c40dad470 --- /dev/null +++ b/xfce-extra/xfce4-xmms-controller/xfce4-xmms-controller-1.4.3.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-xmms-controller/xfce4-xmms-controller-1.4.3.ebuild,v 1.1 2004/03/14 07:22:26 bcowan Exp $ + +IUSE="" +MY_P="${PN}-plugin-${PV}" +S=${WORKDIR}/${MY_P} + +DESCRIPTION="Xfce panel xmms controller" +HOMEPAGE="http://eoin.angrystickman.com/" +SRC_URI="http://eoin.angrystuckman.com/files/${MY_P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~ia64 ~x86 ~ppc ~alpha ~sparc ~amd64" + +DEPEND=">=x11-libs/gtk+-2.0.6 + dev-util/pkgconfig + dev-libs/libxml2 + xfce-base/xfce4-base" + +src_unpack() { + unpack ${A} + cd ${S} + sed -i "s:/usr/local/:/usr/:" config.h.in + sed -i "s:share/:share/${PN}/:" panel-plugin/xfcexmms.c +} + +src_compile() { + econf \ + --datadir=/usr/share/xfce4-xmms-controller + emake +} + +src_install() { + make DESTDIR=${D} install || die + dodoc AUTHORS INSTALL COPYING README +} |