You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-ada/aunit/aunit-2.03.ebuild

52 lines
1.2 KiB

# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ada/aunit/aunit-2.03.ebuild,v 1.2 2009/03/24 14:34:23 george Exp $
inherit gnat
IUSE=""
DESCRIPTION="Aunit, Ada unit testing framework"
SRC_URI="http://dev.gentoo.org/~george/src/${P}.tar.bz2"
HOMEPAGE="https://libre.adacore.com/aunit/"
LICENSE="GPL-2"
KEYWORDS="~x86 ~amd64"
SLOT="0"
DEPEND="virtual/ada"
RDEPEND="${DEPEND}"
lib_compile() {
cd aunit
SUPPORT_EXCEPTION=yes SUPPORT_CALENDAR=yes gnatmake -Paunit_build
SUPPORT_EXCEPTION=yes SUPPORT_CALENDAR=yes gnatmake -Paunit_build_dyn
}
lib_install() {
mv aunit/lib/* ${DL}
chmod 0444 ${DL}/*.ali
}
src_install () {
dodir ${AdalibSpecsDir}/${PN}
insinto ${AdalibSpecsDir}/${PN}
doins aunit/*/*.ad? aunit/framework/*/*.ad?
dodir ${AdalibDataDir}/${PN}
insinto ${AdalibDataDir}/${PN}
doins -r support/aunit.xml template/
#set up environment
echo "LDPATH=%DL%" > ${LibEnv}
echo "ADA_OBJECTS_PATH=%DL%" >> ${LibEnv}
echo "ADA_INCLUDE_PATH=/usr/include/ada/${PN}" >> ${LibEnv}
gnat_src_install
dodoc README docs/aunit.txt
dohtml docs/aunit.{html,css}
doinfo docs/aunit.info
cp -dPr test/ docs/aunit.pdf "${D}/usr/share/doc/${PF}"
}