forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
charles-20050913.ebuild
50 lines (38 loc) · 943 Bytes
/
charles-20050913.ebuild
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
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
inherit gnat
IUSE=""
DESCRIPTION="Posix bindings for Ada"
HOMEPAGE="http://libre2.adacore.com/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
DEPEND="virtual/ada"
S="${WORKDIR}/${PN}"
lib_compile()
{
einfo "nothing to do here"
}
# NOTE: we are using $1 - the passed gnat profile name
lib_install()
{
einfo "nothing to do here"
}
src_install ()
{
# install sources
dodir ${AdalibSpecsDir}/${PN}
insinto ${AdalibSpecsDir}/${PN}
doins src/*.ad?
#set up environment
#echo "PATH=%DL%/bin" > ${LibEnv}
#echo "LDPATH=%DL%" >> ${LibEnv}
#echo "ADA_OBJECTS_PATH=%DL%" >> ${LibEnv}
echo "ADA_INCLUDE_PATH=/usr/include/ada/${PN}" > ${LibEnv}
gnat_src_install
dodoc src/{COPYING.TXT,README.txt}
insinto /usr/share/doc/${PF}
doins -r src/testdir/ www/charles_tutorial.pdf
}