summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Kursawe <phosphan@gentoo.org>2004-04-19 12:16:46 +0000
committerPatrick Kursawe <phosphan@gentoo.org>2004-04-19 12:16:46 +0000
commit4dd1eb327a457a5bc641a75de46bfa92ab25e812 (patch)
treeda0c8eedbcbc3cfc8956373a278c4298f9385887 /app-sci/pymol
parentAdding IUSE. (Manifest recommit) (diff)
downloadgentoo-2-4dd1eb327a457a5bc641a75de46bfa92ab25e812.tar.gz
gentoo-2-4dd1eb327a457a5bc641a75de46bfa92ab25e812.tar.bz2
gentoo-2-4dd1eb327a457a5bc641a75de46bfa92ab25e812.zip
Adding IUSE, cleanup
Diffstat (limited to 'app-sci/pymol')
-rw-r--r--app-sci/pymol/ChangeLog6
-rw-r--r--app-sci/pymol/files/digest-pymol-0.821
-rw-r--r--app-sci/pymol/files/digest-pymol-0.861
-rw-r--r--app-sci/pymol/pymol-0.82.ebuild51
-rw-r--r--app-sci/pymol/pymol-0.86.ebuild51
-rw-r--r--app-sci/pymol/pymol-0.88.ebuild5
-rw-r--r--app-sci/pymol/pymol-0.90.ebuild3
7 files changed, 10 insertions, 108 deletions
diff --git a/app-sci/pymol/ChangeLog b/app-sci/pymol/ChangeLog
index 8530b82173a0..9177bd8e9f2d 100644
--- a/app-sci/pymol/ChangeLog
+++ b/app-sci/pymol/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-sci/pymol
# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-sci/pymol/ChangeLog,v 1.8 2004/03/03 17:08:42 pbienst Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-sci/pymol/ChangeLog,v 1.9 2004/04/19 12:16:46 phosphan Exp $
+
+ 19 Apr 2004; Patrick Kursawe <phosphan@gentoo.org> pymol-0.82.ebuild,
+ pymol-0.86.ebuild, pymol-0.88.ebuild, pymol-0.90.ebuild:
+ Adding IUSE, cleanup
03 Mar 2004; Peter Bienstman <pbienst@gentoo.org> pymol-0.90:
marked stable on x86
diff --git a/app-sci/pymol/files/digest-pymol-0.82 b/app-sci/pymol/files/digest-pymol-0.82
deleted file mode 100644
index 3104b5547987..000000000000
--- a/app-sci/pymol/files/digest-pymol-0.82
+++ /dev/null
@@ -1 +0,0 @@
-MD5 d01bf39dbaa3ada27809a0ba013a162a pymol-0_82-src.tgz 1515449
diff --git a/app-sci/pymol/files/digest-pymol-0.86 b/app-sci/pymol/files/digest-pymol-0.86
deleted file mode 100644
index 60788af1aaa8..000000000000
--- a/app-sci/pymol/files/digest-pymol-0.86
+++ /dev/null
@@ -1 +0,0 @@
-MD5 7610bb7689230eff2ec945236fdce0b8 pymol-0_86-src.tgz 1606126
diff --git a/app-sci/pymol/pymol-0.82.ebuild b/app-sci/pymol/pymol-0.82.ebuild
deleted file mode 100644
index f7e65d235b0a..000000000000
--- a/app-sci/pymol/pymol-0.82.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-sci/pymol/pymol-0.82.ebuild,v 1.9 2003/09/02 22:45:15 liquidx Exp $
-
-inherit eutils flag-o-matic
-
-MY_PV=${PV/./_}
-DESCRIPTION="A Python-extensible molecular graphics system."
-HOMEPAGE="http://pymol.sourceforge.net/"
-SRC_URI="mirror://sourceforge/pymol/${PN}-${MY_PV}-src.tgz"
-
-LICENSE="PSF-2.2"
-SLOT="0"
-KEYWORDS="x86"
-
-DEPEND="dev-lang/python
- dev-python/pmw
- dev-python/numeric
- dev-lang/tk
- media-libs/libpng
- sys-libs/zlib
- media-libs/glut"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- cp setup/Rules.linux Rules.make
- epatch ${FILESDIR}/${PN}-gentoo.diff
-}
-
-src_compile() {
- append-flags -ffast-math -funroll-loops
- make || die
-}
-
-src_install() {
- local PYMOL_PATH=/usr/lib/pymol/${PV}
- dodir /usr/lib/pymol/${PV}
- cp -a modules ${D}/usr/lib/pymol/${PV}
- dodir /usr/bin
- cat <<-EOF > ${D}/usr/bin/pymol-${PV}
- #!/bin/sh
- export PYMOL_PATH=/usr/lib/pymol/${PV}
- export TCL_LIBRARY=/usr/lib/tcl8.3
- export PYTHONPATH=/usr/lib/pymol/${PV/modules}:\${PYTHONPATH}
- python /usr/lib/pymol/${PV}/modules/launch_pymol.py \$*
- EOF
- chmod 755 ${D}/usr/bin/pymol-${PV}
- dodoc README DEVELOPERS CHANGES
- dosym /usr/bin/pymol-${PV} /usr/bin/pymol
-}
diff --git a/app-sci/pymol/pymol-0.86.ebuild b/app-sci/pymol/pymol-0.86.ebuild
deleted file mode 100644
index 812c6f65d6b0..000000000000
--- a/app-sci/pymol/pymol-0.86.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-sci/pymol/pymol-0.86.ebuild,v 1.5 2003/09/02 22:45:15 liquidx Exp $
-
-inherit eutils flag-o-matic
-
-MY_PV=${PV/./_}
-DESCRIPTION="A Python-extensible molecular graphics system."
-HOMEPAGE="http://pymol.sourceforge.net/"
-SRC_URI="mirror://sourceforge/pymol/${PN}-${MY_PV}-src.tgz"
-
-LICENSE="PSF-2.2"
-SLOT="0"
-KEYWORDS="x86"
-
-DEPEND="dev-lang/python
- dev-python/pmw
- dev-python/numeric
- dev-lang/tk
- media-libs/libpng
- sys-libs/zlib
- media-libs/glut"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- cp setup/Rules.linux Rules.make
- epatch ${FILESDIR}/${PN}-gentoo.diff
-}
-
-src_compile() {
- append-flags -ffast-math
- make || die
-}
-
-src_install() {
- local PYMOL_PATH=/usr/lib/pymol/${PV}
- dodir /usr/lib/pymol/${PV}
- cp -a modules ${D}/usr/lib/pymol/${PV}
- dodir /usr/bin
- cat <<-EOF > ${D}/usr/bin/pymol-${PV}
- #!/bin/sh
- export PYMOL_PATH=/usr/lib/pymol/${PV}
- export TCL_LIBRARY=/usr/lib/tcl8.3
- export PYTHONPATH=/usr/lib/pymol/${PV/modules}:\${PYTHONPATH}
- python /usr/lib/pymol/${PV}/modules/launch_pymol.py \$*
- EOF
- chmod 755 ${D}/usr/bin/pymol-${PV}
- dodoc README DEVELOPERS CHANGES
- dosym /usr/bin/pymol-${PV} /usr/bin/pymol
-}
diff --git a/app-sci/pymol/pymol-0.88.ebuild b/app-sci/pymol/pymol-0.88.ebuild
index 7d018344401b..5c9082eb7e01 100644
--- a/app-sci/pymol/pymol-0.88.ebuild
+++ b/app-sci/pymol/pymol-0.88.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-sci/pymol/pymol-0.88.ebuild,v 1.4 2003/09/02 22:45:15 liquidx Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-sci/pymol/pymol-0.88.ebuild,v 1.5 2004/04/19 12:16:46 phosphan Exp $
inherit distutils eutils
@@ -10,6 +10,7 @@ SRC_URI="mirror://sourceforge/pymol/${PN}-${PV/./_}-src.tgz"
LICENSE="PSF-2.2"
SLOT="0"
+IUSE=""
KEYWORDS="x86 ppc"
DEPEND="dev-lang/python
diff --git a/app-sci/pymol/pymol-0.90.ebuild b/app-sci/pymol/pymol-0.90.ebuild
index bf9cc42439ee..05183ed4931f 100644
--- a/app-sci/pymol/pymol-0.90.ebuild
+++ b/app-sci/pymol/pymol-0.90.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-sci/pymol/pymol-0.90.ebuild,v 1.4 2004/03/03 17:08:42 pbienst Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-sci/pymol/pymol-0.90.ebuild,v 1.5 2004/04/19 12:16:46 phosphan Exp $
inherit distutils eutils
@@ -10,6 +10,7 @@ SRC_URI="mirror://sourceforge/pymol/${PN}-${PV/./_}-src.tgz"
LICENSE="PSF-2.2"
SLOT="0"
+IUSE=""
KEYWORDS="x86 ~ppc"
DEPEND="dev-lang/python