diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2008-11-05 22:05:26 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2008-11-05 22:05:26 +0000 |
commit | fa0e9ccc020babbb9c9fadf90d0e0423102a7ff9 (patch) | |
tree | 10e9e837ab9afa4ca514a6b811dae3fc8ff40350 /sci-astronomy | |
parent | Small improvements of init-script. Do run udev-postmount always (diff) | |
download | gentoo-2-fa0e9ccc020babbb9c9fadf90d0e0423102a7ff9.tar.gz gentoo-2-fa0e9ccc020babbb9c9fadf90d0e0423102a7ff9.tar.bz2 gentoo-2-fa0e9ccc020babbb9c9fadf90d0e0423102a7ff9.zip |
Initial import
(Portage version: 2.2_rc11/cvs/Linux 2.6.25-gentoo-r7 x86_64)
Diffstat (limited to 'sci-astronomy')
-rw-r--r-- | sci-astronomy/ast/ChangeLog | 10 | ||||
-rw-r--r-- | sci-astronomy/ast/Manifest | 4 | ||||
-rw-r--r-- | sci-astronomy/ast/ast-4.6.2.ebuild | 42 | ||||
-rw-r--r-- | sci-astronomy/ast/metadata.xml | 12 |
4 files changed, 68 insertions, 0 deletions
diff --git a/sci-astronomy/ast/ChangeLog b/sci-astronomy/ast/ChangeLog new file mode 100644 index 000000000000..232e1fef0e7e --- /dev/null +++ b/sci-astronomy/ast/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for sci-astronomy/ast +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/ast/ChangeLog,v 1.1 2008/11/05 22:05:26 bicatali Exp $ + +*ast-4.6.2 (05 Nov 2008) + + 05 Nov 2008; Sébastien Fabbro <bicatali@gentoo.org> +metadata.xml, + +ast-4.6.2.ebuild: + Initial import + diff --git a/sci-astronomy/ast/Manifest b/sci-astronomy/ast/Manifest new file mode 100644 index 000000000000..4aed5f4ea983 --- /dev/null +++ b/sci-astronomy/ast/Manifest @@ -0,0 +1,4 @@ +DIST ast-4.6-2.tar.gz 11584346 RMD160 da6870fb2fed4b45d3e945541d5bf87dcbd4d7f6 SHA1 dcbd3a66852c9d63861f03998bada01aa7a20164 SHA256 47178d778517e65e213a49c5db59bc123507724d397593a95783cb92cbc9cd0e +EBUILD ast-4.6.2.ebuild 1007 RMD160 ec0d9ab5cf18e321330aedb30615592dca4db238 SHA1 dd5b11deb9a5429e58578e9c5e174b6fdc41757b SHA256 550c34fd58fda34422d36fd1964a973a166815e94dbcdbf638b5feb4f216fc3c +MISC ChangeLog 253 RMD160 e280ecc8e7de69768abf39562cbb836b3ff7b111 SHA1 047c1899211c936be54264ef0f3551e2851e9a3a SHA256 2f08508255f781f788ee017aad756660d9984be368a837316dac6e3483d929a5 +MISC metadata.xml 525 RMD160 0ae28b2258b73b243a0a15af6be1451aaeff7e36 SHA1 6f630d82b6864565d1accaa59c27ed08477e222d SHA256 89798b5d9777297df075ff76257d62740b18eed26028938fa2e13a8686068cfa diff --git a/sci-astronomy/ast/ast-4.6.2.ebuild b/sci-astronomy/ast/ast-4.6.2.ebuild new file mode 100644 index 000000000000..0459cfb42daf --- /dev/null +++ b/sci-astronomy/ast/ast-4.6.2.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/ast/ast-4.6.2.ebuild,v 1.1 2008/11/05 22:05:26 bicatali Exp $ + +EAPI=2 +inherit eutils versionator + +MYP="${PN}-$(replace_version_separator 2 '-')" +DESCRIPTION="Library for handling World Coordinate Systems in astronomy" +HOMEPAGE="http://www.starlink.ac.uk/~dsb/ast/ast.html" +SRC_URI="http://www.starlink.ac.uk/~dsb/${PN}/${MYP}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" +RDEPEND="" +DEPEND="${RDEPEND}" + +S="${WORKDIR}/${MYP}" + +src_prepare() { + # dont do sed in Makefile.am because it requires special starlink automake + sed -i \ + -e 's/@STAR_LATEX_DOCUMENTATION@//' \ + -e 's/ast.news//' \ + -e 's/LICENCE//' \ + -e 's/starfacs_DATA =.*/starfacs_DATA =/' \ + -e '/$(INSTALL_DATA) $$MF/d' \ + Makefile.in || die +} + +src_configure() { + PATH=.:${PATH} econf +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc ast.news fac_1521_err + if use doc; then + dodoc *.ps || die "doc install failed" + fi +} diff --git a/sci-astronomy/ast/metadata.xml b/sci-astronomy/ast/metadata.xml new file mode 100644 index 000000000000..d708cee05f81 --- /dev/null +++ b/sci-astronomy/ast/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>sci</herd> +<longdescription lang="en"> + The AST library provides a comprehensive range of facilities for + attaching world coordinate systems to astronomical data, for + retrieving and interpreting that information and for generating + graphical output based on it. It's easy to use, has plot facilities, + converting facilities, searching coordinate systems. +</longdescription> +</pkgmetadata> |