blob: f52c82b6f1ce91411c84cee42e2fd81477359662 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/indilib/indilib-0.9.1.ebuild,v 1.2 2012/08/19 08:24:41 scarabeus Exp $
EAPI=4
MY_PN="lib${PN/lib/}"
inherit cmake-utils
DESCRIPTION="INDI Astronomical Control Protocol library"
HOMEPAGE="http://indi.sourceforge.net/index.php/Main_Page"
SRC_URI="mirror://sourceforge/${PN/lib/}/${MY_PN}_${PV}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="amd64 ~hppa 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}/${PV}-fix_symlinks.patch"
)
S=${WORKDIR}/${MY_PN}-${PV}
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_with nova)
)
cmake-utils_src_configure
}
|