commit: c9728566ed3c5e2f9e4670bc46893e9d43c4d214 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Wed Aug 9 05:18:28 2017 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> 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 +}
