summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolic <jakov.smolic@sartura.hr>2021-01-20 11:12:49 +0100
committerDavid Seifert <soap@gentoo.org>2021-01-20 11:12:49 +0100
commit24ecaca010d1e1b582dfe1456bc89f16920d1168 (patch)
tree32cc55db9c070d22d34ecad89db3acfae3707b97 /net-libs/libisds
parentmedia-video/gxine: Remove old (diff)
downloadgentoo-24ecaca010d1e1b582dfe1456bc89f16920d1168.tar.gz
gentoo-24ecaca010d1e1b582dfe1456bc89f16920d1168.tar.bz2
gentoo-24ecaca010d1e1b582dfe1456bc89f16920d1168.zip
net-libs/libisds: Remove old
Bug: https://bugs.gentoo.org/763852 Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr> Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'net-libs/libisds')
-rw-r--r--net-libs/libisds/Manifest1
-rw-r--r--net-libs/libisds/libisds-0.10.8.ebuild55
2 files changed, 0 insertions, 56 deletions
diff --git a/net-libs/libisds/Manifest b/net-libs/libisds/Manifest
index 12b9bb9ee5b0..3314dc794a8b 100644
--- a/net-libs/libisds/Manifest
+++ b/net-libs/libisds/Manifest
@@ -1,2 +1 @@
-DIST libisds-0.10.8.tar.xz 726040 BLAKE2B e3509202cb95e6e2bd0a6e7592c3d1d649ecb47806823265e5e12fa3a79a5daff9d249b2f0642d13aaebf1c64243690d06c9387fcb3a166f4b989c19f337c059 SHA512 648ba30c3156ece329d663d0d6e649319d8d104de97ca1946d94c24205c44189be08cb0c573df1f5a889fba487f2d088ac472c3f922a1920e172dda0c592b41e
DIST libisds-0.11.1.tar.xz 741992 BLAKE2B e1895450b1148c63a365a569fcdfa0d3cf3f2cdd011da6dbe92ea876aa1a9082470f3c7efc5757766df7e870559dd4ba62b59973e22d47401ef575e0fd412ec1 SHA512 8baf126ebf49c5eae6aa7b8f872ad90882a9a5088c8a33ffb415983eaf1ffc1df489f44ae6ba14a69a94bc4f79f455c7937276885afaa29e61c5c67408f7080a
diff --git a/net-libs/libisds/libisds-0.10.8.ebuild b/net-libs/libisds/libisds-0.10.8.ebuild
deleted file mode 100644
index f2a22ddd2c9c..000000000000
--- a/net-libs/libisds/libisds-0.10.8.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Client library for accessing ISDS Soap services"
-HOMEPAGE="http://xpisar.wz.cz/libisds/"
-SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz"
-KEYWORDS="amd64 ~mips x86"
-
-LICENSE="LGPL-3"
-SLOT="0"
-IUSE="+curl debug nls openssl static-libs test"
-RESTRICT="!test? ( test )"
-
-COMMON_DEPEND="
- dev-libs/expat
- dev-libs/libxml2
- curl? ( net-misc/curl[ssl] )
- openssl? ( dev-libs/openssl:= )
- !openssl? (
- app-crypt/gpgme
- dev-libs/libgcrypt:=
- )
-"
-DEPEND="${COMMON_DEPEND}
- virtual/pkgconfig
- nls? ( sys-devel/gettext )
- test? ( >=net-libs/gnutls-2.12.0 )
-"
-RDEPEND="${COMMON_DEPEND}
- !openssl? ( >=app-crypt/gnupg-2 )
-"
-
-DOCS=( NEWS README AUTHORS ChangeLog )
-
-src_configure() {
- local myeconfargs=(
- --disable-fatalwarnings
- $(use_with curl libcurl)
- $(use_enable curl curlreauthorizationbug)
- $(use_enable debug)
- $(use_enable nls)
- $(use_enable openssl openssl-backend)
- $(use_enable static-libs static)
- $(use_enable test)
- )
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
-
- find "${ED}/" \( -name "*.a" -o -name "*.la" \) -delete || die
-}