Files
guru/dev-ml/pci/pci-1.0.1.ebuild
Alessandro Barbieri 2fa221124d dev-ml/pci: update HOMEPAGE
Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
2022-04-16 20:27:38 +02:00

63 lines
1.1 KiB
Bash

# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit findlib opam
MY_P="ocaml-${P}"
DESCRIPTION="OCaml bindings to libpci using Ctypes"
HOMEPAGE="
https://github.com/simonjbeaumont/ocaml-pci
https://opam.ocaml.org/packages/pci/
"
SRC_URI="https://github.com/simonjbeaumont/ocaml-pci/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_P}"
LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="test"
RDEPEND="
sys-apps/pciutils
dev-ml/ocaml-ctypes:=
"
DEPEND="
${RDEPEND}
test? ( dev-ml/ounit2 )
"
RESTRICT="!test? ( test )"
PATCHES="${FILESDIR}/${P}-ounit2.patch"
OPAM_FILE=opam
src_configure() {
myconf=(
$(usex test '--enable-tests' '')
--prefix "/usr"
--destdir "${D}"
--libdir "/usr/$(get_libdir)"
--docdir "/usr/share/doc/${PF}"
--htmldir "/usr/share/doc/${PF}/html"
--override debug false
--override is_native $(usex ocamlopt true false)
)
./configure "${myconf[@]}" || die
}
src_compile() {
emake
use test && emake test
}
src_install() {
findlib_src_preinst
emake install
}
src_test() {
opam_src_test
}