diff options
author | 2013-01-09 12:25:21 +0000 | |
---|---|---|
committer | 2013-01-09 12:25:21 +0000 | |
commit | 81c7479904b9359413cb59900e612d27a5410273 (patch) | |
tree | 751d8c0997f7f505eff527e95bee3f57037199d0 /sci-libs | |
parent | Version bump (diff) | |
download | gentoo-2-81c7479904b9359413cb59900e612d27a5410273.tar.gz gentoo-2-81c7479904b9359413cb59900e612d27a5410273.tar.bz2 gentoo-2-81c7479904b9359413cb59900e612d27a5410273.zip |
Version bump.
(Portage version: 2.1.11.38/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/indilib/ChangeLog | 7 | ||||
-rw-r--r-- | sci-libs/indilib/indilib-0.9.6.ebuild | 50 |
2 files changed, 56 insertions, 1 deletions
diff --git a/sci-libs/indilib/ChangeLog b/sci-libs/indilib/ChangeLog index 3af5e29c6474..68beb9e60f43 100644 --- a/sci-libs/indilib/ChangeLog +++ b/sci-libs/indilib/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-libs/indilib # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/indilib/ChangeLog,v 1.27 2013/01/08 16:03:07 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/indilib/ChangeLog,v 1.28 2013/01/09 12:25:21 kensington Exp $ + +*indilib-0.9.6 (09 Jan 2013) + + 09 Jan 2013; Michael Palimaka <kensington@gentoo.org> +indilib-0.9.6.ebuild: + Version bump. 08 Jan 2013; Jeroen Roovers <jer@gentoo.org> metadata.xml: Drop unused USE=fits description. diff --git a/sci-libs/indilib/indilib-0.9.6.ebuild b/sci-libs/indilib/indilib-0.9.6.ebuild new file mode 100644 index 000000000000..fd75e20f1a76 --- /dev/null +++ b/sci-libs/indilib/indilib-0.9.6.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2013 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.ebuild,v 1.1 2013/01/09 12:25:21 kensington Exp $ + +EAPI=5 + +MY_PN="lib${PN/lib/}" + +inherit base 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 ~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" +) + +S=${WORKDIR}/${MY_PN}-${PV} + +src_prepare() { + base_src_prepare + + sed -e "s|/etc/udev/rules.d|/lib/udev/rules.d|" \ + -i CMakeLists.txt || die +} + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_with nova) + ) + cmake-utils_src_configure +} |