diff options
author | Mike Gardiner <obz@gentoo.org> | 2004-08-23 09:15:41 +0000 |
---|---|---|
committer | Mike Gardiner <obz@gentoo.org> | 2004-08-23 09:15:41 +0000 |
commit | 14a077e1a06123c72fa29a586daa1d40becabb84 (patch) | |
tree | 06e975b3592f0d0624f1a045e8340ce363b7bc1b /net-misc/gwget/gwget-0.6.ebuild | |
parent | Version bump. (Manifest recommit) (diff) | |
download | gentoo-2-14a077e1a06123c72fa29a586daa1d40becabb84.tar.gz gentoo-2-14a077e1a06123c72fa29a586daa1d40becabb84.tar.bz2 gentoo-2-14a077e1a06123c72fa29a586daa1d40becabb84.zip |
Moved from gwget2 to gwget
Diffstat (limited to 'net-misc/gwget/gwget-0.6.ebuild')
-rw-r--r-- | net-misc/gwget/gwget-0.6.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/net-misc/gwget/gwget-0.6.ebuild b/net-misc/gwget/gwget-0.6.ebuild new file mode 100644 index 000000000000..f62fc4edf136 --- /dev/null +++ b/net-misc/gwget/gwget-0.6.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/gwget/gwget-0.6.ebuild,v 1.1 2004/08/23 09:15:41 obz Exp $ + +inherit gnome2 + +MY_P="gwget2-${PV}" +S="${WORKDIR}/${MY_P}" + +DESCRIPTION="GTK2 WGet Frontend" +HOMEPAGE="http://gwget.sourceforge.net/" +SRC_URI="mirror://sourceforge/gwget/${MY_P}.tar.gz" +LICENSE="GPL-2" + +IUSE="nls" +SLOT="0" +KEYWORDS="x86" + +RDEPEND=">=net-misc/wget-1.8 + >=x11-libs/gtk+-2.0 + >=gnome-base/gconf-2 + >=gnome-base/libgnomeui-2.0 + >=gnome-base/libglade-2.0" + +DEPEND="${RDEPEND} + dev-util/pkgconfig + nls? ( sys-devel/gettext )" + +DOCS="ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS TODO" + +use nls \ + && G2CONF="${G2CONF} --with-included-gettext=no" \ + || G2CONF="${G2CONF} --disable-nls" + +src_unpack() { + + unpack ${A} + cd ${S}/src + # the Makefile defines its own CFLAGS, and then + # doesnt use user-defined ones, so we need + # to change that + sed -i -e "s/^CFLAGS.*$//" Makefile.in + +} + +src_install() { + + gnome2_src_install + # remove extra documentation, keeping /usr/share/doc + rm -rf ${D}/usr/doc + +} + + |