blob: 52f781e227fbb5cc51a42f4aa00ab5f315ce2d00 (
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
69
70
71
72
73
74
75
76
77
78
79
80
81
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ada/adabroker/adabroker-1.0_pre4.ebuild,v 1.9 2004/06/29 14:51:36 agriffis Exp $
inherit gnat
S="${WORKDIR}/${PN}-1.0pre4"
DESCRIPTION="AdaBroker is a CORBA implementation for Ada."
SRC_URI="http://adabroker.eu.org/distrib/${PN}-1.0pre4.tar.gz"
HOMEPAGE="http://adabroker.eu.org/"
LICENSE="GMGPL"
DEPEND="<dev-lang/gnat-5.0
>=sys-apps/sed-4"
RDEPEND=""
IUSE=""
SLOT="0"
KEYWORDS="x86"
src_compile() {
econf \
--libdir=/usr/lib/ada/adalib \
--includedir=/usr/lib/ada/adainclude || die "./configure failed"
sed -i -e "s|-I\$libdir|-I/usr/lib/ada/adainclude|" src/adabroker-config.in
# We want to use the old version of adasockets provided by adabroker
# and not the newer version in portage.
sed -i -e "s|\`adasockets-config.--cflags\`||" \
src/adabroker-config.in
sed -i -e "s|\`adasockets-config.--libs\`|/usr/lib/ada/adalib/adabroker/libadasockets.a|" \
src/adabroker-config.in
emake || die
}
src_install () {
make prefix=${D}/usr \
libdir=${D}/usr/lib/ada/adalib/adabroker \
infodir=${D}/usr/share/info \
mandir=${D}/usr/share/man \
includedir=${D}/usr/lib/ada/adainclude/adabroker install || die
dodoc COPYING INSTALL NEWS README
# Again, we try to fix GNAE compatibility
mv ${D}/usr/lib/ada/adalib/adabroker/adabroker/*.ali \
${D}/usr/lib/ada/adalib/adabroker/
mv ${D}/usr/lib/ada/adalib/adabroker/adasockets/*.ali \
${D}/usr/lib/ada/adalib/adabroker/
dodir /usr/lib/ada/adainclude/adabroker
mv ${D}/usr/lib/ada/adalib/adabroker/adabroker/* \
${D}/usr/lib/ada/adainclude/adabroker/
mv ${D}/usr/lib/ada/adalib/adabroker/adasockets/* \
${D}/usr/lib/ada/adainclude/adabroker/
rmdir ${D}/usr/lib/ada/adalib/adabroker/adabroker
rmdir ${D}/usr/lib/ada/adalib/adabroker/adasockets
# This is an old version of adasockets, we don't want it to overwrite
# the version of adasockets in portage
rm ${D}/usr/bin/adasockets-config
dosym /usr/lib/ada/adalib/adabroker/libbroca.so /usr/lib
dosym /usr/lib/ada/adalib/adabroker/libbroca.so.0 /usr/lib
dosym /usr/lib/ada/adalib/adabroker/libbroca.so.0.0.0 /usr/lib
#set up environment
dodir /etc/env.d
echo "ADA_OBJECTS_PATH=/usr/lib/ada/adalib/${PN}" \
> ${D}/etc/env.d/55adabroker
echo "ADA_INCLUDE_PATH=/usr/lib/ada/adainclude/${PN}" \
>> ${D}/etc/env.d/55adabroker
}
pkg_postinst() {
einfo "The envaironment has been set up to make gnat automatically find files for"
einfo "AdaBroker. 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"
}
|