summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Fabbro <bicatali@gentoo.org>2010-02-26 19:47:28 +0000
committerSebastien Fabbro <bicatali@gentoo.org>2010-02-26 19:47:28 +0000
commit0593cb02a357f29866baa302f048137d73e66fb2 (patch)
tree1bb41c887d26cd19dd45c4c7dc61cd541ba42612 /sci-astronomy
parentFix ChangeLog. (diff)
downloadgentoo-2-0593cb02a357f29866baa302f048137d73e66fb2.tar.gz
gentoo-2-0593cb02a357f29866baa302f048137d73e66fb2.tar.bz2
gentoo-2-0593cb02a357f29866baa302f048137d73e66fb2.zip
Version bump
(Portage version: 2.2_rc63/cvs/Linux x86_64)
Diffstat (limited to 'sci-astronomy')
-rw-r--r--sci-astronomy/stiff/ChangeLog10
-rw-r--r--sci-astronomy/stiff/stiff-1.10.ebuild19
-rw-r--r--sci-astronomy/stiff/stiff-2.1.2.ebuild33
3 files changed, 41 insertions, 21 deletions
diff --git a/sci-astronomy/stiff/ChangeLog b/sci-astronomy/stiff/ChangeLog
index 1094831c56b9..93aa881c87b4 100644
--- a/sci-astronomy/stiff/ChangeLog
+++ b/sci-astronomy/stiff/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sci-astronomy/stiff
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stiff/ChangeLog,v 1.3 2009/07/28 17:42:50 bicatali Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stiff/ChangeLog,v 1.4 2010/02/26 19:47:28 bicatali Exp $
+
+*stiff-2.1.2 (26 Feb 2010)
+
+ 26 Feb 2010; Sébastien Fabbro <bicatali@gentoo.org> -stiff-1.10.ebuild,
+ +stiff-2.1.2.ebuild:
+ Version bump
28 Jul 2009; Sébastien Fabbro <bicatali@gentoo.org> stiff-1.12.ebuild:
Updated license to CeCILL-2
diff --git a/sci-astronomy/stiff/stiff-1.10.ebuild b/sci-astronomy/stiff/stiff-1.10.ebuild
deleted file mode 100644
index 4edef51ffd8d..000000000000
--- a/sci-astronomy/stiff/stiff-1.10.ebuild
+++ /dev/null
@@ -1,19 +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.10.ebuild,v 1.1 2009/02/17 21:04:02 bicatali Exp $
-
-DESCRIPTION="Converts astronomical FITS images to the TIFF format for illustration purposes."
-HOMEPAGE="http://terapix.iap.fr/soft/stiff"
-SRC_URI="ftp://ftp.iap.fr/pub/from_users/bertin/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc"
-DEPEND=""
-
-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.2.ebuild b/sci-astronomy/stiff/stiff-2.1.2.ebuild
new file mode 100644
index 000000000000..f7bb1ba7e0b6
--- /dev/null
+++ b/sci-astronomy/stiff/stiff-2.1.2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stiff/stiff-2.1.2.ebuild,v 1.1 2010/02/26 19:47:28 bicatali Exp $
+
+EAPI=2
+
+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
+ media-libs/jpeg
+ sys-libs/zlib"
+
+DEPEND="${RDEPEND}"
+
+src_configure() {
+ econf $(use_enable threads)
+}
+
+src_install () {
+ emake DESTDIR="${D}" install || die "emake install failed"
+ dodoc AUTHORS BUGS ChangeLog HISTORY README THANKS
+ if use doc; then
+ insinto /usr/share/doc/${PF}
+ doins doc/*.pdf || die
+ fi
+}