summaryrefslogtreecommitdiff
path: root/www/neowebscript/files/Makefile.lib
diff options
context:
space:
mode:
authorMatthias Andree <mandree@FreeBSD.org>2011-05-22 21:34:32 +0000
committerMatthias Andree <mandree@FreeBSD.org>2011-05-22 21:34:32 +0000
commit3f4cabb66c86fae519ccb253bb2fc63543be0c93 (patch)
treeede3f285cf8fdd7ce24684fb5a89fdfb15b97283 /www/neowebscript/files/Makefile.lib
parent- update to httpd-2.2.19 (diff)
Kill deprecated ports: devel/tcl-neo and www/neowebscript.
These have been broken and deprecated for weeks, the maintainer has not responded, and there was no discussion in the PR or on ports@. PR: ports/155759
Notes
Notes: svn path=/head/; revision=274473
Diffstat (limited to 'www/neowebscript/files/Makefile.lib')
-rw-r--r--www/neowebscript/files/Makefile.lib33
1 files changed, 0 insertions, 33 deletions
diff --git a/www/neowebscript/files/Makefile.lib b/www/neowebscript/files/Makefile.lib
deleted file mode 100644
index 1f5d1b606b5a..000000000000
--- a/www/neowebscript/files/Makefile.lib
+++ /dev/null
@@ -1,33 +0,0 @@
-TCL_VERSION?=8.4
-TCL_NDVER?=${TCL_VERSION:S/.//} # same, but without the dot
-
-PREFIX?= /usr/local
-
-INCLUDES= -I${PREFIX}/include/apache \
- -I${PREFIX}/include/tcl${TCL_VERSION} \
- -I${PREFIX}/include
-
-CC!= ${PREFIX}/sbin/apxs -q CC
-CFLAGS!= ${PREFIX}/sbin/apxs -q CFLAGS CFLAGS_SHLIB
-CFLAGS+= ${INCLUDES} -DGDTCL
-CFLAGS+= -DDEFAULT_XFERLOG=\"/var/log/httpd-access.log\" -Werror
-
-# Ridiculous!
-#CFLAGS+= -Dneo_log_module=log_neo_module \
-# -Dtcl_auth_module=auth_tcl_module
-
-SHLIB_NAME= ${SRCS:R}.so
-
-LDADD= -L${PREFIX}/lib -ltcl${TCL_NDVER} -lm
-WARNS= 2
-
-USE_DB!= grep -l db.h ${.CURDIR}/${SRCS}
-.if !empty(USE_DB)
-LDADD+= -ldb2
-.endif
-
-#LDFLAGS= ${LDADD}
-
-NO_MAN= True # don't bother with the man-page here, let the port handle it
-
-.include <bsd.lib.mk>