summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolic <jakov.smolic@sartura.hr>2021-01-18 11:13:57 +0100
committerDavid Seifert <soap@gentoo.org>2021-01-18 11:13:57 +0100
commit5acd2c7a55405f04f34be996f9a372651a9ad330 (patch)
tree0cd7c72a065c8f0a807e5deaf2091538c526b01c /sci-astronomy
parentsci-astronomy/celestia: Remove old (diff)
downloadgentoo-5acd2c7a55405f04f34be996f9a372651a9ad330.tar.gz
gentoo-5acd2c7a55405f04f34be996f9a372651a9ad330.tar.bz2
gentoo-5acd2c7a55405f04f34be996f9a372651a9ad330.zip
sci-astronomy/montage: Remove old
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr> Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-astronomy')
-rw-r--r--sci-astronomy/montage/Manifest1
-rw-r--r--sci-astronomy/montage/files/montage-4.1-fix_freetype_incude.patch13
-rw-r--r--sci-astronomy/montage/files/montage-4.1-use_system_libs.patch49
-rw-r--r--sci-astronomy/montage/montage-4.1.ebuild65
4 files changed, 0 insertions, 128 deletions
diff --git a/sci-astronomy/montage/Manifest b/sci-astronomy/montage/Manifest
index 6e739c3703ec..829e7d953c78 100644
--- a/sci-astronomy/montage/Manifest
+++ b/sci-astronomy/montage/Manifest
@@ -1,2 +1 @@
DIST Montage_v5.0.tar.gz 14663443 BLAKE2B b7dea04a0b9650b3e32bc425891c1221d60123c29663013b4af860efc238dee7552a2b55514ad7eda3be659873e3f14d2039b2e6eea20f565d64c7b8bd055069 SHA512 1396c7f846db4844d2e861622d152f2115ad4c684da02bb14116dfe3d01b559feaf29572663d0dfd234aa50843afaca3bb072d9127fbb2b539a14327c48499ae
-DIST montage-4.1.tar.gz 38542751 BLAKE2B 4e7078ad04a92e18ddddfa72812eaf0b9bf5c9b5571bacfa4c94a8e08c5134238fac778bbfd2289e3d5ec3b6ad854ba237367887801006d5663912f84a5a595a SHA512 a4e6572c0ce04ca950cb425e2589d85609d037e57c575d4efa67b277cecf5e54a2e6d307914ee99997baaba7c5bdd43c72b1e1893111eacc065785689bfc17fb
diff --git a/sci-astronomy/montage/files/montage-4.1-fix_freetype_incude.patch b/sci-astronomy/montage/files/montage-4.1-fix_freetype_incude.patch
deleted file mode 100644
index 0b27c83784db..000000000000
--- a/sci-astronomy/montage/files/montage-4.1-fix_freetype_incude.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Author: Ole Streicher <olebole@debian.org>
-Description: Fix freetype include path
---- a/util/Viewer/graphics.c
-+++ b/util/Viewer/graphics.c
-@@ -1,7 +1,7 @@
- #include <stdio.h>
- #include <math.h>
- #include <freetype2/ft2build.h>
--#include <freetype.h>
-+#include FT_FREETYPE_H
-
- void labeled_curve (char *face_path, int fontsize, int showLine,
- double *xcurve, double *ycurve, int npt,
diff --git a/sci-astronomy/montage/files/montage-4.1-use_system_libs.patch b/sci-astronomy/montage/files/montage-4.1-use_system_libs.patch
deleted file mode 100644
index 4f4ff8d2d748..000000000000
--- a/sci-astronomy/montage/files/montage-4.1-use_system_libs.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-From: Sebastien Fabbro <bicatali@gentoo.org>
-Date: Tue, 7 Jun 2016 18:25:12 +0000
-Subject: Use system libraries
-
---- a/lib/src/Makefile
-+++ b/lib/src/Makefile
-@@ -1,5 +1,5 @@
- l:
-- (cd cfitsio-3.25; ./configure; make; cp libcfitsio.a ../..; cp *.h ../../include)
-+# (cd cfitsio-3.25; ./configure; make; cp libcfitsio.a ../..; cp *.h ../../include)
- (cd cmd; make; make install)
- (cd coord; make; make install)
- (cd mtbl; make; make install)
-@@ -7,25 +7,25 @@ l:
- (cd boundaries; make; make install)
- (cd pixbounds; make; make install)
- (cd www; make; make install)
-- (cd wcstools-3.8.7/libwcs; make; cp libwcs.a ../../..; cp *.h ../../../include)
-+# (cd wcstools-3.8.7/libwcs; make; cp libwcs.a ../../..; cp *.h ../../../include)
- (cd two_plane_v1.1; make; make install)
- (cd lodepng_20140823; make; make install)
-- (cd jpeg-8b; ./configure; make; cp .libs/libjpeg.a ../..; cp jpeglib.h jconfig.h jmorecfg.h ../../include)
-- (cd freetype-2.5.4; ./configure --prefix=`pwd`/../../freetype --without-png; make; make install)
-+# (cd jpeg-8b; ./configure; make; cp .libs/libjpeg.a ../..; cp jpeglib.h jconfig.h jmorecfg.h ../../include)
-+# (cd freetype-2.5.4; ./configure --prefix=`pwd`/../../freetype --without-png; make; make install)
- (cd ..; ranlib *.a)
- chmod 644 ../include/*
-
- clean:
- rm -rf ../include/* ../freetype ../*.a
-- (cd cfitsio-3.25; make clean; rm -rf config.log config.cache config.status lib)
-+# (cd cfitsio-3.25; make clean; rm -rf config.log config.cache config.status lib)
- (cd cmd; make clean)
- (cd coord; make clean)
- (cd mtbl; make clean)
- (cd svc; make clean)
- (cd boundaries; make clean)
- (cd pixbounds; make clean)
-- (cd wcstools-3.8.7/libwcs; make clean)
-+# (cd wcstools-3.8.7/libwcs; make clean)
- (cd two_plane_v1.1; make clean)
- (cd lodepng_20140823; make clean)
-- (cd jpeg-8b; make clean)
-- (cd freetype-2.5.4; make clean; rm -rf objs/libfreetype.la objs/.libs)
-+# (cd jpeg-8b; make clean)
-+# (cd freetype-2.5.4; make clean; rm -rf objs/libfreetype.la objs/.libs)
---
-2.8.3
-
diff --git a/sci-astronomy/montage/montage-4.1.ebuild b/sci-astronomy/montage/montage-4.1.ebuild
deleted file mode 100644
index f4ac9440cdce..000000000000
--- a/sci-astronomy/montage/montage-4.1.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils toolchain-funcs
-
-MYPN=Montage
-
-DESCRIPTION="Toolkit for assembling FITS images into mosaics"
-HOMEPAGE="http://montage.ipac.caltech.edu/"
-SRC_URI="https://github.com/Caltech-IPAC/${MYPN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD GPL-2"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-SLOT="0"
-
-IUSE="doc mpi"
-
-RDEPEND="
- media-libs/freetype:2=
- sci-astronomy/wcstools:0=
- sci-libs/cfitsio:0=
- virtual/jpeg:0
- mpi? ( virtual/mpi )"
-DEPEND="${RDEPEND}"
-
-PATCHES=(
- "${FILESDIR}/${P}-fix_format_errors.patch"
- "${FILESDIR}/${P}-initdistdata.patch"
- "${FILESDIR}/${P}-fix_freetype_incude.patch"
- "${FILESDIR}/${P}-use_system_libs.patch"
-)
-
-S="${WORKDIR}/${MYPN}-${PV}"
-
-src_prepare() {
- default
- tc-export CC AR
-
- find . -name Makefile\* | xargs sed -i \
- -e "/^CC.*=/s:\(gcc\|cc\):$(tc-getCC):g" \
- -e "/^CFLAGS.*=/s:-g:${CFLAGS} $($(tc-getPKG_CONFIG) --cflags wcstools):g" \
- -e "s:-I../../lib/freetype/include :$($(tc-getPKG_CONFIG) --cflags freetype2):g" \
- -e 's:$(CC) -o:$(CC) $(LDFLAGS) -o:g' \
- -e "s:-lwcs:$($(tc-getPKG_CONFIG) --libs wcstools):g" \
- -e "s:-lcfitsio:$($(tc-getPKG_CONFIG) --libs cfitsio):g" \
- -e 's:-lnsl::g' \
- -e "s:ar q:$(tc-getAR) q:g" || die
-
- if use mpi; then
- sed -e 's:# MPICC:MPICC:' \
- -e 's:# BINS:BINS:' \
- -i Montage/Makefile.* || die
- fi
-}
-
-src_install() {
- dobin bin/*
- dodoc README* ChangeHistory
- if use doc; then
- insinto /usr/share/doc/${PF}
- doins -r man/*
- fi
-}