blob: e9515aeb54d2124d37a4640d77d3dd26a5cf7112 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/esorex/esorex-3.10-r2.ebuild,v 1.1 2014/03/04 00:23:49 bicatali Exp $
EAPI=5
AUTOTOOLS_AUTORECONF=1
AUTOTOOLS_IN_SOURCE_BUILD=1
AT_NO_RECURSIVE=1
inherit autotools-utils
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-fix-autotools.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
"${FILESDIR}"/${PN}-3.10-cpl60_compat.patch
)
export CPLDIR="${EPREFIX}/usr"
src_install() {
autotools-utils_src_install
dodoc -r examples
docompress -x /usr/share/doc/${PF}/examples
}
|