2001 and published to developers@ and ports@ to the internal handbook. Portmgr has been operating under this charter since then, but people were having problems finding this in the email archives. Add it to our internal page so that people no longer have this problem. I'll also note that core.2 intended to give a very borad range of powers to portmgr@ to manage the ports tree, while retaining the ability to clarify and refine the charter over time.
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
# $FreeBSD: www/en/internal/Makefile,v 1.40 2004/04/06 11:38:02 phantom Exp $
|
|
|
|
.if exists(../Makefile.conf)
|
|
.include "../Makefile.conf"
|
|
.endif
|
|
.if exists(../Makefile.inc)
|
|
.include "../Makefile.inc"
|
|
.endif
|
|
|
|
DOCS= photos.sgml
|
|
DOCS+= internal.sgml
|
|
DOCS+= about.sgml
|
|
DOCS+= machines.sgml
|
|
DOCS+= mirror.sgml
|
|
DOCS+= new-account.sgml
|
|
DOCS+= statistic.sgml
|
|
DOCS+= developer.sgml
|
|
DOCS+= bylaws.sgml
|
|
DOCS+= releng.sgml
|
|
DOCS+= expire-bits.sgml
|
|
DOCS+= core-vote.sgml
|
|
DOCS+= trb-dispute.sgml
|
|
DOCS+= doceng.sgml
|
|
DOCS+= rtp.sgml
|
|
DOCS+= policies.sgml
|
|
DOCS+= portmgr-charter.sgml
|
|
|
|
INDEXLINK= internal.html
|
|
|
|
# build the list of personal homepages of FreeBSD developers only
|
|
# on the main FreeBSD machines
|
|
hostname!= hostname
|
|
.if ${hostname} == "hub.freebsd.org" || ${hostname} == "freefall.freebsd.org" || ${hostname} == "www.freebsd.org"
|
|
DOCS+= homepage.sgml
|
|
|
|
.if !make(install)
|
|
.PHONY: homepage.inc
|
|
.endif
|
|
homepage.inc: homepage.pl
|
|
${PERL} ${.CURDIR}/homepage.pl > ${.TARGET}
|
|
|
|
homepage.html: homepage.inc
|
|
CLEANFILES+= homepage.inc
|
|
.endif
|
|
|
|
DATA+= README.mirror ssh-keys.asc
|
|
|
|
.include "${WEB_PREFIX}/share/mk/web.site.mk"
|