* [gentoo-commits] proj/sci:master commit in: sci-chemistry/chimera-bin/
@ 2012-09-20 12:39 Justin Lecher
0 siblings, 0 replies; 22+ messages in thread
From: Justin Lecher @ 2012-09-20 12:39 UTC (permalink / raw
To: gentoo-commits
commit: b6756e1a42857a9d517932b7e9ac6d6f4e7a0577
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 20 12:37:41 2012 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Thu Sep 20 12:37:41 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=b6756e1a
new addition
---
sci-chemistry/chimera-bin/ChangeLog | 10 ++++
sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild | 55 ++++++++++++++++++++
sci-chemistry/chimera-bin/metadata.xml | 5 ++
3 files changed, 70 insertions(+), 0 deletions(-)
diff --git a/sci-chemistry/chimera-bin/ChangeLog b/sci-chemistry/chimera-bin/ChangeLog
new file mode 100644
index 0000000..f098aa3
--- /dev/null
+++ b/sci-chemistry/chimera-bin/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for sci-chemistry/chimera-bin
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*chimera-bin-1.6.2 (20 Sep 2012)
+
+ 20 Sep 2012; Justin Lecher <jlec@gentoo.org> +chimera-bin-1.6.2.ebuild,
+ +metadata.xml:
+ New addition
+
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild
new file mode 100644
index 0000000..6d39207
--- /dev/null
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+inherit eutils
+
+DESCRIPTION="An extensible Molecular Modelling System"
+HOMEPAGE="http://www.cgl.ucsf.edu/chimera"
+SRC_URI="
+ amd64? ( chimera-1.6.2-linux_x86_64.bin )
+ x86? ( chimera-1.6.2-linux.bin )"
+
+SLOT="0"
+LICENSE="chimera"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+S="${WORKDIR}"
+
+RESTRICT="fetch"
+
+QA_PREBUILT="opt/.*"
+
+pkg_nofetch() {
+ elog "Please visit"
+ elog "http://www.cgl.ucsf.edu/chimera/download.html"
+ elog "and download ${A} into ${DISTDIR}"
+}
+
+src_unpack() {
+ cp "${DISTDIR}"/${A} ${A}.zip
+ unzip ${A}.zip || die
+}
+
+src_install() {
+ chmod +x ./chimera.bin
+ dodir /opt/
+ ./chimera.bin -d foo || die
+ doicon foo/chimeraIcon.png
+ mv foo "${ED}/opt/${PN}" || die
+
+ cat >> "${T}"/chimera <<- EOF
+ #!${EPREFX}/bin/bash
+
+ export PATH="${EPREFIX}/opt/${PN}/bin:\${PATH}"
+ "${EPREFIX}/opt/${PN}/bin/chimera" \$@
+ EOF
+
+ exeinto /opt/bin/
+ doexe "${T}"/chimera
+
+ make_desktop_entry "${EPREFIX}/opt/bin/chimera" Chimera chimeraIcon
+}
diff --git a/sci-chemistry/chimera-bin/metadata.xml b/sci-chemistry/chimera-bin/metadata.xml
new file mode 100644
index 0000000..d369d06
--- /dev/null
+++ b/sci-chemistry/chimera-bin/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>sci</herd>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/chimera-bin/
@ 2012-09-21 6:00 Justin Lecher
0 siblings, 0 replies; 22+ messages in thread
From: Justin Lecher @ 2012-09-21 6:00 UTC (permalink / raw
To: gentoo-commits
commit: a9b964feb4e26000a732cdffb05dc82d88babe58
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 21 06:00:20 2012 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Sep 21 06:00:20 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=a9b964fe
sci-chemistry/chimera-bin: Set rpath on prefix
(Portage version: 2.2.0_alpha130/git/Linux x86_64, unsigned Manifest commit)
---
sci-chemistry/chimera-bin/ChangeLog | 3 +++
sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild | 9 +++++++++
2 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/sci-chemistry/chimera-bin/ChangeLog b/sci-chemistry/chimera-bin/ChangeLog
index f098aa3..751995c 100644
--- a/sci-chemistry/chimera-bin/ChangeLog
+++ b/sci-chemistry/chimera-bin/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 21 Sep 2012; Justin Lecher <jlec@gentoo.org> chimera-bin-1.6.2.ebuild:
+ Set rpath on prefix
+
*chimera-bin-1.6.2 (20 Sep 2012)
20 Sep 2012; Justin Lecher <jlec@gentoo.org> +chimera-bin-1.6.2.ebuild,
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild
index 6d39207..6fea9b1 100644
--- a/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild
@@ -17,6 +17,8 @@ LICENSE="chimera"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE=""
+DEPEND="prefix? ( dev-util/patchelf )"
+
S="${WORKDIR}"
RESTRICT="fetch"
@@ -52,4 +54,11 @@ src_install() {
doexe "${T}"/chimera
make_desktop_entry "${EPREFIX}/opt/bin/chimera" Chimera chimeraIcon
+
+ if use prefix; then
+ local i
+ for i in "${ED}"/opt/${PN}/bin/{tiffcp,povray,al2co} "${ED}"/opt/${PN}/lib/*.so; do
+ patchelf --set-rpath "${EPREFIX}/usr/lib:${EPREFIX}/opt/${PN}/lib" "${i}" || die
+ done
+ fi
}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/chimera-bin/
@ 2012-09-21 6:03 Justin Lecher
0 siblings, 0 replies; 22+ messages in thread
From: Justin Lecher @ 2012-09-21 6:03 UTC (permalink / raw
To: gentoo-commits
commit: e816a8baf5e8d3dafa3438a71a7385b3b6b03988
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 21 06:03:17 2012 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Sep 21 06:03:17 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=e816a8ba
sci-chemistry/chimera-bin: Don't strip
(Portage version: 2.2.0_alpha130/git/Linux x86_64, unsigned Manifest commit)
---
sci-chemistry/chimera-bin/ChangeLog | 3 +++
sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild | 2 +-
2 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/sci-chemistry/chimera-bin/ChangeLog b/sci-chemistry/chimera-bin/ChangeLog
index 751995c..3b78d92 100644
--- a/sci-chemistry/chimera-bin/ChangeLog
+++ b/sci-chemistry/chimera-bin/ChangeLog
@@ -3,6 +3,9 @@
# $Header: $
21 Sep 2012; Justin Lecher <jlec@gentoo.org> chimera-bin-1.6.2.ebuild:
+ Don't strip
+
+ 21 Sep 2012; Justin Lecher <jlec@gentoo.org> chimera-bin-1.6.2.ebuild:
Set rpath on prefix
*chimera-bin-1.6.2 (20 Sep 2012)
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild
index 6fea9b1..50ba959 100644
--- a/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild
@@ -21,7 +21,7 @@ DEPEND="prefix? ( dev-util/patchelf )"
S="${WORKDIR}"
-RESTRICT="fetch"
+RESTRICT="fetch strip"
QA_PREBUILT="opt/.*"
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/chimera-bin/
@ 2012-11-14 14:09 Justin Lecher
0 siblings, 0 replies; 22+ messages in thread
From: Justin Lecher @ 2012-11-14 14:09 UTC (permalink / raw
To: gentoo-commits
commit: 021193a4d242250e65f70eb3fd9781f032cafb35
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 14 14:08:22 2012 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Nov 14 14:08:22 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=021193a4
sci-chemistry/chimera-bin: Fix deps
Package-Manager: portage-2.2.0_alpha142
---
sci-chemistry/chimera-bin/ChangeLog | 3 ++
sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild | 29 ++++++++++++++++++++
2 files changed, 32 insertions(+), 0 deletions(-)
diff --git a/sci-chemistry/chimera-bin/ChangeLog b/sci-chemistry/chimera-bin/ChangeLog
index 3b78d92..2377e30 100644
--- a/sci-chemistry/chimera-bin/ChangeLog
+++ b/sci-chemistry/chimera-bin/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 14 Nov 2012; Justin Lecher <jlec@gentoo.org> chimera-bin-1.6.2.ebuild:
+ Fix deps
+
21 Sep 2012; Justin Lecher <jlec@gentoo.org> chimera-bin-1.6.2.ebuild:
Don't strip
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild
index 50ba959..7b00291 100644
--- a/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild
@@ -18,6 +18,35 @@ KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE=""
DEPEND="prefix? ( dev-util/patchelf )"
+RDEPEND="
+ dev-lang/tcl
+ dev-lang/tk
+ dev-libs/expat
+ dev-libs/libotf
+ dev-libs/openssl:0
+ dev-libs/libpcre
+ sys-libs/zlib
+ media-libs/fontconfig
+ media-libs/freetype
+ media-libs/ftgl
+ media-libs/libpng:1.2
+ media-libs/tiff
+ media-libs/tiff:3
+ sci-libs/hdf5
+ sys-devel/gcc[openmp,fortran]
+ virtual/jpeg
+ virtual/glu
+ www-apps/swish-e
+ x11-libs/libX11
+ x11-libs/libICE
+ x11-libs/libXext
+ x11-libs/libXft
+ x11-libs/libXmu
+ x11-libs/libXpm
+ x11-libs/libXrender
+ x11-libs/libSM
+ x11-libs/libXt
+ || ( x11-libs/libGLw <media-libs/mesa-8 )"
S="${WORKDIR}"
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/chimera-bin/
@ 2012-11-14 14:41 Justin Lecher
0 siblings, 0 replies; 22+ messages in thread
From: Justin Lecher @ 2012-11-14 14:41 UTC (permalink / raw
To: gentoo-commits
commit: 25bec23fff62a3d0a79baf61f89dce177de6b2e5
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 14 14:28:31 2012 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Nov 14 14:28:31 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=25bec23f
sci-chemistry/chimera-bin: Add dep on virtual/opengl
Package-Manager: portage-2.2.0_alpha142
---
sci-chemistry/chimera-bin/ChangeLog | 3 +++
sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild | 1 +
2 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/sci-chemistry/chimera-bin/ChangeLog b/sci-chemistry/chimera-bin/ChangeLog
index 2377e30..b302a50 100644
--- a/sci-chemistry/chimera-bin/ChangeLog
+++ b/sci-chemistry/chimera-bin/ChangeLog
@@ -3,6 +3,9 @@
# $Header: $
14 Nov 2012; Justin Lecher <jlec@gentoo.org> chimera-bin-1.6.2.ebuild:
+ Add dep on virtual/opengl
+
+ 14 Nov 2012; Justin Lecher <jlec@gentoo.org> chimera-bin-1.6.2.ebuild:
Fix deps
21 Sep 2012; Justin Lecher <jlec@gentoo.org> chimera-bin-1.6.2.ebuild:
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild
index 7b00291..9a0a287 100644
--- a/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild
@@ -36,6 +36,7 @@ RDEPEND="
sys-devel/gcc[openmp,fortran]
virtual/jpeg
virtual/glu
+ virtual/opengl
www-apps/swish-e
x11-libs/libX11
x11-libs/libICE
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/chimera-bin/
@ 2013-08-19 23:33 Sebastien Fabbro
0 siblings, 0 replies; 22+ messages in thread
From: Sebastien Fabbro @ 2013-08-19 23:33 UTC (permalink / raw
To: gentoo-commits
commit: 2033bfc18df64f7191ccd714560fdfae2bfa5331
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 16 10:32:29 2013 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Fri Aug 16 10:32:29 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=2033bfc1
sci-chemistry/chimera-bin: Version and EAPI BUmp
Package-Manager: portage-2.2.0
---
sci-chemistry/chimera-bin/ChangeLog | 8 +++++++-
sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild | 8 ++++----
.../{chimera-bin-1.6.2.ebuild => chimera-bin-1.8.ebuild} | 8 ++++----
sci-chemistry/chimera-bin/metadata.xml | 2 +-
4 files changed, 16 insertions(+), 10 deletions(-)
diff --git a/sci-chemistry/chimera-bin/ChangeLog b/sci-chemistry/chimera-bin/ChangeLog
index b302a50..734fbb8 100644
--- a/sci-chemistry/chimera-bin/ChangeLog
+++ b/sci-chemistry/chimera-bin/ChangeLog
@@ -1,7 +1,13 @@
# ChangeLog for sci-chemistry/chimera-bin
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*chimera-bin-1.8 (16 Aug 2013)
+
+ 16 Aug 2013; Justin Lecher <jlec@gentoo.org> chimera-bin-1.6.2.ebuild,
+ +chimera-bin-1.8.ebuild, metadata.xml:
+ Version and EAPI BUmp
+
14 Nov 2012; Justin Lecher <jlec@gentoo.org> chimera-bin-1.6.2.ebuild:
Add dep on virtual/opengl
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild
index 9a0a287..558fddc 100644
--- a/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild
@@ -1,16 +1,16 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI=4
+EAPI=5
inherit eutils
DESCRIPTION="An extensible Molecular Modelling System"
HOMEPAGE="http://www.cgl.ucsf.edu/chimera"
SRC_URI="
- amd64? ( chimera-1.6.2-linux_x86_64.bin )
- x86? ( chimera-1.6.2-linux.bin )"
+ amd64? ( chimera-${PV}-linux_x86_64.bin )
+ x86? ( chimera-${PV}-linux.bin )"
SLOT="0"
LICENSE="chimera"
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.8.ebuild
similarity index 93%
copy from sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild
copy to sci-chemistry/chimera-bin/chimera-bin-1.8.ebuild
index 9a0a287..558fddc 100644
--- a/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.8.ebuild
@@ -1,16 +1,16 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI=4
+EAPI=5
inherit eutils
DESCRIPTION="An extensible Molecular Modelling System"
HOMEPAGE="http://www.cgl.ucsf.edu/chimera"
SRC_URI="
- amd64? ( chimera-1.6.2-linux_x86_64.bin )
- x86? ( chimera-1.6.2-linux.bin )"
+ amd64? ( chimera-${PV}-linux_x86_64.bin )
+ x86? ( chimera-${PV}-linux.bin )"
SLOT="0"
LICENSE="chimera"
diff --git a/sci-chemistry/chimera-bin/metadata.xml b/sci-chemistry/chimera-bin/metadata.xml
index e42d0af..51fdeda 100644
--- a/sci-chemistry/chimera-bin/metadata.xml
+++ b/sci-chemistry/chimera-bin/metadata.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <herd>sci-chemistry</herd>
+ <herd>sci-chemistry</herd>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/chimera-bin/
@ 2014-01-18 7:38 Justin Lecher
0 siblings, 0 replies; 22+ messages in thread
From: Justin Lecher @ 2014-01-18 7:38 UTC (permalink / raw
To: gentoo-commits
commit: d7715040619e35925eb7f0a053e92aacae1d5d15
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 16 09:21:14 2014 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sat Jan 18 07:38:34 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=d7715040
sci-chemistry/chimera-bin: Version BUmp, #498154
Package-Manager: portage-2.2.8
---
sci-chemistry/chimera-bin/ChangeLog | 7 +-
sci-chemistry/chimera-bin/chimera-bin-1.8.1.ebuild | 94 ++++++++++++++++++++++
2 files changed, 100 insertions(+), 1 deletion(-)
diff --git a/sci-chemistry/chimera-bin/ChangeLog b/sci-chemistry/chimera-bin/ChangeLog
index 734fbb8..622652c 100644
--- a/sci-chemistry/chimera-bin/ChangeLog
+++ b/sci-chemistry/chimera-bin/ChangeLog
@@ -1,7 +1,12 @@
# ChangeLog for sci-chemistry/chimera-bin
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*chimera-bin-1.8.1 (16 Jan 2014)
+
+ 16 Jan 2014; Justin Lecher <jlec@gentoo.org> +chimera-bin-1.8.1.ebuild:
+ Version BUmp, #498154
+
*chimera-bin-1.8 (16 Aug 2013)
16 Aug 2013; Justin Lecher <jlec@gentoo.org> chimera-bin-1.6.2.ebuild,
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.8.1.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.8.1.ebuild
new file mode 100644
index 0000000..07734d6
--- /dev/null
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.8.1.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit eutils
+
+DESCRIPTION="An extensible Molecular Modelling System"
+HOMEPAGE="http://www.cgl.ucsf.edu/chimera"
+SRC_URI="
+ amd64? ( chimera-${PV}-linux_x86_64.bin )
+ x86? ( chimera-${PV}-linux.bin )"
+
+SLOT="0"
+LICENSE="chimera"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+DEPEND="prefix? ( dev-util/patchelf )"
+RDEPEND="
+ dev-lang/tcl
+ dev-lang/tk
+ dev-libs/expat
+ dev-libs/libotf
+ dev-libs/openssl:0
+ dev-libs/libpcre
+ sys-libs/zlib
+ media-libs/fontconfig
+ media-libs/freetype
+ media-libs/ftgl
+ media-libs/libpng:1.2
+ media-libs/tiff
+ media-libs/tiff:3
+ sci-libs/hdf5
+ sys-devel/gcc[openmp,fortran]
+ virtual/jpeg
+ virtual/glu
+ virtual/opengl
+ www-apps/swish-e
+ x11-libs/libX11
+ x11-libs/libICE
+ x11-libs/libXext
+ x11-libs/libXft
+ x11-libs/libXmu
+ x11-libs/libXpm
+ x11-libs/libXrender
+ x11-libs/libSM
+ x11-libs/libXt
+ || ( x11-libs/libGLw <media-libs/mesa-8 )"
+
+S="${WORKDIR}"
+
+RESTRICT="fetch strip"
+
+QA_PREBUILT="opt/.*"
+
+pkg_nofetch() {
+ elog "Please visit"
+ elog "http://www.cgl.ucsf.edu/chimera/download.html"
+ elog "and download ${A} into ${DISTDIR}"
+}
+
+src_unpack() {
+ cp "${DISTDIR}"/${A} ${A}.zip
+ unzip ${A}.zip || die
+}
+
+src_install() {
+ chmod +x ./chimera.bin
+ dodir /opt/
+ ./chimera.bin -d foo || die
+ doicon foo/chimeraIcon.png
+ mv foo "${ED}/opt/${PN}" || die
+
+ cat >> "${T}"/chimera <<- EOF
+ #!${EPREFX}/bin/bash
+
+ export PATH="${EPREFIX}/opt/${PN}/bin:\${PATH}"
+ "${EPREFIX}/opt/${PN}/bin/chimera" \$@
+ EOF
+
+ exeinto /opt/bin/
+ doexe "${T}"/chimera
+
+ make_desktop_entry "${EPREFIX}/opt/bin/chimera" Chimera chimeraIcon
+
+ if use prefix; then
+ local i
+ for i in "${ED}"/opt/${PN}/bin/{tiffcp,povray,al2co} "${ED}"/opt/${PN}/lib/*.so; do
+ patchelf --set-rpath "${EPREFIX}/usr/lib:${EPREFIX}/opt/${PN}/lib" "${i}" || die
+ done
+ fi
+}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/chimera-bin/
@ 2014-01-18 7:39 Justin Lecher
0 siblings, 0 replies; 22+ messages in thread
From: Justin Lecher @ 2014-01-18 7:39 UTC (permalink / raw
To: gentoo-commits
commit: 22a3828557c627fdb7be5086d58d56120d64a9b5
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 16 09:21:14 2014 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Thu Jan 16 09:21:14 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=22a38285
sci-chemistry/chimera-bin: Version BUmp, #498154
Package-Manager: portage-2.2.8
---
sci-chemistry/chimera-bin/ChangeLog | 7 +-
sci-chemistry/chimera-bin/chimera-bin-1.8.1.ebuild | 94 ++++++++++++++++++++++
2 files changed, 100 insertions(+), 1 deletion(-)
diff --git a/sci-chemistry/chimera-bin/ChangeLog b/sci-chemistry/chimera-bin/ChangeLog
index 734fbb8..622652c 100644
--- a/sci-chemistry/chimera-bin/ChangeLog
+++ b/sci-chemistry/chimera-bin/ChangeLog
@@ -1,7 +1,12 @@
# ChangeLog for sci-chemistry/chimera-bin
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*chimera-bin-1.8.1 (16 Jan 2014)
+
+ 16 Jan 2014; Justin Lecher <jlec@gentoo.org> +chimera-bin-1.8.1.ebuild:
+ Version BUmp, #498154
+
*chimera-bin-1.8 (16 Aug 2013)
16 Aug 2013; Justin Lecher <jlec@gentoo.org> chimera-bin-1.6.2.ebuild,
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.8.1.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.8.1.ebuild
new file mode 100644
index 0000000..07734d6
--- /dev/null
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.8.1.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit eutils
+
+DESCRIPTION="An extensible Molecular Modelling System"
+HOMEPAGE="http://www.cgl.ucsf.edu/chimera"
+SRC_URI="
+ amd64? ( chimera-${PV}-linux_x86_64.bin )
+ x86? ( chimera-${PV}-linux.bin )"
+
+SLOT="0"
+LICENSE="chimera"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+DEPEND="prefix? ( dev-util/patchelf )"
+RDEPEND="
+ dev-lang/tcl
+ dev-lang/tk
+ dev-libs/expat
+ dev-libs/libotf
+ dev-libs/openssl:0
+ dev-libs/libpcre
+ sys-libs/zlib
+ media-libs/fontconfig
+ media-libs/freetype
+ media-libs/ftgl
+ media-libs/libpng:1.2
+ media-libs/tiff
+ media-libs/tiff:3
+ sci-libs/hdf5
+ sys-devel/gcc[openmp,fortran]
+ virtual/jpeg
+ virtual/glu
+ virtual/opengl
+ www-apps/swish-e
+ x11-libs/libX11
+ x11-libs/libICE
+ x11-libs/libXext
+ x11-libs/libXft
+ x11-libs/libXmu
+ x11-libs/libXpm
+ x11-libs/libXrender
+ x11-libs/libSM
+ x11-libs/libXt
+ || ( x11-libs/libGLw <media-libs/mesa-8 )"
+
+S="${WORKDIR}"
+
+RESTRICT="fetch strip"
+
+QA_PREBUILT="opt/.*"
+
+pkg_nofetch() {
+ elog "Please visit"
+ elog "http://www.cgl.ucsf.edu/chimera/download.html"
+ elog "and download ${A} into ${DISTDIR}"
+}
+
+src_unpack() {
+ cp "${DISTDIR}"/${A} ${A}.zip
+ unzip ${A}.zip || die
+}
+
+src_install() {
+ chmod +x ./chimera.bin
+ dodir /opt/
+ ./chimera.bin -d foo || die
+ doicon foo/chimeraIcon.png
+ mv foo "${ED}/opt/${PN}" || die
+
+ cat >> "${T}"/chimera <<- EOF
+ #!${EPREFX}/bin/bash
+
+ export PATH="${EPREFIX}/opt/${PN}/bin:\${PATH}"
+ "${EPREFIX}/opt/${PN}/bin/chimera" \$@
+ EOF
+
+ exeinto /opt/bin/
+ doexe "${T}"/chimera
+
+ make_desktop_entry "${EPREFIX}/opt/bin/chimera" Chimera chimeraIcon
+
+ if use prefix; then
+ local i
+ for i in "${ED}"/opt/${PN}/bin/{tiffcp,povray,al2co} "${ED}"/opt/${PN}/lib/*.so; do
+ patchelf --set-rpath "${EPREFIX}/usr/lib:${EPREFIX}/opt/${PN}/lib" "${i}" || die
+ done
+ fi
+}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/chimera-bin/
@ 2014-06-27 9:53 Alexey Shvetsov
0 siblings, 0 replies; 22+ messages in thread
From: Alexey Shvetsov @ 2014-06-27 9:53 UTC (permalink / raw
To: gentoo-commits
commit: cbedd96c2be91aaede98b5e1105ae8652c7a0ab2
Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 27 09:52:53 2014 +0000
Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Fri Jun 27 09:52:53 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=cbedd96c
Update chimera to new version
Package-Manager: portage-2.2.10
---
sci-chemistry/chimera-bin/ChangeLog | 6 +-
sci-chemistry/chimera-bin/chimera-bin-1.9.ebuild | 94 ++++++++++++++++++++++++
2 files changed, 99 insertions(+), 1 deletion(-)
diff --git a/sci-chemistry/chimera-bin/ChangeLog b/sci-chemistry/chimera-bin/ChangeLog
index 0ff838c..6d37a9f 100644
--- a/sci-chemistry/chimera-bin/ChangeLog
+++ b/sci-chemistry/chimera-bin/ChangeLog
@@ -2,6 +2,11 @@
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*chimera-bin-1.9 (27 Jun 2014)
+
+ 27 Jun 2014; Alexey Shvetsov <alexxy@gentoo.org> +chimera-bin-1.9.ebuild:
+ Update chimera to new version
+
*chimera-bin-1.8.1 (16 Jan 2014)
16 Jan 2014; Justin Lecher <jlec@gentoo.org> +chimera-bin-1.8.1.ebuild:
@@ -30,4 +35,3 @@
20 Sep 2012; Justin Lecher <jlec@gentoo.org> +chimera-bin-1.6.2.ebuild,
+metadata.xml:
New addition
-
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.9.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.9.ebuild
new file mode 100644
index 0000000..07734d6
--- /dev/null
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.9.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit eutils
+
+DESCRIPTION="An extensible Molecular Modelling System"
+HOMEPAGE="http://www.cgl.ucsf.edu/chimera"
+SRC_URI="
+ amd64? ( chimera-${PV}-linux_x86_64.bin )
+ x86? ( chimera-${PV}-linux.bin )"
+
+SLOT="0"
+LICENSE="chimera"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+DEPEND="prefix? ( dev-util/patchelf )"
+RDEPEND="
+ dev-lang/tcl
+ dev-lang/tk
+ dev-libs/expat
+ dev-libs/libotf
+ dev-libs/openssl:0
+ dev-libs/libpcre
+ sys-libs/zlib
+ media-libs/fontconfig
+ media-libs/freetype
+ media-libs/ftgl
+ media-libs/libpng:1.2
+ media-libs/tiff
+ media-libs/tiff:3
+ sci-libs/hdf5
+ sys-devel/gcc[openmp,fortran]
+ virtual/jpeg
+ virtual/glu
+ virtual/opengl
+ www-apps/swish-e
+ x11-libs/libX11
+ x11-libs/libICE
+ x11-libs/libXext
+ x11-libs/libXft
+ x11-libs/libXmu
+ x11-libs/libXpm
+ x11-libs/libXrender
+ x11-libs/libSM
+ x11-libs/libXt
+ || ( x11-libs/libGLw <media-libs/mesa-8 )"
+
+S="${WORKDIR}"
+
+RESTRICT="fetch strip"
+
+QA_PREBUILT="opt/.*"
+
+pkg_nofetch() {
+ elog "Please visit"
+ elog "http://www.cgl.ucsf.edu/chimera/download.html"
+ elog "and download ${A} into ${DISTDIR}"
+}
+
+src_unpack() {
+ cp "${DISTDIR}"/${A} ${A}.zip
+ unzip ${A}.zip || die
+}
+
+src_install() {
+ chmod +x ./chimera.bin
+ dodir /opt/
+ ./chimera.bin -d foo || die
+ doicon foo/chimeraIcon.png
+ mv foo "${ED}/opt/${PN}" || die
+
+ cat >> "${T}"/chimera <<- EOF
+ #!${EPREFX}/bin/bash
+
+ export PATH="${EPREFIX}/opt/${PN}/bin:\${PATH}"
+ "${EPREFIX}/opt/${PN}/bin/chimera" \$@
+ EOF
+
+ exeinto /opt/bin/
+ doexe "${T}"/chimera
+
+ make_desktop_entry "${EPREFIX}/opt/bin/chimera" Chimera chimeraIcon
+
+ if use prefix; then
+ local i
+ for i in "${ED}"/opt/${PN}/bin/{tiffcp,povray,al2co} "${ED}"/opt/${PN}/lib/*.so; do
+ patchelf --set-rpath "${EPREFIX}/usr/lib:${EPREFIX}/opt/${PN}/lib" "${i}" || die
+ done
+ fi
+}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/chimera-bin/
@ 2014-09-15 6:32 Justin Lecher
0 siblings, 0 replies; 22+ messages in thread
From: Justin Lecher @ 2014-09-15 6:32 UTC (permalink / raw
To: gentoo-commits
commit: 809ab77357771cae8d90a12f0441081cd730c976
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 15 06:30:20 2014 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Sep 15 06:30:20 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=809ab773
sci-chemistry/chimera-bin: Drop www-apps/py-swish-e dep as it is masked
Package-Manager: portage-2.2.12
---
sci-chemistry/chimera-bin/ChangeLog | 4 +
sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild | 94 ----------------------
sci-chemistry/chimera-bin/chimera-bin-1.8.1.ebuild | 94 ----------------------
sci-chemistry/chimera-bin/chimera-bin-1.8.ebuild | 94 ----------------------
sci-chemistry/chimera-bin/chimera-bin-1.9.ebuild | 1 -
5 files changed, 4 insertions(+), 283 deletions(-)
diff --git a/sci-chemistry/chimera-bin/ChangeLog b/sci-chemistry/chimera-bin/ChangeLog
index 6d37a9f..239b4ae 100644
--- a/sci-chemistry/chimera-bin/ChangeLog
+++ b/sci-chemistry/chimera-bin/ChangeLog
@@ -2,6 +2,10 @@
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 15 Sep 2014; Justin Lecher <jlec@gentoo.org> -chimera-bin-1.6.2.ebuild,
+ -chimera-bin-1.8.ebuild, -chimera-bin-1.8.1.ebuild, chimera-bin-1.9.ebuild:
+ Drop www-apps/py-swish-e dep as it is masked
+
*chimera-bin-1.9 (27 Jun 2014)
27 Jun 2014; Alexey Shvetsov <alexxy@gentoo.org> +chimera-bin-1.9.ebuild:
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild
deleted file mode 100644
index 07734d6..0000000
--- a/sci-chemistry/chimera-bin/chimera-bin-1.6.2.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-inherit eutils
-
-DESCRIPTION="An extensible Molecular Modelling System"
-HOMEPAGE="http://www.cgl.ucsf.edu/chimera"
-SRC_URI="
- amd64? ( chimera-${PV}-linux_x86_64.bin )
- x86? ( chimera-${PV}-linux.bin )"
-
-SLOT="0"
-LICENSE="chimera"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-DEPEND="prefix? ( dev-util/patchelf )"
-RDEPEND="
- dev-lang/tcl
- dev-lang/tk
- dev-libs/expat
- dev-libs/libotf
- dev-libs/openssl:0
- dev-libs/libpcre
- sys-libs/zlib
- media-libs/fontconfig
- media-libs/freetype
- media-libs/ftgl
- media-libs/libpng:1.2
- media-libs/tiff
- media-libs/tiff:3
- sci-libs/hdf5
- sys-devel/gcc[openmp,fortran]
- virtual/jpeg
- virtual/glu
- virtual/opengl
- www-apps/swish-e
- x11-libs/libX11
- x11-libs/libICE
- x11-libs/libXext
- x11-libs/libXft
- x11-libs/libXmu
- x11-libs/libXpm
- x11-libs/libXrender
- x11-libs/libSM
- x11-libs/libXt
- || ( x11-libs/libGLw <media-libs/mesa-8 )"
-
-S="${WORKDIR}"
-
-RESTRICT="fetch strip"
-
-QA_PREBUILT="opt/.*"
-
-pkg_nofetch() {
- elog "Please visit"
- elog "http://www.cgl.ucsf.edu/chimera/download.html"
- elog "and download ${A} into ${DISTDIR}"
-}
-
-src_unpack() {
- cp "${DISTDIR}"/${A} ${A}.zip
- unzip ${A}.zip || die
-}
-
-src_install() {
- chmod +x ./chimera.bin
- dodir /opt/
- ./chimera.bin -d foo || die
- doicon foo/chimeraIcon.png
- mv foo "${ED}/opt/${PN}" || die
-
- cat >> "${T}"/chimera <<- EOF
- #!${EPREFX}/bin/bash
-
- export PATH="${EPREFIX}/opt/${PN}/bin:\${PATH}"
- "${EPREFIX}/opt/${PN}/bin/chimera" \$@
- EOF
-
- exeinto /opt/bin/
- doexe "${T}"/chimera
-
- make_desktop_entry "${EPREFIX}/opt/bin/chimera" Chimera chimeraIcon
-
- if use prefix; then
- local i
- for i in "${ED}"/opt/${PN}/bin/{tiffcp,povray,al2co} "${ED}"/opt/${PN}/lib/*.so; do
- patchelf --set-rpath "${EPREFIX}/usr/lib:${EPREFIX}/opt/${PN}/lib" "${i}" || die
- done
- fi
-}
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.8.1.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.8.1.ebuild
deleted file mode 100644
index 07734d6..0000000
--- a/sci-chemistry/chimera-bin/chimera-bin-1.8.1.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-inherit eutils
-
-DESCRIPTION="An extensible Molecular Modelling System"
-HOMEPAGE="http://www.cgl.ucsf.edu/chimera"
-SRC_URI="
- amd64? ( chimera-${PV}-linux_x86_64.bin )
- x86? ( chimera-${PV}-linux.bin )"
-
-SLOT="0"
-LICENSE="chimera"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-DEPEND="prefix? ( dev-util/patchelf )"
-RDEPEND="
- dev-lang/tcl
- dev-lang/tk
- dev-libs/expat
- dev-libs/libotf
- dev-libs/openssl:0
- dev-libs/libpcre
- sys-libs/zlib
- media-libs/fontconfig
- media-libs/freetype
- media-libs/ftgl
- media-libs/libpng:1.2
- media-libs/tiff
- media-libs/tiff:3
- sci-libs/hdf5
- sys-devel/gcc[openmp,fortran]
- virtual/jpeg
- virtual/glu
- virtual/opengl
- www-apps/swish-e
- x11-libs/libX11
- x11-libs/libICE
- x11-libs/libXext
- x11-libs/libXft
- x11-libs/libXmu
- x11-libs/libXpm
- x11-libs/libXrender
- x11-libs/libSM
- x11-libs/libXt
- || ( x11-libs/libGLw <media-libs/mesa-8 )"
-
-S="${WORKDIR}"
-
-RESTRICT="fetch strip"
-
-QA_PREBUILT="opt/.*"
-
-pkg_nofetch() {
- elog "Please visit"
- elog "http://www.cgl.ucsf.edu/chimera/download.html"
- elog "and download ${A} into ${DISTDIR}"
-}
-
-src_unpack() {
- cp "${DISTDIR}"/${A} ${A}.zip
- unzip ${A}.zip || die
-}
-
-src_install() {
- chmod +x ./chimera.bin
- dodir /opt/
- ./chimera.bin -d foo || die
- doicon foo/chimeraIcon.png
- mv foo "${ED}/opt/${PN}" || die
-
- cat >> "${T}"/chimera <<- EOF
- #!${EPREFX}/bin/bash
-
- export PATH="${EPREFIX}/opt/${PN}/bin:\${PATH}"
- "${EPREFIX}/opt/${PN}/bin/chimera" \$@
- EOF
-
- exeinto /opt/bin/
- doexe "${T}"/chimera
-
- make_desktop_entry "${EPREFIX}/opt/bin/chimera" Chimera chimeraIcon
-
- if use prefix; then
- local i
- for i in "${ED}"/opt/${PN}/bin/{tiffcp,povray,al2co} "${ED}"/opt/${PN}/lib/*.so; do
- patchelf --set-rpath "${EPREFIX}/usr/lib:${EPREFIX}/opt/${PN}/lib" "${i}" || die
- done
- fi
-}
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.8.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.8.ebuild
deleted file mode 100644
index 07734d6..0000000
--- a/sci-chemistry/chimera-bin/chimera-bin-1.8.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-inherit eutils
-
-DESCRIPTION="An extensible Molecular Modelling System"
-HOMEPAGE="http://www.cgl.ucsf.edu/chimera"
-SRC_URI="
- amd64? ( chimera-${PV}-linux_x86_64.bin )
- x86? ( chimera-${PV}-linux.bin )"
-
-SLOT="0"
-LICENSE="chimera"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-DEPEND="prefix? ( dev-util/patchelf )"
-RDEPEND="
- dev-lang/tcl
- dev-lang/tk
- dev-libs/expat
- dev-libs/libotf
- dev-libs/openssl:0
- dev-libs/libpcre
- sys-libs/zlib
- media-libs/fontconfig
- media-libs/freetype
- media-libs/ftgl
- media-libs/libpng:1.2
- media-libs/tiff
- media-libs/tiff:3
- sci-libs/hdf5
- sys-devel/gcc[openmp,fortran]
- virtual/jpeg
- virtual/glu
- virtual/opengl
- www-apps/swish-e
- x11-libs/libX11
- x11-libs/libICE
- x11-libs/libXext
- x11-libs/libXft
- x11-libs/libXmu
- x11-libs/libXpm
- x11-libs/libXrender
- x11-libs/libSM
- x11-libs/libXt
- || ( x11-libs/libGLw <media-libs/mesa-8 )"
-
-S="${WORKDIR}"
-
-RESTRICT="fetch strip"
-
-QA_PREBUILT="opt/.*"
-
-pkg_nofetch() {
- elog "Please visit"
- elog "http://www.cgl.ucsf.edu/chimera/download.html"
- elog "and download ${A} into ${DISTDIR}"
-}
-
-src_unpack() {
- cp "${DISTDIR}"/${A} ${A}.zip
- unzip ${A}.zip || die
-}
-
-src_install() {
- chmod +x ./chimera.bin
- dodir /opt/
- ./chimera.bin -d foo || die
- doicon foo/chimeraIcon.png
- mv foo "${ED}/opt/${PN}" || die
-
- cat >> "${T}"/chimera <<- EOF
- #!${EPREFX}/bin/bash
-
- export PATH="${EPREFIX}/opt/${PN}/bin:\${PATH}"
- "${EPREFIX}/opt/${PN}/bin/chimera" \$@
- EOF
-
- exeinto /opt/bin/
- doexe "${T}"/chimera
-
- make_desktop_entry "${EPREFIX}/opt/bin/chimera" Chimera chimeraIcon
-
- if use prefix; then
- local i
- for i in "${ED}"/opt/${PN}/bin/{tiffcp,povray,al2co} "${ED}"/opt/${PN}/lib/*.so; do
- patchelf --set-rpath "${EPREFIX}/usr/lib:${EPREFIX}/opt/${PN}/lib" "${i}" || die
- done
- fi
-}
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.9.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.9.ebuild
index 07734d6..f9efc69 100644
--- a/sci-chemistry/chimera-bin/chimera-bin-1.9.ebuild
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.9.ebuild
@@ -37,7 +37,6 @@ RDEPEND="
virtual/jpeg
virtual/glu
virtual/opengl
- www-apps/swish-e
x11-libs/libX11
x11-libs/libICE
x11-libs/libXext
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/chimera-bin/
@ 2015-10-10 14:11 Justin Lecher
0 siblings, 0 replies; 22+ messages in thread
From: Justin Lecher @ 2015-10-10 14:11 UTC (permalink / raw
To: gentoo-commits
commit: acbce7a0d4b267ea535a79ffea69a9b0c50a5345
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 10 14:10:31 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sat Oct 10 14:10:31 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=acbce7a0
sci-chemistry/chimera-bin: Version Bump
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=562026
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=498154
Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
.../chimera-bin/{chimera-bin-1.9.ebuild => chimera-bin-1.10.2.ebuild} | 4 +++-
sci-chemistry/chimera-bin/chimera-bin-1.9.ebuild | 4 +++-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.9.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.10.2.ebuild
similarity index 94%
copy from sci-chemistry/chimera-bin/chimera-bin-1.9.ebuild
copy to sci-chemistry/chimera-bin/chimera-bin-1.10.2.ebuild
index 2ef6338..f312545 100644
--- a/sci-chemistry/chimera-bin/chimera-bin-1.9.ebuild
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.10.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -57,6 +57,8 @@ QA_PREBUILT="opt/.*"
pkg_nofetch() {
elog "Please visit"
elog "http://www.cgl.ucsf.edu/chimera/download.html"
+ elog "or"
+ elog "http://www.cgl.ucsf.edu/chimera/olddownload.html"
elog "and download ${A} into ${DISTDIR}"
}
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.9.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.9.ebuild
index 2ef6338..f312545 100644
--- a/sci-chemistry/chimera-bin/chimera-bin-1.9.ebuild
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.9.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -57,6 +57,8 @@ QA_PREBUILT="opt/.*"
pkg_nofetch() {
elog "Please visit"
elog "http://www.cgl.ucsf.edu/chimera/download.html"
+ elog "or"
+ elog "http://www.cgl.ucsf.edu/chimera/olddownload.html"
elog "and download ${A} into ${DISTDIR}"
}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/chimera-bin/
@ 2015-11-03 14:49 Justin Lecher
0 siblings, 0 replies; 22+ messages in thread
From: Justin Lecher @ 2015-11-03 14:49 UTC (permalink / raw
To: gentoo-commits
commit: 6710324623a9f6e9822d53b02199561ea369d5e2
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 3 14:45:44 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue Nov 3 14:45:44 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=67103246
sci-chemistry/chimera-bin: Add missing deps
Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
sci-chemistry/chimera-bin/chimera-bin-1.10.2.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.10.2.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.10.2.ebuild
index f312545..eca8c5f 100644
--- a/sci-chemistry/chimera-bin/chimera-bin-1.10.2.ebuild
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.10.2.ebuild
@@ -33,6 +33,7 @@ RDEPEND="
media-libs/tiff
media-libs/tiff:3
sci-libs/hdf5
+ sci-libs/xdrfile
sys-devel/gcc[openmp,fortran]
virtual/jpeg
virtual/glu
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/chimera-bin/
@ 2016-11-11 19:13 Alexey Shvetsov
0 siblings, 0 replies; 22+ messages in thread
From: Alexey Shvetsov @ 2016-11-11 19:13 UTC (permalink / raw
To: gentoo-commits
commit: e0749c981ed2c55c14774799f9af241c99db3129
Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 11 19:13:02 2016 +0000
Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Fri Nov 11 19:13:02 2016 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=e0749c98
sci-chemistry/chimera-bin: Version bump
Clean old ones
Package-Manager: portage-2.3.0
...bin-1.10.2.ebuild => chimera-bin-1.11.2.ebuild} | 6 +-
sci-chemistry/chimera-bin/chimera-bin-1.9.ebuild | 95 ----------------------
2 files changed, 3 insertions(+), 98 deletions(-)
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.10.2.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.11.2.ebuild
similarity index 95%
rename from sci-chemistry/chimera-bin/chimera-bin-1.10.2.ebuild
rename to sci-chemistry/chimera-bin/chimera-bin-1.11.2.ebuild
index eca8c5f..0e2fff6 100644
--- a/sci-chemistry/chimera-bin/chimera-bin-1.10.2.ebuild
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.11.2.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
-EAPI=5
+EAPI=6
inherit eutils
@@ -47,7 +47,7 @@ RDEPEND="
x11-libs/libXrender
x11-libs/libSM
x11-libs/libXt
- || ( x11-libs/libGLw <media-libs/mesa-8 )"
+ x11-libs/libGLw"
S="${WORKDIR}"
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.9.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.9.ebuild
deleted file mode 100644
index f312545..0000000
--- a/sci-chemistry/chimera-bin/chimera-bin-1.9.ebuild
+++ /dev/null
@@ -1,95 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils
-
-DESCRIPTION="An extensible Molecular Modelling System"
-HOMEPAGE="http://www.cgl.ucsf.edu/chimera"
-SRC_URI="
- amd64? ( chimera-${PV}-linux_x86_64.bin )
- x86? ( chimera-${PV}-linux.bin )"
-
-SLOT="0"
-LICENSE="chimera"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-DEPEND="prefix? ( dev-util/patchelf )"
-RDEPEND="
- dev-lang/tcl
- dev-lang/tk
- dev-libs/expat
- dev-libs/libotf
- dev-libs/openssl:0
- dev-libs/libpcre
- sys-libs/zlib
- media-libs/fontconfig
- media-libs/freetype
- media-libs/ftgl
- media-libs/libpng:1.2
- media-libs/tiff
- media-libs/tiff:3
- sci-libs/hdf5
- sys-devel/gcc[openmp,fortran]
- virtual/jpeg
- virtual/glu
- virtual/opengl
- x11-libs/libX11
- x11-libs/libICE
- x11-libs/libXext
- x11-libs/libXft
- x11-libs/libXmu
- x11-libs/libXpm
- x11-libs/libXrender
- x11-libs/libSM
- x11-libs/libXt
- || ( x11-libs/libGLw <media-libs/mesa-8 )"
-
-S="${WORKDIR}"
-
-RESTRICT="fetch strip"
-
-QA_PREBUILT="opt/.*"
-
-pkg_nofetch() {
- elog "Please visit"
- elog "http://www.cgl.ucsf.edu/chimera/download.html"
- elog "or"
- elog "http://www.cgl.ucsf.edu/chimera/olddownload.html"
- elog "and download ${A} into ${DISTDIR}"
-}
-
-src_unpack() {
- cp "${DISTDIR}"/${A} ${A}.zip
- unzip ${A}.zip || die
-}
-
-src_install() {
- chmod +x ./chimera.bin
- dodir /opt/
- ./chimera.bin -d foo || die
- doicon foo/chimeraIcon.png
- mv foo "${ED}/opt/${PN}" || die
-
- cat >> "${T}"/chimera <<- EOF
- #!${EPREFX}/bin/bash
-
- export PATH="${EPREFIX}/opt/${PN}/bin:\${PATH}"
- "${EPREFIX}/opt/${PN}/bin/chimera" \$@
- EOF
-
- exeinto /opt/bin/
- doexe "${T}"/chimera
-
- make_desktop_entry "${EPREFIX}/opt/bin/chimera" Chimera chimeraIcon
-
- if use prefix; then
- local i
- for i in "${ED}"/opt/${PN}/bin/{tiffcp,povray,al2co} "${ED}"/opt/${PN}/lib/*.so; do
- patchelf --set-rpath "${EPREFIX}/usr/lib:${EPREFIX}/opt/${PN}/lib" "${i}" || die
- done
- fi
-}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/chimera-bin/
@ 2020-09-28 8:13 Horea Christian
0 siblings, 0 replies; 22+ messages in thread
From: Horea Christian @ 2020-09-28 8:13 UTC (permalink / raw
To: gentoo-commits
commit: 6e6a05ff1bc60fd9ec22a6805c7afd6429730ceb
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Mon Sep 28 08:11:53 2020 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Mon Sep 28 08:11:53 2020 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=6e6a05ff
sci-chemistry/chimera-bin: version bump 1.14
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild | 92 +++++++++++++++++++++++
1 file changed, 92 insertions(+)
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild
new file mode 100644
index 000000000..33f2301fd
--- /dev/null
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild
@@ -0,0 +1,92 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit eutils
+
+DESCRIPTION="An extensible Molecular Modelling System"
+HOMEPAGE="http://www.cgl.ucsf.edu/chimera"
+SRC_URI="chimera-${PV}-linux_x86_64.bin"
+
+SLOT="0"
+LICENSE="chimera"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+DEPEND="prefix? ( dev-util/patchelf )"
+RDEPEND="
+ dev-lang/tcl
+ dev-lang/tk
+ dev-libs/expat
+ dev-libs/libotf
+ dev-libs/openssl:0
+ dev-libs/libpcre
+ sys-libs/zlib
+ media-libs/fontconfig
+ media-libs/freetype
+ media-libs/ftgl
+ media-libs/libpng
+ media-libs/tiff
+ sci-libs/hdf5
+ sci-libs/xdrfile
+ sys-devel/gcc[openmp,fortran]
+ virtual/jpeg
+ virtual/glu
+ virtual/opengl
+ x11-libs/libX11
+ x11-libs/libICE
+ x11-libs/libXext
+ x11-libs/libXft
+ x11-libs/libXmu
+ x11-libs/libXpm
+ x11-libs/libXrender
+ x11-libs/libSM
+ x11-libs/libXt
+ x11-libs/libGLw"
+
+S="${WORKDIR}"
+
+RESTRICT="fetch strip"
+
+QA_PREBUILT="opt/.*"
+
+pkg_nofetch() {
+ elog "Please visit"
+ elog "http://www.cgl.ucsf.edu/chimera/download.html"
+ elog "or"
+ elog "http://www.cgl.ucsf.edu/chimera/olddownload.html"
+ elog "and download ${A} into your DISTDIR"
+}
+
+src_unpack() {
+ cp "${DISTDIR}"/${A} ${A}.zip
+ unzip ${A}.zip || die
+}
+
+src_install() {
+ chmod +x ./chimera.bin
+ dodir /opt/
+ ./chimera.bin -d foo || die
+ doicon foo/chimeraIcon.png
+ mv foo "${ED}/opt/${PN}" || die
+
+ cat >> "${T}"/chimera <<- EOF
+ #!${EPREFX}/bin/bash
+
+ export PATH="${EPREFIX}/opt/${PN}/bin:\${PATH}"
+ "${EPREFIX}/opt/${PN}/bin/chimera" \$@
+ EOF
+
+ exeinto /opt/bin/
+ doexe "${T}"/chimera
+
+ make_desktop_entry "${EPREFIX}/opt/bin/chimera" Chimera chimeraIcon
+
+ if use prefix; then
+ local i
+ for i in "${ED}"/opt/${PN}/bin/{tiffcp,povray,al2co} "${ED}"/opt/${PN}/lib/*.so; do
+ patchelf --set-rpath "${EPREFIX}/usr/lib:${EPREFIX}/opt/${PN}/lib" "${i}" || die
+ done
+ fi
+}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/chimera-bin/
@ 2020-09-28 8:13 Horea Christian
0 siblings, 0 replies; 22+ messages in thread
From: Horea Christian @ 2020-09-28 8:13 UTC (permalink / raw
To: gentoo-commits
commit: 09614d0def59a509fb3f2955182a7a39f89f5b85
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Mon Sep 28 08:10:24 2020 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Mon Sep 28 08:10:24 2020 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=09614d0d
sci-chemistry/chimera-bin: updated EAPI, dependencies, DISTDIR
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
sci-chemistry/chimera-bin/chimera-bin-1.11.2.ebuild | 14 +++++---------
1 file changed, 5 insertions(+), 9 deletions(-)
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.11.2.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.11.2.ebuild
index 74176f329..726d7c1c9 100644
--- a/sci-chemistry/chimera-bin/chimera-bin-1.11.2.ebuild
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.11.2.ebuild
@@ -1,16 +1,13 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
inherit eutils
DESCRIPTION="An extensible Molecular Modelling System"
HOMEPAGE="http://www.cgl.ucsf.edu/chimera"
-SRC_URI="
- amd64? ( chimera-${PV}-linux_x86_64.bin )
- x86? ( chimera-${PV}-linux.bin )"
-
+SRC_URI="chimera-${PV}-linux_x86_64.bin"
SLOT="0"
LICENSE="chimera"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
@@ -28,9 +25,8 @@ RDEPEND="
media-libs/fontconfig
media-libs/freetype
media-libs/ftgl
- media-libs/libpng:1.2
+ media-libs/libpng
media-libs/tiff
- media-libs/tiff:3
sci-libs/hdf5
sci-libs/xdrfile
sys-devel/gcc[openmp,fortran]
@@ -59,7 +55,7 @@ pkg_nofetch() {
elog "http://www.cgl.ucsf.edu/chimera/download.html"
elog "or"
elog "http://www.cgl.ucsf.edu/chimera/olddownload.html"
- elog "and download ${A} into ${DISTDIR}"
+ elog "and download ${A} into your DISTDIR"
}
src_unpack() {
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/chimera-bin/
@ 2020-12-31 11:59 Aisha Tammy
0 siblings, 0 replies; 22+ messages in thread
From: Aisha Tammy @ 2020-12-31 11:59 UTC (permalink / raw
To: gentoo-commits
commit: df1ab0d2f73c87b2281ef56708db0d7863522a2d
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Thu Dec 31 11:38:39 2020 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Thu Dec 31 11:59:17 2020 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=df1ab0d2
sci-chemistry/chimera-bin: make repoman happy
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
Closes: https://github.com/gentoo/sci/pull/1015
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
sci-chemistry/chimera-bin/chimera-bin-1.11.2.ebuild | 4 ++--
sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild | 3 +--
2 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.11.2.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.11.2.ebuild
index 726d7c1c9..7b00f46d5 100644
--- a/sci-chemistry/chimera-bin/chimera-bin-1.11.2.ebuild
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.11.2.ebuild
@@ -8,10 +8,10 @@ inherit eutils
DESCRIPTION="An extensible Molecular Modelling System"
HOMEPAGE="http://www.cgl.ucsf.edu/chimera"
SRC_URI="chimera-${PV}-linux_x86_64.bin"
+
SLOT="0"
LICENSE="chimera"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
+KEYWORDS="~amd64 ~x86"
DEPEND="prefix? ( dev-util/patchelf )"
RDEPEND="
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild
index 33f2301fd..7b00f46d5 100644
--- a/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild
@@ -11,8 +11,7 @@ SRC_URI="chimera-${PV}-linux_x86_64.bin"
SLOT="0"
LICENSE="chimera"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
+KEYWORDS="~amd64 ~x86"
DEPEND="prefix? ( dev-util/patchelf )"
RDEPEND="
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/chimera-bin/
@ 2021-01-29 11:40 Andrew Ammerlaan
0 siblings, 0 replies; 22+ messages in thread
From: Andrew Ammerlaan @ 2021-01-29 11:40 UTC (permalink / raw
To: gentoo-commits
commit: 6669657e4cfd7fe2debbb375038cfee80f8f7058
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Fri Jan 29 11:40:15 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Fri Jan 29 11:40:15 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=6669657e
sci-chemistry/chimera-bin: remove old
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
.../chimera-bin/chimera-bin-1.11.2.ebuild | 91 ----------------------
1 file changed, 91 deletions(-)
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.11.2.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.11.2.ebuild
deleted file mode 100644
index 7b00f46d5..000000000
--- a/sci-chemistry/chimera-bin/chimera-bin-1.11.2.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit eutils
-
-DESCRIPTION="An extensible Molecular Modelling System"
-HOMEPAGE="http://www.cgl.ucsf.edu/chimera"
-SRC_URI="chimera-${PV}-linux_x86_64.bin"
-
-SLOT="0"
-LICENSE="chimera"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="prefix? ( dev-util/patchelf )"
-RDEPEND="
- dev-lang/tcl
- dev-lang/tk
- dev-libs/expat
- dev-libs/libotf
- dev-libs/openssl:0
- dev-libs/libpcre
- sys-libs/zlib
- media-libs/fontconfig
- media-libs/freetype
- media-libs/ftgl
- media-libs/libpng
- media-libs/tiff
- sci-libs/hdf5
- sci-libs/xdrfile
- sys-devel/gcc[openmp,fortran]
- virtual/jpeg
- virtual/glu
- virtual/opengl
- x11-libs/libX11
- x11-libs/libICE
- x11-libs/libXext
- x11-libs/libXft
- x11-libs/libXmu
- x11-libs/libXpm
- x11-libs/libXrender
- x11-libs/libSM
- x11-libs/libXt
- x11-libs/libGLw"
-
-S="${WORKDIR}"
-
-RESTRICT="fetch strip"
-
-QA_PREBUILT="opt/.*"
-
-pkg_nofetch() {
- elog "Please visit"
- elog "http://www.cgl.ucsf.edu/chimera/download.html"
- elog "or"
- elog "http://www.cgl.ucsf.edu/chimera/olddownload.html"
- elog "and download ${A} into your DISTDIR"
-}
-
-src_unpack() {
- cp "${DISTDIR}"/${A} ${A}.zip
- unzip ${A}.zip || die
-}
-
-src_install() {
- chmod +x ./chimera.bin
- dodir /opt/
- ./chimera.bin -d foo || die
- doicon foo/chimeraIcon.png
- mv foo "${ED}/opt/${PN}" || die
-
- cat >> "${T}"/chimera <<- EOF
- #!${EPREFX}/bin/bash
-
- export PATH="${EPREFIX}/opt/${PN}/bin:\${PATH}"
- "${EPREFIX}/opt/${PN}/bin/chimera" \$@
- EOF
-
- exeinto /opt/bin/
- doexe "${T}"/chimera
-
- make_desktop_entry "${EPREFIX}/opt/bin/chimera" Chimera chimeraIcon
-
- if use prefix; then
- local i
- for i in "${ED}"/opt/${PN}/bin/{tiffcp,povray,al2co} "${ED}"/opt/${PN}/lib/*.so; do
- patchelf --set-rpath "${EPREFIX}/usr/lib:${EPREFIX}/opt/${PN}/lib" "${i}" || die
- done
- fi
-}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/chimera-bin/
@ 2021-01-29 11:40 Andrew Ammerlaan
0 siblings, 0 replies; 22+ messages in thread
From: Andrew Ammerlaan @ 2021-01-29 11:40 UTC (permalink / raw
To: gentoo-commits
commit: a26637ce3fd8098a5c4b842d1eeb250129aefb59
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Fri Jan 29 11:39:55 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Fri Jan 29 11:39:55 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=a26637ce
sci-chemistry/chimera-bin: add version 1.15
also fix the symlink to freetype and add dependency on python2_7
Closes: https://github.com/gentoo/sci/issues/1046
Closes: https://github.com/gentoo/sci/issues/1045
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild | 22 +++++++++++++++-------
...era-bin-1.14.ebuild => chimera-bin-1.15.ebuild} | 22 +++++++++++++++-------
2 files changed, 30 insertions(+), 14 deletions(-)
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild
index 7b00f46d5..4b277862d 100644
--- a/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild
@@ -1,12 +1,14 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit eutils
+PYTHON_COMPAT=( python2_7 )
+
+inherit desktop xdg python-any-r1
DESCRIPTION="An extensible Molecular Modelling System"
-HOMEPAGE="http://www.cgl.ucsf.edu/chimera"
+HOMEPAGE="https://www.cgl.ucsf.edu/chimera/"
SRC_URI="chimera-${PV}-linux_x86_64.bin"
SLOT="0"
@@ -42,19 +44,21 @@ RDEPEND="
x11-libs/libXrender
x11-libs/libSM
x11-libs/libXt
- x11-libs/libGLw"
+ x11-libs/libGLw
+ ${PYTHON_DEPS}
+"
S="${WORKDIR}"
-RESTRICT="fetch strip"
+RESTRICT="fetch mirror strip"
QA_PREBUILT="opt/.*"
pkg_nofetch() {
elog "Please visit"
- elog "http://www.cgl.ucsf.edu/chimera/download.html"
+ elog "https://www.cgl.ucsf.edu/chimera/download.html"
elog "or"
- elog "http://www.cgl.ucsf.edu/chimera/olddownload.html"
+ elog "https://www.cgl.ucsf.edu/chimera/olddownload.html"
elog "and download ${A} into your DISTDIR"
}
@@ -80,6 +84,10 @@ src_install() {
exeinto /opt/bin/
doexe "${T}"/chimera
+ # point the symlink to the correct location
+ rm "${ED}/opt/chimera-bin/include/ft2build.h"
+ dosym ../../../usr/include/freetype2/ft2build.h opt/chimera-bin/include/ft2build.h
+
make_desktop_entry "${EPREFIX}/opt/bin/chimera" Chimera chimeraIcon
if use prefix; then
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.15.ebuild
similarity index 75%
copy from sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild
copy to sci-chemistry/chimera-bin/chimera-bin-1.15.ebuild
index 7b00f46d5..4b277862d 100644
--- a/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.15.ebuild
@@ -1,12 +1,14 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit eutils
+PYTHON_COMPAT=( python2_7 )
+
+inherit desktop xdg python-any-r1
DESCRIPTION="An extensible Molecular Modelling System"
-HOMEPAGE="http://www.cgl.ucsf.edu/chimera"
+HOMEPAGE="https://www.cgl.ucsf.edu/chimera/"
SRC_URI="chimera-${PV}-linux_x86_64.bin"
SLOT="0"
@@ -42,19 +44,21 @@ RDEPEND="
x11-libs/libXrender
x11-libs/libSM
x11-libs/libXt
- x11-libs/libGLw"
+ x11-libs/libGLw
+ ${PYTHON_DEPS}
+"
S="${WORKDIR}"
-RESTRICT="fetch strip"
+RESTRICT="fetch mirror strip"
QA_PREBUILT="opt/.*"
pkg_nofetch() {
elog "Please visit"
- elog "http://www.cgl.ucsf.edu/chimera/download.html"
+ elog "https://www.cgl.ucsf.edu/chimera/download.html"
elog "or"
- elog "http://www.cgl.ucsf.edu/chimera/olddownload.html"
+ elog "https://www.cgl.ucsf.edu/chimera/olddownload.html"
elog "and download ${A} into your DISTDIR"
}
@@ -80,6 +84,10 @@ src_install() {
exeinto /opt/bin/
doexe "${T}"/chimera
+ # point the symlink to the correct location
+ rm "${ED}/opt/chimera-bin/include/ft2build.h"
+ dosym ../../../usr/include/freetype2/ft2build.h opt/chimera-bin/include/ft2build.h
+
make_desktop_entry "${EPREFIX}/opt/bin/chimera" Chimera chimeraIcon
if use prefix; then
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/chimera-bin/
@ 2021-01-29 11:46 Andrew Ammerlaan
0 siblings, 0 replies; 22+ messages in thread
From: Andrew Ammerlaan @ 2021-01-29 11:46 UTC (permalink / raw
To: gentoo-commits
commit: da57d98b21b62e5248879bdc655efa6c86375344
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Fri Jan 29 11:46:00 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Fri Jan 29 11:46:00 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=da57d98b
sci-chemistry/chimera-bin: use python-r1 instead of python-any-r1
the python dep is runtime and not build time, so -any* is not the
correct eclass here
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild | 2 +-
sci-chemistry/chimera-bin/chimera-bin-1.15.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild
index 4b277862d..47946a5e1 100644
--- a/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild
@@ -5,7 +5,7 @@ EAPI=7
PYTHON_COMPAT=( python2_7 )
-inherit desktop xdg python-any-r1
+inherit desktop xdg python-r1
DESCRIPTION="An extensible Molecular Modelling System"
HOMEPAGE="https://www.cgl.ucsf.edu/chimera/"
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.15.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.15.ebuild
index 4b277862d..47946a5e1 100644
--- a/sci-chemistry/chimera-bin/chimera-bin-1.15.ebuild
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.15.ebuild
@@ -5,7 +5,7 @@ EAPI=7
PYTHON_COMPAT=( python2_7 )
-inherit desktop xdg python-any-r1
+inherit desktop xdg python-r1
DESCRIPTION="An extensible Molecular Modelling System"
HOMEPAGE="https://www.cgl.ucsf.edu/chimera/"
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/chimera-bin/
@ 2021-01-29 11:49 Andrew Ammerlaan
0 siblings, 0 replies; 22+ messages in thread
From: Andrew Ammerlaan @ 2021-01-29 11:49 UTC (permalink / raw
To: gentoo-commits
commit: 23389b3b49b6b416f6eb9773675c0fc74e288ac0
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Fri Jan 29 11:49:50 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Fri Jan 29 11:49:50 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=23389b3b
sci-chemistry/chimera-bin: add missing REQUIRED_USE="${PYTHON_REQUIRED_USE}"
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild | 2 ++
sci-chemistry/chimera-bin/chimera-bin-1.15.ebuild | 2 ++
2 files changed, 4 insertions(+)
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild
index 47946a5e1..cb31dca65 100644
--- a/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild
@@ -15,6 +15,8 @@ SLOT="0"
LICENSE="chimera"
KEYWORDS="~amd64 ~x86"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
DEPEND="prefix? ( dev-util/patchelf )"
RDEPEND="
dev-lang/tcl
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.15.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.15.ebuild
index 47946a5e1..cb31dca65 100644
--- a/sci-chemistry/chimera-bin/chimera-bin-1.15.ebuild
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.15.ebuild
@@ -15,6 +15,8 @@ SLOT="0"
LICENSE="chimera"
KEYWORDS="~amd64 ~x86"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
DEPEND="prefix? ( dev-util/patchelf )"
RDEPEND="
dev-lang/tcl
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/chimera-bin/
@ 2021-02-01 5:37 Andrew Ammerlaan
0 siblings, 0 replies; 22+ messages in thread
From: Andrew Ammerlaan @ 2021-02-01 5:37 UTC (permalink / raw
To: gentoo-commits
commit: a42d61b5cfa3b633832faa0b63e942e258118cce
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Mon Feb 1 05:37:10 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Feb 1 05:37:10 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=a42d61b5
sci-chemistry/chimera-bin: remove dep on python
the documentation says that python2.7 comes bundled with
the binaries
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild | 7 +------
sci-chemistry/chimera-bin/chimera-bin-1.15.ebuild | 7 +------
2 files changed, 2 insertions(+), 12 deletions(-)
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild
index cb31dca65..b65625139 100644
--- a/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild
@@ -3,9 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python2_7 )
-
-inherit desktop xdg python-r1
+inherit desktop xdg
DESCRIPTION="An extensible Molecular Modelling System"
HOMEPAGE="https://www.cgl.ucsf.edu/chimera/"
@@ -15,8 +13,6 @@ SLOT="0"
LICENSE="chimera"
KEYWORDS="~amd64 ~x86"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
DEPEND="prefix? ( dev-util/patchelf )"
RDEPEND="
dev-lang/tcl
@@ -47,7 +43,6 @@ RDEPEND="
x11-libs/libSM
x11-libs/libXt
x11-libs/libGLw
- ${PYTHON_DEPS}
"
S="${WORKDIR}"
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.15.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.15.ebuild
index cb31dca65..b65625139 100644
--- a/sci-chemistry/chimera-bin/chimera-bin-1.15.ebuild
+++ b/sci-chemistry/chimera-bin/chimera-bin-1.15.ebuild
@@ -3,9 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python2_7 )
-
-inherit desktop xdg python-r1
+inherit desktop xdg
DESCRIPTION="An extensible Molecular Modelling System"
HOMEPAGE="https://www.cgl.ucsf.edu/chimera/"
@@ -15,8 +13,6 @@ SLOT="0"
LICENSE="chimera"
KEYWORDS="~amd64 ~x86"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
DEPEND="prefix? ( dev-util/patchelf )"
RDEPEND="
dev-lang/tcl
@@ -47,7 +43,6 @@ RDEPEND="
x11-libs/libSM
x11-libs/libXt
x11-libs/libGLw
- ${PYTHON_DEPS}
"
S="${WORKDIR}"
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/chimera-bin/
@ 2023-04-25 11:18 Andrew Ammerlaan
0 siblings, 0 replies; 22+ messages in thread
From: Andrew Ammerlaan @ 2023-04-25 11:18 UTC (permalink / raw
To: gentoo-commits
commit: ef4fb39c9f35d83b6529ffce9dcc9a7c38b4446d
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 25 11:16:19 2023 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Tue Apr 25 11:18:00 2023 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=ef4fb39c
sci-chemistry/chimera-bin: treeclean, unavailable deps
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild | 96 -----------------------
sci-chemistry/chimera-bin/chimera-bin-1.15.ebuild | 96 -----------------------
sci-chemistry/chimera-bin/metadata.xml | 8 --
3 files changed, 200 deletions(-)
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild
deleted file mode 100644
index 7d5f9147a..000000000
--- a/sci-chemistry/chimera-bin/chimera-bin-1.14.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit desktop xdg
-
-DESCRIPTION="An extensible Molecular Modelling System"
-HOMEPAGE="https://www.cgl.ucsf.edu/chimera/"
-SRC_URI="chimera-${PV}-linux_x86_64.bin"
-
-SLOT="0"
-LICENSE="chimera"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="prefix? ( dev-util/patchelf )"
-RDEPEND="
- dev-lang/tcl
- dev-lang/tk
- dev-libs/expat
- dev-libs/libotf
- dev-libs/openssl:0
- dev-libs/libpcre
- sys-libs/zlib
- media-libs/fontconfig
- media-libs/freetype
- media-libs/ftgl
- media-libs/libpng
- media-libs/tiff
- sci-libs/hdf5
- sci-libs/xdrfile
- sys-devel/gcc[openmp,fortran]
- media-libs/libjpeg-turbo
- virtual/glu
- virtual/opengl
- x11-libs/libX11
- x11-libs/libICE
- x11-libs/libXext
- x11-libs/libXft
- x11-libs/libXmu
- x11-libs/libXpm
- x11-libs/libXrender
- x11-libs/libSM
- x11-libs/libXt
- x11-libs/libGLw
-"
-
-S="${WORKDIR}"
-
-RESTRICT="fetch mirror strip"
-
-QA_PREBUILT="opt/.*"
-
-pkg_nofetch() {
- elog "Please visit"
- elog "https://www.cgl.ucsf.edu/chimera/download.html"
- elog "or"
- elog "https://www.cgl.ucsf.edu/chimera/olddownload.html"
- elog "and download ${A} into your DISTDIR"
-}
-
-src_unpack() {
- cp "${DISTDIR}"/${A} ${A}.zip
- unzip ${A}.zip || die
-}
-
-src_install() {
- chmod +x ./chimera.bin
- dodir /opt/
- ./chimera.bin -d foo || die
- doicon foo/chimeraIcon.png
- mv foo "${ED}/opt/${PN}" || die
-
- cat >> "${T}"/chimera <<- EOF
- #!${EPREFX}/bin/bash
-
- export PATH="${EPREFIX}/opt/${PN}/bin:\${PATH}"
- "${EPREFIX}/opt/${PN}/bin/chimera" \$@
- EOF
-
- exeinto /opt/bin/
- doexe "${T}"/chimera
-
- # point the symlink to the correct location
- rm "${ED}/opt/chimera-bin/include/ft2build.h"
- dosym ../../../usr/include/freetype2/ft2build.h opt/chimera-bin/include/ft2build.h
-
- make_desktop_entry "${EPREFIX}/opt/bin/chimera" Chimera chimeraIcon
-
- if use prefix; then
- local i
- for i in "${ED}"/opt/${PN}/bin/{tiffcp,povray,al2co} "${ED}"/opt/${PN}/lib/*.so; do
- patchelf --set-rpath "${EPREFIX}/usr/lib:${EPREFIX}/opt/${PN}/lib" "${i}" || die
- done
- fi
-}
diff --git a/sci-chemistry/chimera-bin/chimera-bin-1.15.ebuild b/sci-chemistry/chimera-bin/chimera-bin-1.15.ebuild
deleted file mode 100644
index 7d5f9147a..000000000
--- a/sci-chemistry/chimera-bin/chimera-bin-1.15.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit desktop xdg
-
-DESCRIPTION="An extensible Molecular Modelling System"
-HOMEPAGE="https://www.cgl.ucsf.edu/chimera/"
-SRC_URI="chimera-${PV}-linux_x86_64.bin"
-
-SLOT="0"
-LICENSE="chimera"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="prefix? ( dev-util/patchelf )"
-RDEPEND="
- dev-lang/tcl
- dev-lang/tk
- dev-libs/expat
- dev-libs/libotf
- dev-libs/openssl:0
- dev-libs/libpcre
- sys-libs/zlib
- media-libs/fontconfig
- media-libs/freetype
- media-libs/ftgl
- media-libs/libpng
- media-libs/tiff
- sci-libs/hdf5
- sci-libs/xdrfile
- sys-devel/gcc[openmp,fortran]
- media-libs/libjpeg-turbo
- virtual/glu
- virtual/opengl
- x11-libs/libX11
- x11-libs/libICE
- x11-libs/libXext
- x11-libs/libXft
- x11-libs/libXmu
- x11-libs/libXpm
- x11-libs/libXrender
- x11-libs/libSM
- x11-libs/libXt
- x11-libs/libGLw
-"
-
-S="${WORKDIR}"
-
-RESTRICT="fetch mirror strip"
-
-QA_PREBUILT="opt/.*"
-
-pkg_nofetch() {
- elog "Please visit"
- elog "https://www.cgl.ucsf.edu/chimera/download.html"
- elog "or"
- elog "https://www.cgl.ucsf.edu/chimera/olddownload.html"
- elog "and download ${A} into your DISTDIR"
-}
-
-src_unpack() {
- cp "${DISTDIR}"/${A} ${A}.zip
- unzip ${A}.zip || die
-}
-
-src_install() {
- chmod +x ./chimera.bin
- dodir /opt/
- ./chimera.bin -d foo || die
- doicon foo/chimeraIcon.png
- mv foo "${ED}/opt/${PN}" || die
-
- cat >> "${T}"/chimera <<- EOF
- #!${EPREFX}/bin/bash
-
- export PATH="${EPREFIX}/opt/${PN}/bin:\${PATH}"
- "${EPREFIX}/opt/${PN}/bin/chimera" \$@
- EOF
-
- exeinto /opt/bin/
- doexe "${T}"/chimera
-
- # point the symlink to the correct location
- rm "${ED}/opt/chimera-bin/include/ft2build.h"
- dosym ../../../usr/include/freetype2/ft2build.h opt/chimera-bin/include/ft2build.h
-
- make_desktop_entry "${EPREFIX}/opt/bin/chimera" Chimera chimeraIcon
-
- if use prefix; then
- local i
- for i in "${ED}"/opt/${PN}/bin/{tiffcp,povray,al2co} "${ED}"/opt/${PN}/lib/*.so; do
- patchelf --set-rpath "${EPREFIX}/usr/lib:${EPREFIX}/opt/${PN}/lib" "${i}" || die
- done
- fi
-}
diff --git a/sci-chemistry/chimera-bin/metadata.xml b/sci-chemistry/chimera-bin/metadata.xml
deleted file mode 100644
index da36ecbfc..000000000
--- a/sci-chemistry/chimera-bin/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>sci-chemistry@gentoo.org</email>
- <name>Gentoo Chemistry Project</name>
- </maintainer>
-</pkgmetadata>
^ permalink raw reply related [flat|nested] 22+ messages in thread
end of thread, other threads:[~2023-04-25 11:18 UTC | newest]
Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-28 8:13 [gentoo-commits] proj/sci:master commit in: sci-chemistry/chimera-bin/ Horea Christian
-- strict thread matches above, loose matches on Subject: below --
2023-04-25 11:18 Andrew Ammerlaan
2021-02-01 5:37 Andrew Ammerlaan
2021-01-29 11:49 Andrew Ammerlaan
2021-01-29 11:46 Andrew Ammerlaan
2021-01-29 11:40 Andrew Ammerlaan
2021-01-29 11:40 Andrew Ammerlaan
2020-12-31 11:59 Aisha Tammy
2020-09-28 8:13 Horea Christian
2016-11-11 19:13 Alexey Shvetsov
2015-11-03 14:49 Justin Lecher
2015-10-10 14:11 Justin Lecher
2014-09-15 6:32 Justin Lecher
2014-06-27 9:53 Alexey Shvetsov
2014-01-18 7:39 Justin Lecher
2014-01-18 7:38 Justin Lecher
2013-08-19 23:33 Sebastien Fabbro
2012-11-14 14:41 Justin Lecher
2012-11-14 14:09 Justin Lecher
2012-09-21 6:03 Justin Lecher
2012-09-21 6:00 Justin Lecher
2012-09-20 12:39 Justin Lecher
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox