From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0D67F139695 for ; Sat, 18 Feb 2017 19:47:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5C47621C10A; Sat, 18 Feb 2017 19:47:38 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 39DB121C102 for ; Sat, 18 Feb 2017 19:47:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 115B23409C1 for ; Sat, 18 Feb 2017 19:47:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 79FAB4C6E for ; Sat, 18 Feb 2017 19:47:35 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1487447247.8bdf73d93b1371bb9629de47984c776e66da03c1.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libiptcdata/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libiptcdata/libiptcdata-1.0.4.ebuild X-VCS-Directories: media-libs/libiptcdata/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 8bdf73d93b1371bb9629de47984c776e66da03c1 X-VCS-Branch: master Date: Sat, 18 Feb 2017 19:47:35 +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: d0bf059b-c15f-4a43-ab11-32d89d844385 X-Archives-Hash: 86e35b2994a7e6f310280cc8da0ecc4f commit: 8bdf73d93b1371bb9629de47984c776e66da03c1 Author: Michał Górny gentoo org> AuthorDate: Sat Feb 18 19:27:37 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Feb 18 19:47:27 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bdf73d9 media-libs/libiptcdata: Clean old version up media-libs/libiptcdata/libiptcdata-1.0.4.ebuild | 78 ------------------------- 1 file changed, 78 deletions(-) diff --git a/media-libs/libiptcdata/libiptcdata-1.0.4.ebuild b/media-libs/libiptcdata/libiptcdata-1.0.4.ebuild deleted file mode 100644 index 391569f4f0..0000000000 --- a/media-libs/libiptcdata/libiptcdata-1.0.4.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="3" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.* 2.7-pypy-* *-jython" - -inherit eutils python - -DESCRIPTION="library for manipulating the International Press Telecommunications -Council (IPTC) metadata" -HOMEPAGE="http://libiptcdata.sourceforge.net" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 sparc x86" -IUSE="doc examples nls python" - -RDEPEND="python? ( =dev-lang/python-2* ) - nls? ( virtual/libintl )" -DEPEND="${RDEPEND} - nls? ( >=sys-devel/gettext-0.13.1 ) - doc? ( >=dev-util/gtk-doc-1 )" - -pkg_setup() { - if use python; then - python_pkg_setup - fi -} - -src_prepare() { - # Python bindings are built/tested/installed manually. - sed -e '/SUBDIRS =/s/$(MAYBE_PYTHONLIB)//' -i Makefile.in || die "sed failed" -} - -src_configure () { - econf \ - $(use_enable nls) \ - $(use_enable python) \ - $(use_enable doc gtk-doc) -} - -src_compile() { - default - - if use python; then - python_copy_sources python - building() { - emake PYTHON_CPPFLAGS=-I$(python_get_includedir) \ - pyexecdir=$(python_get_sitedir) - } - python_execute_function -s --source-dir python building - fi -} - -src_install () { - emake DESTDIR="${D}" install || die "emake install failed." - - if use python; then - installation() { - emake DESTDIR="${D}" pyexecdir=$(python_get_sitedir) install - } - python_execute_function -s --source-dir python installation - python_clean_installation_image - fi - - dodoc AUTHORS ChangeLog NEWS README TODO || die "dodoc failed." - - if use examples; then - insinto /usr/share/doc/${PF}/python - doins python/README || die "doins failed" - doins -r python/examples || die "doins 2 failed" - fi - - find "${D}" -name '*.la' -delete || die "failed to remove *.la files" -}