summaryrefslogtreecommitdiff
blob: dfa18dc8742cd4808c6a758399f716608f24e001 (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
50
# 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.2 2006/02/28 00:26:10 hd_brummy Exp $

inherit eutils flag-o-matic

DESCRIPTION="Graphical LCD Driver"
HOMEPAGE="http://www.powarman.de"
SRC_URI="http://download.berlios.de/graphlcd/${P}.tgz"

KEYWORDS="x86 ~amd64"
SLOT="0"
LICENSE="GPL-2"
IUSE="truetype"

DEPEND="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 ?=:"
}

src_compile() {

	# Change CFLAGS for amd64 which needs -fPIC in plugins
	if [[ "${ARCH}" == "amd64" ]]; then
		ebegin "Adding -fPIC to CXXFLAGS for amd64"
		append-flags -fPIC
		eend 0
	fi

	emake || die "emake failed"
}

src_install() {

	make DESTDIR=${D}/usr install || die "make install failed"

	insinto /etc
	doins graphlcd.conf

	dodoc docs/*
}