diff options
author | George Shapovalov <george@gentoo.org> | 2008-08-19 11:56:54 +0000 |
---|---|---|
committer | George Shapovalov <george@gentoo.org> | 2008-08-19 11:56:54 +0000 |
commit | 52189b5d77aefd6717f335e14e1e090fc840a626 (patch) | |
tree | 392cef7af57f404e91ccc48c4aac46c90943b372 /dev-ada | |
parent | Stable on amd64/x86 per bug #232197; add dev-perl/Crypt-PasswdMD5 to RDEPEND ... (diff) | |
download | gentoo-2-52189b5d77aefd6717f335e14e1e090fc840a626.tar.gz gentoo-2-52189b5d77aefd6717f335e14e1e090fc840a626.tar.bz2 gentoo-2-52189b5d77aefd6717f335e14e1e090fc840a626.zip |
asis-2008 should go into the same new SLOT as gnat-2008. Revbumping to force
(Portage version: 2.2_rc8/cvs/Linux 2.6.25-gentoo-r4 x86_64)
Diffstat (limited to 'dev-ada')
-rw-r--r-- | dev-ada/asis-gpl/ChangeLog | 9 | ||||
-rw-r--r-- | dev-ada/asis-gpl/asis-gpl-4.1.3.2008-r1.ebuild | 127 |
2 files changed, 135 insertions, 1 deletions
diff --git a/dev-ada/asis-gpl/ChangeLog b/dev-ada/asis-gpl/ChangeLog index 139ffc02f1e3..cc33ea2eecc9 100644 --- a/dev-ada/asis-gpl/ChangeLog +++ b/dev-ada/asis-gpl/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-ada/asis-gpl # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ada/asis-gpl/ChangeLog,v 1.9 2008/07/07 13:23:32 george Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ada/asis-gpl/ChangeLog,v 1.10 2008/08/19 11:56:54 george Exp $ + +*asis-gpl-4.1.3.2008-r1 (19 Aug 2008) + + 19 Aug 2008; George Shapovalov <george@gentoo.org> + +asis-gpl-4.1.3.2008-r1.ebuild: + asis-2008 should go into the same new SLOT as gnat-2008. Revbumping to + force *asis-gpl-4.1.3.2008 (07 Jul 2008) diff --git a/dev-ada/asis-gpl/asis-gpl-4.1.3.2008-r1.ebuild b/dev-ada/asis-gpl/asis-gpl-4.1.3.2008-r1.ebuild new file mode 100644 index 000000000000..577ce520fff1 --- /dev/null +++ b/dev-ada/asis-gpl/asis-gpl-4.1.3.2008-r1.ebuild @@ -0,0 +1,127 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ada/asis-gpl/asis-gpl-4.1.3.2008-r1.ebuild,v 1.1 2008/08/19 11:56:54 george Exp $ + +# NOTE: gnat-gpl-2007 and 2008 have "incompatible bugs" +# so, we separate asis following the separation of gnat +SLOT="4.1-2008" + +inherit eutils flag-o-matic gnatbuild + +ACT_Ver=$(get_version_component_range 4) +Gnat_Name="gnat-gpl" + +DESCRIPTION="The Ada Semantic Interface Specification (semantic analysis and tools tied to compiler)" +SRC_URI="mirror://gentoo/${PN}-${ACT_Ver}-src.tgz" +HOMEPAGE="https://libre.adacore.com/" +LICENSE="GPL-2" + +KEYWORDS="~amd64 ~x86" + +IUSE="doc" +RDEPEND="=dev-lang/gnat-gpl-${PV}*" +DEPEND="${RDEPEND} + doc? ( virtual/latex-base + app-text/texi2html )" + +S="${WORKDIR}/asis-${ACT_Ver}-src" + +# it may be even better to force plain -O2 -pipe -ftracer here +replace-flags -O3 -O2 + +# we need to adjust some vars defined in gnatbuild.eclass so that they use +# gnat-gpl instead of asis +LIBPATH=${LIBPATH/${PN}/${Gnat_Name}} +BINPATH=${BINPATH/${PN}/${Gnat_Name}} +DATAPATH=${DATAPATH/${PN}/${Gnat_Name}} + +QA_EXECSTACK="${BINPATH:1}/* + ${LIBPATH:1}/adalib/libasis-${ACT_Ver}.so" + +pkg_setup() { + currGnat=$(eselect --no-color gnat show | grep "gnat-" | awk '{ print $1 }') + if [[ "${currGnat}" != "${CTARGET}-${Gnat_Name}-${SLOT}" ]]; then + echo + eerror "The active gnat profile does not correspond to the selected" + eerror "version of asis! Please install the appropriate gnat (if you" + eerror "did not so yet) and run:" + eerror "eselect gnat set ${CTARGET}-${Gnat_Name}-${SLOT}" + eerror "env-update && source /etc/profile" + eerror "and then emerge =dev-ada/${P} again.." + echo + die + fi +} + +# we need to override the eclass defined src_unpack +# and change gcc to gnatgcc where appropriate +src_unpack() { + unpack ${A} + cd "${S}" + for fn in asis/a4g-gnat_int.adb gnat/snames.adb \ + tools/tool_utils/asis_ul-common.adb \ + tools/gnatmetric/metrics-compute.adb; do + sed -i -e "s:\"gcc:\"gnatgcc:" ${fn} + done +} + +src_compile() { + # Build the shared library first, we need -fPIC here + gnatmake -Pasis_bld -XBLD=prod -XOPSYS=default_Unix -cargs ${CFLAGS} -fPIC \ + || die "building libasis.a failed" + gnatgcc -shared -Wl,-soname,libasis-${ACT_Ver}.so \ + -o obj/libasis-${ACT_Ver}.so obj/*.o -lc \ + || die "building libasis.so failed" + + # build tools + for fn in tools/*; do + pushd ${fn} + gnatmake -P${fn:6}.gpr || die "building ${fn:6} failed" + popd + done + + # common stuff is just docs in this case + if use doc; then + emake -C documentation all || die "Failed while compiling documentation" + fi +} + +src_install () { + # install the lib + mkdir -p "${D}${LIBPATH}"/adalib + chmod 0755 obj/libasis-${ACT_Ver}.so + cp obj/libasis-${ACT_Ver}.so "${D}${LIBPATH}"/adalib + insinto ${LIBPATH}/adalib + doins obj/*.ali lib/libasis.a + # make appropriate symlinks + pushd "${D}${LIBPATH}"/adalib + ln -s libasis-${ACT_Ver}.so libasis.so + popd + # sources + insinto ${LIBPATH}/adainclude + doins gnat/*.ad[sb] + doins asis/*.ad[sb] + + # tools + mkdir -p "${D}${BINPATH}" + for fn in tools/{asistant,gnat*}; do + cp ${fn}/${fn:6} "${D}${BINPATH}" + done + + # docs and examples + dodoc documentation/*.txt + dohtml documentation/*.html + # info's should go into gnat-gpl dirs + insinto ${DATAPATH}/info/ + doins documentation/*.info + + insinto /usr/share/doc/${PF} + doins -r documentation/*.pdf tutorial/ templates/ +} + +pkg_postinst() { + echo + elog "The ASIS is installed for the active gnat compiler at gnat's location." + elog "No further configuration is necessary. Enjoy." + echo +} |