diff options
Diffstat (limited to 'sci-astronomy/stiff')
-rw-r--r-- | sci-astronomy/stiff/Manifest | 5 | ||||
-rw-r--r-- | sci-astronomy/stiff/metadata.xml | 13 | ||||
-rw-r--r-- | sci-astronomy/stiff/stiff-2.4.0.ebuild | 36 |
3 files changed, 54 insertions, 0 deletions
diff --git a/sci-astronomy/stiff/Manifest b/sci-astronomy/stiff/Manifest new file mode 100644 index 000000000000..0aa5f494ee93 --- /dev/null +++ b/sci-astronomy/stiff/Manifest @@ -0,0 +1,5 @@ +DIST stiff-2.4.0.tar.gz 1074161 SHA256 f4e85146c17fe8dcf160d12dc6df08bbd9212bb8444162b2e6ebf03f7513a992 SHA512 c8a293a2d1771b21d8af1194f9a2f582eca1a363964e76b78319c9cc2407332ef5e31dc74c0d10b9d5c7b6ae18ebd35ee59c53ad31c5f3966fabcd03948cadf6 WHIRLPOOL aa3b0d4ee6e2fc7d1fd90d19c815985ddb520c3fe37da6ec7c631675f5277b1d75b72a776a64631beedc57b934899c86eebbdc0b7c54925eb153cff65146e805 +EBUILD stiff-2.4.0.ebuild 765 SHA256 3da42b68674454018c39d8fc3f7524beaf2ca1d75a754a836f3df9d9e6dc4a6f SHA512 69e01e360638f8e3dc47d71c97e6147ea05b66354308779fa7a53685b15dce5b5dae92a602c48b4c172a2af0a903a8e715b596543b7fa8e4568aa9f84dd06ff6 WHIRLPOOL b2d543c630e7b267e33a73986a333f88ba8d2c6db1b7f5e9ae6c135199092a41871e674f53763090b11f923c4b78c8c9667b87a373cd09564fe59bc469ed6611 +MISC ChangeLog 2664 SHA256 d68e856ce61a6c94d29779d10ec32aab64791818578057d334c67deb618ed789 SHA512 43f142b3d5ff7b34f2df37280070e054f1eb19176ebc5bfea5cac9c567866abd8491ec39b2e808222f87ad7223ecbeda925fce9d4e28f7831b2772adcdf51e62 WHIRLPOOL 5e1084056c8627c7cc2c0b90281c9ebf72866dc1bb76340aa95ad21d00efd2082276ddf0180a7d72f49da149b56adca0372b7535376bcfdcb9f40980629486f3 +MISC ChangeLog-2015 1562 SHA256 e421cf62bdd254eccac2c3bc66f96c002fc494c2dc670fad1c4651eee14c87e5 SHA512 cb18d0222b78dd927bbc958e8822ffeea94c1ffb1bd33e0cfd92c313aa7e47e85fd0ab011b287c605c79cfa6b3d01054390125aee8850fa49ae5a5051bab60d5 WHIRLPOOL dcb61a06a3d8e83efda80a52888f82a46c88bf1239d0d84605a62f8dda1b5ba8065bb83e8ff0105a833371ea821c3fa4ae5e336a44221cff246c405b6933faaf +MISC metadata.xml 459 SHA256 d2c2da261aff834703ab93a0c51a1190d8cabbe20ad39c0e54eab952de4c6343 SHA512 8094ed0486f4c7916268a2410e14aabc1e5d97f834449bfc61a058ab1b3d42a67bccc205348286420f7025e1bb16cc376024f07fe38ac95ac9e59bd56cdc5360 WHIRLPOOL 6060bb1cedb3a593df272870629776088ed3921b017250accb35fe1caf797736be9661ec3e24fd7e8cdb12450464d274634efca9850ee2c4825575cfd6a5e9e2 diff --git a/sci-astronomy/stiff/metadata.xml b/sci-astronomy/stiff/metadata.xml new file mode 100644 index 000000000000..e2ab38e6c5c9 --- /dev/null +++ b/sci-astronomy/stiff/metadata.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<maintainer type="project"> + <email>sci-astronomy@gentoo.org</email> + <name>Gentoo Astronomy Project</name> +</maintainer> +<longdescription lang="en"> + STIFF is a program that convert scientific FITS images to the + more popular TIFF, in 8 (grayscale) or 24 (true colour: 3 times 8) bits per + pixel. +</longdescription> +</pkgmetadata> diff --git a/sci-astronomy/stiff/stiff-2.4.0.ebuild b/sci-astronomy/stiff/stiff-2.4.0.ebuild new file mode 100644 index 000000000000..f812d640d0df --- /dev/null +++ b/sci-astronomy/stiff/stiff-2.4.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +if [[ ${PV} == "9999" ]] ; then + inherit subversion + ESVN_REPO_URI="https://astromatic.net/pubsvn/software/${PN}/trunk" + SRC_URI="" + KEYWORDS="" +else + SRC_URI="http://www.astromatic.net/download/${PN}/${P}.tar.gz" + KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +fi + +DESCRIPTION="Converts astronomical FITS images to the TIFF format" +HOMEPAGE="http://www.astronomatic.net/software/stiff" + +LICENSE="GPL-3" +SLOT="0" +IUSE="doc threads" + +RDEPEND=" + media-libs/tiff:0= + virtual/jpeg:0 + sys-libs/zlib:0=" +DEPEND="${RDEPEND}" + +src_configure() { + ECONF_SOURCE="${S}" econf $(use_enable threads) +} + +src_install () { + default + use doc && dodoc doc/stiff.pdf +} |