40 lines
1,017 B
Bash
40 lines
1,017 B
Bash
# Copyright 1999-2007 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-libs/serdisplib/serdisplib-1.97.6.ebuild,v 1.4 2007/10/16 18:45:00 rbu Exp $
|
|
|
|
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? ( dev-libs/libusb )"
|
|
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 BUGS PINOUTS
|
|
}
|