blob: 62cfa7b4ca5af35e1a10891dd712e5edee5940fb (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/serdisplib/serdisplib-1.97.5.ebuild,v 1.8 2012/05/25 08:28:21 ssuominen Exp $
EAPI=1
inherit eutils
DESCRIPTION="Library to drive serial/parallel/usb displays with built-in controllers"
HOMEPAGE="http://serdisplib.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE="usb"
DEPEND="media-libs/gd
usb? ( virtual/libusb:0 )"
RDEPEND="${DEPEND}"
pkg_setup() {
if ! built_with_use -a media-libs/gd jpeg png; then
echo
eerror "Please rebuild media-libs/gd with USE=\"jpeg png\"."
die "Please rebuild media-libs/gd with USE=\"jpeg png\"."
fi
}
src_compile() {
econf \
--prefix="${D}/usr" \
$(use_enable usb libusb) \
|| die "configure failed"
emake || die "make failed"
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS HISTORY README
}
|