summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2024-10-17 15:57:13 +0200
committerPacho Ramos <pacho@gentoo.org>2024-10-17 15:58:08 +0200
commit07f203f861ec85f0f2afec85341e6a247f95e914 (patch)
treef697c03dc1422d30d245f73d92989539c38d9617 /sci-chemistry/molmol
parentsci-chemistry/molmol: Really disable parallel build (diff)
downloadgentoo-07f203f861ec85f0f2afec85341e6a247f95e914.tar.gz
gentoo-07f203f861ec85f0f2afec85341e6a247f95e914.tar.bz2
gentoo-07f203f861ec85f0f2afec85341e6a247f95e914.zip
sci-chemistry/molmol: drop 2k_p2-r8
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'sci-chemistry/molmol')
-rw-r--r--sci-chemistry/molmol/molmol-2k_p2-r8.ebuild102
1 files changed, 0 insertions, 102 deletions
diff --git a/sci-chemistry/molmol/molmol-2k_p2-r8.ebuild b/sci-chemistry/molmol/molmol-2k_p2-r8.ebuild
deleted file mode 100644
index 59bedaf2593d..000000000000
--- a/sci-chemistry/molmol/molmol-2k_p2-r8.ebuild
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit desktop toolchain-funcs
-
-MY_PV="${PV/_p/.}.0"
-MY_P="${PN}-${MY_PV}"
-
-DESCRIPTION="Publication-quality molecular visualization package"
-
-# Original page dead
-#HOMEPAGE="http://hugin.ethz.ch/wuthrich/software/molmol/index.html"
-HOMEPAGE="
- http://www.csb.yale.edu/userguides/graphics/molmol/molmol_descrip.html
- http://pjf.net/science/molmol.html
-"
-SRC_URI="
- ftp://ftp.mol.biol.ethz.ch/software/MOLMOL/unix-gzip/${MY_P}-src.tar.gz
- ftp://ftp.mol.biol.ethz.ch/software/MOLMOL/unix-gzip/${MY_P}-doc.tar.gz
- https://dev.gentoo.org/~soap/distfiles/${PN}-patches.tbz2
- https://dev.gentoo.org/~pacho/${PN}/${PN}_256.png
-"
-
-LICENSE="molmol"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-RDEPEND="
- || (
- (
- media-libs/mesa[X(+)]
- x11-libs/libGLw
- )
- media-libs/mesa[motif(-),X(+)]
- )
- media-libs/libjpeg-turbo:=
- media-libs/libpng:=
- media-libs/tiff:=
- sys-libs/zlib
- virtual/glu
- x11-libs/libXpm
- x11-libs/motif:0
- x11-apps/xdpyinfo
-"
-DEPEND="${RDEPEND}"
-BDEPEND=""
-
-S="${WORKDIR}"
-
-pkg_setup() {
- MMDIR="/usr/$(get_libdir)/molmol"
- MAKEOPTS="${MAKEOPTS} -j1" #880621
-}
-
-src_prepare() {
- default
-
- rm -rf tiff*
- # Patch from http://pjf.net/science/molmol.html, where src.rpm is provided
- eapply "${WORKDIR}"/patches/pjf_RH9_molmol2k2.diff
-
- eapply "${WORKDIR}"/patches/ldflags.patch
- eapply "${WORKDIR}"/patches/opengl.patch
-
- ln -s makedef.lnx "${S}"/makedef || die
-
- sed \
- -e "s|ksh|sh|" \
- -e "s|^MOLMOLHOME.*|MOLMOLHOME=${EPREFIX}/${MMDIR};MOLMOLDEV=\"Motif/OpenGL\"|" \
- -i "${S}"/molmol || die
- sed \
- -e "s|^MCFLAGS.*|MCFLAGS = ${CFLAGS}|" \
- -e "s|^CC.*|CC = $(tc-getCC)|" \
- -i "${S}"/makedef || die
-
- eapply "${WORKDIR}"/patches/cast.patch
- eapply -p0 "${WORKDIR}"/patches/libpng15.patch
-
- # patch from fink
- # fixes numerous bad bracings and hopefully the OGL bug 429974
- eapply "${WORKDIR}"/patches/${P}-fink.patch
-
- eapply "${WORKDIR}"/patches/wild.patch
- tc-export AR
-}
-
-src_install() {
- dobin molmol
-
- exeinto ${MMDIR}
- doexe src/main/molmol
- insinto ${MMDIR}
- doins -r auxil help macros man setup tips
-
- make_desktop_entry "${PN}" MOLMOL
- newicon "${DISTDIR}/${PN}_256.png" "${PN}.png"
-
- einstalldocs
- dodoc HISTORY
-}