1999-06-09 03:58:18 +02:00
|
|
|
# New ports collection makefile for: QuIRC
|
|
|
|
# Date created: 21 May 1999
|
1999-06-19 10:26:18 +02:00
|
|
|
# Whom: Chris Piazza <cpiazza@FreeBSD.org>
|
1999-06-09 03:58:18 +02:00
|
|
|
#
|
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-01-05 15:29:12 +01:00
|
|
|
PORTREVISION= 4
|
2008-04-09 15:42:26 +02:00
|
|
|
CATEGORIES= irc tk
|
2006-05-16 04:57:00 +02:00
|
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL:S/$/:local/}
|
1999-06-09 03:58:18 +02:00
|
|
|
|
2007-10-02 17:00:14 +02:00
|
|
|
MAINTAINER= ports@FreeBSD.org
|
2003-03-07 07:14:21 +01:00
|
|
|
COMMENT= An irc client for the X Window System that uses TCL/TK
|
1999-06-09 03:58:18 +02:00
|
|
|
|
2009-01-05 15:29:12 +01:00
|
|
|
USE_TK= 84+
|
- 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
|
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
|
1999-06-09 03:58:18 +02:00
|
|
|
|
2009-01-05 15:29:12 +01:00
|
|
|
.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}
|
|
|
|
|
1999-06-09 03:58:18 +02:00
|
|
|
post-install:
|
2004-02-23 23:23:41 +01:00
|
|
|
@${MKDIR} ${DATADIR}/common
|
|
|
|
${LN} -sf ../install.tcl ${DATADIR}/common
|
|
|
|
@${MKDIR} ${DATADIR}/themes
|
|
|
|
${LN} -sf ../default.tcl ${DATADIR}/themes
|
2000-08-23 10:01:20 +02:00
|
|
|
.if !defined(NOPORTDOCS)
|
2004-02-23 23:23:41 +01:00
|
|
|
@${MKDIR} ${DOCSDIR}
|
2003-11-07 10:28:14 +01:00
|
|
|
.for file in ${MYPORTDOCS}
|
2004-02-23 23:23:41 +01:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
2000-08-23 10:01:20 +02:00
|
|
|
.endfor
|
|
|
|
.endif
|
1999-06-09 03:58:18 +02:00
|
|
|
|
2009-01-05 15:29:12 +01:00
|
|
|
.include <bsd.port.post.mk>
|