You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/libotf/libotf-0.9.9.ebuild

40 lines
892 B

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libotf/libotf-0.9.9.ebuild,v 1.3 2012/11/14 14:13:40 jlec 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 ~amd64-linux ~x86-linux"
IUSE="X"
RDEPEND=">=media-libs/freetype-2.1
X? (
x11-libs/libXaw
x11-libs/libICE
)"
DEPEND="${RDEPEND}
>=sys-apps/sed-4
virtual/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
}