diff options
author | mm <mm@FreeBSD.org> | 2009-01-05 22:29:12 +0800 |
---|---|---|
committer | mm <mm@FreeBSD.org> | 2009-01-05 22:29:12 +0800 |
commit | 79c4f1bd3fed4a0a36ba9454ae6fbb00998862da (patch) | |
tree | 25d377ff254491fbad5f7a809b9348205164a144 /irc/quirc | |
parent | 4516fea4ce2ee0b4617d5b929bbbab2938e25a66 (diff) | |
download | freebsd-ports-gnome-79c4f1bd3fed4a0a36ba9454ae6fbb00998862da.tar.gz freebsd-ports-gnome-79c4f1bd3fed4a0a36ba9454ae6fbb00998862da.tar.zst freebsd-ports-gnome-79c4f1bd3fed4a0a36ba9454ae6fbb00998862da.zip |
- Switch to USE_TCL infrastructure
- Enable tcl85
- Bump PORTREVISION
Diffstat (limited to 'irc/quirc')
-rw-r--r-- | irc/quirc/Makefile | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/irc/quirc/Makefile b/irc/quirc/Makefile index 1d6589733d8c..f542c1eeec29 100644 --- a/irc/quirc/Makefile +++ b/irc/quirc/Makefile @@ -7,30 +7,32 @@ PORTNAME= quirc PORTVERSION= 0.9.84 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= irc tk MASTER_SITES= ${MASTER_SITE_LOCAL:S/$/:local/} MAINTAINER= ports@FreeBSD.org COMMENT= An irc client for the X Window System that uses TCL/TK -LIB_DEPENDS= tk84.1:${PORTSDIR}/x11-toolkits/tk84 - +USE_TK= 84+ USE_XORG= xt + GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-wish=${LOCALBASE}/bin/wish8.4 \ - --with-tcl-include-dir=${LOCALBASE}/include/tcl8.4 \ - --with-tk-include-dir=${LOCALBASE}/include/tk8.4 \ - --with-tcl-lib-dir=${LOCALBASE}/lib/tcl8.4 \ - --with-tk-lib-dir=${LOCALBASE}/lib/tk8.4 \ - --with-tcl-lib=tcl84 \ - --with-tk-lib=tk84 \ - --with-tcl-version=8.4 MYPORTDOCS= AUTHORS ChangeLog FAQ NEWS README doc/color.txt \ doc/dccresum.txt doc/links.txt doc/nickcomp.txt \ doc/quedit.txt doc/rfc1459.txt doc/tdcc.txt +.include <bsd.port.pre.mk> +CONFIGURE_ARGS= --with-wish=${WISH} \ + --with-tcl-include-dir=${TCL_INCLUDEDIR} \ + --with-tk-include-dir=${TK_INCLUDEDIR} \ + --with-tcl-lib-dir=${TCL_LIBDIR} \ + --with-tk-lib-dir=${TK_LIBDIR} \ + --with-tcl-lib=tcl${TCL_VER:S/.//} \ + --with-tk-lib=tk${TCL_VER:S/.//} \ + --with-tcl-version=${TCL_VER} + post-install: @${MKDIR} ${DATADIR}/common ${LN} -sf ../install.tcl ${DATADIR}/common @@ -43,4 +45,4 @@ post-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |