diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-06-06 22:03:35 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-06-06 22:03:35 +0000 |
commit | f26dbaf7bd09a540cc6028ccd760c4476f9876c0 (patch) | |
tree | 8b11eac1957cb56436632d2b34c852f1cd7a0ed2 /net/samba36 | |
parent | c3ec4b6526e83867333179a5da1f55388d1001d9 (diff) | |
download | ports-f26dbaf7bd09a540cc6028ccd760c4476f9876c0.tar.gz ports-f26dbaf7bd09a540cc6028ccd760c4476f9876c0.zip |
Finish conversion to new options framework
While here remove check for unsupported versions
Notes
Notes:
svn path=/head/; revision=320132
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 |