diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2011-06-22 07:23:29 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2011-06-22 07:23:29 +0000 |
commit | 17ca263462955f8c0958ea0b313d7618e36a9482 (patch) | |
tree | e211c3d6f5f4a14b3b8a58097d7416a6141a9bad /lxde-base/lxtask | |
parent | Add fortran to default USE again in order to avoid direct installation of ifc... (diff) | |
download | gentoo-2-17ca263462955f8c0958ea0b313d7618e36a9482.tar.gz gentoo-2-17ca263462955f8c0958ea0b313d7618e36a9482.tar.bz2 gentoo-2-17ca263462955f8c0958ea0b313d7618e36a9482.zip |
Version bump. Remove old
(Portage version: 2.1.9.49/cvs/Linux x86_64)
Diffstat (limited to 'lxde-base/lxtask')
-rw-r--r-- | lxde-base/lxtask/ChangeLog | 8 | ||||
-rw-r--r-- | lxde-base/lxtask/lxtask-0.1.4.ebuild (renamed from lxde-base/lxtask/lxtask-0.1.1.ebuild) | 20 |
2 files changed, 22 insertions, 6 deletions
diff --git a/lxde-base/lxtask/ChangeLog b/lxde-base/lxtask/ChangeLog index a07eb9f8962c..fd8ff18449f1 100644 --- a/lxde-base/lxtask/ChangeLog +++ b/lxde-base/lxtask/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for lxde-base/lxtask # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxtask/ChangeLog,v 1.17 2011/03/07 20:31:55 klausman Exp $ +# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxtask/ChangeLog,v 1.18 2011/06/22 07:23:29 hwoarang Exp $ + +*lxtask-0.1.4 (22 Jun 2011) + + 22 Jun 2011; Markos Chandras <hwoarang@gentoo.org> -lxtask-0.1.1.ebuild, + +lxtask-0.1.4.ebuild: + Version bump. Remove old 07 Mar 2011; Tobias Klausmann <klausman@gentoo.org> lxtask-0.1.3.ebuild: Keyworded on alpha, bug #330911 diff --git a/lxde-base/lxtask/lxtask-0.1.1.ebuild b/lxde-base/lxtask/lxtask-0.1.4.ebuild index 12dd863c59ab..bc52e6664a71 100644 --- a/lxde-base/lxtask/lxtask-0.1.1.ebuild +++ b/lxde-base/lxtask/lxtask-0.1.4.ebuild @@ -1,15 +1,17 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxtask/lxtask-0.1.1.ebuild,v 1.6 2010/02/23 18:42:24 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxtask/lxtask-0.1.4.ebuild,v 1.1 2011/06/22 07:23:29 hwoarang Exp $ -EAPI="1" +EAPI="4" + +inherit autotools DESCRIPTION="LXDE Task manager" HOMEPAGE="http://lxde.sf.net/" SRC_URI="mirror://sourceforge/lxde/${P}.tar.gz" LICENSE="GPL-2" -KEYWORDS="amd64 arm ppc x86" +KEYWORDS="~alpha ~amd64 ~arm ~ppc ~x86" SLOT="0" IUSE="" @@ -17,7 +19,15 @@ RDEPEND="x11-libs/gtk+:2 dev-libs/glib:2" DEPEND="${RDEPEND} dev-util/pkgconfig - sys-devel/gettext" + sys-devel/gettext + >=dev-util/intltool-0.40.0" + +src_prepare() { + # en_GB.po file does not exist and breaks compilation + sed -i -e "/^ALL_LINGUAS/s:en_GB::" \ + configure.ac || die + eautoreconf +} src_install () { emake DESTDIR="${D}" install || die "emake install failed" |