summaryrefslogtreecommitdiff
blob: f62fc4edf136b9a2922fd85bf388ca58fc4316b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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

}