blob: 550b01e2506450074d789742e07175f40032c0c9 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ada/tash/tash-8.4.1a.ebuild,v 1.4 2007/04/07 04:02:54 vapier Exp $
inherit versionator gnat
DESCRIPTION="Tash provides tcl Ada bindings"
HOMEPAGE="http://www.tupone.it"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="virtual/gnat
=dev-lang/tcl-8.4*
=dev-lang/tk-8.4*"
lib_compile() {
gcc -c -O2 -o obj/tclmacro.o src/tclmacro.c && \
gcc -c -O2 -o obj/tkmacro.o src/tkmacro.c && \
gnatmake -Pbuild_stat || die "building static lib failed"
gcc -c -O2 -fPIC -o obj_dyn/tclmacro.o src/tclmacro.c && \
gcc -c -O2 -fPIC -o obj_dyn/tkmacro.o src/tkmacro.c && \
gnatmake -Pbuild_dyn || die "building static lib failed"
}
lib_install() {
mv ${SL}/lib/*.{ali,a,so*} ${DL}
chmod a-w ${DL}/*.ali
}
src_install() {
dodir "${AdalibSpecsDir}/${PN}"
insinto "${AdalibSpecsDir}/${PN}"
doins src/*.ad?
#set up environment
echo "ADA_OBJECTS_PATH=%DL%" >> ${LibEnv}
echo "ADA_INCLUDE_PATH=${AdalibSpecsDir}/${PN}" >> ${LibEnv}
gnat_src_install
dohtml -r index.html web/ docs/*.htm images/
insinto /usr/share/doc/${PF}
doins -r apps/ demos/ tests/ docs/*.pdf
}
|