diff options
Diffstat (limited to 'net-misc/pavuk/pavuk-0.9.28-r1.ebuild')
-rw-r--r-- | net-misc/pavuk/pavuk-0.9.28-r1.ebuild | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/net-misc/pavuk/pavuk-0.9.28-r1.ebuild b/net-misc/pavuk/pavuk-0.9.28-r1.ebuild deleted file mode 100644 index 6aeaf54ccbff..000000000000 --- a/net-misc/pavuk/pavuk-0.9.28-r1.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/pavuk/pavuk-0.9.28-r1.ebuild,v 1.2 2004/06/25 00:04:36 agriffis Exp $ - -IUSE="ssl X gtk gnome mozilla socks5 nls" - -S="${WORKDIR}/${PN}-0.9pl28" -DESCRIPTION="Web spider and website mirroring tool" -HOMEPAGE="http://www.pavuk.org/" -SRC_URI="http://www.pavuk.org/sw/${PN}-0.9pl28.tgz" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="x86 ppc sparc" - -DEPEND=">=sys-apps/sed-4.0.5 - sys-devel/gettext - sys-libs/zlib - ssl? ( dev-libs/openssl ) - X? ( virtual/x11 ) - gtk? ( =x11-libs/gtk+-1.2* ) - gnome? ( <gnome-base/gnome-panel-1.5 ) - mozilla? ( net-www/mozilla ) - socks5? ( net-misc/tsocks )" - -src_compile() { - - local myconf - myconf="--enable-threads --with-regex=auto" - - use X \ - && myconf="${myconf} --with-x" \ - || myconf="${myconf} --without-x" - - use ssl \ - && myconf="${myconf} --enable-ssl" \ - || myconf="${myconf} --disable-ssl" - - use gtk \ - && myconf="${myconf} --enable-gtk" \ - || myconf="${myconf} --disable-gtk" - - use gnome \ - && myconf="${myconf} --enable-gnome" \ - || myconf="${myconf} --disable-gnome" - - use mozilla \ - && myconf="${myconf} --enable-js" \ - || myconf="${myconf} --disable-js" - - use socks5 \ - && myconf="${myconf} --enable-socks" \ - || myconf="${myconf} --disable-socks" - - use nls \ - && myconf="${myconf} --enable-nls" \ - || myconf="${myconf} --disable-nls" - - econf ${myconf} || die - - emake || die -} - -src_install() { - - # fix sandbox volation for gnome .desktop and icon - if use gnome - then - sed -i 's:GNOME_PREFIX = /usr:GNOME_PREFIX = ${D}usr:' Makefile - sed -i 's:GNOME_PREFIX = /usr:GNOME_PREFIX = ${D}usr:' icons/Makefile - fi - - einstall || die - - dodoc ABOUT-NLS README CREDITS FAQ NEWS AUTHORS COPYING BUGS \ - TODO MAILINGLIST ChangeLog wget-pavuk.HOWTO jsbind.txt \ - pavuk_authinfo.sample pavukrc.sample -} |