blob: 949140250a478c3548b8010dd2cb4cfb43b26b1a (
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
55
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/wmakerconf/wmakerconf-2.9.ebuild,v 1.18 2004/12/05 19:53:24 fafhrd Exp $
IUSE="nls gnome imlib perl"
DESCRIPTION="X based config tool for the windowmaker X windowmanager."
SRC_URI="http://www.windowmaker.org/pub/contrib/source/wmakerconf/${P}.tar.bz2"
# Homepage appears not to be up anymore
HOMEPAGE="http://ulli.on.openave.net/wmakerconf/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="-*"
DEPEND="=x11-libs/gtk+-1.2*
x11-wm/windowmaker
!=x11-wm/windowmaker-0.9*
gnome? ( =gnome-base/gnome-libs-1.4* )
imlib? ( media-libs/imlib )"
RDEPEND="nls? ( sys-devel/gettext )
perl? ( dev-lang/perl
net-misc/wget )"
src_compile() {
local myconf
use nls || myconf="${myconf} --disable-nls"
use imlib || myconf="${myconf} --disable-imlibtest"
use gnome || myconf="${myconf} --without-gnome"
./configure \
--prefix=/usr \
--host=${CHOST} \
--sysconfdir=/etc \
${myconf} || die
emake || die
}
src_install() {
make \
prefix=${D}/usr \
GNOMEDIR=${D}/usr/share/gnome/apps/Settings \
install || die
dodoc README MANUAL AUTHORS TODO COPYING ChangeLog
dohtml -r .
}
|