# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-libs/t1lib/t1lib-5.0.0-r2.ebuild,v 1.16 2005/02/21 02:37:47 hardave Exp $ inherit eutils gnuconfig flag-o-matic DESCRIPTION="A Type 1 Font Rasterizer Library for UNIX/X11" HOMEPAGE="ftp://metalab.unc.edu/pub/Linux/libs/graphics" SRC_URI="ftp://sunsite.unc.edu/pub/Linux/libs/graphics/${P}.tar.gz" LICENSE="LGPL-2 GPL-2" SLOT="5" KEYWORDS="x86 ppc sparc alpha hppa amd64 ia64" IUSE="X doc" DEPEND="X? ( virtual/x11 )" src_unpack() { unpack ${A} if use amd64 || use alpha; then gnuconfig_update || die "gnuconfig_update failed" fi cd ${S} epatch ${FILESDIR}/t1lib-5.0.2-gentoo.diff cd ${S}/doc mv Makefile.in Makefile.in-orig sed -e "s:dvips:#dvips:" Makefile.in-orig>Makefile.in } src_compile() { local myconf local myopt use alpha && append-flags -mieee if [ ! -x /usr/bin/latex ] ; then myopt="without_doc" else addwrite /var/cache/fonts fi econf ${myconf} --datadir=/etc $(use_with X x) || die make ${myopt} || die } src_install() { make DESTDIR=${D} install || die dodoc Changes LGPL LICENSE README* if use doc ; then cd doc insinto /usr/share/doc/${PF} doins *.pdf *.dvi fi } pkg_postinst() { ewarn ewarn "You must rebuild other packages depending on t1lib." ewarn "You may use revdep-rebuild (from app-portage/gentoolkit)" ewarn "to do all necessary tricks." ewarn }