blob: abdbf0481b5f52bc2341404a66c3c59854d80a81 (
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools toolchain-funcs elisp-common
DESCRIPTION="Symbolic Manipulation System"
HOMEPAGE="https://www.nikhef.nl/~form/ https://github.com/vermaseren/form/"
SRC_URI="https://github.com/vermaseren/${PN}/releases/download/v${PV}/${P}.tar.gz
emacs? ( https://dev.gentoo.org/~grozin/form-mode.el.gz )"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="devref doc doxygen emacs gmp mpi threads zlib"
RDEPEND="
gmp? ( dev-libs/gmp:0= )
mpi? ( virtual/mpi )
zlib? ( sys-libs/zlib )"
DEPEND="${RDEPEND}
devref? ( dev-texlive/texlive-latexrecommended )
doc? ( dev-texlive/texlive-latexrecommended )
doxygen? ( app-doc/doxygen )
emacs? ( app-editors/emacs:* )"
SITEFILE="64${PN}-gentoo.el"
src_prepare() {
default
sed -i 's/LINKFLAGS = -s/LINKFLAGS =/' sources/Makefile.am || die
eautoreconf
}
src_configure() {
econf \
--enable-scalar \
--enable-largefile \
--disable-debug \
--disable-static-link \
--with-api=posix \
$(use_with gmp ) \
$(use_enable mpi parform ) \
$(use_enable threads threaded ) \
$(use_with zlib ) \
CC="$(tc-getCC)" \
CXX="$(tc-getCXX)" \
CFLAGS="${CFLAGS}" \
LDFLAGS="${LDFLAGS}" \
CXXFLAGS="${CXXFLAGS}"
}
src_compile() {
default
if use devref; then
pushd doc/devref > /dev/null || die "doc/devref does not exist"
LANG=C VARTEXFONTS="${T}/fonts" emake pdf
popd > /dev/null
fi
if use doc; then
pushd doc/manual > /dev/null || die "doc/manual does not exist"
LANG=C VARTEXFONTS="${T}/fonts" emake pdf
popd > /dev/null
fi
if use doxygen; then
pushd doc/doxygen > /dev/null || die "doc/doxygen does not exist"
emake html
popd > /dev/null
fi
}
src_install() {
default
if use devref; then
dodoc doc/devref/devref.pdf
fi
if use doc; then
dodoc doc/manual/manual.pdf
fi
if use doxygen; then
docinto html
dodoc -r doc/doxygen/html/.
fi
if use emacs; then
elisp-install ${PN} "${WORKDIR}"/*.el
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
fi
}
pkg_postinst() {
use emacs && elisp-site-regen
}
pkg_postrm() {
use emacs && elisp-site-regen
}
|