diff options
author | Mikael Hallendal <hallski@gentoo.org> | 2001-10-07 22:15:58 +0000 |
---|---|---|
committer | Mikael Hallendal <hallski@gentoo.org> | 2001-10-07 22:15:58 +0000 |
commit | 21e759fe003e4eee7e0d1cd3509285c33dd9f510 (patch) | |
tree | 23d4dbb3bd400746cfbf5acd56ade9eb5109ce8d /gnome-base/libghttp | |
parent | mo-files didn't play nicely with DESTDIR (diff) | |
download | gentoo-2-21e759fe003e4eee7e0d1cd3509285c33dd9f510.tar.gz gentoo-2-21e759fe003e4eee7e0d1cd3509285c33dd9f510.tar.bz2 gentoo-2-21e759fe003e4eee7e0d1cd3509285c33dd9f510.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/libghttp')
-rw-r--r-- | gnome-base/libghttp/libghttp-1.0.9-r1.ebuild | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/gnome-base/libghttp/libghttp-1.0.9-r1.ebuild b/gnome-base/libghttp/libghttp-1.0.9-r1.ebuild index 9eee4967a085..474c0bd14207 100644 --- a/gnome-base/libghttp/libghttp-1.0.9-r1.ebuild +++ b/gnome-base/libghttp/libghttp-1.0.9-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/libghttp/libghttp-1.0.9-r1.ebuild,v 1.1 2001/10/06 10:06:50 hallski Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/libghttp/libghttp-1.0.9-r1.ebuild,v 1.2 2001/10/07 22:15:58 hallski Exp $ -A=${P}.tar.gz S=${WORKDIR}/${P} DESCRIPTION="libghttp" -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/" @@ -15,16 +14,21 @@ DEPEND="virtual/glibc" src_compile() { ./configure --host=${CHOST} \ --prefix=/usr \ - + --sysconfdir=/etc \ + --localstatedir=/var/lib assert 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 README NEWS TODO + docinto html dodoc doc/ghttp.html } |