summaryrefslogtreecommitdiff
path: root/dev-ml/camlidl/camlidl-1.12.ebuild
diff options
context:
space:
mode:
authorAlfredo Tupone <tupone@gentoo.org>2024-06-16 15:55:13 +0200
committerAlfredo Tupone <tupone@gentoo.org>2024-06-16 15:56:59 +0200
commit6d6bf4f55b3539760b02ee05bc223b92e88e42c7 (patch)
treef8a75b96d1e2630cf8f881b6b9a3130c68c0c0b4 /dev-ml/camlidl/camlidl-1.12.ebuild
parent6ce6247b769ddccc2e5d9067e4b9f3974d9580a3 (diff)
downloadgentoo-6d6bf4f55b3539760b02ee05bc223b92e88e42c7.tar.gz
gentoo-6d6bf4f55b3539760b02ee05bc223b92e88e42c7.tar.bz2
gentoo-6d6bf4f55b3539760b02ee05bc223b92e88e42c7.zip
dev-ml/camlidl: add 1.12
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'dev-ml/camlidl/camlidl-1.12.ebuild')
-rw-r--r--dev-ml/camlidl/camlidl-1.12.ebuild66
1 files changed, 66 insertions, 0 deletions
diff --git a/dev-ml/camlidl/camlidl-1.12.ebuild b/dev-ml/camlidl/camlidl-1.12.ebuild
new file mode 100644
index 000000000000..949d6d9386a7
--- /dev/null
+++ b/dev-ml/camlidl/camlidl-1.12.ebuild
@@ -0,0 +1,66 @@
+# 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"
+)
+
+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 BINDIR="${ED}/usr/bin" OCAMLLIB="${D}${libdir}" 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
+}