pre-generated Makefile already provided
- Unbreak the build on PowerPC by not treating it differently from other
FreeBSD systems
- Respect CFLAGS in a more sane way than patching ${WRKSRC}/machine.h in
`_post-configure' target with some cryptic sed(1) regexp
- Factor out docfiles installation into `post-install-DOCS-on' target,
sanitize it a bit, unmute installation commands, move OPTIONS_DEFINE
knob lower while I am here
- Avoid use of contraction in the port description text
order of float4store() arguments which was breaking the build on big-
endian architectures in version 1.1.1, and plugged resource leaks in
void mysac_close(MYSAC *mysac) function
- Define LICENSE (GPLv3) and simplify `do-install' target recipe
- Cleanup COMMENT and port description text (remove EOL whitespace and
double `uses uses` typo), update WWW address to avoid redirect
do-install is for the app itself, post-install is for extras.
r392488 reversed the logic because option helpers didn't support
do-* targets before r394503. So, pick clarity over |svn blame| churn.
NO_BUILD does more than dummy do-build. It creates BUILD_COOKIE that marks
all targets in _BUILD_SEQ as done, including do-build-${opt}-on/off and
post-build-${opt}-on/off. Since the targets haven't been run yet
do-install-DOXYGEN-on fails due to missing files.
Fix by leaking a call to nop "all" target in vendor Makefile. It should
be less kludgy than defining our own dummy do-build and less confusing
than treating do-build itself as an option helper. In case "all" starts
doing something useful the port would automatically take advantage of it.
PR: 202951
Reviewed by: mat
Approved by: portmgr blanket
FreeBSD welcomes Python 3.5 (early, pre-release) to the Ports tree,
with 3.5.0 release candidate 3!
Please test this port and Python 3.5 profusely. If you notice issues,
please report them upstream at: https://bugs.python.org to ensure a
robust upcoming 3.5.0 release.
Whats New in Python 3.5:
* https://docs.python.org/3.5/whatsnew/3.5.html
Python 3.5 Release Schedule (PEP 478)
* http://www.python.org/dev/peps/pep-0478
Note: This port retires an old fcntlmodule.c patch, possibly
temporarily. User impact *should* be zero. For more information
see: https://bugs.python.org/issue25026
Requested by: Webair Inc :)
variable, and this can break the == -1 check. It works on i386, but not on
PowerPC, where `char' is unsigned by default.
Use variable of correct type (int) to hold the return value of getopt(3).