blob: 60866c057151c5f5366c9daa5b2b2b7e47281068 (
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
43
44
45
46
47
48
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libwacom/libwacom-0.5.ebuild,v 1.1 2012/05/19 08:43:58 tetromino Exp $
EAPI=4
inherit eutils
DESCRIPTION="Library for identifying Wacom tablets and their model-specific features"
HOMEPAGE="http://linuxwacom.sourceforge.net/"
SRC_URI="mirror://sourceforge/linuxwacom/${PN}/${P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc static-libs"
RDEPEND="dev-libs/glib:2
sys-fs/udev[gudev]"
DEPEND="${RDEPEND}
virtual/pkgconfig
doc? ( app-doc/doxygen )"
src_prepare() {
# in next release
epatch "${FILESDIR}/${P}-eraser.patch"
epatch "${FILESDIR}/${P}-eraser-bamboo.patch"
if ! use doc; then
sed -e 's:^\(SUBDIRS = .* \)doc:\1:' -i Makefile.in || die "sed failed"
fi
}
src_configure() {
econf $(use_enable static-libs static)
}
src_install() {
default
dodir /lib/udev/rules.d
# generate-udev-rules must be run from inside tools directory
pushd tools > /dev/null
./generate-udev-rules > "${ED}/lib/udev/rules.d/65-libwacom.rules" ||
die "generating udev rules failed"
popd > /dev/null
use doc && dohtml -r doc/html/*
find "${D}" -name '*.la' -exec rm -f {} + || die "la file removal failed"
}
|