diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-02-23 22:23:41 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-02-23 22:23:41 +0000 |
commit | 99112aca6c77751eb350ac44cdd89fc9d56df8b9 (patch) | |
tree | 66106e07921c418fadd612980205155a1425dcfc /irc/quirc/Makefile | |
parent | 4fa2c94c82449f9593102be8c7442c45e6107d4b (diff) | |
download | ports-99112aca6c77751eb350ac44cdd89fc9d56df8b9.tar.gz ports-99112aca6c77751eb350ac44cdd89fc9d56df8b9.zip |
Notes
Diffstat (limited to 'irc/quirc/Makefile')
-rw-r--r-- | irc/quirc/Makefile | 40 |
1 files changed, 19 insertions, 21 deletions
diff --git a/irc/quirc/Makefile b/irc/quirc/Makefile index 3b832b154f6f..9a3def068069 100644 --- a/irc/quirc/Makefile +++ b/irc/quirc/Makefile @@ -6,43 +6,41 @@ # PORTNAME= quirc -PORTVERSION= 0.9.83 -CATEGORIES= irc tk83 +PORTVERSION= 0.9.84 +CATEGORIES= irc tk84 MASTER_SITES= http://quirc.org/ MAINTAINER= kevlo@FreeBSD.org COMMENT= An irc client for the X Window System that uses TCL/TK -LIB_DEPENDS= tk83.1:${PORTSDIR}/x11-toolkits/tk83 +LIB_DEPENDS= tk84.1:${PORTSDIR}/x11-toolkits/tk84 USE_XLIB= yes GNU_CONFIGURE= yes -CONFIGURE_ENV= CXXFLAGS="${CXXFLAGS} -pedantic" -CONFIGURE_ARGS= --with-wish=${PREFIX}/bin/wish8.3 \ - --with-tcl-include-dir=${LOCALBASE}/include/tcl8.3 \ - --with-tk-include-dir=${LOCALBASE}/include/tk8.3 \ - --with-tcl-lib-dir=${LOCALBASE}/lib/tcl8.3 \ - --with-tk-lib-dir=${LOCALBASE}/lib/tk8.3 \ - --with-tcl-lib=tcl83 \ - --with-tk-lib=tk83 \ - --with-tcl-version=8.3 +CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} +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> - -.if ${OSVERSION} >= 500113 -BROKEN= "Does not compile on FreeBSD ${OSVERSION}" -.endif - post-install: + @${MKDIR} ${DATADIR}/common + ${LN} -sf ../install.tcl ${DATADIR}/common + @${MKDIR} ${DATADIR}/themes + ${LN} -sf ../default.tcl ${DATADIR}/themes .if !defined(NOPORTDOCS) - @${MKDIR} ${PREFIX}/share/doc/quirc + @${MKDIR} ${DOCSDIR} .for file in ${MYPORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/quirc + ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} .endfor .endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> |