blob: f471ca86064c94237723c52f1b101df2383a16e4 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/amiwm/amiwm-0.20_p48.ebuild,v 1.5 2005/05/10 09:06:04 dholm Exp $
MY_P="${PN}${PV/_p/pl}"
DESCRIPTION="Windowmanager ala Amiga(R) Workbench(R)"
HOMEPAGE="http://www.lysator.liu.se/~marcus/amiwm.html"
SRC_URI="ftp://ftp.lysator.liu.se/pub/X11/wm/amiwm/${MY_P}.tar.gz"
LICENSE="amiwm"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE=""
DEPEND="virtual/x11"
S="${WORKDIR}/${MY_P}"
src_compile() {
econf || die
emake || die
}
src_install() {
dodir /usr/bin
einstall
# make \
# prefix=${D}/usr \
# mandir=${D}/usr/share/man \
# install || die
rm ${D}/usr/bin/requestchoice
dosym /usr/lib/amiwm/requestchoice /usr/bin/requestchoice
dosed /usr/lib/amiwm/{Xinitrc,Xsession,Xsession2}
dodoc INSTALL README*
exeinto /etc/X11/Sessions
echo "/usr/bin/amiwm" > ${T}/amiwm
doexe ${T}/amiwm
}
|