blob: 26a7f7e477b1eb6d1933ec63622232f32e946386 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/lwm/lwm-1.1.5.ebuild,v 1.5 2004/06/24 23:42:58 agriffis Exp $
IUSE="motif"
S=${WORKDIR}/${P}
DESCRIPTION="The ultimate lightweight window manager"
SRC_URI="ftp://ftp.cs.york.ac.uk/pub/james/${P}.tar.gz"
HOMEPAGE="http://www.jfc.org.uk/software/lwm.html"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc ppc"
DEPEND="motif? ( x11-libs/openmotif >=sys-apps/sed-4 )
virtual/x11"
RDEPEND="x11-libs/openmotif
virtual/x11"
src_compile() {
use motif && sed -i "s/-DHAVE_MOTIF//" Imakefile
xmkmf || die
emake lwm || die
}
src_install() {
einstall \
BINDIR=${D}/usr/bin || die
dodoc COPYRIGHT ChangeLog TODO
}
|