You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.0 KiB
38 lines
1.0 KiB
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-misc/evtest/evtest-1.29.ebuild,v 1.3 2012/05/03 19:41:35 jdhore Exp $
|
|
|
|
EAPI="4"
|
|
|
|
inherit autotools eutils
|
|
|
|
DESCRIPTION="test program for capturing input device events"
|
|
HOMEPAGE="http://cgit.freedesktop.org/evtest/"
|
|
SRC_URI="http://cgit.freedesktop.org/evtest/snapshot/${P}.tar.bz2
|
|
mirror://gentoo/${P}-mans.tar.xz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm x86"
|
|
IUSE="+xml"
|
|
|
|
# We bundled the man pages ourselves to avoid xmlto/asciidoc.
|
|
# We need libxml2 for the capture tool. While at runtime,
|
|
# we have a file that can be used with xsltproc, we don't
|
|
# directly need it ourselves, so don't depend on libxslt.
|
|
RDEPEND="xml? ( dev-libs/libxml2 )"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig"
|
|
|
|
src_prepare() {
|
|
# No pretty configure flag :/
|
|
sed -i -r \
|
|
-e "s:HAVE_LIBXML=(yes|no):HAVE_LIBXML=$(usex xml):g" \
|
|
configure.ac || die
|
|
|
|
# We pre-compile the man pages.
|
|
export XMLTO=/bin/true ASCIIDOC=/bin/true
|
|
|
|
eautoreconf
|
|
}
|