diff options
Diffstat (limited to 'app-sci/gerbv/gerbv-0.16.ebuild')
-rw-r--r-- | app-sci/gerbv/gerbv-0.16.ebuild | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/app-sci/gerbv/gerbv-0.16.ebuild b/app-sci/gerbv/gerbv-0.16.ebuild deleted file mode 100644 index 66712aad351a..000000000000 --- a/app-sci/gerbv/gerbv-0.16.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation and Tim Yamin <plasmaroo@gentoo.org> <plasmaroo@squirrelsoft.org.uk> -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/gerbv/gerbv-0.16.ebuild,v 1.3 2004/11/22 22:14:27 jhuebel Exp $ - -DESCRIPTION="gerbv - The gEDA Gerber Viewer" -SRC_URI="http://www.geda.seul.org/dist/${P}.tar.gz" -HOMEPAGE="http://www.geda.seul.org" - -IUSE="doc gtk2 png" -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~x86 ~amd64" - -DEPEND=">=sys-libs/glibc-2.1.3 - gtk2? ( =x11-libs/gtk+-2* ) - !gtk2? ( =x11-libs/gtk+-1* ) - png? ( media-libs/libpng ) - png? ( media-libs/gdk-pixbuf ) - virtual/x11" - -src_compile() { - local confOptions - use gtk2 && confOptions='--enable-gtk2' - use png || confOptions="$confOptions --disable-exportpng" - - econf $confOptions || die - emake || die -} - -src_install () { - make DESTDIR=${D} install || die - dodoc AUTHORS COPYING ChangeLog NEWS README TODO - if use doc; then - cd doc - dodoc sources.txt - use png && dodoc PNG-print/PNGPrintMiniHowto.txt - docinto eagle - dodoc eagle/eagle2exc* - fi -} |