# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-embedded/gpsim-lcd/gpsim-lcd-0.2.9.ebuild,v 1.3 2007/06/07 10:26:25 corsair Exp $ WANT_AUTOCONF=latest WANT_AUTOMAKE=latest inherit eutils autotools MY_PN="${PN/gpsim-}" MY_P="${MY_PN}-${PV}" DESCRIPTION="2x20 LCD display module for GPSIM" HOMEPAGE="http://www.dattalo.com/gnupic/lcd.html" SRC_URI="mirror://sourceforge/gpsim/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ppc64 x86" IUSE="" DEPEND=">=dev-embedded/gpsim-0.22.0" S=${WORKDIR}/${MY_P} src_unpack() { unpack ${A} cd "${S}" eautoreconf } src_compile() { econf --disable-dependency-tracking || die "configure failed" emake || die "make failed" } src_install() { emake DESTDIR=${D} install || die dodoc AUTHORS ChangeLog INSTALL README cp -pPR ${S}/examples ${D}/usr/share/doc/${PF} find ${D}/usr/share/doc/${PF} -name 'Makefile*' -exec rm -f \{} \; chmod -R 644 ${D}/usr/share/doc/${PF} chmod 755 ${D}/usr/share/doc/${PF}/examples }