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 5BC861396D2 for ; Fri, 11 Aug 2017 13:21:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3CCDC1FC047; Fri, 11 Aug 2017 13:21:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 180391FC047 for ; Fri, 11 Aug 2017 13:21:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2F68034179D for ; Fri, 11 Aug 2017 13:21:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9A58375FB for ; Fri, 11 Aug 2017 13:21:01 +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: <1502457637.c9728566ed3c5e2f9e4670bc46893e9d43c4d214.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libtiger/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libtiger/libtiger-0.3.4-r1.ebuild X-VCS-Directories: media-libs/libtiger/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c9728566ed3c5e2f9e4670bc46893e9d43c4d214 X-VCS-Branch: master Date: Fri, 11 Aug 2017 13:21:01 +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: 136ab42f-5248-4653-ab41-1dcdfcfd8018 X-Archives-Hash: 1a7efdd4eb96c0aa9dfee5c33adf5ae9 commit: c9728566ed3c5e2f9e4670bc46893e9d43c4d214 Author: Michał Górny gentoo org> AuthorDate: Wed Aug 9 05:18:28 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Aug 11 13:20:37 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9728566 media-libs/libtiger: Modernize to EAPI=6 media-libs/libtiger/libtiger-0.3.4-r1.ebuild | 35 ++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild new file mode 100644 index 00000000000..27909edac9e --- /dev/null +++ b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit libtool + +DESCRIPTION="A rendering library for Kate streams using Pango and Cairo" +HOMEPAGE="https://code.google.com/p/libtiger/" +SRC_URI="https://libtiger.googlecode.com/files/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" +IUSE="doc" + +RDEPEND="x11-libs/pango + >=media-libs/libkate-0.2.0 + x11-libs/cairo" +DEPEND="${RDEPEND} + virtual/pkgconfig + doc? ( app-doc/doxygen )" + +src_prepare() { + default + elibtoolize +} + +src_configure() { + econf $(use_enable doc) +} + +src_install() { + default + find "${ED}" -name '*.la' -delete || die +}