blob: ead2a6ad30214df10f8f7e8658a92682a83e41f8 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools fortran-2
MY_P=${PN}$(ver_rs 1- '')
MY_PINC="${PN^^}$(ver_cut 1)$(ver_cut 2).INC"
DESCRIPTION="High Energy Physics Event Generator"
HOMEPAGE="https://www.hep.phy.cam.ac.uk/theory/webber/Herwig/"
SRC_URI="
https://www.hep.phy.cam.ac.uk/theory/webber/Herwig/${MY_P}.f
https://www.hep.phy.cam.ac.uk/theory/webber/Herwig/${MY_P}.INC
https://www.hep.phy.cam.ac.uk/theory/webber/Herwig/${MY_PINC}
doc? ( https://www.hep.phy.cam.ac.uk/theory/webber/Herwig/hw65_manual.pdf )"
S="${WORKDIR}"
LICENSE="all-rights-reserved"
SLOT="0"
KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc static-libs"
RESTRICT="mirror bindist"
DEPEND="${RDEPEND}"
src_unpack() {
cp "${DISTDIR}"/{"${MY_P}".f,"${MY_P}".INC,"${MY_PINC}"} "${S}" || die
}
src_prepare() {
sed -i \
-e "s/${PN}.*.inc/${MY_P}.INC/" \
${MY_PINC} || die
cat > configure.ac <<-EOF || die
AC_INIT(${PN},${PV})
AM_INIT_AUTOMAKE
AC_PROG_F77
AC_PROG_LIBTOOL
AC_CONFIG_FILES(Makefile)
AC_OUTPUT
EOF
cat > Makefile.am <<-EOF || die
lib_LTLIBRARIES = lib${PN}.la
lib${PN}_la_SOURCES = ${MY_P}.f
include_HEADERS = \
${MY_PINC} \
${MY_P}.INC
EOF
default
eautoreconf
}
src_configure() {
econf $(use_enable static-libs static)
}
src_install() {
default
find "${ED}" -name '*.la' -delete || die
use doc && dodoc "${DISTDIR}"/hw65_manual.pdf
}
|