mirror of
https://github.com/netbirdio/FreeBSD-ports.git
synced 2026-05-22 18:42:42 -07:00
30 lines
582 B
Makefile
30 lines
582 B
Makefile
PORTNAME= pfSense-default-config
|
|
DISTVERSION= ${PRODUCT_VERSION}
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= # empty
|
|
DISTFILES= # empty
|
|
EXTRACT_ONLY= # empty
|
|
|
|
MAINTAINER= coreteam@pfsense.org
|
|
COMMENT= Default config.xml
|
|
|
|
LICENSE= APACHE20
|
|
|
|
NO_MTREE= yes
|
|
|
|
SUB_FILES= pkg-post-install
|
|
SUB_LIST= FLAVOR=
|
|
PKGPOSTINSTALL= ${WRKDIR}/pkg-post-install
|
|
|
|
PLIST_FILES= /conf.default/config.xml
|
|
|
|
do-build:
|
|
${MKDIR} ${WRKSRC}
|
|
${CP} ${FILESDIR}/config.xml ${WRKSRC}/
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}/conf.default
|
|
${INSTALL_DATA} ${WRKSRC}/config.xml ${STAGEDIR}/conf.default/
|
|
|
|
.include <bsd.port.mk>
|