diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2019-02-14 14:30:47 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2019-02-14 14:32:09 +0100 |
commit | 157b51e7a897770149d1e00c931476596dfa04cf (patch) | |
tree | 99dc0a2fb608df55ccb104cf235851f175487869 /net-fs/libnfs/libnfs-4.0.0.ebuild | |
parent | app-emulation/containerd: Version bump to 1.2.4 (diff) | |
download | gentoo-157b51e7a897770149d1e00c931476596dfa04cf.tar.gz gentoo-157b51e7a897770149d1e00c931476596dfa04cf.tar.bz2 gentoo-157b51e7a897770149d1e00c931476596dfa04cf.zip |
net-fs/libnfs: Bump to version 4.0.0
Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'net-fs/libnfs/libnfs-4.0.0.ebuild')
-rw-r--r-- | net-fs/libnfs/libnfs-4.0.0.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/net-fs/libnfs/libnfs-4.0.0.ebuild b/net-fs/libnfs/libnfs-4.0.0.ebuild new file mode 100644 index 000000000000..66c1685f1207 --- /dev/null +++ b/net-fs/libnfs/libnfs-4.0.0.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools +if [[ ${PV} == "9999" ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/sahlberg/${PN}.git" +else + SRC_URI="https://github.com/sahlberg/${PN}/archive/${P}.tar.gz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~x86" + S="${WORKDIR}/${PN}-${P}" +fi + +DESCRIPTION="Client library for accessing NFS shares over a network" +HOMEPAGE="https://github.com/sahlberg/libnfs" + +LICENSE="LGPL-2.1 GPL-3" +SLOT="0/13" # sub-slot matches SONAME major +IUSE="examples static-libs utils" + +RDEPEND="" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + local myeconfargs=( + $(use_enable static-libs static) + $(use_enable utils) + ) + econf "${myeconfargs[@]}" +} + +src_install() { + default + if use examples; then + # --enable-examples configure switch just compiles them + # better install sources instead + exeinto /usr/share/doc/${PF}/examples/ + for program in $(grep PROGRAMS examples/Makefile.am | cut -d= -f2); do + doexe examples/${program}.c + done + fi + find "${ED}" -name "*.la" -delete || die +} |