diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2017-01-04 15:06:19 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2017-01-04 15:06:37 +0100 |
commit | bb5f6eb3e0febc90077db51ecc3e3eb4242c2d68 (patch) | |
tree | 51118309a31b364dba4923bf9255d9c0cfef026c /net-libs/libisds | |
parent | net-libs/libisds: Bumped live ebuild to EAPI-6. (diff) | |
download | gentoo-bb5f6eb3e0febc90077db51ecc3e3eb4242c2d68.tar.gz gentoo-bb5f6eb3e0febc90077db51ecc3e3eb4242c2d68.tar.bz2 gentoo-bb5f6eb3e0febc90077db51ecc3e3eb4242c2d68.zip |
net-libs/libisds: Removed old.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'net-libs/libisds')
-rw-r--r-- | net-libs/libisds/Manifest | 1 | ||||
-rw-r--r-- | net-libs/libisds/libisds-0.7.ebuild | 62 |
2 files changed, 0 insertions, 63 deletions
diff --git a/net-libs/libisds/Manifest b/net-libs/libisds/Manifest index 352b8f1f25b3..63b7e27a2593 100644 --- a/net-libs/libisds/Manifest +++ b/net-libs/libisds/Manifest @@ -1,3 +1,2 @@ DIST libisds-0.10.6.tar.xz 724120 SHA256 49ca70acef5dd5d092a03643f4d2f96ff8250b135eb55558a5f62fa1fd3f8a8a SHA512 602c4e7f047dedff131cda941d02ea41fca7b8ea80eb668ab8f7ab2626a013ddc1a86f1e2c7b5759adf266c7c22c515284e6d4fdd9fd594ad310bed1be6016f4 WHIRLPOOL 2968e6aee47c57c87c9d7a3a94aa0b4e1a0aae41cb2949ce39e4a65eb47c0099ac7cdc96832deaa0b99f71aa4e4e32f94aa7a3b6a6aa70c2c1dff9f1ab53c4d1 DIST libisds-0.10.tar.xz 721260 SHA256 f2cb8bddbee79070bce599556ebbde42cacac1bc3ee405ab74c3b18a3dc3996f SHA512 9b317d2a4c4e957151b0d397119460a249edb3f1d76c089fa9628551dc4f858d7c5e82bc5b363017c1193ea6a764a3aa6685f4b76fdf2f1c6c5f72436d9231cd WHIRLPOOL cb7ea1c23c15c9779ba98b15ccb3df90894135963f519603ee219f0b4db14bda3c7b11b6f8e495977fd689b47cfe45628c261cac7ba05c081e8a24efd895e19c -DIST libisds-0.7.tar.xz 685388 SHA256 db57ca7d8bdd306dfe5ec86d22afd36cb1b859a9e72bc3293d982842cb796701 SHA512 c250d7967aee997fbbb97ab077ff0d83cbf3a5aca4cfe7885453a1e25e17e3da0c119424787cb3010febea6076f62e9150ea8d91f6d955708023df25e5b5690b WHIRLPOOL 6b7c4b22411296d8c6b3a8c222da6404c915635dc7cb79d97f36123b0e033a337b93b0acb62dacff394a2d439d1622d078c6076cf34aa2f1838e4b57f7343c2a diff --git a/net-libs/libisds/libisds-0.7.ebuild b/net-libs/libisds/libisds-0.7.ebuild deleted file mode 100644 index ab818524b156..000000000000 --- a/net-libs/libisds/libisds-0.7.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -[[ ${PV} = 9999* ]] && inherit git-2 autotools -EGIT_REPO_URI="git://repo.or.cz/${PN}.git" -inherit base eutils - -DESCRIPTION="Client library for accessing ISDS Soap services" -HOMEPAGE="http://xpisar.wz.cz/libisds/" -if [[ ${PV} = 9999* ]]; then - SRC_URI="" - KEYWORDS="" -else - SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz" - KEYWORDS="~amd64 ~mips ~x86" -fi - -LICENSE="LGPL-3" -SLOT="0" -IUSE="+curl debug nls static-libs test" - -COMMON_DEPEND=" - app-crypt/gpgme - dev-libs/expat - dev-libs/libgcrypt:0 - dev-libs/libxml2 - curl? ( net-misc/curl[ssl] ) -" -DEPEND="${COMMON_DEPEND} - virtual/pkgconfig - nls? ( sys-devel/gettext ) -" -RDEPEND="${COMMON_DEPEND} - >=app-crypt/gnupg-2 -" - -DOCS=( NEWS README AUTHORS ChangeLog ) - -src_prepare() { - base_src_prepare - [[ ${PV} = 9999* ]] && eautoreconf -} - -src_configure() { - econf \ - --disable-fatalwarnings \ - $(use_with curl libcurl) \ - $(use_enable curl curlreauthorizationbug) \ - $(use_enable debug) \ - $(use_enable nls) \ - $(use_enable static-libs static) \ - $(use_enable test) -} - -src_install() { - base_src_install - - prune_libtool_files --all -} |