diff options
author | Tim Harder <radhermit@gentoo.org> | 2016-08-18 23:10:39 -0400 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2016-08-18 23:12:41 -0400 |
commit | f483df5353eeb7f0db8873232d9925bbb34ceb56 (patch) | |
tree | 6d0660f3d7b78341ff63f69768aa8336479796d3 /dev-libs/cdk/cdk-5.0.20150928.ebuild | |
parent | media-libs/libmatroska: version bump to 1.4.5 (diff) | |
download | gentoo-f483df5353eeb7f0db8873232d9925bbb34ceb56.tar.gz gentoo-f483df5353eeb7f0db8873232d9925bbb34ceb56.tar.bz2 gentoo-f483df5353eeb7f0db8873232d9925bbb34ceb56.zip |
dev-libs/cdk: version bump to 5.0.20150928
Diffstat (limited to 'dev-libs/cdk/cdk-5.0.20150928.ebuild')
-rw-r--r-- | dev-libs/cdk/cdk-5.0.20150928.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/dev-libs/cdk/cdk-5.0.20150928.ebuild b/dev-libs/cdk/cdk-5.0.20150928.ebuild new file mode 100644 index 000000000000..e5e68025f66a --- /dev/null +++ b/dev-libs/cdk/cdk-5.0.20150928.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit 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 ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris" +IUSE="examples static-libs unicode" + +DEPEND=">=sys-libs/ncurses-5.2:0=[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 +} |