diff options
author | Sébastien Fabbro <bicatali@gentoo.org> | 2016-04-04 21:53:54 +0000 |
---|---|---|
committer | Sébastien Fabbro <bicatali@gentoo.org> | 2016-04-05 22:11:11 +0000 |
commit | dddb69f5e225d21c4b616dd8930849d76fea9374 (patch) | |
tree | 2171e8c602a2c07be35a2a457cd5ed439c368f73 /sci-astronomy/esorex/esorex-3.12.3.ebuild | |
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/esorex-3.12.3.ebuild')
-rw-r--r-- | sci-astronomy/esorex/esorex-3.12.3.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
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 +} |