* [gentoo-commits] proj/sci:master commit in: sci-biology/atsas/
@ 2014-12-17 15:28 Justin Lecher
0 siblings, 0 replies; 12+ messages in thread
From: Justin Lecher @ 2014-12-17 15:28 UTC (permalink / raw
To: gentoo-commits
commit: fc11ac68832e53d6744e9c06125b60576d2f9373
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 17 15:27:51 2014 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Dec 17 15:28:13 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=fc11ac68
sci-biology/atsas: New addition written by me
Package-Manager: portage-2.2.15
---
sci-biology/atsas/ChangeLog | 10 ++++++
sci-biology/atsas/atsas-2.6.0.ebuild | 70 ++++++++++++++++++++++++++++++++++++
sci-biology/atsas/metadata.xml | 5 +++
3 files changed, 85 insertions(+)
diff --git a/sci-biology/atsas/ChangeLog b/sci-biology/atsas/ChangeLog
new file mode 100644
index 0000000..62afad1
--- /dev/null
+++ b/sci-biology/atsas/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for sci-biology/atsas
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*atsas-2.6.0 (17 Dec 2014)
+
+ 17 Dec 2014; Justin Lecher <jlec@gentoo.org> +atsas-2.6.0.ebuild,
+ +metadata.xml:
+ New addition written by me
+
diff --git a/sci-biology/atsas/atsas-2.6.0.ebuild b/sci-biology/atsas/atsas-2.6.0.ebuild
new file mode 100644
index 0000000..46a7262
--- /dev/null
+++ b/sci-biology/atsas/atsas-2.6.0.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit python-r1
+
+DESCRIPTION="Biological Small Angle Scattering"
+HOMEPAGE="http://www.embl-hamburg.de/biosaxs"
+#SRC_URI="ATSAS-2.6.0-1.sl5.x86_64.tar.gz"
+#SRC_URI="ATSAS-2.6.0-1.el6.x86_64.tar.gz"
+SRC_URI="ATSAS-2.6.0-1_amd64.tar.gz"
+
+SLOT="0"
+LICENSE="atsas"
+KEYWORDS="~amd64 ~amd64-linux"
+IUSE="examples"
+
+RDEPEND="
+ x11-libs/qwt:5
+ sci-libs/cbflib
+"
+DEPEND="dev-util/patchelf"
+
+RESTRICT="fetch"
+
+S="${WORKDIR}"/${P^^}-1
+
+QA_PREBUILT="opt/.*"
+
+pkg_nofetch() {
+ elog "Please visit http://www.embl-hamburg.de/biosaxs/atsas-online/download.php"
+ elog "and download the ${A} for Ubuntu 14.04"
+ elog "and place it in ${DISTDIR}"
+}
+
+src_install() {
+ local i
+ for i in bin/*; do
+ patchelf --set-rpath "${EPREFIX}"/opt/${PN}/ ${i} || die
+ done
+ exeinto /opt/bin
+ doexe bin/*
+
+ insinto /opt/${PN}
+ doins lib/*/atsas/{libedf.so*,libqtsoap.so*,libsaxs*.so*}
+
+ python_foreach_impl python_domodule lib/*/atsas/python*/dist-packages/*
+
+ rm share/doc/${P}/LICENSE.txt || die
+ if use examples; then
+ cp -rf share/doc/${P}/* share/${PN}/ || die
+ fi
+
+ pushd share/icons/hicolor/ > /dev/null
+ for i in *; do
+ doicon -s ${i} -t hicolor ${i}/*
+ done
+ popd > /dev/null
+
+ domenu share/applications/*
+
+ rm -rf share/{applications,doc,icons,mime} || die
+
+ insinto /usr
+ doins -r share
+}
diff --git a/sci-biology/atsas/metadata.xml b/sci-biology/atsas/metadata.xml
new file mode 100644
index 0000000..f17a827
--- /dev/null
+++ b/sci-biology/atsas/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-biology</herd>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/atsas/
@ 2014-12-17 15:42 Justin Lecher
0 siblings, 0 replies; 12+ messages in thread
From: Justin Lecher @ 2014-12-17 15:42 UTC (permalink / raw
To: gentoo-commits
commit: 5ca003b172eee7bfcf5cb5835b3ca6f549607749
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 17 15:42:39 2014 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Dec 17 15:42:39 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=5ca003b1
sci-biology/atsas: Add missing deps
Package-Manager: portage-2.2.15
---
sci-biology/atsas/ChangeLog | 3 +++
sci-biology/atsas/atsas-2.6.0.ebuild | 8 ++++++--
2 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/sci-biology/atsas/ChangeLog b/sci-biology/atsas/ChangeLog
index 62afad1..2476002 100644
--- a/sci-biology/atsas/ChangeLog
+++ b/sci-biology/atsas/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 17 Dec 2014; Justin Lecher <jlec@gentoo.org> atsas-2.6.0.ebuild:
+ Add missing deps
+
*atsas-2.6.0 (17 Dec 2014)
17 Dec 2014; Justin Lecher <jlec@gentoo.org> +atsas-2.6.0.ebuild,
diff --git a/sci-biology/atsas/atsas-2.6.0.ebuild b/sci-biology/atsas/atsas-2.6.0.ebuild
index 46a7262..3597987 100644
--- a/sci-biology/atsas/atsas-2.6.0.ebuild
+++ b/sci-biology/atsas/atsas-2.6.0.ebuild
@@ -20,8 +20,12 @@ KEYWORDS="~amd64 ~amd64-linux"
IUSE="examples"
RDEPEND="
- x11-libs/qwt:5
+ dev-libs/libxml2:2
+ dev-qt/qtcore:4
+ dev-qt/qtgui:4
+ media-libs/tiff:0
sci-libs/cbflib
+ x11-libs/qwt:5
"
DEPEND="dev-util/patchelf"
@@ -29,7 +33,7 @@ RESTRICT="fetch"
S="${WORKDIR}"/${P^^}-1
-QA_PREBUILT="opt/.*"
+QA_PREBUILT="opt/.* usr/.*"
pkg_nofetch() {
elog "Please visit http://www.embl-hamburg.de/biosaxs/atsas-online/download.php"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/atsas/
@ 2014-12-21 17:01 Justin Lecher
0 siblings, 0 replies; 12+ messages in thread
From: Justin Lecher @ 2014-12-21 17:01 UTC (permalink / raw
To: gentoo-commits
commit: 389b4888748867563162ee392b5701e0d7d2e8a1
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 21 17:01:01 2014 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Dec 21 17:01:01 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=389b4888
sci-biology/atsas: Add missing libpath
Package-Manager: portage-2.2.15
---
sci-biology/atsas/ChangeLog | 3 +++
sci-biology/atsas/atsas-2.6.0.ebuild | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/sci-biology/atsas/ChangeLog b/sci-biology/atsas/ChangeLog
index 2476002..1840960 100644
--- a/sci-biology/atsas/ChangeLog
+++ b/sci-biology/atsas/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 21 Dec 2014; Justin Lecher <jlec@gentoo.org> atsas-2.6.0.ebuild:
+ Add missing libpath
+
17 Dec 2014; Justin Lecher <jlec@gentoo.org> atsas-2.6.0.ebuild:
Add missing deps
diff --git a/sci-biology/atsas/atsas-2.6.0.ebuild b/sci-biology/atsas/atsas-2.6.0.ebuild
index 3597987..5eccc6e 100644
--- a/sci-biology/atsas/atsas-2.6.0.ebuild
+++ b/sci-biology/atsas/atsas-2.6.0.ebuild
@@ -44,7 +44,7 @@ pkg_nofetch() {
src_install() {
local i
for i in bin/*; do
- patchelf --set-rpath "${EPREFIX}"/opt/${PN}/ ${i} || die
+ patchelf --set-rpath "$(gcc-config -L):\"${EPREFIX}\"/opt/${PN}/" ${i} || die
done
exeinto /opt/bin
doexe bin/*
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/atsas/
@ 2014-12-21 17:15 Justin Lecher
0 siblings, 0 replies; 12+ messages in thread
From: Justin Lecher @ 2014-12-21 17:15 UTC (permalink / raw
To: gentoo-commits
commit: 22af2e2e41f365c82e187cd652395d53e5b16b7c
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 21 17:15:46 2014 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Dec 21 17:15:46 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=22af2e2e
sci-biology/atsas: Drop quotes
Package-Manager: portage-2.2.15
---
sci-biology/atsas/ChangeLog | 3 +++
sci-biology/atsas/atsas-2.6.0.ebuild | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/sci-biology/atsas/ChangeLog b/sci-biology/atsas/ChangeLog
index 1840960..19bbe03 100644
--- a/sci-biology/atsas/ChangeLog
+++ b/sci-biology/atsas/ChangeLog
@@ -3,6 +3,9 @@
# $Header: $
21 Dec 2014; Justin Lecher <jlec@gentoo.org> atsas-2.6.0.ebuild:
+ Drop quotes
+
+ 21 Dec 2014; Justin Lecher <jlec@gentoo.org> atsas-2.6.0.ebuild:
Add missing libpath
17 Dec 2014; Justin Lecher <jlec@gentoo.org> atsas-2.6.0.ebuild:
diff --git a/sci-biology/atsas/atsas-2.6.0.ebuild b/sci-biology/atsas/atsas-2.6.0.ebuild
index 5eccc6e..d7c2fd9 100644
--- a/sci-biology/atsas/atsas-2.6.0.ebuild
+++ b/sci-biology/atsas/atsas-2.6.0.ebuild
@@ -44,7 +44,7 @@ pkg_nofetch() {
src_install() {
local i
for i in bin/*; do
- patchelf --set-rpath "$(gcc-config -L):\"${EPREFIX}\"/opt/${PN}/" ${i} || die
+ patchelf --set-rpath "$(gcc-config -L):${EPREFIX}/opt/${PN}/" ${i} || die
done
exeinto /opt/bin
doexe bin/*
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/atsas/
@ 2014-12-22 11:43 Justin Lecher
0 siblings, 0 replies; 12+ messages in thread
From: Justin Lecher @ 2014-12-22 11:43 UTC (permalink / raw
To: gentoo-commits
commit: fd71a415aa964e0b32af0905feff0c76627240db
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 22 11:42:50 2014 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Dec 22 11:43:03 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=fd71a415
sci-biology/atsas: Add libdir to rpath
Package-Manager: portage-2.2.15
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
---
sci-biology/atsas/ChangeLog | 3 +++
sci-biology/atsas/atsas-2.6.0.ebuild | 4 +++-
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/sci-biology/atsas/ChangeLog b/sci-biology/atsas/ChangeLog
index 19bbe03..854d5f5 100644
--- a/sci-biology/atsas/ChangeLog
+++ b/sci-biology/atsas/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 22 Dec 2014; Justin Lecher <jlec@gentoo.org> atsas-2.6.0.ebuild:
+ Add libdir to rpath
+
21 Dec 2014; Justin Lecher <jlec@gentoo.org> atsas-2.6.0.ebuild:
Drop quotes
diff --git a/sci-biology/atsas/atsas-2.6.0.ebuild b/sci-biology/atsas/atsas-2.6.0.ebuild
index d7c2fd9..451c039 100644
--- a/sci-biology/atsas/atsas-2.6.0.ebuild
+++ b/sci-biology/atsas/atsas-2.6.0.ebuild
@@ -44,7 +44,9 @@ pkg_nofetch() {
src_install() {
local i
for i in bin/*; do
- patchelf --set-rpath "$(gcc-config -L):${EPREFIX}/opt/${PN}/" ${i} || die
+ patchelf \
+ --set-rpath "$(gcc-config -L):${EPREFIX}/opt/${PN}/:${EPREFIX}/usr/lib/" \
+ ${i} || die
done
exeinto /opt/bin
doexe bin/*
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/atsas/
@ 2014-12-22 11:56 Justin Lecher
0 siblings, 0 replies; 12+ messages in thread
From: Justin Lecher @ 2014-12-22 11:56 UTC (permalink / raw
To: gentoo-commits
commit: 07fb38844a7be67accc27aa20f1a4621ec545581
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 22 11:55:54 2014 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Dec 22 11:55:54 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=07fb3884
sci-biology/atsas: Add missing libs to installation
Package-Manager: portage-2.2.15
---
sci-biology/atsas/ChangeLog | 3 +++
sci-biology/atsas/atsas-2.6.0.ebuild | 4 ++--
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/sci-biology/atsas/ChangeLog b/sci-biology/atsas/ChangeLog
index 854d5f5..deca3a5 100644
--- a/sci-biology/atsas/ChangeLog
+++ b/sci-biology/atsas/ChangeLog
@@ -3,6 +3,9 @@
# $Header: $
22 Dec 2014; Justin Lecher <jlec@gentoo.org> atsas-2.6.0.ebuild:
+ Add missing libs to installation
+
+ 22 Dec 2014; Justin Lecher <jlec@gentoo.org> atsas-2.6.0.ebuild:
Add libdir to rpath
21 Dec 2014; Justin Lecher <jlec@gentoo.org> atsas-2.6.0.ebuild:
diff --git a/sci-biology/atsas/atsas-2.6.0.ebuild b/sci-biology/atsas/atsas-2.6.0.ebuild
index 451c039..e972303 100644
--- a/sci-biology/atsas/atsas-2.6.0.ebuild
+++ b/sci-biology/atsas/atsas-2.6.0.ebuild
@@ -45,14 +45,14 @@ src_install() {
local i
for i in bin/*; do
patchelf \
- --set-rpath "$(gcc-config -L):${EPREFIX}/opt/${PN}/:${EPREFIX}/usr/lib/" \
+ --set-rpath "$(gcc-config -L):${EPREFIX}/opt/${PN}/:${EPREFIX}/usr/lib/qt4/" \
${i} || die
done
exeinto /opt/bin
doexe bin/*
insinto /opt/${PN}
- doins lib/*/atsas/{libedf.so*,libqtsoap.so*,libsaxs*.so*}
+ doins lib/*/atsas/{libedf.so*,libqtsoap.so*,libqwt*.so*,libsaxs*.so*}
python_foreach_impl python_domodule lib/*/atsas/python*/dist-packages/*
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/atsas/
@ 2015-10-12 13:48 Justin Lecher
0 siblings, 0 replies; 12+ messages in thread
From: Justin Lecher @ 2015-10-12 13:48 UTC (permalink / raw
To: gentoo-commits
commit: ea709a858a4b1c6a6fc0a213a9372c9f4d5ee538
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 12 13:48:09 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Oct 12 13:48:09 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=ea709a85
sci-biology/atsas: Version Bump
Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
sci-biology/atsas/atsas-2.7.0.ebuild | 76 ++++++++++++++++++++++++++++++++++++
1 file changed, 76 insertions(+)
diff --git a/sci-biology/atsas/atsas-2.7.0.ebuild b/sci-biology/atsas/atsas-2.7.0.ebuild
new file mode 100644
index 0000000..7991ec6
--- /dev/null
+++ b/sci-biology/atsas/atsas-2.7.0.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit python-r1
+
+DESCRIPTION="Biological Small Angle Scattering"
+HOMEPAGE="http://www.embl-hamburg.de/biosaxs"
+#SRC_URI="ATSAS-${PV}-1.sl5.x86_64.tar.gz"
+#SRC_URI="ATSAS-${PV}-1.el6.x86_64.tar.gz"
+SRC_URI="ATSAS-${PV}-1_amd64.tar.gz"
+
+SLOT="0"
+LICENSE="atsas"
+KEYWORDS="~amd64 ~amd64-linux"
+IUSE="examples"
+
+RDEPEND="
+ dev-libs/libxml2:2
+ dev-qt/qtcore:4
+ dev-qt/qtgui:4
+ media-libs/tiff:0
+ sci-libs/cbflib
+ x11-libs/qwt:5
+"
+DEPEND="dev-util/patchelf"
+
+RESTRICT="fetch"
+
+S="${WORKDIR}"/${P^^}-1
+
+QA_PREBUILT="opt/.* usr/.*"
+
+pkg_nofetch() {
+ elog "Please visit http://www.embl-hamburg.de/biosaxs/atsas-online/download.php"
+ elog "and download the ${A} for Ubuntu 14.04"
+ elog "and place it in ${DISTDIR}"
+}
+
+src_install() {
+ local i
+ for i in bin/*; do
+ patchelf \
+ --set-rpath "$(gcc-config -L):${EPREFIX}/opt/${PN}/:${EPREFIX}/usr/lib/qt4/" \
+ ${i} || die
+ done
+ exeinto /opt/bin
+ doexe bin/*
+
+ insinto /opt/${PN}
+ doins lib/*/atsas/{libedf.so*,libqtsoap.so*,libqwt*.so*,libsaxs*.so*}
+
+ python_foreach_impl python_domodule lib/*/atsas/python*/dist-packages/*
+
+ rm share/doc/${P}/LICENSE.txt || die
+ if use examples; then
+ cp -rf share/doc/${P}/* share/${PN}/ || die
+ fi
+
+ pushd share/icons/hicolor/ > /dev/null
+ for i in *; do
+ doicon -s ${i} -t hicolor ${i}/*
+ done
+ popd > /dev/null
+
+ domenu share/applications/*
+
+ rm -rf share/{applications,doc,icons,mime} || die
+
+ insinto /usr
+ doins -r share
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/atsas/
@ 2015-10-16 13:38 Justin Lecher
0 siblings, 0 replies; 12+ messages in thread
From: Justin Lecher @ 2015-10-16 13:38 UTC (permalink / raw
To: gentoo-commits
commit: b8d20434762144dd0ddcf30f5e867f9b1204bb2e
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 16 13:00:49 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Oct 16 13:16:17 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=b8d20434
sci-biology/atsas: Fix installation of missing libs
Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
sci-biology/atsas/atsas-2.7.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sci-biology/atsas/atsas-2.7.0.ebuild b/sci-biology/atsas/atsas-2.7.0.ebuild
index 7991ec6..04488e5 100644
--- a/sci-biology/atsas/atsas-2.7.0.ebuild
+++ b/sci-biology/atsas/atsas-2.7.0.ebuild
@@ -29,7 +29,7 @@ RDEPEND="
"
DEPEND="dev-util/patchelf"
-RESTRICT="fetch"
+RESTRICT="fetch strip"
S="${WORKDIR}"/${P^^}-1
@@ -52,7 +52,7 @@ src_install() {
doexe bin/*
insinto /opt/${PN}
- doins lib/*/atsas/{libedf.so*,libqtsoap.so*,libqwt*.so*,libsaxs*.so*}
+ doins lib/*/atsas/{libqwt*.so*,libsaxsdocument*.so*}
python_foreach_impl python_domodule lib/*/atsas/python*/dist-packages/*
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/atsas/
@ 2018-02-09 15:29 Alexey Shvetsov
0 siblings, 0 replies; 12+ messages in thread
From: Alexey Shvetsov @ 2018-02-09 15:29 UTC (permalink / raw
To: gentoo-commits
commit: 3c47777c6f875d6eaaca06ffc5e9bea008062ee6
Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 9 15:27:40 2018 +0000
Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Fri Feb 9 15:27:40 2018 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=3c47777c
sci-biology/atsas: Add 2.8.3
Package-Manager: Portage-2.3.24, Repoman-2.3.6
sci-biology/atsas/atsas-2.8.3.ebuild | 76 ++++++++++++++++++++++++++++++++++++
1 file changed, 76 insertions(+)
diff --git a/sci-biology/atsas/atsas-2.8.3.ebuild b/sci-biology/atsas/atsas-2.8.3.ebuild
new file mode 100644
index 000000000..b6c368c05
--- /dev/null
+++ b/sci-biology/atsas/atsas-2.8.3.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit python-r1
+
+DESCRIPTION="Biological Small Angle Scattering"
+HOMEPAGE="http://www.embl-hamburg.de/biosaxs"
+#SRC_URI="ATSAS-${PV}-1.sl5.x86_64.tar.gz"
+#SRC_URI="ATSAS-${PV}-1.el6.x86_64.tar.gz"
+SRC_URI="ATSAS-${PV}-1_amd64.tar.gz"
+
+SLOT="0"
+LICENSE="atsas"
+KEYWORDS="~amd64 ~amd64-linux"
+IUSE="examples"
+
+RDEPEND="
+ dev-libs/libxml2:2
+ dev-qt/qtcore:4
+ dev-qt/qtgui:4
+ media-libs/tiff:0
+ sci-libs/cbflib
+ x11-libs/qwt:5
+"
+DEPEND="dev-util/patchelf"
+
+RESTRICT="fetch strip"
+
+S="${WORKDIR}"/${P^^}-1
+
+QA_PREBUILT="opt/.* usr/.*"
+
+pkg_nofetch() {
+ elog "Please visit http://www.embl-hamburg.de/biosaxs/atsas-online/download.php"
+ elog "and download the ${A} for Ubuntu 16.04"
+ elog "and place it in ${DISTDIR}"
+}
+
+src_install() {
+ local i
+ for i in bin/*; do
+ patchelf \
+ --set-rpath "$(gcc-config -L):${EPREFIX}/opt/${PN}/:${EPREFIX}/usr/lib/qt4/" \
+ ${i} || die
+ done
+ exeinto /opt/bin
+ doexe bin/*
+
+ insinto /opt/${PN}
+ doins lib/*/atsas/{libqwt*.so*,libsaxsdocument*.so*}
+
+ python_foreach_impl python_domodule lib/*/atsas/python*/dist-packages/*
+
+ rm share/doc/${P}/LICENSE.txt || die
+ if use examples; then
+ cp -rf share/doc/${P}/* share/${PN}/ || die
+ fi
+
+ pushd share/icons/hicolor/ > /dev/null
+ for i in *; do
+ doicon -s ${i} -t hicolor ${i}/*
+ done
+ popd > /dev/null
+
+ domenu share/applications/*
+
+ rm -rf share/{applications,doc,icons,mime} || die
+
+ insinto /usr
+ doins -r share
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/atsas/
@ 2018-02-09 15:55 Alexey Shvetsov
0 siblings, 0 replies; 12+ messages in thread
From: Alexey Shvetsov @ 2018-02-09 15:55 UTC (permalink / raw
To: gentoo-commits
commit: 7a8fba8a3f12dcb30a3cf4719245a4e7ca2a4c9e
Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 9 15:55:04 2018 +0000
Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Fri Feb 9 15:55:04 2018 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=7a8fba8a
sci-biology/atsas: fix libs
Package-Manager: Portage-2.3.24, Repoman-2.3.6
sci-biology/atsas/atsas-2.8.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-biology/atsas/atsas-2.8.3.ebuild b/sci-biology/atsas/atsas-2.8.3.ebuild
index b6c368c05..419cc319b 100644
--- a/sci-biology/atsas/atsas-2.8.3.ebuild
+++ b/sci-biology/atsas/atsas-2.8.3.ebuild
@@ -52,7 +52,7 @@ src_install() {
doexe bin/*
insinto /opt/${PN}
- doins lib/*/atsas/{libqwt*.so*,libsaxsdocument*.so*}
+ doins lib/*/atsas/{libqwt*.so*,libsaxsdocument*.so*,libsaxsplot*.so*}
python_foreach_impl python_domodule lib/*/atsas/python*/dist-packages/*
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/atsas/
@ 2018-04-02 12:45 Justin Lecher
0 siblings, 0 replies; 12+ messages in thread
From: Justin Lecher @ 2018-04-02 12:45 UTC (permalink / raw
To: gentoo-commits
commit: 389100a27a33b1d13a7f82f2c6e06722562525ad
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 2 12:33:00 2018 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Apr 2 12:33:00 2018 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=389100a2
sci-biology/atsas: FIX Stale CVS header on line: 3
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
Package-Manager: Portage-2.3.27, Repoman-2.3.9
sci-biology/atsas/atsas-2.8.3.ebuild | 1 -
1 file changed, 1 deletion(-)
diff --git a/sci-biology/atsas/atsas-2.8.3.ebuild b/sci-biology/atsas/atsas-2.8.3.ebuild
index 419cc319b..c9b4b802d 100644
--- a/sci-biology/atsas/atsas-2.8.3.ebuild
+++ b/sci-biology/atsas/atsas-2.8.3.ebuild
@@ -1,6 +1,5 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
EAPI=6
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/atsas/
@ 2018-04-02 12:45 Justin Lecher
0 siblings, 0 replies; 12+ messages in thread
From: Justin Lecher @ 2018-04-02 12:45 UTC (permalink / raw
To: gentoo-commits
commit: 236b73bc80d504a0a81080f1ee25cfd27e18409a
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 2 12:33:25 2018 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Apr 2 12:33:25 2018 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=236b73bc
sci-biology/atsas: Drop old
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
Package-Manager: Portage-2.3.27, Repoman-2.3.9
sci-biology/atsas/atsas-2.6.0.ebuild | 75 ------------------------------------
sci-biology/atsas/atsas-2.7.0.ebuild | 75 ------------------------------------
2 files changed, 150 deletions(-)
diff --git a/sci-biology/atsas/atsas-2.6.0.ebuild b/sci-biology/atsas/atsas-2.6.0.ebuild
deleted file mode 100644
index f2829f574..000000000
--- a/sci-biology/atsas/atsas-2.6.0.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit python-r1
-
-DESCRIPTION="Biological Small Angle Scattering"
-HOMEPAGE="http://www.embl-hamburg.de/biosaxs"
-#SRC_URI="ATSAS-2.6.0-1.sl5.x86_64.tar.gz"
-#SRC_URI="ATSAS-2.6.0-1.el6.x86_64.tar.gz"
-SRC_URI="ATSAS-2.6.0-1_amd64.tar.gz"
-
-SLOT="0"
-LICENSE="atsas"
-KEYWORDS="~amd64 ~amd64-linux"
-IUSE="examples"
-
-RDEPEND="
- dev-libs/libxml2:2
- dev-qt/qtcore:4
- dev-qt/qtgui:4
- media-libs/tiff:0
- sci-libs/cbflib
- x11-libs/qwt:5
-"
-DEPEND="dev-util/patchelf"
-
-RESTRICT="fetch"
-
-S="${WORKDIR}"/${P^^}-1
-
-QA_PREBUILT="opt/.* usr/.*"
-
-pkg_nofetch() {
- elog "Please visit http://www.embl-hamburg.de/biosaxs/atsas-online/download.php"
- elog "and download the ${A} for Ubuntu 14.04"
- elog "and place it in ${DISTDIR}"
-}
-
-src_install() {
- local i
- for i in bin/*; do
- patchelf \
- --set-rpath "$(gcc-config -L):${EPREFIX}/opt/${PN}/:${EPREFIX}/usr/lib/qt4/" \
- ${i} || die
- done
- exeinto /opt/bin
- doexe bin/*
-
- insinto /opt/${PN}
- doins lib/*/atsas/{libedf.so*,libqtsoap.so*,libqwt*.so*,libsaxs*.so*}
-
- python_foreach_impl python_domodule lib/*/atsas/python*/dist-packages/*
-
- rm share/doc/${P}/LICENSE.txt || die
- if use examples; then
- cp -rf share/doc/${P}/* share/${PN}/ || die
- fi
-
- pushd share/icons/hicolor/ > /dev/null
- for i in *; do
- doicon -s ${i} -t hicolor ${i}/*
- done
- popd > /dev/null
-
- domenu share/applications/*
-
- rm -rf share/{applications,doc,icons,mime} || die
-
- insinto /usr
- doins -r share
-}
diff --git a/sci-biology/atsas/atsas-2.7.0.ebuild b/sci-biology/atsas/atsas-2.7.0.ebuild
deleted file mode 100644
index 4e51e8536..000000000
--- a/sci-biology/atsas/atsas-2.7.0.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit python-r1
-
-DESCRIPTION="Biological Small Angle Scattering"
-HOMEPAGE="http://www.embl-hamburg.de/biosaxs"
-#SRC_URI="ATSAS-${PV}-1.sl5.x86_64.tar.gz"
-#SRC_URI="ATSAS-${PV}-1.el6.x86_64.tar.gz"
-SRC_URI="ATSAS-${PV}-1_amd64.tar.gz"
-
-SLOT="0"
-LICENSE="atsas"
-KEYWORDS="~amd64 ~amd64-linux"
-IUSE="examples"
-
-RDEPEND="
- dev-libs/libxml2:2
- dev-qt/qtcore:4
- dev-qt/qtgui:4
- media-libs/tiff:0
- sci-libs/cbflib
- x11-libs/qwt:5
-"
-DEPEND="dev-util/patchelf"
-
-RESTRICT="fetch strip"
-
-S="${WORKDIR}"/${P^^}-1
-
-QA_PREBUILT="opt/.* usr/.*"
-
-pkg_nofetch() {
- elog "Please visit http://www.embl-hamburg.de/biosaxs/atsas-online/download.php"
- elog "and download the ${A} for Ubuntu 14.04"
- elog "and place it in ${DISTDIR}"
-}
-
-src_install() {
- local i
- for i in bin/*; do
- patchelf \
- --set-rpath "$(gcc-config -L):${EPREFIX}/opt/${PN}/:${EPREFIX}/usr/lib/qt4/" \
- ${i} || die
- done
- exeinto /opt/bin
- doexe bin/*
-
- insinto /opt/${PN}
- doins lib/*/atsas/{libqwt*.so*,libsaxsdocument*.so*}
-
- python_foreach_impl python_domodule lib/*/atsas/python*/dist-packages/*
-
- rm share/doc/${P}/LICENSE.txt || die
- if use examples; then
- cp -rf share/doc/${P}/* share/${PN}/ || die
- fi
-
- pushd share/icons/hicolor/ > /dev/null
- for i in *; do
- doicon -s ${i} -t hicolor ${i}/*
- done
- popd > /dev/null
-
- domenu share/applications/*
-
- rm -rf share/{applications,doc,icons,mime} || die
-
- insinto /usr
- doins -r share
-}
^ permalink raw reply related [flat|nested] 12+ messages in thread
end of thread, other threads:[~2018-04-02 12:45 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-09 15:29 [gentoo-commits] proj/sci:master commit in: sci-biology/atsas/ Alexey Shvetsov
-- strict thread matches above, loose matches on Subject: below --
2018-04-02 12:45 Justin Lecher
2018-04-02 12:45 Justin Lecher
2018-02-09 15:55 Alexey Shvetsov
2015-10-16 13:38 Justin Lecher
2015-10-12 13:48 Justin Lecher
2014-12-22 11:56 Justin Lecher
2014-12-22 11:43 Justin Lecher
2014-12-21 17:15 Justin Lecher
2014-12-21 17:01 Justin Lecher
2014-12-17 15:42 Justin Lecher
2014-12-17 15:28 Justin Lecher
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox