summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2019-01-27 11:57:54 +0100
committerPacho Ramos <pacho@gentoo.org>2019-01-27 12:05:36 +0100
commit70d3f6e4420b5631b92f8e6dfb919bbe60a13f97 (patch)
tree30e8a594b6c537419d712d6187930da5e1c6fdd6 /dev-libs/cdk/cdk-5.0.20141106.ebuild
parentdev-lang/erlang: Drop old (diff)
downloadgentoo-70d3f6e4420b5631b92f8e6dfb919bbe60a13f97.tar.gz
gentoo-70d3f6e4420b5631b92f8e6dfb919bbe60a13f97.tar.bz2
gentoo-70d3f6e4420b5631b92f8e6dfb919bbe60a13f97.zip
dev-libs/cdk: Drop old
Package-Manager: Portage-2.3.58, Repoman-2.3.12 Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'dev-libs/cdk/cdk-5.0.20141106.ebuild')
-rw-r--r--dev-libs/cdk/cdk-5.0.20141106.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/dev-libs/cdk/cdk-5.0.20141106.ebuild b/dev-libs/cdk/cdk-5.0.20141106.ebuild
deleted file mode 100644
index b1cc6ecfcfda..000000000000
--- a/dev-libs/cdk/cdk-5.0.20141106.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils versionator
-
-MY_P="${PN}-$(replace_version_separator 2 -)"
-DESCRIPTION="A library of curses widgets"
-HOMEPAGE="http://dickey.his.com/cdk/cdk.html"
-SRC_URI="ftp://invisible-island.net/cdk/${MY_P}.tgz"
-
-LICENSE="BSD"
-SLOT="0/6" # subslot = soname version
-KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 ~s390 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="examples static-libs unicode"
-
-DEPEND=">=sys-libs/ncurses-5.2[unicode?]"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
- epatch "${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
-}