summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schlemmer <azarah@gentoo.org>2002-04-09 20:56:52 +0000
committerMartin Schlemmer <azarah@gentoo.org>2002-04-09 20:56:52 +0000
commit1ace48863f3f8c9bd4a15254c5151021f067555f (patch)
tree58b3d96dda0bf069c318f9352059f9842581fcfe /gnome-base/bonobo
parentDeprecated, unused and only confusing. Use bugzilla (diff)
downloadgentoo-2-1ace48863f3f8c9bd4a15254c5151021f067555f.tar.gz
gentoo-2-1ace48863f3f8c9bd4a15254c5151021f067555f.tar.bz2
gentoo-2-1ace48863f3f8c9bd4a15254c5151021f067555f.zip
libtoolize
Diffstat (limited to 'gnome-base/bonobo')
-rw-r--r--gnome-base/bonobo/ChangeLog6
-rw-r--r--gnome-base/bonobo/bonobo-1.0.19-r1.ebuild25
2 files changed, 18 insertions, 13 deletions
diff --git a/gnome-base/bonobo/ChangeLog b/gnome-base/bonobo/ChangeLog
index 231fd237c6de..6aa5bc1237c8 100644
--- a/gnome-base/bonobo/ChangeLog
+++ b/gnome-base/bonobo/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for gnome-base/bonobo
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/gnome-base/bonobo/ChangeLog,v 1.1 2002/02/01 21:53:29 gbevin Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/bonobo/ChangeLog,v 1.2 2002/04/09 20:56:52 azarah Exp $
+
+ 9 Apr 2002; M.Schlemmer <azarah@gentoo.org> bonobo-1.0.19-r1.ebuild :
+
+ Libtoolize to fix relink bug, and invalid paths in .la files.
*bonobo-1.0.18-r1 (1 Feb 2002)
diff --git a/gnome-base/bonobo/bonobo-1.0.19-r1.ebuild b/gnome-base/bonobo/bonobo-1.0.19-r1.ebuild
index fd6fc601ae39..82acd4be3bcb 100644
--- a/gnome-base/bonobo/bonobo-1.0.19-r1.ebuild
+++ b/gnome-base/bonobo/bonobo-1.0.19-r1.ebuild
@@ -1,14 +1,13 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/gnome-base/bonobo/bonobo-1.0.19-r1.ebuild,v 1.3 2002/03/30 01:08:27 seemant Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/bonobo/bonobo-1.0.19-r1.ebuild,v 1.4 2002/04/09 20:56:52 azarah Exp $
S=${WORKDIR}/${P}
DESCRIPTION="A set of language and system independant CORBA interfaces"
SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/${PN}/${P}.tar.gz"
HOMEPAGE="http://www.gnome.org/"
-
RDEPEND=">=gnome-base/oaf-0.6.8
>=gnome-base/ORBit-0.5.13
>=gnome-base/gnome-print-0.30"
@@ -19,30 +18,32 @@ DEPEND="${RDEPEND}
>=dev-util/intltool-0.11 )"
src_compile() {
- local myconf
+ #libtoolize to fix relink bug
+ libtoolize --copy --force
+ local myconf=""
use nls || myconf="${myconf} --disable-nls"
CFLAGS="${CFLAGS} `gnome-config --cflags print`"
- ./configure \
- --host=${CHOST} \
- --prefix=/usr \
- --sysconfdir=/etc \
- --localstatedir=/var/lib \
+ ./configure \
+ --host=${CHOST} \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var/lib \
${myconf} || die
make || die # make -j 4 didn't work
}
src_install() {
- make \
- prefix=${D}/usr \
- sysconfdir=${D}/etc \
- localstatedir=${D}/var/lib \
+ make prefix=${D}/usr \
+ sysconfdir=${D}/etc \
+ localstatedir=${D}/var/lib \
install || die
chmod 644 ${D}/usr/lib/pkgconfig/libefs.pc
dodoc AUTHORS COPYING* ChangeLog README NEWS TODO
}
+