From 30e3f1e2920d6ca4f7f0309053a4da131ee69171 Mon Sep 17 00:00:00 2001 From: Andrey Grozin Date: Sun, 15 Jan 2023 15:16:48 +0700 Subject: sci-mathematics/form: DEPEND on latexrecommended Closes: https://bugs.gentoo.org/873607 Signed-off-by: Andrey Grozin --- sci-mathematics/form/Manifest | 1 + sci-mathematics/form/files/64form-gentoo.el | 6 ++ sci-mathematics/form/form-4.3.0-r1.ebuild | 97 +++++++++++++++++++++++++++++ 3 files changed, 104 insertions(+) create mode 100644 sci-mathematics/form/files/64form-gentoo.el create mode 100644 sci-mathematics/form/form-4.3.0-r1.ebuild (limited to 'sci-mathematics') diff --git a/sci-mathematics/form/Manifest b/sci-mathematics/form/Manifest index 05d5cb206104..49efa7363065 100644 --- a/sci-mathematics/form/Manifest +++ b/sci-mathematics/form/Manifest @@ -1,2 +1,3 @@ DIST form-4.2.1.tar.gz 1444257 BLAKE2B 27ac9ee1412e6f478324b170e37e6e31822b74f902a5739d5fa00558aa4c9f7a977bd5fe3d6982313f1232a774c592d44af07fec8a290266c31bf3a100e87d1a SHA512 5569ae3e487194b0d082f4a032fb4b8d57238218d92d9b04d5f51db2a73e065eb1efdc26011bda46723e902fa3f324010ca2f8e91ba9a077e87b0a07b40cf594 DIST form-4.3.0.tar.gz 1457721 BLAKE2B 029c62b0e1d92cf66be0290e45467e9de47f8ac9a593e7d012c13d877fb84aa1a212bb99b7a1a7b8b5b04c4cb056b58da80812faf5f0af5d33629c7632768ae6 SHA512 3f7f9cabf37d33fce0dcb7e091ac5ce60412ebe840fcea432655ab7f0c86c620200d60df085af3011d92d8057d9501583f16686257e5d097f6d0571d7f1b6742 +DIST form-mode.el.gz 6657 BLAKE2B 41d014e4ca8036249d53f5361012095e2ed2ef5e43543ba809a058f0ed241bd3ec984d9b61ab13a5b447faf07decf4e696362f24cacea3af5870cccdf43b1415 SHA512 aa81cc9c45a90af982179d56b874de0d152538653242ea028450675ab8421df2e0d53988c7efa3527845dae145c8047b71574191eedd90511fa89ad812851e25 diff --git a/sci-mathematics/form/files/64form-gentoo.el b/sci-mathematics/form/files/64form-gentoo.el new file mode 100644 index 000000000000..e9da182fec15 --- /dev/null +++ b/sci-mathematics/form/files/64form-gentoo.el @@ -0,0 +1,6 @@ + +;;; form site-lisp configuration + +(add-to-list 'load-path "@SITELISP@") +(add-to-list 'auto-mode-alist '("\\.frm\\'" . form-mode)) +(autoload 'form-mode "form-mode" "Major mode for form files." t) diff --git a/sci-mathematics/form/form-4.3.0-r1.ebuild b/sci-mathematics/form/form-4.3.0-r1.ebuild new file mode 100644 index 000000000000..3f5c5991d1f9 --- /dev/null +++ b/sci-mathematics/form/form-4.3.0-r1.ebuild @@ -0,0 +1,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 emake pdf + popd > /dev/null + fi + if use doc; then + pushd doc/manual > /dev/null || die "doc/manual does not exist" + LANG=C 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 +} -- cgit v1.2.3-65-gdbad