b7f05445c0
It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
71 lines
2.2 KiB
Makefile
71 lines
2.2 KiB
Makefile
PORTNAME= poudriere
|
|
DISTVERSION= 3.3.7
|
|
PORTREVISION= 1
|
|
CATEGORIES= ports-mgmt
|
|
MASTER_SITES= LOCAL/bdrewery/${PORTNAME}/ \
|
|
http://mirror.shatow.net/freebsd/${PORTNAME}/ \
|
|
GH
|
|
|
|
MAINTAINER= bdrewery@FreeBSD.org
|
|
COMMENT= Port build and test system
|
|
WWW= https://github.com/freebsd/poudriere/wiki
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
CONFLICTS_INSTALL= poudriere-devel
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= freebsd
|
|
|
|
GNU_CONFIGURE= yes
|
|
ETCDIR= ${PREFIX}/etc/poudriere.d
|
|
|
|
OPTIONS_DEFINE= BASH CERTS DIALOG4PORTS EXAMPLES QEMU ZSH
|
|
OPTIONS_DEFAULT=BASH CERTS DIALOG4PORTS ZSH
|
|
OPTIONS_SUB= yes
|
|
|
|
CERTS_DESC= Install checksum and SSL certificates for jail creation
|
|
CERTS_RUN_DEPENDS+= ca_root_nss>=0:security/ca_root_nss
|
|
CERTS_RUN_DEPENDS+= freebsd-release-manifests>0:misc/freebsd-release-manifests
|
|
|
|
DIALOG4PORTS_DESC= Install dialog4ports for options command
|
|
DIALOG4PORTS_RUN_DEPENDS= dialog4ports>0:ports-mgmt/dialog4ports
|
|
|
|
QEMU_DESC= Add qemu-user-static for non-x86 architectures
|
|
QEMU_RUN_DEPENDS= qemu-user-static>0:emulators/qemu-user-static
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
# rm -x support came in 10.0. A bundled rm is used if not supported in base.
|
|
# While <10 is technically not supported in the Ports Tree, Poudriere
|
|
# detects this and it being a package build tool it should still be
|
|
# supported as a user may be installing this to build packages for upgrading
|
|
# their system to a supported release.
|
|
.if ${OSVERSION} < 1000000
|
|
PLIST_SUB+= RM=""
|
|
.else
|
|
PLIST_SUB+= RM="@comment "
|
|
.endif
|
|
|
|
post-patch:
|
|
${CP} -f ${WRKSRC}/src/bin/poudriere ${WRKSRC}/poudriere
|
|
${REINPLACE_CMD} \
|
|
-e "s,^\(POUDRIERE_VERSION\)=.*,\1='${PKGVERSION}'," \
|
|
${WRKSRC}/poudriere
|
|
${REINPLACE_CMD} '/.PHONY: poudriere/d' ${WRKSRC}/Makefile.*
|
|
|
|
post-install:
|
|
${LN} -fs ${LOCALBASE}/share/freebsd/MANIFESTS \
|
|
${STAGEDIR}${DATADIR}/MANIFESTS
|
|
|
|
post-install-BASH-on:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/bash-completion/completions/
|
|
${INSTALL_DATA} ${WRKSRC}/completions/bash/poudriere \
|
|
${STAGEDIR}${PREFIX}/share/bash-completion/completions/
|
|
|
|
post-install-ZSH-on:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions/
|
|
${INSTALL_DATA} ${WRKSRC}/completions/zsh/_poudriere \
|
|
${STAGEDIR}${PREFIX}/share/zsh/site-functions/
|
|
|
|
.include <bsd.port.mk>
|