55 lines
1.4 KiB
Bash
55 lines
1.4 KiB
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-misc/ddccontrol/ddccontrol-0.4.1.ebuild,v 1.5 2011/03/29 12:14:22 angelos Exp $
|
|
|
|
EAPI=1
|
|
inherit eutils
|
|
|
|
DESCRIPTION="DDCControl allows control of monitor parameters via DDC"
|
|
HOMEPAGE="http://ddccontrol.sourceforge.net/"
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE="gtk gnome doc nls"
|
|
|
|
RDEPEND="dev-libs/libxml2:2
|
|
gtk? ( >=x11-libs/gtk+-2.4:2 )
|
|
gnome? ( >=gnome-base/gnome-panel-2.10 )
|
|
sys-apps/pciutils
|
|
nls? ( sys-devel/gettext )
|
|
>=app-misc/ddccontrol-db-20060308"
|
|
DEPEND="${RDEPEND}
|
|
doc? ( >=app-text/docbook-xsl-stylesheets-1.65.1
|
|
>=dev-libs/libxslt-1.1.6
|
|
app-text/htmltidy )
|
|
sys-kernel/linux-headers"
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
cd "${S}"
|
|
|
|
# Fix sandbox violation
|
|
for i in Makefile.am Makefile.in; do
|
|
sed -i.orig "${S}/src/gddccontrol/${i}" \
|
|
-e "/@INSTALL@/s/ \$(datadir)/ \$(DESTDIR)\/\$(datadir)/" \
|
|
|| die "Failed to fix DESTDIR"
|
|
done
|
|
|
|
## Save for a rainy day or future patching
|
|
##eautoreconf || die "eautoreconf failed"
|
|
}
|
|
|
|
src_compile() {
|
|
econf $(use_enable doc) \
|
|
$(use_enable gtk gnome) \
|
|
$(use_enable gnome gnome-applet) \
|
|
$(use_enable nls) || die "econf failed"
|
|
emake || die "emake failed"
|
|
}
|
|
|
|
src_install() {
|
|
make DESTDIR="${D}" htmldir="/usr/share/doc/${PF}/html" install || die
|
|
dodoc AUTHORS ChangeLog NEWS README TODO
|
|
}
|