# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-misc/graphlcd-base/graphlcd-base-0.1.3.ebuild,v 1.5 2006/10/11 20:18:11 corsair Exp $ inherit eutils flag-o-matic DESCRIPTION="Graphical LCD Driver" HOMEPAGE="http://graphlcd.berlios.de/" SRC_URI="http://download.berlios.de/graphlcd/${P}.tgz" KEYWORDS="~amd64 x86" SLOT="0" LICENSE="GPL-2" IUSE="truetype" DEPEND="" RDEPEND="truetype? ( media-libs/freetype media-fonts/corefonts )" src_unpack() { unpack ${A} cd ${S} use !truetype && sed -i "s:HAVE_FREETYPE2:#HAVE_FREETYPE2:" Make.config sed -i Make.config -e "s:usr\/local:usr:" -e "s:FLAGS *=:FLAGS ?=:" epatch ${FILESDIR}/${P}-nostrip.patch } src_compile() { append-flags -fPIC emake || die "emake failed" } src_install() { make DESTDIR=${D}/usr install || die "make install failed" insinto /etc doins graphlcd.conf dodoc docs/* }