diff options
Diffstat (limited to 'x11-misc/stalonetray/stalonetray-0.7.3.ebuild')
-rw-r--r-- | x11-misc/stalonetray/stalonetray-0.7.3.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/x11-misc/stalonetray/stalonetray-0.7.3.ebuild b/x11-misc/stalonetray/stalonetray-0.7.3.ebuild new file mode 100644 index 000000000000..a09b5601f1dd --- /dev/null +++ b/x11-misc/stalonetray/stalonetray-0.7.3.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/stalonetray/stalonetray-0.7.3.ebuild,v 1.1 2007/10/07 09:36:17 lucass Exp $ + +DESCRIPTION="System tray utility including support for KDE system tray icons" +HOMEPAGE="http://stalonetray.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug kde" + +RDEPEND="x11-libs/libX11 + x11-libs/libICE + x11-libs/libSM + x11-libs/libXpm" +DEPEND="${RDEPEND} + x11-proto/xproto" + +src_compile() { + econf \ + $(use_enable debug) \ + $(use_enable kde native-kde) \ + || die "econf failed" + + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + dodoc AUTHORS ChangeLog NEWS README stalonetrayrc.sample TODO + dohtml stalonetray.html +} |