blob: dc8422429416d56346e99c0b55d537ec2ea4ac5a (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/evilwm/evilwm-0.99.17.ebuild,v 1.13 2005/05/08 15:13:02 herbs Exp $
MY_P="${PN}_${PV}.orig"
S=${WORKDIR}/${MY_P/_/-}
DESCRIPTION="A minimalist, no frills window manager for X."
SRC_URI="http://download.sourceforge.net/evilwm/${MY_P}.tar.gz"
HOMEPAGE="http://evilwm.sourceforge.net"
IUSE="motif"
SLOT="0"
LICENSE="as-is"
KEYWORDS="x86 ppc sparc alpha amd64"
DEPEND="virtual/x11
sys-apps/coreutils
motif? ( x11-libs/openmotif )"
src_unpack() {
unpack ${A}
cd ${S}
sed -i 's/^#define DEF_FONT.*/#define DEF_FONT "fixed"/' evilwm.h
if ! use motif
then
cp Makefile ${T}
sed "s:DEFINES += -DMWM_HINTS::" \
${T}/Makefile > Makefile
fi
}
src_compile() {
emake allinone || die
}
src_install () {
exeinto /usr/bin
doexe evilwm
doman evilwm.1
dodoc ChangeLog README* INSTALL TODO
}
|