mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-25 00:19:49 +02:00
67 lines
1.5 KiB
Bash
67 lines
1.5 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="Stub code generator for OCaml"
|
|
HOMEPAGE="https://github.com/xavierleroy/camlidl"
|
|
SRC_URI="https://github.com/xavierleroy/${PN}/archive/${PN}$(ver_rs 0-1 '').tar.gz"
|
|
|
|
S="${WORKDIR}"/${PN}-${PN}$(ver_rs 0-1 '')
|
|
|
|
LICENSE="QPL-1.0 LGPL-2"
|
|
SLOT="0/${PV}"
|
|
KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux"
|
|
|
|
DEPEND="dev-lang/ocaml:=[ocamlopt]"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/nowarn.patch"
|
|
"${FILESDIR}/${P}-destdir.patch"
|
|
)
|
|
|
|
src_prepare() {
|
|
sed -i \
|
|
-e "s|ar rc|$(tc-getAR) rc|g" \
|
|
runtime/Makefile.unix \
|
|
|| die
|
|
default
|
|
}
|
|
|
|
src_compile() {
|
|
# Use the UNIX makefile
|
|
libdir=$(ocamlc -where || die)
|
|
|
|
sed -i -e "s|OCAMLLIB=.*|OCAMLLIB=${libdir}|" config/Makefile.unix || die
|
|
sed -i -e "s|BINDIR=.*|BINDIR=${EPREFIX}/usr/bin|" config/Makefile.unix || die
|
|
ln -s Makefile.unix config/Makefile || die
|
|
|
|
# Make
|
|
emake depend CPP="$(tc-getPROG CPP cpp)"
|
|
emake -j1 RANLIB="$(tc-getRANLIB)"
|
|
}
|
|
|
|
src_test() {
|
|
einfo "Running tests..."
|
|
cd tests || die
|
|
emake CCPP="$(tc-getCXX)" CC="$(tc-getCC)"
|
|
}
|
|
|
|
src_install() {
|
|
libdir=$(ocamlc -where || die)
|
|
dodir "${libdir#${EPREFIX}}"/caml
|
|
|
|
dodir /usr/bin
|
|
dodir /usr/$(get_libdir)/ocaml/stublibs
|
|
# Install
|
|
emake DESTDIR="${D}" BINDIR="${ED}/usr/bin" RANLIB="$(tc-getRANLIB)" install
|
|
|
|
# Add package header
|
|
sed -e "s/@VERSION/${P}/g" "${FILESDIR}/META.camlidl" > "${D}${libdir}/META.camlidl" || die
|
|
|
|
# Documentation
|
|
dodoc README Changes
|
|
}
|