diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2013-03-26 19:14:35 +0800 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2013-03-26 19:14:35 +0800 |
commit | 222fe2333d6092babcde0347dfb9ea90aad44b0f (patch) | |
tree | ef3e916a1df8b7015aa2d476c45c53412c2e14d7 | |
parent | 21a2d4a56bbfee80169d979fec0683d8a0e425fa (diff) | |
download | freebsd-ports-gnome-222fe2333d6092babcde0347dfb9ea90aad44b0f.tar.gz freebsd-ports-gnome-222fe2333d6092babcde0347dfb9ea90aad44b0f.tar.zst freebsd-ports-gnome-222fe2333d6092babcde0347dfb9ea90aad44b0f.zip |
- Add mirror as the main site is dead
- Trim header
- Convert to new options framework
With hat: portmgr
-rw-r--r-- | sysutils/fusefs-kmod/Makefile | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/sysutils/fusefs-kmod/Makefile b/sysutils/fusefs-kmod/Makefile index ffb988fc18ca..fcf0ab09d9e7 100644 --- a/sysutils/fusefs-kmod/Makefile +++ b/sysutils/fusefs-kmod/Makefile @@ -1,15 +1,12 @@ -# New ports collection makefile for: fusefs-kmod -# Date created: 08 October 2005 -# Whom: Anish Mistry <amistry@am-productions.biz> -# +# Created by: Anish Mistry <amistry@am-productions.biz> # $FreeBSD$ -# PORTNAME= fusefs DISTVERSION= 0.3.9-pre1.20080208 PORTREVISION= 11 CATEGORIES= sysutils kld -MASTER_SITES= http://mercurial.creo.hu/repos/fuse4bsd-hg/index.cgi/archive/ +MASTER_SITES= http://mercurial.creo.hu/repos/fuse4bsd-hg/index.cgi/archive/ \ + LOCAL/bdrewery/${PORTNAME}/ PKGNAMESUFFIX= -kmod DISTNAME= ${HG_SHORTREV} DIST_SUBDIR= fuse4bsd @@ -19,10 +16,6 @@ COMMENT= Kernel module for fuse BUILD_DEPENDS= fusefs-libs>2.4.1:${PORTSDIR}/sysutils/fusefs-libs -.if !defined(NOPORTDOCS) -BUILD_DEPENDS+= deplate:${PORTSDIR}/textproc/ruby-deplate -.endif - USE_RC_SUBR= fusefs KMODDIR?= ${PREFIX}/modules PLIST_SUB= KMODDIR=${KMODDIR} @@ -32,10 +25,15 @@ MAKE_ENV= BINDIR="${PREFIX}/sbin" MANDIR="${MANPREFIX}/man/man" \ WRKSRC= ${WRKDIR}/fuse4bsd-${HG_SHORTREV} DISABLE_SIZE= yes -OPTIONS= AUTOSETUP "Automatic global config file setup" off +OPTIONS_DEFINE= AUTOSETUP DOCS +AUTOSETUP_DESC= Automatic global config file setup .include <bsd.port.pre.mk> +.if ${PORT_OPTIONS:MDOCS} +BUILD_DEPENDS+= deplate:${PORTSDIR}/textproc/ruby-deplate +.endif + SRC_BASE?= /usr/src SETUP= setup.sh HG_SHORTREV= 498acaef33b0 @@ -77,7 +75,7 @@ IGNORE= requires the userland sources to be installed. Set SRC_BASE if it is no BROKEN= Does not compile on other than i386/amd64 .endif -.if defined(WITH_AUTOSETUP) +.if ${PORT_OPTIONS:MAUTOSETUP} SUB_FILES+= ${SETUP} .else SUB_FILES+= pkg-message @@ -93,7 +91,7 @@ post-configure: @${CP} ${LOCALBASE}/include/fuse/fuse_kernel.h ${WRKSRC}/fuse_module post-build: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @cd ${WRKSRC}/doc && make plaintext html_chunked .endif @@ -102,14 +100,14 @@ pre-su-install: post-install: @${LN} -fs ${PREFIX}/sbin/mount_fusefs /usr/sbin -.if defined(WITH_AUTOSETUP) && !defined(PACKAGE_BUILDING) +.if ${PORT_OPTIONS:MAUTOSETUP} && !defined(PACKAGE_BUILDING) @${ECHO} "Modifying global startup config files and loading module..." @${SH} ${WRKDIR}/${SETUP} .else @${ECHO_CMD}; ${CAT} ${PKGMESSAGE}; ${ECHO_CMD} .endif -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR}/kmod/html .for i in ${TXT_DOCS} @${INSTALL_DATA} ${WRKSRC}/doc/plaintext_out/$i ${DOCSDIR}/kmod |