commit:     46f00c831a439138c778020ac39892e3cde78f89
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 16 21:38:58 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Wed Sep 16 21:38:58 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46f00c83

sci-chemistry/raster3d: Remove old 3.0.2, 3.0.3

Closes: https://bugs.gentoo.org/722872
Closes: https://bugs.gentoo.org/740978
Closes: https://bugs.gentoo.org/741370
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 sci-chemistry/raster3d/Manifest              |   2 -
 sci-chemistry/raster3d/raster3d-3.0.2.ebuild | 106 ---------------------------
 sci-chemistry/raster3d/raster3d-3.0.3.ebuild | 106 ---------------------------
 3 files changed, 214 deletions(-)

diff --git a/sci-chemistry/raster3d/Manifest b/sci-chemistry/raster3d/Manifest
index e3f4d06cf38..fe0765d711a 100644
--- a/sci-chemistry/raster3d/Manifest
+++ b/sci-chemistry/raster3d/Manifest
@@ -1,3 +1 @@
-DIST Raster3D_3.0-2.tar 1743034 BLAKE2B 
3331d971696f2d95d1b2afe09995a8b5ce5ce7041725f1dd8a5ea27645d1e824956019a1466b60395ac0406d8c055a5052e0a483564777435d7fafda15cad6bb
 SHA512 
f8f73cc91eae521839a9db8ee1a7a9d8727ed510cb574116d89e918480700d844691a6fc3c4a28cb54312b0133cc610422e55d99716803cf3e8bb5d9d934e37f
-DIST Raster3D_3.0-3.tar 1729356 BLAKE2B 
be933cfb2c4bdc500d2cd221b8d71a01f1f4fab9cc0c70e0f5538363fa53714b6198a78e7cf7dd111dd0242e8537f2fcc38e54a12fc71588250e6ecfc561c0bc
 SHA512 
bd372c4ba8d40db38e19f520883ca71ab7c5ef7a451b67150894e229b45167dfe00b77c19e118afc6abdb9ac07800cc16de5d2dc82c3ef9baa751200490e40fa
 DIST Raster3D_3.0-6.tar 1729698 BLAKE2B 
d51b752c189ef720306e78a97e75a8b30c4286b1e75bfa20dd6d8c6e02e3a57d49508faaa1324d8b1f8311049ab3a9b18847bdcb73e7237e3bc91c34fb1ea55b
 SHA512 
656bc19fdef882713c540598173e7f46246b4245f7983edc906fe9fdab7393c47c1687c6e9366987e8af7627d4bfe56a996ff0003aa19872d79724b3e555fdda

diff --git a/sci-chemistry/raster3d/raster3d-3.0.2.ebuild 
b/sci-chemistry/raster3d/raster3d-3.0.2.ebuild
deleted file mode 100644
index a83e43ba57c..00000000000
--- a/sci-chemistry/raster3d/raster3d-3.0.2.ebuild
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils fortran-2 flag-o-matic multilib toolchain-funcs versionator 
prefix
-
-MY_PN="Raster3D"
-MY_PV=$(replace_version_separator 2 -)
-MY_P="${MY_PN}_${MY_PV}"
-
-DESCRIPTION="Generation high quality raster images of proteins or other 
molecules"
-HOMEPAGE="http://www.bmsc.washington.edu/raster3d/raster3d.html";
-SRC_URI="http://www.bmsc.washington.edu/${PN}/${MY_P}.tar.gz -> ${MY_P}.tar"
-
-LICENSE="Artistic-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux"
-IUSE="gd tiff"
-
-RDEPEND="
-       tiff? ( media-libs/tiff:0 )
-       gd? ( media-libs/gd[jpeg,png] )"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-       epatch \
-               "${FILESDIR}"/${PV}-as-needed.patch \
-               "${FILESDIR}"/${PV}-gentoo-prefix.patch
-
-       sed \
-               -e "s:MYPF:${PF}:" \
-               -e "s:MYLIB:$(get_libdir):g" \
-               -i Makefile.template || \
-               die "Failed to patch makefile.template"
-
-       if ! use gd; then
-               sed \
-                       -e "/GDLIBS/s:^:#:g" \
-                       -e "/GDDEFS/s:^:#:g" \
-                       -i Makefile.template || die
-       fi
-
-       if ! use tiff; then
-               sed \
-                       -e "/TLIBS/s:^:#:g" \
-                       -e "/TDEFS/s:^:#:g" \
-                       -i Makefile.template || die
-       fi
-
-       if [[ $(tc-getFC) =~ gfortran ]]; then
-               append-cflags -Dgfortran
-       fi
-
-       append-fflags -ffixed-line-length-132
-
-       eprefixify Makefile.template
-       cp Makefile.template Makefile.incl || die
-}
-
-src_compile() {
-       local target
-       local i
-
-       if [[ $(tc-getFC) =~ gfortran ]]; then
-               target="linux"
-       else
-               target="linux-$(tc-getFC)"
-       fi
-
-       for i in render.o ${target} all; do
-               emake \
-                       CFLAGS="${CFLAGS}" \
-                       LDFLAGS="${LDFLAGS}" \
-                       FFLAGS="${FFLAGS}" \
-                       CC="$(tc-getCC)"\
-                       FC="$(tc-getFC)" \
-                       INCDIRS="-I${EPREFIX}/usr/include" \
-                       LIBDIRS="-L${EPREFIX}/usr/$(get_libdir)" \
-                       ${i}
-       done
-}
-
-src_install() {
-       emake prefix="${ED}"/usr \
-                       bindir="${ED}"/usr/bin \
-                       datadir="${ED}"/usr/share/Raster3D/materials \
-                       mandir="${ED}"/usr/share/man/man1 \
-                       htmldir="${ED}"/usr/share/doc/${PF}/html \
-                       examdir="${ED}"/usr/share/Raster3D/examples \
-                       install
-
-       dodir /etc/env.d
-       echo -e "R3D_LIB=${EPREFIX}/usr/share/${NAME}/materials" > \
-               "${ED}"/etc/env.d/10raster3d || \
-               die "Failed to install env file."
-}
-
-pkg_postinst() {
-       elog "Add following line:"
-       elog "<delegate decode=\"r3d\" command='\"render\" < \"%i\" > \"%o\"' 
/>"
-       elog "to 
${EPREFIX}/usr/$(get_libdir)/ImageMagick-6.5.8/config/delegates.xml"
-       elog "to make imagemagick use raster3d for .r3d files"
-}

