| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
| |
Remove create unneeded and unsupported PREFIX/man/man1 directory (causes
Error: Orphaned: @dir man/man1).
Fix makeinfo version checking error in configure:
- replace backtick to brackets and dollar sign
- use gexpr instead of builtin expr (add sysutils/coreutils to
BULD_DEPENDS and use BINARY_ALIAS)
The makeinfo_version_string variable is empty because the backslashes
remain before backticks, do not appear. And the regexp is not compatible
with shipped expr so shoud use GNU expr.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Add a missing license (BSD3CLAUSE) and missing license files (for
BSD3CLAUSE and GPLv2).
- Remove reference to a non existent patch that should have been applied
when NOUSERINIT is OFF.
- Fix patching when SBCL is ON but NOUSERINIT is OFF (the port was
building successfully, but then maxima failed to run).
- Fix patching of Makefile.am: $(DOC_DIR) and demo targets are removed
in any case (the port deals with them manually through the DOCS,
MANPAGES and EXAMPLES options). The tests target is only removed if
the TEST option is OFF.
- Regenerate files/patch-configure.ac with 'make makepatch', as
requested by portlint.
- Remove unneeded CONFIGURE_ARGS= PYTHON=dummy.
- Move symplectic_ode info file from pkg-plist to INFO variable, as
requested by portlint.
- Remove CMUCL: cmucl is not supported upstream anymore on FreeBSD since
2017.
- Set NO_ARCH=yes when LISP is CCL or SBCL (it does not apply when it is
ECL).
- Do not install German and Russian manpages anymore.
- Strip binaries and libraries (applies when LISP is ECL, it is not
needed in the other cases).
- Move post-install-ECL-on target (portclippy).
Reviewed by: diizzy, thierry, tcberner
Approved by: gerald (mentor)
Differential Revision: https://reviews.freebsd.org/D35164
|
|
configure.ac uses the git command if present to populate the VERSION variable.
As a consecuence, this produces a dynamically changing installation directory in
STAGEDIR that breaks the build in some conditions. Note that on a clean
environment (poudriere), this works fine.
This patch comments that portion of configure.ac out since it is of no use
inside the ports tree.
PR: 255683
Reported by: russo@bogodyn.org
|