From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 47CD013877A for ; Wed, 25 Jun 2014 05:05:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CC9E1E0894; Wed, 25 Jun 2014 05:05:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 159F4E08AD for ; Wed, 25 Jun 2014 05:05:48 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CDA4133FDEE for ; Wed, 25 Jun 2014 05:05:46 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2274) id 8D3822004E; Wed, 25 Jun 2014 05:05:45 +0000 (UTC) From: "Tim Harder (radhermit)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, radhermit@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/cdk: cdk-5.0.20140118.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: cdk-5.0.20140118.ebuild ChangeLog X-VCS-Directories: dev-libs/cdk X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140625050545.8D3822004E@flycatcher.gentoo.org> Date: Wed, 25 Jun 2014 05:05:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d63cced0-5600-458c-a638-2c0d42d8ecc0 X-Archives-Hash: 5d0a88e4b1bfadd46a720b043a6c5423 radhermit 14/06/25 05:05:45 Modified: ChangeLog Added: cdk-5.0.20140118.ebuild Log: Version bump. (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3) Revision Changes Path 1.87 dev-libs/cdk/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cdk/ChangeLog?rev=1.87&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cdk/ChangeLog?rev=1.87&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cdk/ChangeLog?r1=1.86&r2=1.87 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/cdk/ChangeLog,v retrieving revision 1.86 retrieving revision 1.87 diff -u -r1.86 -r1.87 --- ChangeLog 19 Mar 2014 15:25:26 -0000 1.86 +++ ChangeLog 25 Jun 2014 05:05:45 -0000 1.87 @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/cdk # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/cdk/ChangeLog,v 1.86 2014/03/19 15:25:26 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/cdk/ChangeLog,v 1.87 2014/06/25 05:05:45 radhermit Exp $ + +*cdk-5.0.20140118 (25 Jun 2014) + + 25 Jun 2014; Tim Harder +cdk-5.0.20140118.ebuild: + Version bump. 19 Mar 2014; Agostino Sarubbo cdk-5.0.20131107.ebuild: Stable for alpha, wrt bug #474162 1.1 dev-libs/cdk/cdk-5.0.20140118.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cdk/cdk-5.0.20140118.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cdk/cdk-5.0.20140118.ebuild?rev=1.1&content-type=text/plain Index: cdk-5.0.20140118.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/cdk/cdk-5.0.20140118.ebuild,v 1.1 2014/06/25 05:05:45 radhermit Exp $ 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 ~x86-freebsd ~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 }