2013-05-14 11:04:59 +02:00
|
|
|
# Created by: Chris Piazza <cpiazza@FreeBSD.org>
|
1999-08-25 08:16:32 +02:00
|
|
|
# $FreeBSD$
|
1999-06-09 03:58:18 +02:00
|
|
|
|
2000-04-12 08:28:35 +02:00
|
|
|
PORTNAME= quirc
|
2004-02-23 23:23:41 +01:00
|
|
|
PORTVERSION= 0.9.84
|
2009-02-23 15:46:37 +01:00
|
|
|
PORTREVISION= 5
|
2008-04-09 15:42:26 +02:00
|
|
|
CATEGORIES= irc tk
|
2015-05-14 12:15:04 +02:00
|
|
|
MASTER_SITES= LOCAL:local # This ends up being empty.
|
1999-06-09 03:58:18 +02:00
|
|
|
|
2007-10-02 17:00:14 +02:00
|
|
|
MAINTAINER= ports@FreeBSD.org
|
2013-05-14 11:04:59 +02:00
|
|
|
COMMENT= Tcl/Tk IRC client for the X Window System
|
1999-06-09 03:58:18 +02:00
|
|
|
|
2014-02-21 14:37:29 +01:00
|
|
|
OPTIONS_DEFINE= DOCS
|
2014-02-20 11:01:58 +01:00
|
|
|
|
2015-05-14 12:15:04 +02:00
|
|
|
BROKEN= Unfetchable
|
2014-02-20 11:01:58 +01:00
|
|
|
USES= tk
|
- Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+
Thanks to all Helpers:
Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
ehaupt, nox, itetcu, flz, pav
PR: 116263
Tested on: pointyhat
Approved by: portmgr (pav)
2008-04-19 19:56:05 +02:00
|
|
|
USE_XORG= xt
|
2009-01-05 15:29:12 +01:00
|
|
|
|
1999-06-09 03:58:18 +02:00
|
|
|
GNU_CONFIGURE= yes
|
2014-02-20 11:01:58 +01:00
|
|
|
MAKE_ENV+= DESTDIR=${STAGEDIR}
|
1999-08-02 14:12:08 +02:00
|
|
|
|
2003-11-07 10:28:14 +01:00
|
|
|
MYPORTDOCS= AUTHORS ChangeLog FAQ NEWS README doc/color.txt \
|
2002-05-16 15:56:45 +02:00
|
|
|
doc/dccresum.txt doc/links.txt doc/nickcomp.txt \
|
|
|
|
doc/quedit.txt doc/rfc1459.txt doc/tdcc.txt
|
2014-02-20 11:01:58 +01:00
|
|
|
PORTDOCS= *
|
1999-06-09 03:58:18 +02:00
|
|
|
|
2014-02-10 14:54:26 +01:00
|
|
|
|
2013-05-14 11:04:59 +02:00
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
|
2009-01-05 15:29:12 +01:00
|
|
|
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} \
|
2014-02-20 11:01:58 +01:00
|
|
|
--with-tcl-lib=tcl${TCL_SHLIB_VER} \
|
|
|
|
--with-tk-lib=tk${TCL_SHLIB_VER} \
|
2009-01-05 15:29:12 +01:00
|
|
|
--with-tcl-version=${TCL_VER}
|
|
|
|
|
1999-06-09 03:58:18 +02:00
|
|
|
post-install:
|
2014-02-20 11:01:58 +01:00
|
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/common
|
|
|
|
${LN} -sf ../install.tcl ${STAGEDIR}${DATADIR}/common
|
|
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/themes
|
|
|
|
${LN} -sf ../default.tcl ${STAGEDIR}${DATADIR}/themes
|
|
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
2003-11-07 10:28:14 +01:00
|
|
|
.for file in ${MYPORTDOCS}
|
2014-02-20 11:01:58 +01:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}
|
2000-08-23 10:01:20 +02:00
|
|
|
.endfor
|
1999-06-09 03:58:18 +02:00
|
|
|
|
2013-05-14 11:04:59 +02:00
|
|
|
.include <bsd.port.mk>
|