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/gtkada/gtkada-2.4.0-r2.ebuild

98 lines
2.4 KiB

# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ada/gtkada/gtkada-2.4.0-r2.ebuild,v 1.6 2007/12/28 22:40:13 george Exp $
inherit eutils gnat
Name="GtkAda"
DESCRIPTION="Gtk+ bindings to the Ada language"
HOMEPAGE="https://libre2.adacore.com/GtkAda/"
SRC_URI="mirror://gentoo/${Name}-${PV}.tgz"
LICENSE="GPL-2"
SLOT="2"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="nls opengl"
DEPEND="virtual/ada
>=x11-libs/gtk+-2.2.0
>=sys-apps/sed-4"
RDEPEND=""
S="${WORKDIR}/${Name}-${PV}"
# a location to temporarily keep common stuff installed by make install
CommonInst="${WORKDIR}/common-install"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e "s|-I\$prefix/include|-I${AdalibSpecsDir}|" \
src/gtkada-config.in
}
lib_compile() {
# some profile specific fixes first
sed -i -e "s|-L\$prefix/include|-L${AdalibLibTop}/$1|" \
src/gtkada-config.in
# ATTN! Check if this is fixed when new version comes out!
# this one fails on 4.1 without and 3.4 with..
if [[ $(get_gnat_SLOT $1) > 3.4 ]] ; then
epatch "${FILESDIR}"/${P}.patch
fi
local myconf
use opengl && myconf="--with-GL=auto" || myconf="--with-GL=no"
econf ${myconf} $(use_enable nls) || die "./configure failed"
make GNATFLAGS="${ADACFLAGS}" || die
}
lib_install() {
make prefix=${DL} \
incdir=${DL}/adainclude \
libdir=${DL}/adalib \
alidir=${DL}/adalib \
install || die
# move common stuff out of $DL
if [[ -d "${CommonInst}" ]] ; then
# we need only one copy, its all identical
mv "${DL}"/adainclude/gtkada-mdi.adb "${DL}"
rm -rf "${DL}"/{adainclude/*,doc,projects,share}
mv "${DL}"/gtkada-mdi.adb "${DL}"/adainclude/
else
mkdir "${CommonInst}"
mv ${DL}/{adainclude,doc,projects,share} "${CommonInst}"
# one .adb file has profile-specific fixes..
mkdir "${DL}"/adainclude
mv "${CommonInst}"/adainclude/gtkada-mdi.adb "${DL}"/adainclude/
fi
}
src_install() {
#set up environment
echo "PATH=%DL%/bin" > ${LibEnv}
echo "LDPATH=%DL%/adalib" >> ${LibEnv}
echo "ADA_OBJECTS_PATH=%DL%/adalib" >> ${LibEnv}
echo "ADA_INCLUDE_PATH=%DL%/adainclude:/usr/lib/ada/adainclude/${PN}" >> ${LibEnv}
gnat_src_install
#specs
cd "${CommonInst}"
dodir "${AdalibSpecsDir}/${PN}"
insinto "${AdalibSpecsDir}/${PN}"
doins "${CommonInst}"/adainclude/*
#docs
cd "${S}"
dodoc ANNOUNCE AUTHORS README
cd "${CommonInst}"
cp -dPr doc/${Name}/* share/${PN}/examples/ "${D}/usr/share/doc/${PF}"
}