diff options
author | Mike Gardiner <obz@gentoo.org> | 2004-11-04 08:22:19 +0000 |
---|---|---|
committer | Mike Gardiner <obz@gentoo.org> | 2004-11-04 08:22:19 +0000 |
commit | da741c0447c0e25040bc746cdaa8b1cb0d166ffb (patch) | |
tree | 76035d731b058233b9d139a922d056ed4d39876a /gnome-base | |
parent | Various fixes for repoman complaints. (diff) | |
download | gentoo-2-da741c0447c0e25040bc746cdaa8b1cb0d166ffb.tar.gz gentoo-2-da741c0447c0e25040bc746cdaa8b1cb0d166ffb.tar.bz2 gentoo-2-da741c0447c0e25040bc746cdaa8b1cb0d166ffb.zip |
nls is not optional, and cannot be disabled in orbit-0.5.17, made the dependency on gettext permanent and fixed. see bug #69473
Diffstat (limited to 'gnome-base')
-rw-r--r-- | gnome-base/orbit/ChangeLog | 8 | ||||
-rw-r--r-- | gnome-base/orbit/orbit-0.5.17.ebuild | 12 |
2 files changed, 11 insertions, 9 deletions
diff --git a/gnome-base/orbit/ChangeLog b/gnome-base/orbit/ChangeLog index 4581f5dd93dd..68171a4e6334 100644 --- a/gnome-base/orbit/ChangeLog +++ b/gnome-base/orbit/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for gnome-base/orbit # Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.5 2004/10/01 07:04:23 geoman Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/ChangeLog,v 1.6 2004/11/04 08:22:19 obz Exp $ + +*orbit-0.5.17 (05 Nov 2004) + + 05 Nov 2004; Mike Gardiner <obz@gentoo.org> orbit-0.5.17.ebuild: + nls is not optional, and cannot be disabled in orbit-0.5.17, made the + dependency on gettext permanent and fixed. see bug #69473 *orbit-2.10.3 (01 Oct 2004) diff --git a/gnome-base/orbit/orbit-0.5.17.ebuild b/gnome-base/orbit/orbit-0.5.17.ebuild index be29ee920319..9f4e1d490148 100644 --- a/gnome-base/orbit/orbit-0.5.17.ebuild +++ b/gnome-base/orbit/orbit-0.5.17.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-0.5.17.ebuild,v 1.2 2004/08/24 13:16:28 foser Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-0.5.17.ebuild,v 1.3 2004/11/04 08:22:19 obz Exp $ inherit gnome.org libtool gnuconfig -IUSE="nls" +IUSE="" MY_P="ORBit-${PV}" PVP=(${PV//[-\._]/ }) @@ -14,7 +14,7 @@ DESCRIPTION="A high-performance, lightweight CORBA ORB aiming for CORBA 2.2 comp HOMEPAGE="http://www.labs.redhat.com/orbit/" SRC_URI="mirror://gnome/sources/ORBit/${PVP[0]}.${PVP[1]}/${MY_P}.tar.bz2" -DEPEND="nls? ( sys-devel/gettext ) +DEPEND="sys-devel/gettext >=sys-apps/tcp-wrappers-7.6 =dev-libs/glib-1.2*" @@ -25,10 +25,6 @@ LICENSE="GPL-2" KEYWORDS="x86 sparc alpha mips hppa amd64 ppc ia64 ppc64" src_compile() { - if ! use nls ; then - myconf="--disable-nls" - fi - # Detect mips systems properly gnuconfig_update @@ -41,7 +37,7 @@ src_compile() { --infodir=/usr/share/info \ --sysconfdir=/etc \ --localstatedir=/var/lib \ - ${myconf} || die + || die make || die # Doesn't work with -j 4 (hallski) } |