diff options
author | Mike Gardiner <obz@gentoo.org> | 2003-08-13 03:58:23 +0000 |
---|---|---|
committer | Mike Gardiner <obz@gentoo.org> | 2003-08-13 03:58:23 +0000 |
commit | 394aad12ea31ca7c9d9768fb62308756c0fb20d3 (patch) | |
tree | 160bf502472f2259779fabb4072fbebf10e6f1fd /net-misc | |
parent | added yelp to depends (diff) | |
download | gentoo-2-394aad12ea31ca7c9d9768fb62308756c0fb20d3.tar.gz gentoo-2-394aad12ea31ca7c9d9768fb62308756c0fb20d3.tar.bz2 gentoo-2-394aad12ea31ca7c9d9768fb62308756c0fb20d3.zip |
First commit
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/gwget2/ChangeLog | 10 | ||||
-rw-r--r-- | net-misc/gwget2/Manifest | 2 | ||||
-rw-r--r-- | net-misc/gwget2/gwget2-0.5.ebuild | 62 |
3 files changed, 74 insertions, 0 deletions
diff --git a/net-misc/gwget2/ChangeLog b/net-misc/gwget2/ChangeLog new file mode 100644 index 000000000000..c4e5b649071e --- /dev/null +++ b/net-misc/gwget2/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for net-misc/gwget2 +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/gwget2/ChangeLog,v 1.1 2003/08/13 03:58:02 obz Exp $ + +*gwget2-0.5 (13 Aug 2003) + + 13 Aug 2003; Mike Gardiner <obz@gentoo.org> gwget2-0.5.ebuild: + New package. Thanks to Jose Romildo Malaquias (romildo@iber.com.br). See bug + #18255 + diff --git a/net-misc/gwget2/Manifest b/net-misc/gwget2/Manifest new file mode 100644 index 000000000000..c1685cb0dffd --- /dev/null +++ b/net-misc/gwget2/Manifest @@ -0,0 +1,2 @@ +MD5 d52c9e2dad82eb4ed636b33f52334639 gwget2-0.5.ebuild 1273 +MD5 f61041df25010d27a35428431ecae7bd ChangeLog 390 diff --git a/net-misc/gwget2/gwget2-0.5.ebuild b/net-misc/gwget2/gwget2-0.5.ebuild new file mode 100644 index 000000000000..b7475fa30ffa --- /dev/null +++ b/net-misc/gwget2/gwget2-0.5.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/gwget2/gwget2-0.5.ebuild,v 1.1 2003/08/13 03:58:02 obz Exp $ + +inherit gnome2 + +DESCRIPTION="GTK2 WGet Frontend" +HOMEPAGE="http://gwget.sourceforge.net/" +SRC_URI="mirror://sourceforge/gwget/${P}.tar.gz" + +IUSE="nls" +SLOT="0" +KEYWORDS="~x86" +LICENSE="GPL-2" + +RDEPEND=">=net-misc/wget-1.8 + >=x11-libs/gtk+-2.0 + >=gnome-base/gconf-2 + >=gnome-base/libgnomeui-2.0 + nls? ( sys-devel/gettext )" + +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +DOCS="ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS TODO" + +# gwget2 isnt all finished, and there is support for +# gconf planned, so when that comes in, this should be +# okay thanks to the eclass. + +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 -e "s/^CFLAGS.*$//" < Makefile.in > Makefile.in.tmp + mv Makefile.in.tmp Makefile.in + +} + + +src_compile( ) { + + local myconf + use nls \ + && myconf="--with-included-gettext=no" \ + || myconf="--disable-nls" + + gnome2_src_compile ${myconf} + +} + +src_install( ) { + + gnome2_src_install + rm -rf ${D}/usr/doc + +} + + |