summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Fabbro <bicatali@gentoo.org>2011-04-10 14:45:35 +0000
committerSebastien Fabbro <bicatali@gentoo.org>2011-04-10 14:45:35 +0000
commitf58197ca8ec313ff1aad8a74e37e3cd8b744d02e (patch)
treed47ce2779ccd655ce99a190c116d8d7385d8f2ed /sci-astronomy
parentDon't PROVIDE virtual/bootloader, bug 359971. (diff)
downloadgentoo-2-f58197ca8ec313ff1aad8a74e37e3cd8b744d02e.tar.gz
gentoo-2-f58197ca8ec313ff1aad8a74e37e3cd8b744d02e.tar.bz2
gentoo-2-f58197ca8ec313ff1aad8a74e37e3cd8b744d02e.zip
Version bump
(Portage version: 2.1.9.45/cvs/Linux x86_64)
Diffstat (limited to 'sci-astronomy')
-rw-r--r--sci-astronomy/stiff/ChangeLog10
-rw-r--r--sci-astronomy/stiff/stiff-1.12.ebuild26
-rw-r--r--sci-astronomy/stiff/stiff-2.1.3.ebuild28
3 files changed, 36 insertions, 28 deletions
diff --git a/sci-astronomy/stiff/ChangeLog b/sci-astronomy/stiff/ChangeLog
index d0e1f0b891a9..82b80aea9198 100644
--- a/sci-astronomy/stiff/ChangeLog
+++ b/sci-astronomy/stiff/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sci-astronomy/stiff
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stiff/ChangeLog,v 1.5 2010/11/08 17:08:39 xarthisius Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stiff/ChangeLog,v 1.6 2011/04/10 14:45:35 bicatali Exp $
+
+*stiff-2.1.3 (10 Apr 2011)
+
+ 10 Apr 2011; Sébastien Fabbro <bicatali@gentoo.org> -stiff-1.12.ebuild,
+ +stiff-2.1.3.ebuild:
+ Version bump
08 Nov 2010; Kacper Kowalik <xarthisius@gentoo.org> stiff-2.1.2.ebuild:
media-libs/jpeg -> virtual/jpeg
diff --git a/sci-astronomy/stiff/stiff-1.12.ebuild b/sci-astronomy/stiff/stiff-1.12.ebuild
deleted file mode 100644
index 715a1a8ebc85..000000000000
--- a/sci-astronomy/stiff/stiff-1.12.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stiff/stiff-1.12.ebuild,v 1.3 2009/07/28 17:42:50 bicatali Exp $
-
-EAPI=2
-inherit autotools eutils
-
-DESCRIPTION="Converts astronomical FITS images to the TIFF format"
-HOMEPAGE="http://astromatic.iap.fr/software/stiff"
-SRC_URI="ftp://ftp.iap.fr/pub/from_users/bertin/${PN}/${P}.tar.gz"
-
-LICENSE="CeCILL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc"
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-configure.patch
- eautoreconf
-}
-
-src_install () {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc AUTHORS BUGS ChangeLog HISTORY README THANKS
- use doc && dodoc doc/*
-}
diff --git a/sci-astronomy/stiff/stiff-2.1.3.ebuild b/sci-astronomy/stiff/stiff-2.1.3.ebuild
new file mode 100644
index 000000000000..264cef1939d9
--- /dev/null
+++ b/sci-astronomy/stiff/stiff-2.1.3.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stiff/stiff-2.1.3.ebuild,v 1.1 2011/04/10 14:45:35 bicatali Exp $
+
+EAPI=4
+
+DESCRIPTION="Converts astronomical FITS images to the TIFF format"
+HOMEPAGE="http://astromatic.iap.fr/software/stiff"
+SRC_URI="ftp://ftp.iap.fr/pub/from_users/bertin/${PN}/${P}.tar.gz"
+
+LICENSE="CeCILL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc threads"
+
+RDEPEND="media-libs/tiff
+ virtual/jpeg
+ sys-libs/zlib"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+ econf $(use_enable threads)
+}
+
+src_install () {
+ default
+ use doc && dodoc doc/*.pdf
+}