summaryrefslogtreecommitdiff
blob: 9211ad7cb0f685e4f87ef5113b5cfa0a819bd59a (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
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/workrave/workrave-1.2.2.ebuild,v 1.4 2003/09/05 12:10:36 msterret Exp $

DESCRIPTION="Helpful utility to attack Repetitive Strain Injury (RSI)"
HOMEPAGE="http://workrave.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
IUSE="nls xml2"
KEYWORDS="x86"

DEPEND="dev-lang/perl
	>=dev-libs/libsigc++-1.2
	>=dev-util/pkgconfig-0.9
	>=dev-libs/glib-2
	>=x11-libs/gtk+-2
	>=dev-cpp/gtkmm-2
	xml2? ( dev-libs/gdome2 )
	nls? ( sys-devel/gettext )"
#	gnome? ( >=gnome-base/libgnomeui-2 )

src_compile() {
	local myconf=""

	# Right now, options like --disable-gui-gtk and --enable-gui-text seem
	# to be broken. Aditionally, gnome support depends now on
	# gnome-extra/libgnomeuimm which is masked right now, so we're not
	# going to try and build it at the moment.
	use nls   || myconf="--disable-nls"
	#use gnome && myconf="${myconf} --enable-gnome --enable-gconf"
	use xml2  && myconf="${myconf} --enable-xml"

	econf ${myconf}

	# emake will bring nothing but trouble if you're using the `nls' USE
	# var
	make || die "Compilation failed"
}

src_install() {
	einstall

	dodoc ABOUT-NLS AUTHORS ChangeLog COPYING NEWS README*
}