diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2015-03-17 12:36:03 +0000 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2015-03-17 12:36:03 +0000 |
commit | a8f49afbc5bbf3c76ef0180d2406aeef04189b3a (patch) | |
tree | bfec02e3ee5808e427a56ac07beff7bb59795ef6 /x11-misc | |
parent | Simple version bump. Tested with ecj 4.4 to build icedtea 7. (diff) | |
download | gentoo-2-a8f49afbc5bbf3c76ef0180d2406aeef04189b3a.tar.gz gentoo-2-a8f49afbc5bbf3c76ef0180d2406aeef04189b3a.tar.bz2 gentoo-2-a8f49afbc5bbf3c76ef0180d2406aeef04189b3a.zip |
Version bump with some bugfixes, thanks Tony Murray <tonymurray@fastmail.fm> in bug #543514
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key C74525F2)
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/stalonetray/ChangeLog | 11 | ||||
-rw-r--r-- | x11-misc/stalonetray/stalonetray-0.8.3.ebuild (renamed from x11-misc/stalonetray/stalonetray-0.7.6.ebuild) | 23 |
2 files changed, 20 insertions, 14 deletions
diff --git a/x11-misc/stalonetray/ChangeLog b/x11-misc/stalonetray/ChangeLog index 3949984680e4..8a9bef0dbf33 100644 --- a/x11-misc/stalonetray/ChangeLog +++ b/x11-misc/stalonetray/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for x11-misc/stalonetray -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/stalonetray/ChangeLog,v 1.11 2012/06/25 19:22:37 jdhore Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/stalonetray/ChangeLog,v 1.12 2015/03/17 12:36:03 voyageur Exp $ + +*stalonetray-0.8.3 (17 Mar 2015) + + 17 Mar 2015; Bernard Cafarelli <voyageur@gentoo.org> + -stalonetray-0.7.6.ebuild, +stalonetray-0.8.3.ebuild: + Version bump with some bugfixes, thanks Tony Murray <tonymurray@fastmail.fm> + in bug #543514 25 Jun 2012; Jeff Horelick <jdhore@gentoo.org> stalonetray-0.8.1.ebuild: marked x86 per bug 422385 diff --git a/x11-misc/stalonetray/stalonetray-0.7.6.ebuild b/x11-misc/stalonetray/stalonetray-0.8.3.ebuild index 37ac7976ebdd..f827c9272ee7 100644 --- a/x11-misc/stalonetray/stalonetray-0.7.6.ebuild +++ b/x11-misc/stalonetray/stalonetray-0.8.3.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/stalonetray/stalonetray-0.7.6.ebuild,v 1.2 2009/09/09 20:36:43 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/stalonetray/stalonetray-0.8.3.ebuild,v 1.1 2015/03/17 12:36:03 voyageur Exp $ + +EAPI=5 DESCRIPTION="System tray utility including support for KDE system tray icons" HOMEPAGE="http://stalonetray.sourceforge.net/" @@ -8,8 +10,8 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 x86" -IUSE="debug kde" +KEYWORDS="~amd64 ~x86" +IUSE="debug +graceful-exit kde" RDEPEND="x11-libs/libX11 x11-libs/libICE @@ -18,17 +20,14 @@ RDEPEND="x11-libs/libX11 DEPEND="${RDEPEND} x11-proto/xproto" -src_compile() { - econf \ - $(use_enable debug) \ - $(use_enable kde native-kde) \ - || die "econf failed" - - emake || die "emake failed" +src_configure() { + econf $(use_enable debug) \ + $(use_enable graceful-exit) \ + $(use_enable kde native-kde) } src_install() { - emake DESTDIR="${D}" install || die "emake install failed" + emake DESTDIR="${D}" install dodoc AUTHORS ChangeLog NEWS README stalonetrayrc.sample TODO dohtml stalonetray.html |