blob: 748c8655033a253533c4a6e3ca0db81a835b130f (
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
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Damon Conway <kabau@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/x11-wm/ion/ion-20011109.ebuild,v 1.2 2002/07/08 13:47:11 aliz Exp $
S=${WORKDIR}/${P}
DESCRIPTION="A keyboard-based window manager"
SRC_URI="http://www.students.tut.fi/~tuomov/dl/${P}.tar.gz"
HOMEPAGE="http://www.students.tut.fi/~tuomov/ion/"
DEPEND="virtual/glibc"
RDEPEND="virtual/x11"
LICENSE="Artistic"
SLOT="0"
KEYWORDS="x86"
src_compile() {
cd ${S}
# Edit system.mk
sed -e 's:PREFIX=/usr/local:PREFIX=/usr:' \
-e 's:ETCDIR=$(PREFIX):ETCDIR=:' \
-e 's:$(PREFIX)/man:$(PREFIX)/share/man:' \
-e 's:$(PREFIX)/doc:$(PREFIX)/share/doc:' \
-e 's:#HAS_SYSTEM_ASPRINTF=1:HAS_SYSTEM_ASPRINTF=1:' \
-e 's:#INSTALL=install -c:INSTALL=install -c:' \
-e 's:INSTALL=install *$:#INSTALL=install:' \
system.mk > system.mk.new
mv system.mk.new system.mk
# Edit Makefile
# I don't know how to use ${P} instead of typing the whole version
# here. At some point, it should be cleaned up.
sed -e 's:$(DOCDIR)/ion:$(DOCDIR)/ion-20010523:g' Makefile > Makefile.new
mv Makefile.new Makefile
make depend || die
emake || die
}
src_install () {
make PREFIX=${D}/usr ETCDIR=${D}/etc install || die
}
pkg_postinst () {
einfo "Configuration documentation can be found in these places:"
einfo "/usr/share/doc/${P}/config.txt"
einfo "http://www.students.tut.fi/~tuomov/ion/resources.html"
}
|