diff options
author | 2001-10-07 22:15:58 +0000 | |
---|---|---|
committer | 2001-10-07 22:15:58 +0000 | |
commit | 3b9e529ee58081b83a4799733f828f7e156889bf (patch) | |
tree | 21179d3eea5034e9df09920978082bbd83c844ad /gnome-base/libglade | |
parent | mo-files didn't play nicely with DESTDIR (diff) | |
download | historical-3b9e529ee58081b83a4799733f828f7e156889bf.tar.gz historical-3b9e529ee58081b83a4799733f828f7e156889bf.tar.bz2 historical-3b9e529ee58081b83a4799733f828f7e156889bf.zip |
updated to use prefix=/usr install instead of the DESTDIR-version, also fixed so that gets set depending on SRC_URI
Diffstat (limited to 'gnome-base/libglade')
-rw-r--r-- | gnome-base/libglade/libglade-0.17-r1.ebuild | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/gnome-base/libglade/libglade-0.17-r1.ebuild b/gnome-base/libglade/libglade-0.17-r1.ebuild index b02fe90599f3..dafb7b32b17e 100644 --- a/gnome-base/libglade/libglade-0.17-r1.ebuild +++ b/gnome-base/libglade/libglade-0.17-r1.ebuild @@ -1,12 +1,11 @@ # Copyright 1999-2000 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/libglade/libglade-0.17-r1.ebuild,v 1.1 2001/10/06 10:45:50 hallski Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/libglade/libglade-0.17-r1.ebuild,v 1.2 2001/10/07 22:15:58 hallski Exp $ -A=${P}.tar.gz S=${WORKDIR}/${P} DESCRIPTION="libglade" -SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/${PN}/${A}" +SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/${PN}/${P}.tar.gz" HOMEPAGE="http://www.gnome.org/" RDEPEND=">=gnome-base/gnome-libs-1.4.1.2-r1 @@ -34,13 +33,19 @@ src_compile() { ./configure --host=${CHOST} \ --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var/lib \ --disable-gnomedb \ - --disable-bonobo --disable-bonobotest ${myconf} || die + --disable-bonobo --disable-bonobotest \ + ${myconf} || die emake || die } src_install() { - make DESTDIR=${D} install || die + make prefix=${D}/usr \ + sysconfdir=${D}/etc \ + localstatedir=${D}/var/lib \ + install || die dodoc AUTHORS COPYING* ChangeLog NEWS dodoc doc/*.txt |