blob: 29b607afc3cdcf625057a7c4b1d21c5989a780f0 (
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
49
50
51
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/indilib/indilib-0.9.6-r1.ebuild,v 1.5 2014/03/14 10:17:14 ago Exp $
EAPI=5
MY_PN="lib${PN/lib/}"
inherit cmake-utils udev
DESCRIPTION="INDI Astronomical Control Protocol library"
HOMEPAGE="http://www.indilib.org/"
SRC_URI="mirror://sourceforge/${PN/lib/}/${MY_PN}_${PV}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 x86"
IUSE="nova v4l"
RDEPEND="
>=sci-libs/cfitsio-3.140
sys-libs/zlib
virtual/libusb:0
nova? ( >=sci-libs/libnova-0.12.1 )
"
DEPEND="${RDEPEND}
v4l? ( >=sys-kernel/linux-headers-2.6 )
"
DOCS=( AUTHORS ChangeLog README README.drivers TODO )
PATCHES=(
"${FILESDIR}/0.9.1-fix_symlinks.patch"
"${FILESDIR}/${P}-underlinking.patch"
)
S=${WORKDIR}/${MY_PN}-${PV}
src_prepare() {
cmake-utils_src_prepare
sed -e "s|/etc/udev/rules.d|$(get_udevdir)|" \
-i CMakeLists.txt || die
}
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_with nova)
)
cmake-utils_src_configure
}
|