blob: cebf54076a391ad74bef9b2fe7af47cb8f7cbca9 (
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
56
57
58
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/pekwm/pekwm-0.1.4_pre2.ebuild,v 1.2 2006/04/11 04:36:39 fserb Exp $
inherit eutils
MYP=${P/_/}
S=${WORKDIR}/${MYP}
IUSE="truetype perl xinerama debug"
DESCRIPTION="A small window mananger based on aewm++"
HOMEPAGE="http://pekwm.org"
SRC_URI="http://pekwm.org/files/${MYP}.tar.bz2
mirror://gentoo/${PN}-themes.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~amd64"
DEPEND="|| ( (
xinerama? ( x11-libs/libXinerama )
x11-libs/libXpm
x11-libs/libXrandr
x11-libs/libXrender
)
virtual/x11
)
truetype? ( virtual/xft )
perl? ( dev-libs/libpcre )
media-libs/imlib2"
src_compile() {
if ! built_with_use media-libs/imlib2 X ; then
ewarn "you must emerge media-libs/imlib2 with X support to use pekwm"
ewarn "please USE=\"X\" emerge media-libs/imlib2 before emerging pekwm"
die "Cannot emerge without X USE flag on imlib2"
fi
econf \
`use_enable truetype xft` \
`use_enable perl pcre` \
`use_enable xinerama` \
`use_enable debug` \
--enable-menus\
--enable-harbour\
--enable-shape\
--enable-xrandr\
--enable-imlib2 || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS ChangeLog
mv ${WORKDIR}/themes/* ${D}/usr/share/${PN}/themes/
}
|