summaryrefslogtreecommitdiff
path: root/archivers/tclmkziplib/files/Makefile.bsd
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2017-01-15 09:48:22 +0000
committerRene Ladan <rene@FreeBSD.org>2017-01-15 09:48:22 +0000
commit74d31b8a6e52ab35c05047fd2c7758a2d216fede (patch)
treea07cbf63102e8f45905f8e2ab5b888ddbc6ef376 /archivers/tclmkziplib/files/Makefile.bsd
parentMk/Uses/mysql.mk: Remove EoL-ed MySQL 5.1 (diff)
Remove expired ports:
2017-01-15 net/cyphesis: Does not compile on FreeBSD 10+ 2017-01-15 net/gpxe: does not build on FreeBSD 10.x and later 2017-01-15 net/openospfd: requires old CARP implementation (interface layer) 2017-01-15 security/openbsm-devel: is not needed under FreeBSD 10.x or higher 2017-01-15 security/ssh-copy-id: is already in the base system 2017-01-15 sysutils/apt: does not build on 10+ 2017-01-15 archivers/tclmkziplib: Abandonware, please use bundled zlib package [http://tcl.tk/man/tcl8.6/TclCmd/zlib.htm] 2017-01-15 x11-drivers/drm-kmod: this port is only for 9.3 systems 2017-01-15 audio/xmms-openspc: does not build on FreeBSD 10.x and later 2017-01-15 audio/aureal-kmod: does not build (and fetch) 2017-01-15 emulators/doscmd: does not build (accesses field of opaque structure)
Notes
Notes: svn path=/head/; revision=431540
Diffstat (limited to 'archivers/tclmkziplib/files/Makefile.bsd')
-rw-r--r--archivers/tclmkziplib/files/Makefile.bsd24
1 files changed, 0 insertions, 24 deletions
diff --git a/archivers/tclmkziplib/files/Makefile.bsd b/archivers/tclmkziplib/files/Makefile.bsd
deleted file mode 100644
index 4be0d99b678b..000000000000
--- a/archivers/tclmkziplib/files/Makefile.bsd
+++ /dev/null
@@ -1,24 +0,0 @@
-PACKAGE = mkZiplib
-SHLIB_NAME = ${PACKAGE}${VERSION}.so
-
-SRCS = unzip.c zip.c mkZiplib${VERSION}.c
-
-SOBJS= ${SRCS:N*.h:R:S/$/.o/}
-
-TCL_SHLIB_CFLAGS!= . ${TCLCONFIG}; \
- echo $$TCL_SHLIB_CFLAGS
-TCL_INCLUDE_SPEC!= . ${TCLCONFIG}; \
- echo $$TCL_INCLUDE_SPEC
-TCL_STUB_LIB_SPEC!= . ${TCLCONFIG}; \
- echo $$TCL_STUB_LIB_SPEC
-
-CFLAGS += ${TCL_SHLIB_CFLAGS} ${TCL_INCLUDE_SPEC}
-LDFLAGS += ${TCL_STUB_LIB_SPEC} -lz
-
-all: ${SHLIB_NAME}
-
-${SHLIB_NAME}: ${SOBJS}
- ${CC} ${LDFLAGS} -shared -o ${.TARGET} ${SOBJS}
-
-clean:
- @rm -f ${SHLIB_NAME} ${SOBJS}