- Add link to the new advisory page into the support sidebar. - Do not include release info in advisory list as it's not that interesting in this context. - Try to make it more clear where to report security issues to. - Include public key directly on web site instead of referring to FTP site. - Remove some stale information. - Misc minor cleanup. Reviewed by: cperciva, remko, bz (various versions)
31 lines
729 B
Makefile
31 lines
729 B
Makefile
# $FreeBSD: www/en/security/Makefile,v 1.15 2008/01/10 04:23:39 murray Exp $
|
|
|
|
.if exists(../Makefile.conf)
|
|
.include "../Makefile.conf"
|
|
.endif
|
|
.if exists(../Makefile.inc)
|
|
.include "../Makefile.inc"
|
|
.endif
|
|
|
|
DATA= so_public_key.asc
|
|
DOCS= charter.sgml
|
|
DOCS+= security.sgml
|
|
DOCS+= advisories.sgml
|
|
|
|
advisories.sgml: advisories.html.inc
|
|
|
|
INDEXLINK= security.html
|
|
|
|
security.html: advisories.html.inc advisories.rdf
|
|
|
|
DEPENDSET.DEFAULT= advisories
|
|
XML.DEFAULT= ${XML_ADVISORIES}
|
|
|
|
XMLDOCS= advisories:mkindex.xsl::advisories.html.inc
|
|
NO_DATA.advisories= yes
|
|
NO_TIDY.advisories= yes
|
|
|
|
XMLDOCS+= advisories-rdf:security-rdf.xsl::advisories.rdf
|
|
XMLDOCS+= advisories-rss:security-rss.xsl::rss.xml
|
|
|
|
.include "${WEB_PREFIX}/share/mk/web.site.mk"
|