commit:     7608f39bcf2539315d141d8a62a564c6495444fe
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 18 18:55:13 2016 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Thu Feb 18 19:05:26 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7608f39b

sci-astronomy/wcslib: removed old

Package-Manager: portage-2.2.27

 sci-astronomy/wcslib/Manifest           |  3 --
 sci-astronomy/wcslib/wcslib-4.21.ebuild | 74 ---------------------------------
 sci-astronomy/wcslib/wcslib-4.22.ebuild | 74 ---------------------------------
 sci-astronomy/wcslib/wcslib-4.23.ebuild | 74 ---------------------------------
 4 files changed, 225 deletions(-)

diff --git a/sci-astronomy/wcslib/Manifest b/sci-astronomy/wcslib/Manifest
index 43af518..469c65a 100644
--- a/sci-astronomy/wcslib/Manifest
+++ b/sci-astronomy/wcslib/Manifest
@@ -1,4 +1 @@
-DIST wcslib-4.21.tar.bz2 1865628 SHA256 
530eb67e432ce0d881f91e9b08734a346a98cee06233433da79ad0c7d5f144ae SHA512 
0fdd7b6cb234565e2dc3b619ec219918103c7a14916294004c12c709be803b10f064fa01c9647a46d2588d4f880ed7db6e65758b510d1a556b3b46f7bc836cdd
 WHIRLPOOL 
daaa3ba60cab0aac0619d317ea338f8d734a6d924c49d806a509560e6cd89a896f4594d48e760997d1289d2639c6a81b8802f65a2d95a3cd82efa533476a354a
-DIST wcslib-4.22.tar.bz2 1866676 SHA256 
afafdf772cb0fe97ae886cbf512fb114d842ca358cce7df9fa93449d1b556950 SHA512 
9288314d842a9b54536b5f512900933e2ac307ef81003172fa511c8334f430161f28084309cde7ad2d94d39020eacec33cf8944d30d78abb51f3e7ff01be2bc4
 WHIRLPOOL 
629bbca2672d0d9ac03696deadfcea155c912c14ef115defac48966c41714ae692fe5cd60587a733ce691612bea9f48d212587dd0a2327739839328b90eae399
-DIST wcslib-4.23.tar.bz2 1876150 SHA256 
baf0fc85fb290e8a575eab4b7046517818a12754a0f01da74db9483467dde5a2 SHA512 
cc82818b1aa88d325b72c5a7967b688060c9d0bfd6ba4fef39c0e9dab00bab547282b1c301dafb1331156c69e6266ef80c39f0dc44b894a977d2b2b3cafb9c87
 WHIRLPOOL 
90ca6e91511371c4e791b7e31b395a6cfda29d1f613176282960896170651b7d5ca7b215254befab1021b18e03e283a88820a248c9c4e6e07edef1bed3adca03
 DIST wcslib-4.25.1.tar.bz2 2027340 SHA256 
1e5127513c2f402a30daa280f5b4f6da53e73484cbc8085868bc432f807c8495 SHA512 
0ed9eeb4b84d2f022394a1ccd04db8a62cb4593d43c5c12e0034f27a12d52cc8c8bf4b14f5d30f71e933682809e3dac5377be1c69bfc6321f6d96b91f6f1da3c
 WHIRLPOOL 
75785c8687cfad92ba6d33444757005c13346188a46913b38afb66997676bae5284e27ccd7f348e88a9d14b6c27d522a06d37e744a5a258e76ef3ed73cefb262

