summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-04-06 04:24:01 +0000
committerMike Frysinger <vapier@gentoo.org>2004-04-06 04:24:01 +0000
commitcdad8cc1503508272afe435960943040cd4493a9 (patch)
treea68e1ad962d66a6856e510c06458281804738111 /app-misc/lcdproc
parentCorrective patch for docbook errors. Closes bug #46692. (diff)
downloadhistorical-cdad8cc1503508272afe435960943040cd4493a9.tar.gz
historical-cdad8cc1503508272afe435960943040cd4493a9.tar.bz2
historical-cdad8cc1503508272afe435960943040cd4493a9.zip
add inherit eutils
Diffstat (limited to 'app-misc/lcdproc')
-rw-r--r--app-misc/lcdproc/lcdproc-0.4.3-r2.ebuild15
1 files changed, 8 insertions, 7 deletions
diff --git a/app-misc/lcdproc/lcdproc-0.4.3-r2.ebuild b/app-misc/lcdproc/lcdproc-0.4.3-r2.ebuild
index 99d40d110e86..473071d4a730 100644
--- a/app-misc/lcdproc/lcdproc-0.4.3-r2.ebuild
+++ b/app-misc/lcdproc/lcdproc-0.4.3-r2.ebuild
@@ -1,13 +1,15 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/lcdproc/lcdproc-0.4.3-r2.ebuild,v 1.6 2004/03/08 20:47:24 avenj Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/lcdproc/lcdproc-0.4.3-r2.ebuild,v 1.7 2004/04/06 04:19:50 vapier Exp $
+
+inherit eutils
-SRC_URI="mirror://sourceforge/lcdproc/${P}.tar.gz"
DESCRIPTION="Client/Server suite to drive all kinds of LCD (-like) devices"
HOMEPAGE="http://lcdproc.org/"
+SRC_URI="mirror://sourceforge/lcdproc/${P}.tar.gz"
-SLOT="0"
LICENSE="GPL-2"
+SLOT="0"
KEYWORDS="x86 amd64"
IUSE="doc ncurses svga"
@@ -28,7 +30,6 @@ src_unpack() {
}
src_compile() {
-
# By default, all drivers that are supported by the given plattform/hardware
# are compiled (of course respecting the existing USE flags). If the
# LCDPROC_DRIVERS environment variable is set to a comma separated list, only
@@ -62,7 +63,7 @@ src_compile() {
econf ${myconf} || die
emake || die
- if [ `use doc` ]; then
+ if use doc ; then
cd ${S}/docs/lcdproc-user
docbook2html lcdproc-user.docbook
fi
@@ -74,9 +75,9 @@ src_install() {
doman docs/lcdproc.1 docs/LCDd.8
- dodoc README ChangeLog COPYING INSTALL
+ dodoc README ChangeLog INSTALL
- if [ `use doc` ]; then
+ if use doc ; then
insinto /usr/share/doc/${PF}/lcdproc-user
doins docs/lcdproc-user/*.html
fi