diff options
author | 2016-04-04 21:53:54 +0000 | |
---|---|---|
committer | 2016-04-05 22:11:11 +0000 | |
commit | dddb69f5e225d21c4b616dd8930849d76fea9374 (patch) | |
tree | 2171e8c602a2c07be35a2a457cd5ed439c368f73 /sci-astronomy/esorex | |
parent | sci-astronomy/cpl: Version bump (diff) | |
download | gentoo-dddb69f5e225d21c4b616dd8930849d76fea9374.tar.gz gentoo-dddb69f5e225d21c4b616dd8930849d76fea9374.tar.bz2 gentoo-dddb69f5e225d21c4b616dd8930849d76fea9374.zip |
sci-astronomy/esorex: Version bump
Package-Manager: portage-2.2.28
Diffstat (limited to 'sci-astronomy/esorex')
-rw-r--r-- | sci-astronomy/esorex/Manifest | 1 | ||||
-rw-r--r-- | sci-astronomy/esorex/esorex-3.12.3.ebuild | 40 |
2 files changed, 41 insertions, 0 deletions
diff --git a/sci-astronomy/esorex/Manifest b/sci-astronomy/esorex/Manifest index 556e7a14e31f..f75e50153fb7 100644 --- a/sci-astronomy/esorex/Manifest +++ b/sci-astronomy/esorex/Manifest @@ -1,2 +1,3 @@ DIST esorex-3.10.2.tar.gz 817875 SHA256 9a295754452b3e84fe2bc3674aaaf2e93354d2ad16781cb3f4c3f37ca0214e1e SHA512 6f6f663bd74d61f3612a13fb39e17c984f8ed88d9dd175951b385d9797433b19a6e276841b23b61881cec8702eb8d74061549a922acf939a9a5e98c8016d1ecb WHIRLPOOL cb900ecad2067498c9865cfbd3db4d80f0f2907ea18e8eb3ab5d07aaea2a184520a480ad62cf591a30abbe51023f8f8384139ca67fdd05d3a35cde837f730967 +DIST esorex-3.12.3.tar.gz 693894 SHA256 ac7bc9cec70a5bfa55f4ca29bac5bf30c853596503ab3238444c610e32b9233b SHA512 28d62b2cbb66e21fe96435fedf94a727c598b33f2d0aa9ff8d811cfc87edf8d215a76837f525d2964c24bb6e0a3b50aa4dcf2a8dcfae8ac1b933303f8fb08122 WHIRLPOOL eec3fa02ac776ffb333a0be8b6bdfa3ae4188516074112e54b6d8bf6d8527002243171e293f22245fb6c90fc1bf3f29aef5eff8eafcb48508bd24948475f4f1d DIST esorex-3.12.tar.gz 649290 SHA256 b99a11a93942543fd6c4e96975fa9f45e0e2c36412093c1be6ac37e545f1fd50 SHA512 02547d44cf93c570b2be6f429215efee95a2ef91a26b45fd0a5bfea3ec00837e04972f801c3c00a892eb8bb24b2e3aa8a854b4093844cfae0aed3bf0f396eac6 WHIRLPOOL 8c22a6afb7bd8ccabc5e6bc2b42bb414a4a0a0dada41c15686949e20d2bbdc5f473107221ecb5222b4b5d06db42af786d812a861076c93743612bca05ee5833f diff --git a/sci-astronomy/esorex/esorex-3.12.3.ebuild b/sci-astronomy/esorex/esorex-3.12.3.ebuild new file mode 100644 index 000000000000..8c718315b1d0 --- /dev/null +++ b/sci-astronomy/esorex/esorex-3.12.3.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit autotools + +DESCRIPTION="ESO Recipe Execution Tool to exec cpl scripts" +HOMEPAGE="http://www.eso.org/sci/software/cpl/esorex.html" +SRC_URI="ftp://ftp.eso.org/pub/dfs/pipelines/libraries/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +DEPEND=">=sci-astronomy/cpl-6.3:=" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}"/${PN}-3.9.6-use-shared-libs.patch + "${FILESDIR}"/${PN}-3.10-remove-private-ltdl.patch + "${FILESDIR}"/${PN}-3.10-generate-manpage.patch + "${FILESDIR}"/${PN}-3.10-remove-empty-configdir.patch + "${FILESDIR}"/${PN}-3.10-set-default-plugin-path.patch +) + +export CPLDIR="${EPREFIX}/usr" + +src_prepare() { + default + AT_NO_RECURSIVE=1 eautoreconf +} + +src_install() { + default + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples +} |