aboutsummaryrefslogtreecommitdiff
blob: d0e749378002adf464d604516c8f5c1d02e06b92 (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
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit fortran versionator autotools

MV=$(get_major_version)
MY_PN=${PN}${MV}

DESCRIPTION="Lund Monte Carlo high-energy physics event generator"
HOMEPAGE="http://projects.hepforge.org/pythia6/"

# pythia6 from root is needed for some files to interface pythia6 with root
SRC_URI="http://www.hepforge.org/archive/${MY_PN}/${P}.f.gz
	ftp://root.cern.ch/root/pythia6.tar.gz
	http://www.hepforge.org/archive/${MY_PN}/update_notes-${PV}.txt
	doc? ( http://home.thep.lu.se/~torbjorn/pythia/lutp0613man2.pdf
		   http://home.thep.lu.se/~torbjorn/pythia/main60.f )"

LICENSE="public-domain"
SLOT="6"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
DEPEND=""

S="${WORKDIR}"

FORTRAN="gfortran ifc g77"

src_unpack() {
	unpack ${A}
	cat > configure.ac <<-EOF
		AC_INIT(${PN},${PV})
		AM_INIT_AUTOMAKE
		AC_PROG_F77
		AC_PROG_LIBTOOL
		AC_CONFIG_FILES(Makefile)
		AC_OUTPUT
	EOF
	cat > Makefile.am <<-EOF
		lib_LTLIBRARIES = lib${MY_PN}.la
		lib${MY_PN}_la_SOURCES = ${P}.f \
			= pythia6/tpythia6_called_from_cc.F \
			= pythia6/pythia6_common_address.c
	EOF
	eautoreconf
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"
	dodoc "${DISTDIR}"/update_notes-${PV}.txt
	if use doc; then
		insinto /usr/share/doc/${PF}/
		doins "${DISTDIR}"/{lutp0613man2.pdf,main60.f} || die
	fi
}

pkg_postinst() {
	elog "pythia-6 ebuild is still under development."
	elog "Help us improve the ebuild in:"
	elog "http://bugs.gentoo.org/show_bug.cgi?id=231484"
}