diff options
author | 2019-02-16 10:23:27 +0100 | |
---|---|---|
committer | 2019-02-16 10:24:29 +0100 | |
commit | d36ce9a706e83d4dc0061ffcacb0be388d9840c2 (patch) | |
tree | 870e929cde316e509cf9084450386f35a154ae27 /dev-libs/libdnet/libdnet-1.12-r1.ebuild | |
parent | x11-misc/trayer: Maintain (diff) | |
download | gentoo-d36ce9a706e83d4dc0061ffcacb0be388d9840c2.tar.gz gentoo-d36ce9a706e83d4dc0061ffcacb0be388d9840c2.tar.bz2 gentoo-d36ce9a706e83d4dc0061ffcacb0be388d9840c2.zip |
dev-libs/libdnet: Switch SRC_URI to GH
Package-Manager: Portage-2.3.60, Repoman-2.3.12
Fixes: https://bugs.gentoo.org/678078
Signed-off-by: Jeroen Roovers <jer@gentoo.org>
Diffstat (limited to 'dev-libs/libdnet/libdnet-1.12-r1.ebuild')
-rw-r--r-- | dev-libs/libdnet/libdnet-1.12-r1.ebuild | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/dev-libs/libdnet/libdnet-1.12-r1.ebuild b/dev-libs/libdnet/libdnet-1.12-r1.ebuild new file mode 100644 index 000000000000..37fb38166b21 --- /dev/null +++ b/dev-libs/libdnet/libdnet-1.12-r1.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +AT_M4DIR="config" +PYTHON_COMPAT=( python2_7 ) +DISTUTILS_OPTIONAL=1 +inherit autotools distutils-r1 + +DESCRIPTION="simplified, portable interface to several low-level networking routines" +HOMEPAGE="https://github.com/dugsong/libdnet" +SRC_URI=" + ${HOMEPAGE}/archive/${P}.tar.gz + ipv6? ( https://fragroute-ipv6.googlecode.com/files/${P}.ipv6-1.patch.gz ) +" +LICENSE="LGPL-2" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="ipv6 python static-libs test" + +DEPEND=" + python? ( ${PYTHON_DEPS} ) +" +RDEPEND=" + ${DEPEND} +" +RESTRICT="test" +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" +DOCS=( README THANKS TODO ) +S=${WORKDIR}/${PN}-${P} + +src_prepare() { + # Useless copy + rm -r trunk/ || die + + sed -i \ + -e 's/libcheck.a/libcheck.so/g' \ + -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' \ + configure.in || die + sed -i -e 's|-L@libdir@ ||g' dnet-config.in || die + use ipv6 && eapply "${WORKDIR}/${P}.ipv6-1.patch" + sed -i -e '/^SUBDIRS/s|python||g' Makefile.am || die + eautoreconf + + if use python; then + cd python + distutils-r1_src_prepare + fi + + eapply_user +} + +src_configure() { + econf \ + $(use_with python) \ + $(use_enable static-libs static) +} + +src_compile() { + default + if use python; then + cd python + distutils-r1_src_compile + fi +} + +src_install() { + default + if use python; then + cd python + unset DOCS + distutils-r1_src_install + fi + find "${D}" -name '*.la' -delete || die +} |