blob: a4932093bca97fe07ba004e8a9cd1a85660253a5 (
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
59
60
61
62
63
64
65
66
67
68
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Peter Gavin <pete@gentoo.org>
S=${WORKDIR}/AfterStep-${PV}
DESCRIPTION="A window manager based on the NeXTStep interface."
SRC_URI="ftp://ftp.afterstep.org/stable/AfterStep-${PV}.tar.bz2"
HOMEPAGE="http://www.afterstep.org/"
LICENSE="AFTERSTEP"
SLOT="0"
KEYWORDS="x86"
DEPEND="virtual/glibc virtual/x11
>=media-libs/jpeg-6b
>=media-libs/libpng-1.2.1
x11-wm/gnustep-env"
## >=media-libs/xpm-3.4k
RDEPEND="${DEPEND}
>=media-sound/sox-12.17.1"
src_unpack() {
unpack ${A}
cd ${S}
patch -p0 < ${FILESDIR}/${P}-gentoo.diff
}
src_compile() {
local myconf
use nls && myconf="${myconf} --enable-i18n"
./configure \
--host=${CHOST} \
--prefix=/usr \
--libdir=/usr/lib \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--sysconfdir=/etc/X11 \
--with-helpcommand="xterm -e man" \
--disable-availability \
--disable-staticlibs \
--with-xpm \
${myconf} || die
emake || die
}
src_install() {
make DESTDIR=${D} \
GNUSTEP_LOCAL_ROOT=${D}${GNUSTEP_LOCAL_ROOT} \
install || die
rm -f ${D}/usr/bin/sessreg
dodoc COPYRIGHT ChangeLog INSTALL NEW README* TEAM UPGRADE
cp -a ${S}/TODO ${D}/usr/share/doc/${PF}/
dodir /usr/share/doc/${PF}/html
cp -a ${S}/doc/* ${D}/usr/share/doc/${PF}/html
rm ${D}/usr/share/doc/${PF}/html/Makefile*
exeinto /etc/X11/Sessions
doexe ${FILESDIR}/afterstep
}
|