# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libmatchbox/libmatchbox-1.9-r1.ebuild,v 1.5 2012/06/04 00:20:42 xmw Exp $ EAPI=4 inherit eutils libtool DESCRIPTION="The Matchbox Library." HOMEPAGE="http://matchbox-project.org/" SRC_URI="http://matchbox-project.org/sources/${PN}/${PV}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ~arm ~hppa ~mips ppc x86" IUSE="debug doc jpeg pango png static-libs test truetype X xsettings" RDEPEND="x11-libs/libXext truetype? ( x11-libs/libXft ) pango? ( x11-libs/pango ) jpeg? ( virtual/jpeg ) png? ( media-libs/libpng ) xsettings? ( x11-libs/libxsettings-client )" DEPEND="${RDEPEND} doc? ( app-doc/doxygen ) test? ( dev-libs/check )" # Test suite broken, missing files and such. RESTRICT="test" DOCS=( AUTHORS ChangeLog NEWS README ) pkg_setup() { # Bug #138135 if use truetype && use pango; then ewarn "You have both the truetype and pango USE flags set, pango" ewarn "overrides and disables the XFT support truetype enables." ewarn "If this isn't what you intended you should stop the build!" fi } src_prepare() { epatch "${FILESDIR}"/${P}-libpng1{4,5}.patch elibtoolize } src_configure() { econf \ $(use_enable static-libs static) \ $(use_enable debug) \ $(use_enable doc doxygen-docs) \ $(use_enable truetype xft) \ $(use_enable pango) \ $(use_enable jpeg) \ $(use_enable png) \ $(use_enable xsettings) \ $(use_with X x) \ $(use_enable test unit-tests) } src_install() { default use doc && dohtml doc/html/* find "${ED}" -name '*.la' -exec rm -f {} + }