diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2010-11-04 09:44:28 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2010-11-04 09:44:28 +0000 |
commit | 03b80f1417bdabdb077a204586795662b1ca2a56 (patch) | |
tree | 14835441a662adc5358b6f93a77e2ed161b27b6f /dev-libs/libotf/libotf-0.9.12.ebuild | |
parent | Fix compilation of python module, fix support for zlib (diff) | |
download | gentoo-2-03b80f1417bdabdb077a204586795662b1ca2a56.tar.gz gentoo-2-03b80f1417bdabdb077a204586795662b1ca2a56.tar.bz2 gentoo-2-03b80f1417bdabdb077a204586795662b1ca2a56.zip |
Version bumped, bug #341911. Removed old versions.
(Portage version: 2.1.9.22/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libotf/libotf-0.9.12.ebuild')
-rw-r--r-- | dev-libs/libotf/libotf-0.9.12.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/dev-libs/libotf/libotf-0.9.12.ebuild b/dev-libs/libotf/libotf-0.9.12.ebuild new file mode 100644 index 000000000000..ac4b6c258546 --- /dev/null +++ b/dev-libs/libotf/libotf-0.9.12.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libotf/libotf-0.9.12.ebuild,v 1.1 2010/11/04 09:44:28 matsuu Exp $ + +inherit autotools + +DESCRIPTION="Library for handling OpenType fonts (OTF)" +HOMEPAGE="http://www.m17n.org/libotf/" +SRC_URI="http://www.m17n.org/libotf/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86" +IUSE="X" + +RDEPEND=">=media-libs/freetype-2.1 + X? ( + x11-libs/libXaw + x11-libs/libICE + )" + +DEPEND="${RDEPEND} + >=sys-apps/sed-4 + dev-util/pkgconfig" + +src_unpack() { + unpack ${A} + cd "${S}" + if ! use X ; then + sed -i -e '/^bin_PROGRAMS/s/otfview//' example/Makefile.am || die + eautoreconf + fi +} + +src_install() { + emake DESTDIR="${D}" install || die + + dodoc AUTHORS NEWS README ChangeLog +} |