51 lines
1 KiB
Makefile
51 lines
1 KiB
Makefile
# Created by: Zhihao Yuan <lichray@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pure-tk
|
|
PORTVERSION= 0.4
|
|
CATEGORIES= x11-toolkits
|
|
MASTER_SITES= https://cdn.bitbucket.org/purelang/pure-lang/downloads/
|
|
DIST_SUBDIR= pure
|
|
|
|
MAINTAINER= lichray@gmail.com
|
|
COMMENT= Basic interface between Pure and Tcl/Tk
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
USES= pure tk:86+
|
|
|
|
MAKE_ARGS+= tclvers=${TCL_VER}
|
|
|
|
PLIST_FILES= lib/pure/gnocl.pure \
|
|
lib/pure/tk.so \
|
|
lib/pure/tk.pure
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} \
|
|
-e "s|/usr/include|${LOCALBASE}/include|g" \
|
|
-e "s|-ltcl\$$(tclvers)|-ltcl${TCL_SHLIB_VER}|" \
|
|
-e "s|-ltk\$$(tclvers)|-ltk${TK_SHLIB_VER}|" \
|
|
${WRKSRC}/Makefile
|
|
|
|
NO_STAGE= yes
|
|
|
|
PORTDOCS= README
|
|
|
|
PORTEXAMPLES= *
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MEXAMPLES}
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
@(cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${EXAMPLESDIR})
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|