diff options
author | Erik Mackdanz <stasibear@gentoo.org> | 2024-03-16 09:58:13 -0500 |
---|---|---|
committer | Erik Mackdanz <stasibear@gentoo.org> | 2024-03-16 10:09:17 -0500 |
commit | d04e803caa621ab09b87278daa6e4ff142794a85 (patch) | |
tree | b09eb27ca269517ce0d889955f227a66d10013d6 | |
parent | net-libs/libnpupnp: add 6.1.1 (diff) | |
download | gentoo-d04e803caa621ab09b87278daa6e4ff142794a85.tar.gz gentoo-d04e803caa621ab09b87278daa6e4ff142794a85.tar.bz2 gentoo-d04e803caa621ab09b87278daa6e4ff142794a85.zip |
net-libs/libupnpp: add 0.26.3
Signed-off-by: Erik Mackdanz <stasibear@gentoo.org>
-rw-r--r-- | net-libs/libupnpp/Manifest | 1 | ||||
-rw-r--r-- | net-libs/libupnpp/libupnpp-0.26.3.ebuild | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/net-libs/libupnpp/Manifest b/net-libs/libupnpp/Manifest index 0e097100c8ee..f77bed7e5c92 100644 --- a/net-libs/libupnpp/Manifest +++ b/net-libs/libupnpp/Manifest @@ -1 +1,2 @@ DIST libupnpp-0.23.0.tar.gz 482952 BLAKE2B 1e4615367f311c47ac99e70d926086585e4e06c7c245cf4e2b463a5c47ca71286c287829f46305202cb24ba4add138aa5fd2864387253e478defa2d083e5526a SHA512 56a90635144a074680b20b28bc55d2258e25730d72fc99cab849e6f343f62ba2646c1510ad3dbfc2733895eba5ae9dd0ade8478f2debe4425781557ecd515b0e +DIST libupnpp-0.26.3.tar.gz 485173 BLAKE2B 9afc516118410bd5ddffe8f59848f25f5fc1da3247127b0fee2d1d6cb18c21247c14628e0e82d1d5ecc640d217a5b463bb692e39864740966a83025801173f9b SHA512 78f9f3fabfbe3f79dc75153e95dc12e6a45064ee853ba19d8e0354baa37e7a2f673d4bc27b73196d91053f976fca7d5837b60de485a48150f6d20217ecedfc78 diff --git a/net-libs/libupnpp/libupnpp-0.26.3.ebuild b/net-libs/libupnpp/libupnpp-0.26.3.ebuild new file mode 100644 index 000000000000..a49d443e93fb --- /dev/null +++ b/net-libs/libupnpp/libupnpp-0.26.3.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +DESCRIPTION="The libupnpp C++ library wraps libupnp for easier use by upmpdcli and upplay" +HOMEPAGE="https://www.lesbonscomptes.com/upmpdcli" +SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=" + dev-libs/expat + net-libs/libnpupnp + net-misc/curl +" +RDEPEND="${DEPEND}" + +src_install() { + default_src_install + find "${ED}" -name '*.la' -delete || die "Couldn't delete .la files" +} |