blob: 0514038e85aef4797ca23a3192bcf9b4ac98e404 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ada/booch_components/booch_components-20030815.ebuild,v 1.4 2005/01/01 17:23:48 eradicator Exp $
IUSE=""
inherit gnat
Name="bc"
S="${WORKDIR}/${Name}-${PV}"
DESCRIPTION="Booch Components for ada"
SRC_URI="http://www.pogner.demon.co.uk/components/${Name}/download/${Name}-${PV}.tgz
http://www.pogner.demon.co.uk/components/${Name}/download/${Name}-html-${PV}.zip"
HOMEPAGE="http://www.pogner.demon.co.uk/components/bc/"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc"
SLOT="0"
DEPEND=">=dev-lang/gnat-3.14p"
src_compile() {
make clean && make all
#need to force at least some basic compilation
cd test
emake || die
}
src_install () {
#makefile does not do much, so we need to install stuff manually
dodir /usr/lib/ada/adalib/${PN} /usr/lib/ada/adainclude/${PN}
cd ${S}/test
cp -a *.{o,ali} ${D}/usr/lib/ada/adalib/${PN}
cd ${S}
cp *.ad? ${D}/usr/lib/ada/adainclude/${PN}
# Install documentation.
dodoc COPYING README
cd ${WORKDIR}
dohtml *
cp coldframe-hash.* x.ada ${D}/usr/share/doc/${PF}/html
cd ${S}
cp -r demo ${D}/usr/share/doc/${PF}/
dodir /usr/share/doc/${PF}/test
cd test
cp *.ad? *.dat makefile ${D}/usr/share/doc/${PF}/test
#set up environment
dodir /etc/env.d
echo "ADA_OBJECTS_PATH=/usr/lib/ada/adalib/${PN}" > ${D}/etc/env.d/55booch_components
echo "ADA_INCLUDE_PATH=/usr/lib/ada/adainclude/${PN}" >> ${D}/etc/env.d/55booch_components
}
pkg_postinst(){
einfo "The envaironment has been set up to make gnat automatically find files in"
einfo "Booch components. In order to immediately activate these settings please do"
einfo "env-update"
einfo "source /etc/profile"
einfo "Otherwise the settings will become active next time you login"
}
|