blob: 322eeaa70b8b0732208fe946bc40bf677b4042dc (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# Author: Andreas Happe <andreashappe@subdimension.com>
# based upon / copied from : x11-wm/ion by Author Doug Miller <orkim@kc.rr.com>
S=${WORKDIR}/${P}
DESCRIPTION="A keyboard-based window manager - unstable version"
SRC_URI="http://modeemi.fi/~tuomov/dl/${P}.tar.gz"
HOMEPAGE="http://modeemi.fi/~tuomov/ion/"
DEPEND="virtual/glibc"
RDEPEND="virtual/x11"
SLOT="0"
LICENSE="Artistic"
KEYWORDS="x86 sparc sparc64"
pkg_setup() {
einfo "${GOOD}****************************************************************************** *${NORMAL}"
einfo "This package will overwrite your your stable ion install. ${GOOD}*${NORMAL}"
einfo " !WARNING! !WARNING! !WARNING! ${GOOD}*${NORMAL}"
einfo "${GOOD}****************************************************************************** *${NORMAL}"
}
src_compile() {
cd ${S}
# Edit system.mk
cp system.mk system.mk.new
sed -e 's:PREFIX=/usr/local:PREFIX=/usr:' \
-e 's:ETCDIR=$(PREFIX)/etc:ETCDIR=/etc/X11:' \
-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.new > system.mk
cp Makefile Makefile.new
sed -e 's:$(DOCDIR)/ion:$(DOCDIR)/${P}:g' Makefile.new > Makefile
make depend || die
emake || die
}
src_install () {
make PREFIX=${D}/usr ETCDIR=${D}/etc/X11 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"
}
|