diff options
author | Geert Bevin <gbevin@gentoo.org> | 2002-04-11 13:12:24 +0000 |
---|---|---|
committer | Geert Bevin <gbevin@gentoo.org> | 2002-04-11 13:12:24 +0000 |
commit | 429683ff63fc6af8c0e04fd8b00d3b8f03d1b479 (patch) | |
tree | 4cc463d35609e3ed99056740e142d82fa92b87fa | |
parent | new revision (diff) | |
download | gentoo-2-429683ff63fc6af8c0e04fd8b00d3b8f03d1b479.tar.gz gentoo-2-429683ff63fc6af8c0e04fd8b00d3b8f03d1b479.tar.bz2 gentoo-2-429683ff63fc6af8c0e04fd8b00d3b8f03d1b479.zip |
bugfixes
-rw-r--r-- | dev-libs/root/ChangeLog | 11 | ||||
-rw-r--r-- | dev-libs/root/files/digest-root-3.03.04-r1 (renamed from dev-libs/root/files/digest-root-3.03.04) | 0 | ||||
-rw-r--r-- | dev-libs/root/root-3.03.04-r1.ebuild (renamed from dev-libs/root/root-3.03.04.ebuild) | 8 |
3 files changed, 16 insertions, 3 deletions
diff --git a/dev-libs/root/ChangeLog b/dev-libs/root/ChangeLog index f89193b6f87a..ebdd008d9764 100644 --- a/dev-libs/root/ChangeLog +++ b/dev-libs/root/ChangeLog @@ -1,7 +1,16 @@ # ChangeLog for app-doc/qt-docs # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-libs/root/ChangeLog,v 1.1 2002/04/11 10:03:14 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/root/ChangeLog,v 1.2 2002/04/11 13:12:24 gbevin Exp $ +*root-3.03.04-r1 (11 Apr 2002) + + 11 Apr 2002; G.Bevin <gbevin@gentoo.org> root-3.03.04-r1.ebuild + files/digest-root-3.03.04-r1 : + + Added env entry for the libs. + Removed rpath switch from configure since it created a segfaulting root + executable. + *root-3.03.04 (11 Apr 2002) 11 Apr 2002; G.Bevin <gbevin@gentoo.org> root-3.03.04.ebuild diff --git a/dev-libs/root/files/digest-root-3.03.04 b/dev-libs/root/files/digest-root-3.03.04-r1 index ef93a97a2fdb..ef93a97a2fdb 100644 --- a/dev-libs/root/files/digest-root-3.03.04 +++ b/dev-libs/root/files/digest-root-3.03.04-r1 diff --git a/dev-libs/root/root-3.03.04.ebuild b/dev-libs/root/root-3.03.04-r1.ebuild index 9d621ddf2ae0..329ccab1b3f5 100644 --- a/dev-libs/root/root-3.03.04.ebuild +++ b/dev-libs/root/root-3.03.04-r1.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: Geert Bevin <gbevin@uwyn.com> -# $Header: /var/cvsroot/gentoo-x86/dev-libs/root/root-3.03.04.ebuild,v 1.2 2002/04/11 02:45:51 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/root/root-3.03.04-r1.ebuild,v 1.1 2002/04/11 13:12:24 gbevin Exp $ S=${WORKDIR}/${PN} DESCRIPTION="An Object-Oriented Data Analysis Framework" @@ -27,8 +27,9 @@ src_compile() { linux \ --prefix=/usr \ --mandir=/usr/share/man \ + --docdir=/usr/share/doc/${P} \ --enable-shared \ - --enable-rpath \ + --disable-rpath \ --enable-thread \ --enable-star \ --enable-ttf \ @@ -50,4 +51,7 @@ src_compile() { src_install () { make DESTDIR=${D} install || die + + dodir /etc/env.d + echo "LDPATH=/usr/lib/root" > ${D}/etc/env.d/60root } |