blob: e13c3465d404b7d54eeed2061a16fe11a88e5504 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# 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.1 2007/03/01 12:16:59 calchan 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
}
|