diff options
author | bapt <bapt@FreeBSD.org> | 2013-06-07 06:03:35 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-06-07 06:03:35 +0800 |
commit | e6e5cb8e098824affec16af8c9f7a928b165a924 (patch) | |
tree | 8b11eac1957cb56436632d2b34c852f1cd7a0ed2 /net/samba36 | |
parent | c4f7e45e929c7a1ce36eb37d3ef3bd7f62206524 (diff) | |
download | freebsd-ports-gnome-e6e5cb8e098824affec16af8c9f7a928b165a924.tar.gz freebsd-ports-gnome-e6e5cb8e098824affec16af8c9f7a928b165a924.tar.zst freebsd-ports-gnome-e6e5cb8e098824affec16af8c9f7a928b165a924.zip |
Finish conversion to new options framework
While here remove check for unsupported versions
Diffstat (limited to 'net/samba36')
-rw-r--r-- | net/samba36/Makefile | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/net/samba36/Makefile b/net/samba36/Makefile index de5fa8c055a6..fc1883d41d5f 100644 --- a/net/samba36/Makefile +++ b/net/samba36/Makefile @@ -124,10 +124,6 @@ WINBIND_DESC= WinBIND support .include <bsd.port.options.mk> -# XXX -.if ${OSVERSION} >= 701000 && ${OSVERSION} < 702000 -IGNORE= databases/tdb crashes on FreeBSD 7.1. Please, consider upgrading to 7.2 or higher -.endif # There are reports that on ARM PIE makes binaries to core dump(#149186) .if ${ARCH} == "arm" CONFIGURE_ARGS+= --disable-pie @@ -465,13 +461,6 @@ INSTALL_TARGET= installservers installbin installscripts installdat \ INSTALL_TARGET+=installswat .endif -.if defined(OPTIONS) -pre-fetch: - @${ECHO_MSG} "===> -------------------------------------------" - @${ECHO_MSG} "===> Run 'make config' to (re)configure the port" - @${ECHO_MSG} "===> -------------------------------------------" -.endif - pre-configure: @${FIND} ${WRKDIR}/${DISTNAME} -type d | ${XARGS} ${CHMOD} u+w,a+rx @${FIND} ${WRKDIR}/${DISTNAME} -type f | ${XARGS} ${CHMOD} u+w,a+r @@ -484,7 +473,7 @@ post-configure: pre-install: -@${FIND} "${SAMBA_MODULEDIR}" -type f -o -type l 2>/dev/null | ${SORT} | ${SED} -E 's|^${PREFIX}/?||;' > ${WRKDIR}/.PLIST.exclude @${CAT} ${PKGDIR}/pkg-plist > ${PLIST} -.if !defined(WITHOUT_SWAT) +.if ${PORT_OPTIONS:MSWAT} @${CAT} ${PKGDIR}/pkg-plist.swat >> ${PLIST} .endif |