diff options
author | Paweł Hajdan <phajdan.jr@gentoo.org> | 2010-02-22 18:37:02 +0000 |
---|---|---|
committer | Paweł Hajdan <phajdan.jr@gentoo.org> | 2010-02-22 18:37:02 +0000 |
commit | ecdce9d07c945a95c7bb2214f6955cd7e7f8becc (patch) | |
tree | ee8c4d2ff3595438f1783d1951bf35cfef1000b7 /app-crypt | |
parent | stable x86, bug 305657 (diff) | |
download | gentoo-2-ecdce9d07c945a95c7bb2214f6955cd7e7f8becc.tar.gz gentoo-2-ecdce9d07c945a95c7bb2214f6955cd7e7f8becc.tar.bz2 gentoo-2-ecdce9d07c945a95c7bb2214f6955cd7e7f8becc.zip |
Make the gettext dependency required, wrt bug #232897 by mduft.
(Portage version: 2.1.7.16/cvs/Linux i686)
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/rotix/ChangeLog | 7 | ||||
-rw-r--r-- | app-crypt/rotix/rotix-0.83.ebuild | 13 |
2 files changed, 11 insertions, 9 deletions
diff --git a/app-crypt/rotix/ChangeLog b/app-crypt/rotix/ChangeLog index dab11853d242..4d853d0ef284 100644 --- a/app-crypt/rotix/ChangeLog +++ b/app-crypt/rotix/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-crypt/rotix -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/rotix/ChangeLog,v 1.11 2009/10/14 00:58:35 halcy0n Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/rotix/ChangeLog,v 1.12 2010/02/22 18:37:02 phajdan.jr Exp $ + + 22 Feb 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> rotix-0.83.ebuild: + Make the gettext dependency required, wrt bug #232897 by mduft. 14 Oct 2009; Mark Loeser <halcy0n@gentoo.org> rotix-0.83.ebuild: QA fixes; unquoted variables diff --git a/app-crypt/rotix/rotix-0.83.ebuild b/app-crypt/rotix/rotix-0.83.ebuild index 8004b9ca75d0..627ca8a4ccfa 100644 --- a/app-crypt/rotix/rotix-0.83.ebuild +++ b/app-crypt/rotix/rotix-0.83.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/rotix/rotix-0.83.ebuild,v 1.13 2009/10/14 00:58:35 halcy0n Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/rotix/rotix-0.83.ebuild,v 1.14 2010/02/22 18:37:02 phajdan.jr Exp $ inherit eutils @@ -11,9 +11,10 @@ SRC_URI="http://elektron.its.tudelft.nl/~hemmin98/rotix_releases/${P}/${P}.tar.b LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 ppc amd64 ia64" -IUSE="nls" +IUSE="" -RDEPEND="nls? ( sys-devel/gettext )" +DEPEND="sys-devel/gettext" +RDEPEND="${DEPEND}" src_unpack() { unpack ${A} @@ -22,9 +23,7 @@ src_unpack() { } src_compile() { - local myconf - use nls && myconf="--i18n=1" - econf ${myconf} || die + econf --i18n=1 emake || die } |