diff options
author | Mikael Hallendal <hallski@gentoo.org> | 2002-01-15 12:30:22 +0000 |
---|---|---|
committer | Mikael Hallendal <hallski@gentoo.org> | 2002-01-15 12:30:22 +0000 |
commit | 57711cab8d1c326bb23a092f548c77a64cbeca62 (patch) | |
tree | 0326246b154c1e14355e6bdd2461b594f74e17d9 /gnome-extra/guppi | |
parent | fixed a typo, thanks tod, and removed old version (diff) | |
download | gentoo-2-57711cab8d1c326bb23a092f548c77a64cbeca62.tar.gz gentoo-2-57711cab8d1c326bb23a092f548c77a64cbeca62.tar.bz2 gentoo-2-57711cab8d1c326bb23a092f548c77a64cbeca62.zip |
always use bonobo
Diffstat (limited to 'gnome-extra/guppi')
-rw-r--r-- | gnome-extra/guppi/files/digest-guppi-0.40.2-r4 (renamed from gnome-extra/guppi/files/digest-guppi-0.40.2-r2) | 0 | ||||
-rw-r--r-- | gnome-extra/guppi/guppi-0.40.2-r4.ebuild (renamed from gnome-extra/guppi/guppi-0.40.2-r2.ebuild) | 39 |
2 files changed, 18 insertions, 21 deletions
diff --git a/gnome-extra/guppi/files/digest-guppi-0.40.2-r2 b/gnome-extra/guppi/files/digest-guppi-0.40.2-r4 index 31355f01a8b7..31355f01a8b7 100644 --- a/gnome-extra/guppi/files/digest-guppi-0.40.2-r2 +++ b/gnome-extra/guppi/files/digest-guppi-0.40.2-r4 diff --git a/gnome-extra/guppi/guppi-0.40.2-r2.ebuild b/gnome-extra/guppi/guppi-0.40.2-r4.ebuild index 85312898c1e8..50efe781fb1d 100644 --- a/gnome-extra/guppi/guppi-0.40.2-r2.ebuild +++ b/gnome-extra/guppi/guppi-0.40.2-r4.ebuild @@ -1,7 +1,7 @@ # 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-extra/guppi/guppi-0.40.2-r2.ebuild,v 1.1 2002/01/13 16:54:24 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/guppi/guppi-0.40.2-r4.ebuild,v 1.1 2002/01/15 12:30:22 hallski Exp $ PN=Guppi P=${PN}-${PV} @@ -20,25 +20,17 @@ RDEPEND=">=sys-apps/portage-1.8.4 >=gnome-base/gnome-print-0.31 >=media-libs/gdk-pixbuf-0.13 >=dev-util/guile-1.5 - bonobo? ( >=gnome-base/bonobo-1.0.17 )" + >=gnome-base/bonobo-1.0.17" DEPEND="${RDEPEND} nls? ( sys-devel/gettext ) >=dev-util/intltool-0.11 python? ( >=dev-lang/python-2.0 )" - src_compile() { local myconf - if [ "`use bonobo`" ] - then - myconf="--enable-bonobo" - else - myconf="--disable-bonobo" - fi - if [ "`use python`" ] then myconf="${myconf} --enable-python" @@ -56,25 +48,30 @@ src_compile() { CFLAGS="${CFLAGS} -DGUPPI_USING_NEWER_GUILE `gnome-config --cflags libglade`" - ./configure --host=${CHOST} \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var/lib \ - ${myconf} || die + ./configure --host=${CHOST} \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --sysconfdir=/etc \ + --localstatedir=/var/lib \ + --with-bonobo \ + ${myconf} || die # The python 'generate' module opens some files in rw mode for some # unknown reason. addwrite "/usr/lib/python2.1/" + addwrite "/usr/lib/python2.2/" - make || die # Doesn't work with -j 4 (hallski) + emake || die } src_install() { - - make prefix=${D}/usr \ - sysconfdir=${D}/etc \ - localstatedir=${D}/var/lib \ - install || die + make prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + infodir=${D}/usr/share/info \ + sysconfdir=${D}/etc \ + localstatedir=${D}/var/lib \ + install || die dodoc AUTHORS COPYING ChangeLog NEWS README TODO } |