diff options
author | Olivier Fisette <ribosome@gentoo.org> | 2005-10-02 15:22:55 +0000 |
---|---|---|
committer | Olivier Fisette <ribosome@gentoo.org> | 2005-10-02 15:22:55 +0000 |
commit | 5c1e23bba79a09a7d6a808fdcfb35c26ab870d35 (patch) | |
tree | a4ce3136d2ba90b8c3fe63b50e9371d4e9d31275 /sci-astronomy | |
parent | Version bump because of bug #106560. (diff) | |
download | historical-5c1e23bba79a09a7d6a808fdcfb35c26ab870d35.tar.gz historical-5c1e23bba79a09a7d6a808fdcfb35c26ab870d35.tar.bz2 historical-5c1e23bba79a09a7d6a808fdcfb35c26ab870d35.zip |
Initial import.
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'sci-astronomy')
-rw-r--r-- | sci-astronomy/wcstools/ChangeLog | 11 | ||||
-rw-r--r-- | sci-astronomy/wcstools/Manifest | 4 | ||||
-rw-r--r-- | sci-astronomy/wcstools/files/digest-wcstools-3.6.2 | 1 | ||||
-rw-r--r-- | sci-astronomy/wcstools/metadata.xml | 5 | ||||
-rw-r--r-- | sci-astronomy/wcstools/wcstools-3.6.2.ebuild | 27 |
5 files changed, 48 insertions, 0 deletions
diff --git a/sci-astronomy/wcstools/ChangeLog b/sci-astronomy/wcstools/ChangeLog new file mode 100644 index 000000000000..fe5789773447 --- /dev/null +++ b/sci-astronomy/wcstools/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for sci-astronomy/wcstools +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/wcstools/ChangeLog,v 1.1 2005/10/02 15:22:55 ribosome Exp $ + +*wcstools-3.6.2 (02 Oct 2005) + + 02 Oct 2005; Olivier Fisette <ribosome@gentoo.org> +metadata.xml, + +wcstools-3.6.2.ebuild: + Initial import. Ebuild submitted by Sebastien Fabbro <seb@ist.utl.pt> (bug + #65666). + diff --git a/sci-astronomy/wcstools/Manifest b/sci-astronomy/wcstools/Manifest new file mode 100644 index 000000000000..7ec5ec923d7f --- /dev/null +++ b/sci-astronomy/wcstools/Manifest @@ -0,0 +1,4 @@ +MD5 14a51cb32000395d1b281edfbc702018 wcstools-3.6.2.ebuild 778 +MD5 c8d0f60ec4dfd63cbdbbe80de2814a6c ChangeLog 433 +MD5 0ffcd41aa96cf1bcffd8b539c27957db metadata.xml 157 +MD5 0b93f6bb7c76bb5aab489080d6df7f71 files/digest-wcstools-3.6.2 66 diff --git a/sci-astronomy/wcstools/files/digest-wcstools-3.6.2 b/sci-astronomy/wcstools/files/digest-wcstools-3.6.2 new file mode 100644 index 000000000000..aa3071fa2e22 --- /dev/null +++ b/sci-astronomy/wcstools/files/digest-wcstools-3.6.2 @@ -0,0 +1 @@ +MD5 8f04849e456df59dc51e7faeeb6e45f4 wcstools-3.6.2.tar.gz 636003 diff --git a/sci-astronomy/wcstools/metadata.xml b/sci-astronomy/wcstools/metadata.xml new file mode 100644 index 000000000000..d369d068ffb8 --- /dev/null +++ b/sci-astronomy/wcstools/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>sci</herd> +</pkgmetadata> diff --git a/sci-astronomy/wcstools/wcstools-3.6.2.ebuild b/sci-astronomy/wcstools/wcstools-3.6.2.ebuild new file mode 100644 index 000000000000..48533a0195bc --- /dev/null +++ b/sci-astronomy/wcstools/wcstools-3.6.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/wcstools/wcstools-3.6.2.ebuild,v 1.1 2005/10/02 15:22:55 ribosome Exp $ + +inherit toolchain-funcs + +DESCRIPTION="Astronomy Library to handle World Coordinate System for FITS images" +HOMEPAGE="http://tdc-www.harvard.edu/software/wcstools" +SRC_URI="http://tdc-www.harvard.edu/software/${PN}/${P}.tar.gz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="" + +src_compile() { + emake CFLAGS="${CFLAGS}" CC="$(tc-getCC)" || die +} + +src_install () { + dobin wcstools bin/* || die + dolib.a libwcs/*.a || die + dodoc Readme Programs Versions || die + doman Man/man1/* || die + insinto /usr/include/wcstools + doins libwcs/*.h || die +} |