diff options
author | 2001-10-07 22:15:58 +0000 | |
---|---|---|
committer | 2001-10-07 22:15:58 +0000 | |
commit | 21e759fe003e4eee7e0d1cd3509285c33dd9f510 (patch) | |
tree | 23d4dbb3bd400746cfbf5acd56ade9eb5109ce8d /gnome-base/gnome-print | |
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/gnome-print')
-rw-r--r-- | gnome-base/gnome-print/gnome-print-0.30.ebuild | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/gnome-base/gnome-print/gnome-print-0.30.ebuild b/gnome-base/gnome-print/gnome-print-0.30.ebuild index 53483f9af152..17a95035c7cf 100644 --- a/gnome-base/gnome-print/gnome-print-0.30.ebuild +++ b/gnome-base/gnome-print/gnome-print-0.30.ebuild @@ -1,13 +1,12 @@ # 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/gnome-print/gnome-print-0.30.ebuild,v 1.1 2001/10/06 10:06:50 hallski Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-print/gnome-print-0.30.ebuild,v 1.2 2001/10/07 22:15:58 hallski Exp $ -A=${P}.tar.gz S=${WORKDIR}/${P} DESCRIPTION="gnome-print" -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=">=media-libs/gdk-pixbuf-0.11.0-r1 @@ -31,13 +30,17 @@ src_compile() { ./configure --host=${CHOST} \ --prefix=/usr \ --sysconfdir=/etc \ + --localstatedir=/var/lib \ $myconf || die emake || die } src_install() { - make DESTDIR=${D} install || die + make prefix=${D}/usr \ + sysconfdir=${D}/etc \ + localstatedir=${D}/var/lib \ + install || die dosed /usr/share/fonts/fontmap dodoc AUTHORS COPYING ChangeLog NEWS README TODO |