1013f18c2d
tcllauncher is a way to have Tcl programs run out of /usr/local/bin under their own name, be installed in one place with their support files, and provides commands to facilitate server-oriented application execution. While there is another wrapper system that also does this, that system produces a single executable that contains all the code and support files within a built-in virtual filesystem wrapped inside the executable. Tcllauncher keeps the support files distinct, typically in a subdirectory of /usr/local/lib that's named after the application. WWW: https://github.com/flightaware/tcllauncher/
34 lines
667 B
Makefile
34 lines
667 B
Makefile
# Created by: gahr
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tcllauncher
|
|
PORTVERSION= 1.5
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= tcltk@FreeBSD.org
|
|
COMMENT= Launcher program for Tcl applications
|
|
|
|
LICENSE= MIT
|
|
|
|
LIB_DEPENDS= libtclx8.4.so:${PORTSDIR}/lang/tclX
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= flightaware
|
|
GH_TAGNAME= v${PORTVERSION}
|
|
GH_COMMIT= 36b1295
|
|
|
|
USES+= tcl
|
|
USE_AUTOTOOLS= autoconf
|
|
CONFIGURE_ARGS+=--with-tcl=${TCL_LIBDIR} \
|
|
--prefix=${PREFIX} \
|
|
--exec-prefix=${PREFIX}
|
|
|
|
LIBDIR= lib/Tcllauncher${PORTVERSION}
|
|
|
|
PLIST_FILES= bin/${PORTNAME} \
|
|
${LIBDIR}/tcllauncher.tcl \
|
|
${LIBDIR}/tcllauncher-support.tcl \
|
|
${LIBDIR}/pkgIndex.tcl \
|
|
man/mann/${PORTNAME}.n.gz
|
|
|
|
.include <bsd.port.mk>
|