7809d8810d
Commit log: https://github.com/FastCGI-Archives/fcgi2/compare/2.4.0...2.4.6 Changelogs: https://github.com/FastCGI-Archives/fcgi2/releases/tag/2.4.1 https://github.com/FastCGI-Archives/fcgi2/releases/tag/2.4.1.1 https://github.com/FastCGI-Archives/fcgi2/releases/tag/2.4.2 https://github.com/FastCGI-Archives/fcgi2/releases/tag/2.4.3 https://github.com/FastCGI-Archives/fcgi2/releases/tag/2.4.4 https://github.com/FastCGI-Archives/fcgi2/releases/tag/2.4.5 https://github.com/FastCGI-Archives/fcgi2/releases/tag/2.4.6 Improve port: - Replace PORTVERSION with DISTVERSION. - Update WWW - old is down. - Switch upstream to GitHub. - Add USES+=pathfix for install *.pc files in correct path. - Fix warnings from portclippy - order of lines in Makefile. - Remove MAKE_JOBS_UNSAFE=yes - obsoleted. - Make run COPYTREE_SHARE docs only if DOCS option is ON. - Remove upstreamed and obsoleted patches. - Fix order in plist. PR: 286589 Approved by: John von Essen <john@essenz.com> (maintainer, timeout - last activity 2019) Security: CVE-2025-23016 Co-authored-by: Christos Chatzaras <chris@cretaforce.gr> MFH: 2025Q2
38 lines
975 B
Makefile
38 lines
975 B
Makefile
PORTNAME= fcgi
|
|
DISTVERSION= 2.4.6
|
|
CATEGORIES= www
|
|
PKGNAMESUFFIX= -devkit
|
|
|
|
MAINTAINER= john@essenz.com
|
|
COMMENT= FastCGI Development Kit
|
|
WWW= https://fastcgi-archives.github.io/
|
|
|
|
LICENSE= Open_Market_FastCGI_license
|
|
LICENSE_NAME= Open Market FastCGI license
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
|
|
|
USES= autoreconf cpe libtool pathfix
|
|
CPE_VENDOR= fastcgi
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= FastCGI-Archives
|
|
GH_PROJECT= fcgi2
|
|
USE_LDCONFIG= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libfcgi.so.0.0.0
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libfcgi++.so.0.0.0
|
|
${INSTALL_MAN} ${WRKSRC}/doc/*.1 ${STAGEDIR}${PREFIX}/share/man/man1
|
|
${INSTALL_MAN} ${WRKSRC}/doc/*.3 ${STAGEDIR}${PREFIX}/share/man/man3
|
|
|
|
post-install-DOCS-on:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC}/doc && \
|
|
${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} "! -name *\.[13]")
|
|
|
|
.include <bsd.port.mk>
|