diff --git a/sci-astronomy/wcslib/wcslib-4.21.ebuild 
b/sci-astronomy/wcslib/wcslib-4.21.ebuild
deleted file mode 100644
index f8d333a..0000000
--- a/sci-astronomy/wcslib/wcslib-4.21.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-FORTRAN_NEEDED=fortran
-
-inherit eutils fortran-2 multilib
-
-DESCRIPTION="Astronomical World Coordinate System transformations library"
-HOMEPAGE="http://www.atnf.csiro.au/people/mcalabre/WCS/";
-SRC_URI="ftp://ftp.atnf.csiro.au/pub/software/${PN}/${P}.tar.bz2";
-
-SLOT="0/4"
-LICENSE="LGPL-3"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc fortran fits pgplot static-libs"
-
-RDEPEND="
-       fits? ( sci-libs/cfitsio:0= )
-       pgplot? ( sci-libs/pgplot:0= )"
-DEPEND="${RDEPEND}
-       sys-devel/flex
-       virtual/pkgconfig"
-
-src_prepare() {
-       sed -i -e 's/COPYING\*//' GNUmakefile || die
-}
-
-src_configure() {
-       local myconf=(
-               --docdir="${EPREFIX}"/usr/share/doc/${PF}
-               $(use_enable static-libs static)
-               $(use_enable fortran)
-       )
-       # hacks because cfitsio and pgplot directories are hard-coded
-       if use fits; then
-               myconf+=(
-                       --with-cfitsioinc="${EPREFIX}/usr/include"
-                       --with-cfitsiolib="${EPREFIX}/usr/$(get_libdir)"
-               )
-       else
-               myconf+=( --without-cfitsio )
-       fi
-       if use pgplot; then
-               myconf+=(
-                       --with-pgplotinc="${EPREFIX}/usr/include"
-                       --with-pgplotlib="${EPREFIX}/usr/$(get_libdir)"
-               )
-       else
-               myconf+=( --without-pgplot )
-       fi
-       econf ${myconf[@]}
-}
-
-src_compile() {
-       # nasty makefile, debugging means full rewrite
-       emake -j1
-}
-
-src_test() {
-       emake -j1 check
-}
-
-src_install () {
-       default
-       # static libs are same as shared (compiled with PIC)
-       # so they are not compiled twice
-       use static-libs || rm "${ED}"/usr/$(get_libdir)/lib*.a
-       use doc || rm -r \
-               "${ED}"/usr/share/doc/${PF}/html \
-               "${ED}"/usr/share/doc/${PF}/*.pdf
-}

diff --git a/sci-astronomy/wcslib/wcslib-4.22.ebuild 
b/sci-astronomy/wcslib/wcslib-4.22.ebuild
deleted file mode 100644
index 3b29c1c..0000000
--- a/sci-astronomy/wcslib/wcslib-4.22.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-FORTRAN_NEEDED=fortran
-
-inherit eutils fortran-2 multilib
-
-DESCRIPTION="Astronomical World Coordinate System transformations library"
-HOMEPAGE="http://www.atnf.csiro.au/people/mcalabre/WCS/";
-SRC_URI="ftp://ftp.atnf.csiro.au/pub/software/${PN}/${P}.tar.bz2";
-
-SLOT="0/4"
-LICENSE="LGPL-3"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc fortran fits pgplot static-libs"
-
-RDEPEND="
-       fits? ( sci-libs/cfitsio:0= )
-       pgplot? ( sci-libs/pgplot:0= )"
-DEPEND="${RDEPEND}
-       sys-devel/flex
-       virtual/pkgconfig"
-
-src_prepare() {
-       sed -i -e 's/COPYING\*//' GNUmakefile || die
-}
-
-src_configure() {
-       local myconf=(
-               --docdir="${EPREFIX}"/usr/share/doc/${PF}
-               $(use_enable static-libs static)
-               $(use_enable fortran)
-       )
-       # hacks because cfitsio and pgplot directories are hard-coded
-       if use fits; then
-               myconf+=(
-                       --with-cfitsioinc="${EPREFIX}/usr/include"
-                       --with-cfitsiolib="${EPREFIX}/usr/$(get_libdir)"
-               )
-       else
-               myconf+=( --without-cfitsio )
-       fi
-       if use pgplot; then
-               myconf+=(
-                       --with-pgplotinc="${EPREFIX}/usr/include"
-                       --with-pgplotlib="${EPREFIX}/usr/$(get_libdir)"
-               )
-       else
-               myconf+=( --without-pgplot )
-       fi
-       econf ${myconf[@]}
-}
-
-src_compile() {
-       # nasty makefile, debugging means probably full rewrite
-       emake -j1
-}
-
-src_test() {
-       emake -j1 check
-}
-
-src_install () {
-       default
-       # static libs are same as shared (compiled with PIC)
-       # so they are not compiled twice
-       use static-libs || rm "${ED}"/usr/$(get_libdir)/lib*.a
-       use doc || rm -r \
-               "${ED}"/usr/share/doc/${PF}/html \
-               "${ED}"/usr/share/doc/${PF}/*.pdf
-}

diff --git a/sci-astronomy/wcslib/wcslib-4.23.ebuild 
b/sci-astronomy/wcslib/wcslib-4.23.ebuild
deleted file mode 100644
index 3b29c1c..0000000
--- a/sci-astronomy/wcslib/wcslib-4.23.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-FORTRAN_NEEDED=fortran
-
-inherit eutils fortran-2 multilib
-
-DESCRIPTION="Astronomical World Coordinate System transformations library"
-HOMEPAGE="http://www.atnf.csiro.au/people/mcalabre/WCS/";
-SRC_URI="ftp://ftp.atnf.csiro.au/pub/software/${PN}/${P}.tar.bz2";
-
-SLOT="0/4"
-LICENSE="LGPL-3"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc fortran fits pgplot static-libs"
-
-RDEPEND="
-       fits? ( sci-libs/cfitsio:0= )
-       pgplot? ( sci-libs/pgplot:0= )"
-DEPEND="${RDEPEND}
-       sys-devel/flex
-       virtual/pkgconfig"
-
-src_prepare() {
-       sed -i -e 's/COPYING\*//' GNUmakefile || die
-}
-
-src_configure() {
-       local myconf=(
-               --docdir="${EPREFIX}"/usr/share/doc/${PF}
-               $(use_enable static-libs static)
-               $(use_enable fortran)
-       )
-       # hacks because cfitsio and pgplot directories are hard-coded
-       if use fits; then
-               myconf+=(
-                       --with-cfitsioinc="${EPREFIX}/usr/include"
-                       --with-cfitsiolib="${EPREFIX}/usr/$(get_libdir)"
-               )
-       else
-               myconf+=( --without-cfitsio )
-       fi
-       if use pgplot; then
-               myconf+=(
-                       --with-pgplotinc="${EPREFIX}/usr/include"
-                       --with-pgplotlib="${EPREFIX}/usr/$(get_libdir)"
-               )
-       else
-               myconf+=( --without-pgplot )
-       fi
-       econf ${myconf[@]}
-}
-
-src_compile() {
-       # nasty makefile, debugging means probably full rewrite
-       emake -j1
-}
-
-src_test() {
-       emake -j1 check
-}
-
-src_install () {
-       default
-       # static libs are same as shared (compiled with PIC)
-       # so they are not compiled twice
-       use static-libs || rm "${ED}"/usr/$(get_libdir)/lib*.a
-       use doc || rm -r \
-               "${ED}"/usr/share/doc/${PF}/html \
-               "${ED}"/usr/share/doc/${PF}/*.pdf
-}

Reply via email to