diff options
author | Sébastien Fabbro <bicatali@gentoo.org> | 2016-03-03 01:21:38 +0000 |
---|---|---|
committer | Sébastien Fabbro <bicatali@gentoo.org> | 2016-03-03 01:22:34 +0000 |
commit | 689198d52db4192a09ee37ba7db6f0a2aad1d4c1 (patch) | |
tree | 50596763df58b71f58949e1a67b9fb1a79631414 /sci-astronomy/weightwatcher | |
parent | sci-astronomy/stuff: Initial import (diff) | |
download | gentoo-689198d52db4192a09ee37ba7db6f0a2aad1d4c1.tar.gz gentoo-689198d52db4192a09ee37ba7db6f0a2aad1d4c1.tar.bz2 gentoo-689198d52db4192a09ee37ba7db6f0a2aad1d4c1.zip |
sci-astronomy/weightwatcher: Initial import
Package-Manager: portage-2.2.27
Diffstat (limited to 'sci-astronomy/weightwatcher')
-rw-r--r-- | sci-astronomy/weightwatcher/Manifest | 1 | ||||
-rw-r--r-- | sci-astronomy/weightwatcher/metadata.xml | 14 | ||||
-rw-r--r-- | sci-astronomy/weightwatcher/weightwatcher-1.12.ebuild | 22 |
3 files changed, 37 insertions, 0 deletions
diff --git a/sci-astronomy/weightwatcher/Manifest b/sci-astronomy/weightwatcher/Manifest new file mode 100644 index 000000000000..7e5aadecc8c4 --- /dev/null +++ b/sci-astronomy/weightwatcher/Manifest @@ -0,0 +1 @@ +DIST weightwatcher-1.12.tar.gz 460583 SHA256 5730a923d7a4544fc66f21ad7b1f105108a5dca4038b74b5e4ecdd9c1a6a58fd SHA512 392ca6442de96e6c35447b7b34c67b22e7793831337aaf0f06e45d40e63f8c5e9605649fe39a67a5baf9eadcb79fa9f5d998fcb9504f85606f75071d672b0ada WHIRLPOOL fc5bbdfb3caf487941b173bb6e8725c922592a8cff5af2a482839df0d334fc34470536deb71c50deaee85b06521ef6df07b24dbee2456779813d75937fe7fd44 diff --git a/sci-astronomy/weightwatcher/metadata.xml b/sci-astronomy/weightwatcher/metadata.xml new file mode 100644 index 000000000000..86c4c7dc6113 --- /dev/null +++ b/sci-astronomy/weightwatcher/metadata.xml @@ -0,0 +1,14 @@ +<?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"> + WeightWatcher is a program that combines weight-maps, flag-maps and + polygon data in order to produce control maps which can directly be + used in astronomical image-processing packages like Drizzle, + <pkg>sci-astronomy/sextractor</pkg> or <pkg>sci-astronomy/swarp</pkg>. +</longdescription> +</pkgmetadata> diff --git a/sci-astronomy/weightwatcher/weightwatcher-1.12.ebuild b/sci-astronomy/weightwatcher/weightwatcher-1.12.ebuild new file mode 100644 index 000000000000..1caaeb2fd080 --- /dev/null +++ b/sci-astronomy/weightwatcher/weightwatcher-1.12.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="Combine weight maps and polygon for astronomical images weighting" +HOMEPAGE="http://www.astromatic.net/software/weightwatcher/" +SRC_URI="http://www.astromatic.net/download/${PN}/${P}.tar.gz" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + +LICENSE="GPL-3" +SLOT="0" +IUSE="doc" + +RDEPEND="" +DEPEND="${RDEPEND}" + +src_install () { + default + use doc && dodoc doc/* +} |