diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-03-27 02:16:30 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-03-27 02:16:30 +0000 |
commit | 5b91a185505c0d7b166812b87bfc56fd3dccf8fb (patch) | |
tree | 647b71e81d0a0fb215ae02a9fecdc2eb8525c40f /net-misc/pavuk | |
parent | repoman fix and use lightweight rpm2targz to manipulate the rpm (diff) | |
download | gentoo-2-5b91a185505c0d7b166812b87bfc56fd3dccf8fb.tar.gz gentoo-2-5b91a185505c0d7b166812b87bfc56fd3dccf8fb.tar.bz2 gentoo-2-5b91a185505c0d7b166812b87bfc56fd3dccf8fb.zip |
repoman fix
Diffstat (limited to 'net-misc/pavuk')
-rw-r--r-- | net-misc/pavuk/pavuk-0.9.28.ebuild | 33 |
1 files changed, 12 insertions, 21 deletions
diff --git a/net-misc/pavuk/pavuk-0.9.28.ebuild b/net-misc/pavuk/pavuk-0.9.28.ebuild index 7b5e6820fd67..d37a0da59121 100644 --- a/net-misc/pavuk/pavuk-0.9.28.ebuild +++ b/net-misc/pavuk/pavuk-0.9.28.ebuild @@ -1,20 +1,20 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: +# $Header: /var/cvsroot/gentoo-x86/net-misc/pavuk/pavuk-0.9.28.ebuild,v 1.3 2003/03/27 02:16:30 seemant Exp $ IUSE="ssl X gtk gnome mozilla socks5 nls" +S="${WORKDIR}/${PN}-0.9pl28" DESCRIPTION="Web spider and website mirroring tool" -SRC_URI="http://www.pavuk.org/sw/${PN}-0.9pl28.tgz" - HOMEPAGE="http://www.pavuk.org/" +SRC_URI="http://www.pavuk.org/sw/${PN}-0.9pl28.tgz" -S="${WORKDIR}/${PN}-0.9pl28" SLOT="0" LICENSE="GPL-2" -KEYWORDS="x86 ppc sparc sparc64" +KEYWORDS="x86 ppc sparc" -DEPEND="sys-devel/gettext +DEPEND=">=sys-apps/sed-4.0.5 + sys-devel/gettext sys-libs/zlib ssl? ( dev-libs/openssl ) X? ( virtual/x11 ) @@ -23,13 +23,6 @@ DEPEND="sys-devel/gettext mozilla? ( net-www/mozilla ) socks5? ( net-misc/tsocks )" -src_unpack() { - - unpack ${A} - - cd ${S} -} - src_compile() { local myconf @@ -63,7 +56,7 @@ src_compile() { && myconf="${myconf} --enable-nls" \ || myconf="${myconf} --disable-nls" - econf ${myconf} + econf ${myconf} || die emake || die } @@ -71,16 +64,14 @@ src_compile() { src_install() { # fix sandbox volation for gnome .desktop and icon - use gnome \ - && mv Makefile Makefile.orig \ - && mv icons/Makefile icons/Makefile.orig \ - && sed -e 's/GNOME_PREFIX = \/usr/GNOME_PREFIX = ${D}usr/' Makefile.orig >Makefile \ - && sed -e 's/GNOME_PREFIX = \/usr/GNOME_PREFIX = ${D}usr/' icons/Makefile.orig >icons/Makefile + 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 - einstall + 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 } - |