diff options
author | Sébastien Fabbro <bicatali@gentoo.org> | 2016-03-03 01:18:33 +0000 |
---|---|---|
committer | Sébastien Fabbro <bicatali@gentoo.org> | 2016-03-03 01:22:30 +0000 |
commit | 845fa17a13e3e097daa3566067b2dd61f6594c9f (patch) | |
tree | d1b1b0341777afe0c31d2efe4532d3876b706479 /sci-astronomy/stuff | |
parent | sci-astronomy/skymaker: Initial import (diff) | |
download | gentoo-845fa17a13e3e097daa3566067b2dd61f6594c9f.tar.gz gentoo-845fa17a13e3e097daa3566067b2dd61f6594c9f.tar.bz2 gentoo-845fa17a13e3e097daa3566067b2dd61f6594c9f.zip |
sci-astronomy/stuff: Initial import
Package-Manager: portage-2.2.27
Diffstat (limited to 'sci-astronomy/stuff')
-rw-r--r-- | sci-astronomy/stuff/Manifest | 1 | ||||
-rw-r--r-- | sci-astronomy/stuff/metadata.xml | 13 | ||||
-rw-r--r-- | sci-astronomy/stuff/stuff-1.26.0.ebuild | 21 |
3 files changed, 35 insertions, 0 deletions
diff --git a/sci-astronomy/stuff/Manifest b/sci-astronomy/stuff/Manifest new file mode 100644 index 000000000000..66d2eaba0b3d --- /dev/null +++ b/sci-astronomy/stuff/Manifest @@ -0,0 +1 @@ +DIST stuff-1.26.0.tar.gz 4110495 SHA256 55b2e646f80653c09f023c3627c69126a4da5f9d73b30867bce91bb4465cd1eb SHA512 6b71112e29d06807c8fc880bd33032a08810554afa563f27d5af19a45293b780ab0b7827ad84ad7942bed28fe3b03bb6c1fa3983667d1fbcbb467b32653203f2 WHIRLPOOL daf35d1fc1d26cf248d3ebc010a907df860ade582195f3267d8224e362545fa7b96fd9bacd081f06bb9655b0a4a459e36a1263466b504bae6ce32957b6a7f462 diff --git a/sci-astronomy/stuff/metadata.xml b/sci-astronomy/stuff/metadata.xml new file mode 100644 index 000000000000..c3150e8cddb3 --- /dev/null +++ b/sci-astronomy/stuff/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"> + Stuff is a program that simulates “perfect” astronomical + catalogues. It generate object lists in ASCII which can read by the + SkyMaker program to produce realistic astronomical fields. +</longdescription> +</pkgmetadata> diff --git a/sci-astronomy/stuff/stuff-1.26.0.ebuild b/sci-astronomy/stuff/stuff-1.26.0.ebuild new file mode 100644 index 000000000000..ac7a7eceda82 --- /dev/null +++ b/sci-astronomy/stuff/stuff-1.26.0.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="Tool for automatic generation of astronomical catalogs" +HOMEPAGE="http://www.astromatic.net/software/stuff/" +SRC_URI="http://www.astromatic.net/download/${PN}/${P}.tar.gz" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + +LICENSE="GPL-3" +SLOT="0" +IUSE="threads" + +RDEPEND="" +DEPEND="${RDEPEND}" + +src_configure() { + econf $(use_enable threads) +} |