diff options
author | Ctibor <ctibor.brancik@seznam.cz> | 2015-01-04 18:15:09 +0100 |
---|---|---|
committer | Ctibor <ctibor.brancik@seznam.cz> | 2015-01-04 18:15:09 +0100 |
commit | d646a759b8cac8444109989747264ccb143b6e8f (patch) | |
tree | 92b7f3d9727131532c91bdd262159f5d5ca6d251 | |
parent | 738b9d5eac09d25e38df0b69ccc8c052c99cdb4e (diff) | |
download | brancik-overlay-d646a759b8cac8444109989747264ccb143b6e8f.tar.gz brancik-overlay-d646a759b8cac8444109989747264ccb143b6e8f.tar.bz2 |
Added sci-libs/indilib-0.9.9 ebuild
-rw-r--r-- | sci-libs/indilib/indilib-0.9.9.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/sci-libs/indilib/indilib-0.9.9.ebuild b/sci-libs/indilib/indilib-0.9.9.ebuild new file mode 100644 index 0000000..763926f --- /dev/null +++ b/sci-libs/indilib/indilib-0.9.9.ebuild @@ -0,0 +1,47 @@ +# 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.9.ebuild,v 1.5 2014/11/28 14:09:42 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="drivers" + +RDEPEND=" + sci-libs/cfitsio + sci-libs/libnova + sci-libs/gsl + sys-libs/zlib + virtual/jpeg:0 + virtual/libusb:1 +" +DEPEND="${RDEPEND} + sys-kernel/linux-headers + drivers? ( sci-libs/indlib-drivers ) +" + +DOCS=( AUTHORS ChangeLog README TODO ) + +PATCHES=( + "${FILESDIR}/${PN}-0.9.8.1-symlinks.patch" +) + +S=${WORKDIR}/${MY_PN}_${PV} + +src_configure() { + local mycmakeargs=( + -DUDEVRULES_INSTALL_DIR=$(get_udevdir) + ) + + cmake-utils_src_configure +} |