diff options
Diffstat (limited to 'dev-ada/florist/florist-2007.0.ebuild')
-rw-r--r-- | dev-ada/florist/florist-2007.0.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/dev-ada/florist/florist-2007.0.ebuild b/dev-ada/florist/florist-2007.0.ebuild new file mode 100644 index 000000000000..774ca57310d1 --- /dev/null +++ b/dev-ada/florist/florist-2007.0.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +inherit gnat libtool + +IUSE="" + +DESCRIPTION="Posix bindings for Ada" +HOMEPAGE="http://libre.adacore.com/" +SRC_URI="mirror://gentoo/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64" + +DEPEND=">=virtual/ada-2005" + +lib_compile() +{ + elibtoolize + econf || die "econf failed" + emake || die "make failed" + make floristlib || die "building library failed" + einfo "lib_compile completed" +} + +# NOTE: we are using $1 - the passed gnat profile name +lib_install() +{ + # install goal is just (access violating) mkdir and 2 cp's + # instead move stuff properly here + cp -rp "${SL}"/floristlib/{libflorist.a,*.ali} "${DL}" + chmod 0444 "${DL}"/*.ali +} + +src_install () +{ + # install sources + dodir "${AdalibSpecsDir}/${PN}" + insinto "${AdalibSpecsDir}/${PN}" + doins -r *.ad{b,s} *.c *.gpb gnatsocks/ + + #set up environment + echo "LDPATH=%DL%" >> ${LibEnv} + echo "ADA_OBJECTS_PATH=%DL%" >> ${LibEnv} + echo "ADA_INCLUDE_PATH=${AdalibSpecsDir}/${PN}" >> ${LibEnv} + + gnat_src_install + + dodoc README +} |