blob: ebe6cd0e1161bfd1b4c850ec24e37a3bd9eb3657 (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ada/adabindx/adabindx-0.7.2.ebuild,v 1.3 2003/09/18 15:35:18 dholm Exp $
#
DESCRIPTION="An Ada-binding to the X Window System and *tif."
SRC_URI="http://home.arcor.de/hfvogt/${P}.tar.bz2"
HOMEPAGE="http://home.arcor.de/hfvogt/programming.html"
LICENSE="GMGPL"
DEPEND="dev-lang/gnat
virtual/x11"
RDEPEND=""
KEYWORDS="~x86 ~ppc"
SLOT="0"
IUSE=""
inherit gnat
src_unpack() {
unpack "${P}.tar.bz2"
cd "${S}"
patch -p1 < ${FILESDIR}/${P}.diff
sed -i -e "s/-O3.*/\${ADACFLAGS}/g" Local.conf
}
src_compile() {
emake || die
}
src_install () {
dodoc CHANGES COPYING INSTALL README TODO
insinto /usr/lib/ada/adalib/adabindx
# chmod 0644 lib/libadabindx.a
# mv lib/libadabindx.a lib/libadabindx-${PV}.a
doins lib/libadabindx-${PV}.a
# dosym /usr/lib/ada/adalib/adabindx/libadabindx-${PV}.a \
# /usr/lib/ada/adalib/adabindx/libadabindx.a
doins lib/*.ali
cd ${D}/usr/lib/ada/adalib/adabindx/
ln -s libadabindx-${PV}.a libadabindx.a
cd ${S}
insinto /usr/lib/ada/adainclude/adabindx
doins lib/*.ads
doins lib/*.adb
#install examples
cp -r examples ${D}/usr/share/doc/${PF}/
}
|