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 | 566fda7201be682d2505c804fcb230b450a9da00 (patch) | |
tree | 95ab98de046ed02ccb077ed032f5dfa5e7bd25d2 /sci-astronomy/wcstools | |
parent | Version bump because of bug #106560. (diff) | |
download | gentoo-2-566fda7201be682d2505c804fcb230b450a9da00.tar.gz gentoo-2-566fda7201be682d2505c804fcb230b450a9da00.tar.bz2 gentoo-2-566fda7201be682d2505c804fcb230b450a9da00.zip |
Initial import.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'sci-astronomy/wcstools')
-rw-r--r-- | sci-astronomy/wcstools/ChangeLog | 11 | ||||
-rw-r--r-- | sci-astronomy/wcstools/Manifest | 3 | ||||
-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, 47 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..72ffc1d718e1 --- /dev/null +++ b/sci-astronomy/wcstools/Manifest @@ -0,0 +1,3 @@ +MD5 623002d405495853e9079c292b2da775 wcstools-3.6.2.ebuild 671 +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 +} |