diff options
Diffstat (limited to 'app-sci/raster3d/raster3d-2.6e.ebuild')
-rw-r--r-- | app-sci/raster3d/raster3d-2.6e.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/app-sci/raster3d/raster3d-2.6e.ebuild b/app-sci/raster3d/raster3d-2.6e.ebuild new file mode 100644 index 000000000000..a3240497b767 --- /dev/null +++ b/app-sci/raster3d/raster3d-2.6e.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/app-sci/raster3d/raster3d-2.6e.ebuild,v 1.1 2002/11/02 09:19:39 george Exp $ + +Name="Raster3D" +S="${WORKDIR}/${Name}_${PV}" +SRC_URI="http://www.bmsc.washington.edu/${PN}/${Name}_${PV}.tar.gz" +HOMEPAGE="http://www.bmsc.washington.edu/raster3d/raster3d.html" +DESCRIPTION="a set of tools for generating high quality raster images of proteins or other molecules" + +DEPEND="virtual/x11" + +SLOT="0" +LICENSE="FREE" +KEYWORDS="~x86 ~ppc ~sparc ~sparc64" + +src_compile() { + + cd ${S} + sed "/prefix/s/\/usr\/local/\/usr/" ${S}/Makefile.template > ${S}/Makefile.template.new + mv ${S}/Makefile.template.new ${S}/Makefile.template + + make linux + make all || die + +} + +src_install() { + + dodir /usr/bin + dodir /usr/share/Raster3D/materials + dodir /usr/share/Raster3D/html + dodir /usr/share/Raster3D/examples + dodir /usr/share/man/man1 + + emake \ + prefix=${D}/usr \ + bindir=${D}/usr/bin \ + datadir=${D}/usr/share/Raster3D/materials \ + mandir=${D}/usr/share/man/man1 \ + htmldir=${D}/usr/share/Raster3D/html \ + examdir=${D}/usr/share/Raster3D/examples \ + install || die + + dodir /etc/env.d + echo -e "R3D_LIB=/usr/share/Raster3D/materials" > \ + ${D}/etc/env.d/10raster3d +} + |