blob: 14a5eb67d75cb63282d2b3149cba01e91383dcb3 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/rox-base/rox-clib/rox-clib-2.1.7.ebuild,v 1.3 2005/12/09 21:31:05 svyatogor Exp $
MY_PN="ROX-CLib"
DESCRIPTION="A library for ROX applications written in C."
HOMEPAGE="http://rox.sourceforge.net/"
SRC_URI="http://www.kerofin.demon.co.uk/rox/${MY_PN}-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=">=rox-base/rox-2.1.0"
S=${WORKDIR}/ROX-CLib
APPNAME=${MY_PN}
src_compile() {
chmod 0755 AppRun
./AppRun --compile || die "Could not make ROX-CLib. Sorry."
}
src_install() {
# clean up source instead of remove it!
( cd src && make clean )
# remove silly .cvs files
find . -name '.cvs*' | xargs rm -f >/dev/null 2>&1
dodoc /usr/lib/${APPNAME}
dodir /usr/lib/${APPNAME}
cp -r . ${D}/usr/lib/${APPNAME}
( cd Help
dodoc Authors Changes ToDo COPYING README Versions
)
#finally link the html and latex dirs
( cd ${D}/usr/share/doc/${P}
ln -s /usr/lib/${APPNAME}/Help/rox-clib.html rox-clib.html
ln -s /usr/lib/${APPNAME}/Help/libdir.html libdir.html
ln -s /usr/lib/${APPNAME}/Help/html html
)
}
pkg_postinst() {
einfo "This version of ROX-CLib might be incompatible with the previous one";
einfo "You might need to reemerge some of your ROX applications";
}
|