diff options
author | Ctibor <ctibor.brancik@seznam.cz> | 2015-02-18 19:54:03 +0100 |
---|---|---|
committer | Ctibor <ctibor.brancik@seznam.cz> | 2015-02-18 19:54:03 +0100 |
commit | 7dc8773d8ee73de2b3339c9bd23cd835c53ef861 (patch) | |
tree | 37dcda08c920b12a62bdcd4299b412503cee8ca3 /sci-libs/indilib/indilib-1.0.0.ebuild | |
parent | 5bc04329a7ed19419ec0786fc011c1e7ef7c69e6 (diff) | |
download | brancik-overlay-7dc8773d8ee73de2b3339c9bd23cd835c53ef861.tar.gz brancik-overlay-7dc8773d8ee73de2b3339c9bd23cd835c53ef861.tar.bz2 |
Version bump for sci-libs/indilib and indilib-drivers-*. New inidlib-driver-ffmv added.
Diffstat (limited to 'sci-libs/indilib/indilib-1.0.0.ebuild')
-rw-r--r-- | sci-libs/indilib/indilib-1.0.0.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/sci-libs/indilib/indilib-1.0.0.ebuild b/sci-libs/indilib/indilib-1.0.0.ebuild new file mode 100644 index 0000000..1920213 --- /dev/null +++ b/sci-libs/indilib/indilib-1.0.0.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2015 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 ~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/indilib-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)/rules.d + ) + + cmake-utils_src_configure +} |