diff options
author | Erik Mackdanz <stasibear@gentoo.org> | 2023-07-02 12:01:15 -0500 |
---|---|---|
committer | Erik Mackdanz <stasibear@gentoo.org> | 2023-07-02 12:01:23 -0500 |
commit | 03b934a856a57810619cbefed0465cfac55ed544 (patch) | |
tree | 78b5cdad242ad58cbcae9d7435bdee5562575df5 /net-libs/libupnpp | |
parent | profiles: unmask nss-3.90, version removed from the tree (diff) | |
download | gentoo-03b934a856a57810619cbefed0465cfac55ed544.tar.gz gentoo-03b934a856a57810619cbefed0465cfac55ed544.tar.bz2 gentoo-03b934a856a57810619cbefed0465cfac55ed544.zip |
net-libs/libupnpp: add 0.23.0
Signed-off-by: Erik Mackdanz <stasibear@gentoo.org>
Diffstat (limited to 'net-libs/libupnpp')
-rw-r--r-- | net-libs/libupnpp/Manifest | 1 | ||||
-rw-r--r-- | net-libs/libupnpp/libupnpp-0.23.0.ebuild | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/net-libs/libupnpp/Manifest b/net-libs/libupnpp/Manifest index 03aa414e682b..d64a65bc8c42 100644 --- a/net-libs/libupnpp/Manifest +++ b/net-libs/libupnpp/Manifest @@ -1,2 +1,3 @@ DIST libupnpp-0.22.4.tar.gz 481758 BLAKE2B 41da0dc744e0cddd2d322de297a87c50d975871dcc2b3c22e0381e044ea40787834442161c9bae8c2c3c89226aff7a264e172dedf3c107a8945308f915971785 SHA512 ab97a8a5903e43a138b59c9f5805b85fee07da8e73a1b205c5e57688334f3719f84b3483e6bdde461d9b201f064c4afba0f319989627939e6c9f9d6acef84f31 DIST libupnpp-0.22.5.tar.gz 482678 BLAKE2B b4fd760666ffe6d75ca3ae5866eda8627304a0e390145f2fe3f0ab9e168bd2e6a97d596e119aea75fd33fb20525816898f00ab14f78c73e8e673b76a5ddba268 SHA512 118347f5c644daf4a044aca441c2636cc5791cee5a33f0fc97e9101e1de0d8bdac2bc85be714343ffcc2c981a02aac59aec920dfcf37d6a24fa9d17215156bc8 +DIST libupnpp-0.23.0.tar.gz 482952 BLAKE2B 1e4615367f311c47ac99e70d926086585e4e06c7c245cf4e2b463a5c47ca71286c287829f46305202cb24ba4add138aa5fd2864387253e478defa2d083e5526a SHA512 56a90635144a074680b20b28bc55d2258e25730d72fc99cab849e6f343f62ba2646c1510ad3dbfc2733895eba5ae9dd0ade8478f2debe4425781557ecd515b0e diff --git a/net-libs/libupnpp/libupnpp-0.23.0.ebuild b/net-libs/libupnpp/libupnpp-0.23.0.ebuild new file mode 100644 index 000000000000..b05822c3f097 --- /dev/null +++ b/net-libs/libupnpp/libupnpp-0.23.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2023 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" +} |