diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-04-04 13:14:19 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-04-04 13:14:19 +0000 |
commit | e818812e834154e923ccdebb40b518e88a6c4c91 (patch) | |
tree | 3dcd9bfb68282e8940b845e7be88c8487e66f73f /gnome-base | |
parent | fix bug #1495: inherit kde-functions not functions (diff) | |
download | gentoo-2-e818812e834154e923ccdebb40b518e88a6c4c91.tar.gz gentoo-2-e818812e834154e923ccdebb40b518e88a6c4c91.tar.bz2 gentoo-2-e818812e834154e923ccdebb40b518e88a6c4c91.zip |
libtoolizing this
Diffstat (limited to 'gnome-base')
-rw-r--r-- | gnome-base/gconf/gconf-1.0.8-r2.ebuild | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/gnome-base/gconf/gconf-1.0.8-r2.ebuild b/gnome-base/gconf/gconf-1.0.8-r2.ebuild index de9ba548f57d..d69cfe505aaf 100644 --- a/gnome-base/gconf/gconf-1.0.8-r2.ebuild +++ b/gnome-base/gconf/gconf-1.0.8-r2.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Maintainer: Seemant Kulleen <seemant@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gconf/gconf-1.0.8-r2.ebuild,v 1.1 2002/03/18 03:19:34 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gconf/gconf-1.0.8-r2.ebuild,v 1.2 2002/04/04 13:14:19 seemant Exp $ S=${WORKDIR}/GConf-${PV} DESCRIPTION="Gconf" @@ -15,12 +15,13 @@ DEPEND="${RDEPEND} src_compile() { local myconf - if [ -z "`use nls`" ] - then - myconf="--disable-nls" - mkdir intl - touch intl/libgettext.h - fi + + libtoolize --copy --force + + use nls \ + || myconf="--disable-nls" + && mkdir intl + && touch intl/libgettext.h ./configure --host=${CHOST} \ --prefix=/usr \ |