diff --git a/sci-chemistry/raster3d/raster3d-3.0.3.ebuild 
b/sci-chemistry/raster3d/raster3d-3.0.3.ebuild
deleted file mode 100644
index 309e0dfc1ba..00000000000
--- a/sci-chemistry/raster3d/raster3d-3.0.3.ebuild
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils fortran-2 flag-o-matic multilib toolchain-funcs versionator 
prefix
-
-MY_PN="Raster3D"
-MY_PV=$(replace_version_separator 2 -)
-MY_P="${MY_PN}_${MY_PV}"
-
-DESCRIPTION="Generation high quality raster images of proteins or other 
molecules"
-HOMEPAGE="http://www.bmsc.washington.edu/raster3d/raster3d.html";
-SRC_URI="http://www.bmsc.washington.edu/${PN}/${MY_P}.tar.gz -> ${MY_P}.tar"
-
-LICENSE="Artistic-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
-IUSE="gd tiff"
-
-RDEPEND="
-       tiff? ( media-libs/tiff:0 )
-       gd? ( media-libs/gd[jpeg,png] )"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-       epatch \
-               "${FILESDIR}"/3.0.2-as-needed.patch \
-               "${FILESDIR}"/3.0.2-gentoo-prefix.patch
-
-       sed \
-               -e "s:MYPF:${PF}:" \
-               -e "s:MYLIB:$(get_libdir):g" \
-               -i Makefile.template || \
-               die "Failed to patch makefile.template"
-
-       if ! use gd; then
-               sed \
-                       -e "/GDLIBS/s:^:#:g" \
-                       -e "/GDDEFS/s:^:#:g" \
-                       -i Makefile.template || die
-       fi
-
-       if ! use tiff; then
-               sed \
-                       -e "/TLIBS/s:^:#:g" \
-                       -e "/TDEFS/s:^:#:g" \
-                       -i Makefile.template || die
-       fi
-
-       if [[ $(tc-getFC) =~ gfortran ]]; then
-               append-cflags -Dgfortran
-       fi
-
-       append-fflags -ffixed-line-length-132
-
-       eprefixify Makefile.template
-       cp Makefile.template Makefile.incl || die
-}
-
-src_compile() {
-       local target
-       local i
-
-       if [[ $(tc-getFC) =~ gfortran ]]; then
-               target="linux"
-       else
-               target="linux-$(tc-getFC)"
-       fi
-
-       for i in render.o ${target} all; do
-               emake \
-                       CFLAGS="${CFLAGS}" \
-                       LDFLAGS="${LDFLAGS}" \
-                       FFLAGS="${FFLAGS}" \
-                       CC="$(tc-getCC)"\
-                       FC="$(tc-getFC)" \
-                       INCDIRS="-I${EPREFIX}/usr/include" \
-                       LIBDIRS="-L${EPREFIX}/usr/$(get_libdir)" \
-                       ${i}
-       done
-}
-
-src_install() {
-       emake prefix="${ED}"/usr \
-                       bindir="${ED}"/usr/bin \
-                       datadir="${ED}"/usr/share/Raster3D/materials \
-                       mandir="${ED}"/usr/share/man/man1 \
-                       htmldir="${ED}"/usr/share/doc/${PF}/html \
-                       examdir="${ED}"/usr/share/Raster3D/examples \
-                       install
-
-       dodir /etc/env.d
-       echo -e "R3D_LIB=${EPREFIX}/usr/share/${NAME}/materials" > \
-               "${ED}"/etc/env.d/10raster3d || \
-               die "Failed to install env file."
-}
-
-pkg_postinst() {
-       elog "Add following line:"
-       elog "<delegate decode=\"r3d\" command='\"render\" < \"%i\" > \"%o\"' 
/>"
-       elog "to 
${EPREFIX}/usr/$(get_libdir)/ImageMagick-6.5.8/config/delegates.xml"
-       elog "to make imagemagick use raster3d for .r3d files"
-}

Reply via email to