diff options
Diffstat (limited to 'app-text/ggv/ggv-1.0.1.ebuild')
-rw-r--r-- | app-text/ggv/ggv-1.0.1.ebuild | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/app-text/ggv/ggv-1.0.1.ebuild b/app-text/ggv/ggv-1.0.1.ebuild deleted file mode 100644 index b17ff092d2fc..000000000000 --- a/app-text/ggv/ggv-1.0.1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# 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/app-text/ggv/ggv-1.0.1.ebuild,v 1.9 2001/10/12 13:02:28 hallski Exp $ - - -S=${WORKDIR}/${P} -DESCRIPTION="Gnome Ghostview" -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 - bonobo? ( >=gnome-base/bonobo-1.0.9-r1 )" - -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext )" - -src_compile() { - local myconf - - if [ -z "`use nls`" ] ; then - myconf="--disable-nls" - fi - - if [ "`use bonobo`" ] ; then - myconf="$myconf --with-bonobo" - else - myconf="$myconf --without-bonobo" - cp configure configure.orig - sed -e "s/BONOBO_TRUE/BONOBO_FALSE/" configure.orig > configure - fi - - CFLAGS="${CFLAGS} `gnome-config --cflags bonobo bonobox`" - - ./configure --host=${CHOST} \ - --prefix=/usr \ - --sysconfdir=/etc \ - $myconf || die - - # bonobo support does not work yet - emake || die -} - -src_install() { - make prefix=${D}/usr sysconfdir=${D}/etc install || die - - dodoc AUTHORS COPYING ChangeLog NEWS README TODO -} |