diff options
author | 2022-04-17 19:47:18 +0100 | |
---|---|---|
committer | 2022-04-17 19:59:37 +0100 | |
commit | 71beeceeceb63e24accc746ac20bf1a28c635358 (patch) | |
tree | 3cc5d91cb795ecf9f3d561015c1f1c0a452d368e /dev-libs/cdk | |
parent | dev-libs/aml: drop 0.2.0 (diff) | |
download | gentoo-71beeceeceb63e24accc746ac20bf1a28c635358.tar.gz gentoo-71beeceeceb63e24accc746ac20bf1a28c635358.tar.bz2 gentoo-71beeceeceb63e24accc746ac20bf1a28c635358.zip |
dev-libs/cdk: drop 5.0.20160131-r1
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-libs/cdk')
-rw-r--r-- | dev-libs/cdk/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/cdk/cdk-5.0.20160131-r1.ebuild | 46 |
2 files changed, 0 insertions, 47 deletions
diff --git a/dev-libs/cdk/Manifest b/dev-libs/cdk/Manifest index a92c0a1809ae..922f35793fb8 100644 --- a/dev-libs/cdk/Manifest +++ b/dev-libs/cdk/Manifest @@ -1,3 +1,2 @@ -DIST cdk-5.0-20160131.tgz 516298 BLAKE2B 5e899afea1f034a48e46fef073303d0069e14310194342094392da517fa47793a1ac3ac33774369842daa1966dc9a4ad7404046874bc9cae24ceaa98a3dd7c47 SHA512 f8f7fc5fec3c040cdbfc2a0d886e9d9d9d231e56ed69adae0b91e03243b5edd550c5435f973a93d4cf7ab723bd27b55712af75162c4bfd3ae28b3c16cd68f755 DIST cdk-5.0-20210324.tgz 548203 BLAKE2B 7a944f347bf30a6bf602b9ac61fa547c7b4aef073db54272e4a8d2bd7d83093888f2ca9e5ee9c2d067777472d2abb87cca42b2912b0491b81472cfce086640b8 SHA512 72d62307824708858ca4fb3865d332cc81e987d7ef685011cf127c8f77cee3e19fe9dd6a35009d4416769cb00f04e937ebaec686c61ca0ba58655f522a175a59 DIST cdk-5.0-20211216.tgz 552041 BLAKE2B ce82ac22d4ec2ed37079d3de52a4f93a4206e5228aa952a3e45294d260c1ffef7c363b2c290060cc909bb8ab4ae88cbedecf498db7bd0f13e2d2822d87d7e4fa SHA512 622e99681af8468aaf8638833d0821c743667fb9b41716fe16acb8e78e8a3d5ba4eb7aced0bc213697e120dcb6e96067d6b75d53531555c3e6d90e4961cb99aa diff --git a/dev-libs/cdk/cdk-5.0.20160131-r1.ebuild b/dev-libs/cdk/cdk-5.0.20160131-r1.ebuild deleted file mode 100644 index 637f6dcf8846..000000000000 --- a/dev-libs/cdk/cdk-5.0.20160131-r1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit versionator - -MY_P="${PN}-$(replace_version_separator 2 -)" -DESCRIPTION="A library of curses widgets" -HOMEPAGE="https://dickey.his.com/cdk/cdk.html https://github.com/ThomasDickey/cdk-snapshots" -SRC_URI="ftp://ftp.invisible-island.net/cdk/${MY_P}.tgz" - -LICENSE="BSD" -SLOT="0/6" # subslot = soname version -KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ia64 ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~x86-solaris" -IUSE="examples static-libs unicode" - -DEPEND="sys-libs/ncurses:=[unicode(+)?]" -RDEPEND="${DEPEND}" - -S=${WORKDIR}/${MY_P} - -PATCHES=( "${FILESDIR}"/${PN}-5.0.20120323-parallel-make.patch ) - -src_configure() { - econf \ - --with-libtool \ - --with-shared \ - --with-ncurses$(usex unicode "w" "") -} - -src_install() { - # parallel make installs duplicate libs - emake -j1 \ - DESTDIR="${ED}" \ - DOCUMENT_DIR="${ED}/usr/share/doc/${PF}" install - - if use examples ; then - for x in include c++ demos examples cli cli/utils cli/samples; do - docinto $x - find $x -maxdepth 1 -mindepth 1 -type f -print0 | xargs -0 dodoc - done - fi - - use static-libs || find "${ED}" \( -name '*.a' -or -name '*.la' \) -delete -} |