blob: b090af86f2263ea84fad43bda767ee5d87daa594 (
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
45
46
47
48
49
|
# Copyright 1999-2008 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.4 2008/01/05 10:17:03 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
=x11-libs/gtk+-2*"
S=${WORKDIR}/${MY_P}
pkg_setup() {
built_with_use dev-embedded/gpsim gtk || die "dev-embedded/gpsim must be built with USE=gtk"
}
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
}
|