diff options
author | Pacho Ramos <pacho@gentoo.org> | 2024-11-08 20:52:53 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2024-11-08 20:55:21 +0100 |
commit | ac53a65fdd59d972b66d26ff9e90295c4300482a (patch) | |
tree | dd413c3253029f97d7a6d34bd34a45fcc68cf125 /net-libs | |
parent | dev-libs/libpeas: Fix docs installation (diff) | |
download | gentoo-ac53a65fdd59d972b66d26ff9e90295c4300482a.tar.gz gentoo-ac53a65fdd59d972b66d26ff9e90295c4300482a.tar.bz2 gentoo-ac53a65fdd59d972b66d26ff9e90295c4300482a.zip |
net-libs/libndp: add 1.9
Closes: https://bugs.gentoo.org/940183
Bug: https://bugs.gentoo.org/922613
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/libndp/Manifest | 1 | ||||
-rw-r--r-- | net-libs/libndp/libndp-1.9.ebuild | 25 |
2 files changed, 26 insertions, 0 deletions
diff --git a/net-libs/libndp/Manifest b/net-libs/libndp/Manifest index 4b564f5e8d00..f66e78c56f52 100644 --- a/net-libs/libndp/Manifest +++ b/net-libs/libndp/Manifest @@ -1 +1,2 @@ DIST libndp-1.8.tar.gz 364669 BLAKE2B 29fa41b40300b273d50aed4f1fe4a1c552023aa83d6f4b1bd6033cd0a41618b453bd1ec7ac5223fe7c123649f389587e89e635cb988b392f1af04cc1d6b79002 SHA512 bce17095f01eb9df6601a2ff0597b0373f4b0005b1edac8c085e4c9d54f9cd18f08faf1604624e0e0992be66fa6f22a71106af46bc73c9e326663c7cf0c5a7fd +DIST libndp-1.9.tar.gz 374953 BLAKE2B 5f32640b57ae01cf4ecf59f41042392945497a66f73c44d8276449e4a9b99e87ed9d54e90a7a568354fba44198614214162c6d693e5bae6bd9b04bd063a55291 SHA512 30e58bd448ee71a792aa6999b4d3ae50ed510be86ecc0a05ae8e9e75bef51b0cfad0335099524a22ac9adc90d5b7c8c34d646f483d3cd5f2026e870d3147ef5f diff --git a/net-libs/libndp/libndp-1.9.ebuild b/net-libs/libndp/libndp-1.9.ebuild new file mode 100644 index 000000000000..f56b99c239c1 --- /dev/null +++ b/net-libs/libndp/libndp-1.9.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit gnome2 multilib-minimal + +DESCRIPTION="Library for Neighbor Discovery Protocol" +HOMEPAGE="http://libndp.org https://github.com/jpirko/libndp" +SRC_URI="http://libndp.org/files/${P}.tar.gz" + +LICENSE="LGPL-2.1+" +SLOT="0" + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" + +multilib_src_configure() { + ECONF_SOURCE="${S}" \ + gnome2_src_configure \ + --disable-static \ + --enable-logging +} + +multilib_src_install() { + gnome2_src_install +} |