Import of pkgsrc-2015Q3

This commit is contained in:
2015-10-03 03:37:01 -07:00
committed by Lionel Sambuc
parent f641581404
commit 9d819b6d54
7578 changed files with 228314 additions and 80018 deletions

View File

@@ -1,8 +1,8 @@
# $NetBSD: Makefile,v 1.54 2014/02/12 23:17:35 tron Exp $
# $NetBSD: Makefile,v 1.55 2015/08/18 07:31:03 wiz Exp $
DISTNAME= ircii-pana-1.1-final
PKGNAME= bitchx-1.1
PKGREVISION= 7
PKGREVISION= 8
CATEGORIES= chat
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=bitchx/}

View File

@@ -1,7 +1,6 @@
# $NetBSD: Makefile,v 1.66 2014/11/20 08:38:59 mef Exp $
#
# $NetBSD: Makefile,v 1.68 2015/08/27 21:58:42 wiz Exp $
DISTNAME= bitlbee-3.2.2
DISTNAME= bitlbee-3.4.1
CATEGORIES= chat
MASTER_SITES= http://get.bitlbee.org/src/
@@ -10,9 +9,14 @@ HOMEPAGE= http://www.bitlbee.org/
COMMENT= IRC to other chat networks gateway
LICENSE= gnu-gpl-v2
BUILD_DEPENDS+= xmlto-[0-9]*:../../textproc/xmlto
BUILD_DEPENDS+= links-[0-9]*:../../www/links
BUILD_DEPENDS+= ${PYPKGPREFIX}-expat-[0-9]*:../../textproc/py-expat
HAS_CONFIGURE= yes
USE_TOOLS+= gmake pkg-config
REPLACE_PYTHON+= configure
CONFIGURE_ARGS+= --prefix=${PREFIX}
CONFIGURE_ARGS+= --bindir=${PREFIX}/sbin
CONFIGURE_ARGS+= --etcdir=${PKG_SYSCONFDIR}
@@ -43,6 +47,10 @@ PKG_HOME.bitlbee= ${VARBASE}/db/bitlbee
INSTALLATION_DIRS= ${PKGMANDIR}/man5 ${PKGMANDIR}/man8 sbin
post-build:
cd ${WRKSRC}/doc/user-guide && \
${BUILD_MAKE_CMD} user-guide.txt user-guide.html
do-install:
${INSTALL_DATA_DIR} ${DESTDIR}${DATADIR}
${INSTALL_DATA_DIR} ${DESTDIR}${DOCDIR}
@@ -79,6 +87,8 @@ RCD_SCRIPT_SRC.bitlbee= ${FILESDIR}/bitlbee.sh
.include "../../converters/libiconv/buildlink3.mk"
.include "../../devel/glib2/buildlink3.mk"
PYTHON_FOR_BUILD_ONLY= yes
.include "../../lang/python/application.mk"
.include "../../security/gnutls/buildlink3.mk"
.include "../../security/libgcrypt/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

View File

@@ -1,5 +1,6 @@
$NetBSD: distinfo,v 1.31 2014/11/20 08:38:59 mef Exp $
$NetBSD: distinfo,v 1.32 2015/08/27 21:58:42 wiz Exp $
SHA1 (bitlbee-3.2.2.tar.gz) = 7e3cfe2b6bf4e8e603c74e7587307a6f5d267e9c
RMD160 (bitlbee-3.2.2.tar.gz) = 7d5ce23f05b7ff7bac1c0a8af7e38f821176939a
Size (bitlbee-3.2.2.tar.gz) = 661757 bytes
SHA1 (bitlbee-3.4.1.tar.gz) = b77311b538ec1c584694784f119b99fb6b3f4859
RMD160 (bitlbee-3.4.1.tar.gz) = 32e0faf3b0a23f812f46752c1d0e96e30aaaf649
Size (bitlbee-3.4.1.tar.gz) = 688072 bytes
SHA1 (patch-irc__channel.c) = 332126961c675c173fd3634fcb26877a3317acd0

View File

@@ -0,0 +1,39 @@
$NetBSD: patch-irc__channel.c,v 1.1 2015/08/27 21:58:42 wiz Exp $
From b6a3fbf3b94d1e7e7aee82375661fc0934fec48b Mon Sep 17 00:00:00 2001
From: dequis <dx@dxzone.com.ar>
Date: Thu, 27 Aug 2015 04:25:07 -0300
Subject: [PATCH] irc_channel_name_gen: handle g_convert_with_fallback failures
First fallback to ASCII without TRANSLIT, and if that fails too, just
give up by returning NULL.
Basically the same thing as 3a27896 (a netbsd specific fix), but for
channel names. This wasn't needed before because the older version of
this code caught the NULL from the ASCII//TRANSLIT attempt and gave up
immediately, while the refactored version lacked null checking.
---
irc_channel.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/irc_channel.c b/irc_channel.c
index 3de68e3..cbd306a 100644
--- irc_channel.c.orig 2015-06-16 22:30:40.000000000 +0000
+++ irc_channel.c
@@ -592,6 +592,16 @@ char *irc_channel_name_gen(irc_t *irc, c
gsize bytes_written;
translit_name = g_convert_with_fallback(hint, -1, "ASCII//TRANSLIT", "UTF-8", "", NULL, &bytes_written, NULL);
+
+ if (!translit_name) {
+ /* Same thing as in nick_gen() in nick.c, try again without //TRANSLIT */
+ translit_name = g_convert_with_fallback(hint, -1, "ASCII", "UTF-8", "", NULL, &bytes_written, NULL);
+ }
+
+ if (!translit_name) {
+ return NULL;
+ }
+
if (bytes_written > MAX_NICK_LENGTH) {
translit_name[MAX_NICK_LENGTH] = '\0';
}

View File

@@ -1,8 +1,8 @@
# $NetBSD: Makefile,v 1.27 2015/06/12 10:48:26 wiz Exp $
# $NetBSD: Makefile,v 1.30 2015/09/08 11:57:49 jperkin Exp $
#
DISTNAME= centerim-4.22.10
PKGREVISION= 1
PKGREVISION= 3
CATEGORIES= chat
MASTER_SITES= http://www.centerim.org/download/releases/ \
http://transacid.de/centerim/releases/
@@ -25,10 +25,7 @@ REPLACE_PERL+= misc/cimconv
REPLACE_PYTHON+= misc/CenterIMLog2HTML.py
REPLACE_AWK+= misc/cimformathistory
INCOMPAT_CURSES+= NetBSD-1.[45]*-* NetBSD-1.6-* NetBSD-1.6.[1-9]-*
INCOMPAT_CURSES+= NetBSD-1.6_*-* NetBSD-1.6.[1-9]_*-* NetBSD-1.6[A-T]-*
INCOMPAT_CURSES+= NetBSD-2.*-* NetBSD-3.*-* # see PR 29060
INCOMPAT_CURSES+= NetBSD-4.*-* NetBSD-5.*-*
INCOMPAT_CURSES+= NetBSD-[0-5].*-* # see PR 29060
.include "options.mk"
.include "../../mk/bsd.prefs.mk"

View File

@@ -1,8 +1,8 @@
# $NetBSD: Makefile,v 1.8 2012/10/03 00:02:34 asau Exp $
# $NetBSD: Makefile,v 1.9 2015/08/23 14:30:36 wiz Exp $
#
DISTNAME= ctrlproxy-3.0.8
PKGREVISION= 4
PKGREVISION= 5
CATEGORIES= chat
MASTER_SITES= http://www.ctrlproxy.org/releases/

View File

@@ -1,7 +1,6 @@
# $NetBSD: Makefile,v 1.54 2015/05/04 14:40:38 fhajny Exp $
# $NetBSD: Makefile,v 1.57 2015/09/01 11:36:59 fhajny Exp $
DISTNAME= ejabberd-15.04
PKGREVISION= 1
DISTNAME= ejabberd-15.07
CATEGORIES= chat
MASTER_SITES= http://www.process-one.net/downloads/ejabberd/${PKGVERSION_NOREV}/
EXTRACT_SUFX= .tgz
@@ -101,11 +100,6 @@ fetch-deps:
post-extract:
${LN} -s ${WRKDIR}/deps ${WRKSRC}/
post-install:
${INSTALL_DATA} ${WRKSRC}/doc/dev.html ${DESTDIR}${PREFIX}/share/doc/${PKGBASE}
${INSTALL_DATA} ${WRKSRC}/doc/features.html ${DESTDIR}${PREFIX}/share/doc/${PKGBASE}
${INSTALL_DATA} ${WRKSRC}/doc/guide.html ${DESTDIR}${PREFIX}/share/doc/${PKGBASE}
.include "../../converters/libiconv/buildlink3.mk"
.include "../../devel/zlib/buildlink3.mk"
.include "../../lang/erlang/buildlink3.mk"

View File

@@ -1,9 +1,8 @@
@comment $NetBSD: PLIST,v 1.32 2015/05/04 14:40:38 fhajny Exp $
@comment $NetBSD: PLIST,v 1.34 2015/09/01 11:36:59 fhajny Exp $
lib/erlang/lib/${PKGNAME}/ebin/ELDAPv3.beam
lib/erlang/lib/${PKGNAME}/ebin/XmppAddr.beam
lib/erlang/lib/${PKGNAME}/ebin/acl.beam
lib/erlang/lib/${PKGNAME}/ebin/adhoc.beam
lib/erlang/lib/${PKGNAME}/ebin/bitmap.beam
lib/erlang/lib/${PKGNAME}/ebin/cache_tab.beam
lib/erlang/lib/${PKGNAME}/ebin/cache_tab_app.beam
lib/erlang/lib/${PKGNAME}/ebin/cache_tab_sup.beam
@@ -12,8 +11,6 @@ lib/erlang/lib/${PKGNAME}/ebin/cyrsasl_anonymous.beam
lib/erlang/lib/${PKGNAME}/ebin/cyrsasl_digest.beam
lib/erlang/lib/${PKGNAME}/ebin/cyrsasl_plain.beam
lib/erlang/lib/${PKGNAME}/ebin/cyrsasl_scram.beam
lib/erlang/lib/${PKGNAME}/ebin/ehyperloglog.app
lib/erlang/lib/${PKGNAME}/ebin/ehyperloglog.beam
lib/erlang/lib/${PKGNAME}/ebin/ejabberd.app
lib/erlang/lib/${PKGNAME}/ebin/ejabberd.beam
lib/erlang/lib/${PKGNAME}/ebin/ejabberd_admin.beam
@@ -160,6 +157,7 @@ lib/erlang/lib/${PKGNAME}/ebin/mod_ip_blacklist.beam
lib/erlang/lib/${PKGNAME}/ebin/mod_irc.beam
lib/erlang/lib/${PKGNAME}/ebin/mod_irc_connection.beam
lib/erlang/lib/${PKGNAME}/ebin/mod_last.beam
lib/erlang/lib/${PKGNAME}/ebin/mod_mam.beam
lib/erlang/lib/${PKGNAME}/ebin/mod_muc.beam
lib/erlang/lib/${PKGNAME}/ebin/mod_muc_admin.beam
lib/erlang/lib/${PKGNAME}/ebin/mod_muc_log.beam
@@ -347,19 +345,7 @@ lib/erlang/lib/${PKGNAME}/priv/msgs/zh.msg
lib/erlang/lib/${PKGNAME}/priv/sql/lite.sql
sbin/ejabberdctl
share/doc/ejabberd/COPYING
share/doc/ejabberd/dev.html
share/doc/ejabberd/discorus.png
share/doc/ejabberd/features.html
share/doc/ejabberd/guide.html
share/doc/ejabberd/guide.pdf
share/doc/ejabberd/logo.png
share/doc/ejabberd/msrl-dit-deep.png
share/doc/ejabberd/msrl-dit-flat.png
share/doc/ejabberd/msrl-roster-deep.png
share/doc/ejabberd/msrl-roster-flat.png
share/doc/ejabberd/webadmmain.png
share/doc/ejabberd/webadmmainru.png
share/doc/ejabberd/yozhikheader.png
share/examples/ejabberd/ejabberd.yml
share/examples/ejabberd/ejabberdctl.cfg
share/examples/ejabberd/inetrc

View File

@@ -1,13 +1,12 @@
$NetBSD: distinfo,v 1.33 2015/05/04 14:40:38 fhajny Exp $
$NetBSD: distinfo,v 1.36 2015/09/01 11:36:59 fhajny Exp $
SHA1 (ejabberd-15.04-deps.tar.gz) = c4a920fe2e60c0810af1588bd955066261f8dfc4
RMD160 (ejabberd-15.04-deps.tar.gz) = 527e6f8c9965012281cac6da7feea0993a6d8378
Size (ejabberd-15.04-deps.tar.gz) = 13647808 bytes
SHA1 (ejabberd-15.04.tgz) = cbd2661e921fe324e694bd1f582a3cbd67c309f9
RMD160 (ejabberd-15.04.tgz) = 2340080ff4cd4d0b5d8b7aec71ecd85b2938dae4
Size (ejabberd-15.04.tgz) = 3261947 bytes
SHA1 (ejabberd-15.07-deps.tar.gz) = 19019c87abf4187dc823a409078d791a580377c3
RMD160 (ejabberd-15.07-deps.tar.gz) = 63171aa661ca0afb43a6887ffd7b644c5aa9c418
Size (ejabberd-15.07-deps.tar.gz) = 15110194 bytes
SHA1 (ejabberd-15.07.tgz) = 7b80ac2f0f269673c2742079fb8cb08cfcbca70b
RMD160 (ejabberd-15.07.tgz) = b51d63c5ff6685148d5fc48860a91b8edce92b98
Size (ejabberd-15.07.tgz) = 1640947 bytes
SHA1 (patch-aa) = 5025927e6be5792fa8e59541938950d901b91ee5
SHA1 (patch-ad) = cdd7a61333f3206ac3ae9168b1878a059da25988
SHA1 (patch-ae) = 90787d77dda8317d89908ca9520710ea4e8d43f4
SHA1 (patch-ae) = a9340add286fe4b70ce0ac6b75a2f9162b8c4e7d
SHA1 (patch-configure) = 8cf03f571ef13ed825b445e0f1664d387895b8fe
SHA1 (patch-deps_p1__iconv_rebar.config) = cd1200342aea2d4731207b3b5c33653682a8988f

View File

@@ -1,11 +1,11 @@
$NetBSD: patch-ae,v 1.10 2015/01/02 09:14:16 fhajny Exp $
$NetBSD: patch-ae,v 1.11 2015/06/29 21:44:10 fhajny Exp $
- Default locations.
- Make it work with NetBSD's flock(1).
--- ejabberdctl.template.orig 2014-07-22 16:42:49.000000000 +0100
+++ ejabberdctl.template 2014-08-21 20:17:35.000000000 +0100
@@ -67,10 +67,10 @@
--- ejabberdctl.template.orig 2015-06-24 09:58:37.000000000 +0000
+++ ejabberdctl.template
@@ -71,10 +71,10 @@ if [ "$EJABBERD_CONFIG_PATH" = "" ] ; th
EJABBERD_CONFIG_PATH=$ETC_DIR/ejabberd.yml
fi
if [ "$LOGS_DIR" = "" ] ; then
@@ -18,7 +18,7 @@ $NetBSD: patch-ae,v 1.10 2015/01/02 09:14:16 fhajny Exp $
fi
if [ "$EJABBERD_DOC_PATH" = "" ] ; then
EJABBERD_DOC_PATH={{docdir}}
@@ -81,7 +81,7 @@
@@ -85,7 +85,7 @@ if [ "$ERLANG_NODE_ARG" != "" ] ; then
fi
if [ "{{release}}" != "true" ] ; then
if [ "$EJABBERDDIR" = "" ] ; then
@@ -27,16 +27,16 @@ $NetBSD: patch-ae,v 1.10 2015/01/02 09:14:16 fhajny Exp $
fi
if [ "$EJABBERD_EBIN_PATH" = "" ] ; then
EJABBERD_EBIN_PATH=$EJABBERDDIR/ebin
@@ -281,7 +281,7 @@
@@ -335,7 +335,7 @@ ctl()
# using flock if available. Expects a linux-style
# flock that can lock a file descriptor.
MAXCONNID=100
- CONNLOCKDIR={{localstatedir}}/lock/ejabberdctl
+ CONNLOCKDIR=@EJABBERD_PIDDIR@
FLOCK='/usr/bin/flock'
FLOCK=/usr/bin/flock
if [ ! -x "$FLOCK" ] || [ ! -d "$CONNLOCKDIR" ] ; then
JOT='/usr/bin/jot'
@@ -308,7 +308,7 @@
JOT=/usr/bin/jot
@@ -362,7 +362,7 @@ ctl()
CTL_LOCKFILE="$CONNLOCKDIR/$CTL_CONN"
(
exec 8>"$CTL_LOCKFILE"

View File

@@ -1,14 +0,0 @@
$NetBSD: patch-deps_p1__iconv_rebar.config,v 1.3 2015/05/04 14:40:38 fhajny Exp $
Make sure LDFLAGS are included as well.
--- deps/p1_iconv/rebar.config.orig 2015-04-29 09:27:02.000000000 +0000
+++ deps/p1_iconv/rebar.config
@@ -1,7 +1,7 @@
{erl_opts, [debug_info]}.
{port_env, [{"CFLAGS", "-g -O2 -Wall -O2 -Wall"},
- {"LDFLAGS", "$ERL_LDFLAGS -liconv"}]}.
+ {"LDFLAGS", "$LDFLAGS $ERL_LDFLAGS -liconv"}]}.
{port_specs, [{"priv/lib/iconv.so", ["c_src/iconv.c"]}]}.

View File

@@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.52 2014/02/12 23:17:35 tron Exp $
# $NetBSD: Makefile,v 1.54 2015/08/18 07:31:03 wiz Exp $
DISTNAME= ekg-1.7
PKGREVISION= 8
PKGREVISION= 10
CATEGORIES= chat
MASTER_SITES= http://ekg.chmurka.net/ \
http://ekg.chmurka.net/archive/

View File

@@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.69 2015/04/25 14:20:27 tnn Exp $
# $NetBSD: Makefile,v 1.72 2015/08/23 14:30:36 wiz Exp $
DISTNAME= empathy-2.34.0
PKGREVISION= 43
PKGREVISION= 44
CATEGORIES= chat gnome
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/empathy/2.34/}
@@ -10,20 +10,25 @@ HOMEPAGE= http://live.gnome.org/Empathy
COMMENT= Gnome instant messenger client
LICENSE= gnu-gpl-v2
PYTHON_VERSIONS_INCOMPATIBLE= 33 34
GNU_CONFIGURE= yes
USE_TOOLS+= gawk gmake gsed intltool msgfmt pkg-config
USE_TOOLS+= autoconf
USE_TOOLS+= autoconf msgmerge xgettext
USE_LIBTOOL= yes
USE_PKGLOCALEDIR= yes
CONFIGURE_ENV+= YELL_CFLAGS=-I${WRKSRC}/telepathy-yell
CONFIGURE_ENV+= \
YELL_LIBS="-L${WRKSRC}/telepathy-yell/telepathy-yell -ltelepathy-yell"
# see pkgsrc/security/mozilla-rootcerts
# see pkgsrc/security/mozilla-rootcerts-openssl
CONFIGURE_ARGS+= --with-ca-file=/etc/ssl/certs/ca-certificates.crt
BUILDLINK_TRANSFORM+= rm:-Werror
# with --nonet, xsltproc needs a helping hand finding some dtds
XSLTPROC_PATH+= ${LOCALBASE}/share/doc/dbus
# notyet
#CONFIGURE_ARGS+= --enable-meego
@@ -48,7 +53,7 @@ BUILDLINK_API_DEPENDS.enchant+= enchant>=1.2.0
.include "../../textproc/gnome-doc-utils/buildlink3.mk"
.include "../../textproc/gtk-doc/buildlink3.mk"
.include "../../textproc/iso-codes/buildlink3.mk"
.include "../../textproc/libxslt/buildlink3.mk"
.include "../../textproc/libxslt/xsltproc-nonet.mk"
.include "../../textproc/libxml2/buildlink3.mk"
.include "../../x11/gnome-panel/buildlink3.mk"
BUILDLINK_API_DEPENDS.gtk2+= gtk2+>=2.12.0

View File

@@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.61 2015/06/12 10:48:27 wiz Exp $
# $NetBSD: Makefile,v 1.63 2015/08/17 17:11:20 wiz Exp $
PKGNAME= finch-${PIDGIN_VERSION}
PKGREVISION= 1
PKGREVISION= 3
COMMENT= Multi-protocol Instant Messaging client console frontend

View File

@@ -1,8 +1,7 @@
# $NetBSD: options.mk,v 1.4 2009/12/08 12:45:42 wiz Exp $
# $NetBSD: options.mk,v 1.5 2015/08/06 19:39:19 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.finch
PKG_SUPPORTED_OPTIONS+= gstreamer debug
PKG_SUGGESTED_OPTIONS+= gstreamer
.include "../../mk/bsd.options.mk"

View File

@@ -1,6 +1,7 @@
# $NetBSD: Makefile,v 1.11 2014/05/06 10:44:08 wiz Exp $
# $NetBSD: Makefile,v 1.12 2015/08/23 14:30:36 wiz Exp $
DISTNAME= gloox-1.0.10
PKGREVISION= 1
CATEGORIES= chat
MASTER_SITES= http://camaya.net/download/
EXTRACT_SUFX= .tar.bz2

View File

@@ -1,8 +1,8 @@
# $NetBSD: Makefile,v 1.16 2014/02/12 23:17:36 tron Exp $
# $NetBSD: Makefile,v 1.18 2015/09/08 11:57:49 jperkin Exp $
#
DISTNAME= gtmess-0.91
PKGREVISION= 7
PKGREVISION= 8
CATEGORIES= chat
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gtmess/}
@@ -18,8 +18,6 @@ GNU_CONFIGURE= yes
CONFIGURE_ENV+= ac_cv_search_iconv=${BUILDLINK_LDADD.iconv:Q}
CFLAGS.SunOS+= -D_POSIX_PTHREAD_SEMANTICS
INCOMPAT_CURSES= NetBSD-1.*-*
.include "../../converters/libiconv/buildlink3.mk"
.include "../../security/openssl/buildlink3.mk"
.include "../../mk/curses.buildlink3.mk"

View File

@@ -1,13 +1,13 @@
# $NetBSD: Makefile,v 1.18 2015/01/01 09:24:22 dholland Exp $
# $NetBSD: Makefile,v 1.19 2015/08/20 23:39:44 mef Exp $
DISTNAME= icbirc-1.8
PKGREVISION= 1
DISTNAME= icbirc-1.9
CATEGORIES= chat
MASTER_SITES= http://www.benzedrine.cx/
MASTER_SITES= http://www.benzedrine.ch/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.benzedrine.cx/icbirc.html
COMMENT= Proxy IRC client and ICB server
LICENSE= 2-clause-bsd
# uses strlcpy
BROKEN_ON_PLATFORM= Linux-*-*

View File

@@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.8 2008/11/16 19:16:49 adrianp Exp $
$NetBSD: distinfo,v 1.9 2015/08/20 23:39:44 mef Exp $
SHA1 (icbirc-1.8.tar.gz) = 99ff8674b189fdf8a86b6acd2bc19418b888c38b
RMD160 (icbirc-1.8.tar.gz) = 769c35949b79b9e401d99026800e61063e6d1103
Size (icbirc-1.8.tar.gz) = 11061 bytes
SHA1 (icbirc-1.9.tar.gz) = bf59e8bacefee6df7f7e7941484658ec9506c595
RMD160 (icbirc-1.9.tar.gz) = 42d53e01463b0562d1254c855b347180b29787d4
Size (icbirc-1.9.tar.gz) = 11070 bytes
SHA1 (patch-aa) = 19aa0b6fae7f7f85af3546116e0c7d76f5b9c523

View File

@@ -1,9 +1,9 @@
# $NetBSD: Makefile,v 1.41 2015/06/12 10:48:27 wiz Exp $
# $NetBSD: Makefile,v 1.42 2015/08/23 14:30:36 wiz Exp $
#
DISTNAME= InspIRCd-1.1.23
PKGNAME= ${DISTNAME:S/InspIRCd/inspircd/}
PKGREVISION= 18
PKGREVISION= 19
CATEGORIES= chat
MASTER_SITES= http://www.inspircd.org/downloads/
EXTRACT_SUFX= .tar.bz2

View File

@@ -1,9 +1,9 @@
# $NetBSD: Makefile,v 1.27 2015/06/12 10:48:27 wiz Exp $
# $NetBSD: Makefile,v 1.28 2015/08/23 14:30:36 wiz Exp $
#
DISTNAME= InspIRCd-1.2.0
PKGNAME= ${DISTNAME:S/InspIRCd/inspircd/}
PKGREVISION= 19
PKGREVISION= 20
CATEGORIES= chat
MASTER_SITES= http://www.inspircd.org/downloads/
EXTRACT_SUFX= .tar.bz2

View File

@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.72 2015/03/14 23:43:28 tnn Exp $
# $NetBSD: Makefile,v 1.73 2015/09/16 20:21:07 mrg Exp $
DISTNAME= ircii-${VERS}
PKGNAME= ircII-${VERS}
@@ -13,7 +13,7 @@ LICENSE= modified-bsd
CONFLICTS= blackened-[0-9]*
VERS= 20141122
VERS= 20150903
PLIST_SUBST+= VERS=${VERS:Q}
.include "../../mk/bsd.prefs.mk"

View File

@@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.26 2014/08/25 06:22:18 mrg Exp $
@comment $NetBSD: PLIST,v 1.27 2015/09/17 07:06:48 tron Exp $
bin/irc
bin/irc-${VERS}
bin/ircbug
@@ -575,6 +575,7 @@ share/irc/script/netsplit
share/irc/script/newaway
share/irc/script/newformat
share/irc/script/nicks
share/irc/script/nicksearch
share/irc/script/nocolour
share/irc/script/oldping
share/irc/script/oper

View File

@@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.41 2014/11/22 22:20:15 mrg Exp $
$NetBSD: distinfo,v 1.42 2015/09/16 20:21:07 mrg Exp $
SHA1 (ircii-20141122.tar.bz2) = e243dafb325334240c4306e568fb94fb21b201d6
RMD160 (ircii-20141122.tar.bz2) = 5a0740b76c4a63d8af30c3a380a19fa1eccf9fcb
Size (ircii-20141122.tar.bz2) = 593290 bytes
SHA1 (ircii-20150903.tar.bz2) = fc623ac1a1f349b1c02fc53453a98fe54a1678dc
RMD160 (ircii-20150903.tar.bz2) = 263b3d5ef91ff008fb5f5a2de01ef2d1f0e1afb6
Size (ircii-20150903.tar.bz2) = 601329 bytes
SHA1 (patch-ac) = 9f6f3b27670b63ff00b55c5431ec1da5219369ff

View File

@@ -1,4 +1,4 @@
# $NetBSD: Makefile.common,v 1.14 2015/01/06 12:40:06 mef Exp $ -*- Makefile -*-
# $NetBSD: Makefile.common,v 1.15 2015/09/07 12:02:07 jperkin Exp $ -*- Makefile -*-
# used by chat/irssi-icb/Makefile
# used by chat/irssi-xmpp/Makefile
@@ -13,7 +13,3 @@ SITES.${IRSSI_DISTFILE}= http://www.irssi.org/files/
# plugins to compile properly.
IRSSI_CONFIG= ${PREFIX}/share/irssi/irssi-config
IRSSI_CONFIG_H= ${PREFIX}/include/irssi/irssi-config.h
.if ${OPSYS} == "Darwin"
INSTALL_UNSTRIPPED=YES
.endif

View File

@@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.70 2015/06/12 10:48:28 wiz Exp $
# $NetBSD: Makefile,v 1.71 2015/08/23 14:30:36 wiz Exp $
PKGNAME= libpurple-${PIDGIN_VERSION}
PKGREVISION= 2
PKGREVISION= 3
COMMENT= Multi-protocol Instant Messaging client backend

View File

@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.15 2012/10/03 00:02:40 asau Exp $
# $NetBSD: Makefile,v 1.16 2015/09/07 12:02:07 jperkin Exp $
#
DISTNAME= licq-1.3.5
@@ -18,13 +18,6 @@ GNU_CONFIGURE= YES
CONFIGURE_ARGS+= --disable-nls
.include "../../mk/bsd.prefs.mk"
# Make sure modules can link correctly
.if ${OPSYS} == "Darwin"
INSTALL_UNSTRIPPED= yes
.endif
.include "../../mk/compiler.mk"
.if !empty(CC_VERSION:Mgcc-4.[6-9].*)
CFLAGS.SunOS+= -std=c99 -D_XOPEN_SOURCE=600

View File

@@ -1,8 +1,8 @@
# $NetBSD: Makefile,v 1.23 2013/10/15 17:08:02 roy Exp $
# $NetBSD: Makefile,v 1.26 2015/09/08 11:57:49 jperkin Exp $
#
DISTNAME= licq-1.3.5
PKGREVISION= 1
PKGREVISION= 3
PKGNAME= ${DISTNAME:C/-/-gui-console-/}
CATEGORIES= chat
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=licq/}
@@ -24,8 +24,6 @@ SHLIBTOOL_OVERRIDE= # empty
CONFIGURE_DIRS= plugins/console
OVERRIDE_DIRDEPTH= 3
INCOMPAT_CURSES= NetBSD-1.4*-* NetBSD-1.5*-* NetBSD-1.6[-_.]*-* NetBSD-1.6[A-Q]-*
# the cdk on NetBSD 4.0 isn't compatible; also force the check
# initCDKScreen() to succeed, the configure script test fails due
# to missing -lm

View File

@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.48 2015/04/25 14:20:28 tnn Exp $
# $NetBSD: Makefile,v 1.49 2015/09/08 11:57:49 jperkin Exp $
#
DISTNAME= licq-1.3.5
@@ -28,8 +28,6 @@ SHLIBTOOL_OVERRIDE= # empty
OVERRIDE_DIRDEPTH= 3
CONFIGURE_DIRS= plugins/qt-gui
INCOMPAT_CURSES= NetBSD-1.4*-* NetBSD-1.5*-* NetBSD-1.6[-_.]*-* NetBSD-1.6[A-Q]-*
BUILDLINK_DEPMETHOD.libXt?= build
.include "../../x11/libSM/buildlink3.mk"

View File

@@ -1,6 +1,7 @@
# $NetBSD: Makefile,v 1.3 2015/01/16 08:57:46 wiz Exp $
# $NetBSD: Makefile,v 1.5 2015/08/17 17:11:20 wiz Exp $
DISTNAME= mcabber-0.10.3
DISTNAME= mcabber-1.0.0
PKGREVISION= 1
CATEGORIES= chat
MASTER_SITES= http://www.lilotux.net/~mikael/mcabber/files/
EXTRACT_SUFX= .tar.bz2

View File

@@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.1 2014/01/10 09:50:42 wiz Exp $
@comment $NetBSD: PLIST,v 1.2 2015/07/14 12:03:40 degroote Exp $
bin/mcabber
include/mcabber/api.h
include/mcabber/caps.h
@@ -43,6 +43,7 @@ share/mcabber/help/cs/hlp_alias.txt
share/mcabber/help/cs/hlp_authorization.txt
share/mcabber/help/cs/hlp_bind.txt
share/mcabber/help/cs/hlp_buffer.txt
share/mcabber/help/cs/hlp_carbons.txt
share/mcabber/help/cs/hlp_chat_disable.txt
share/mcabber/help/cs/hlp_clear.txt
share/mcabber/help/cs/hlp_color.txt
@@ -81,6 +82,7 @@ share/mcabber/help/de/hlp_alias.txt
share/mcabber/help/de/hlp_authorization.txt
share/mcabber/help/de/hlp_bind.txt
share/mcabber/help/de/hlp_buffer.txt
share/mcabber/help/de/hlp_carbons.txt
share/mcabber/help/de/hlp_chat_disable.txt
share/mcabber/help/de/hlp_clear.txt
share/mcabber/help/de/hlp_color.txt
@@ -119,6 +121,7 @@ share/mcabber/help/en/hlp_alias.txt
share/mcabber/help/en/hlp_authorization.txt
share/mcabber/help/en/hlp_bind.txt
share/mcabber/help/en/hlp_buffer.txt
share/mcabber/help/en/hlp_carbons.txt
share/mcabber/help/en/hlp_chat_disable.txt
share/mcabber/help/en/hlp_clear.txt
share/mcabber/help/en/hlp_color.txt
@@ -157,6 +160,7 @@ share/mcabber/help/fr/hlp_alias.txt
share/mcabber/help/fr/hlp_authorization.txt
share/mcabber/help/fr/hlp_bind.txt
share/mcabber/help/fr/hlp_buffer.txt
share/mcabber/help/fr/hlp_carbons.txt
share/mcabber/help/fr/hlp_chat_disable.txt
share/mcabber/help/fr/hlp_clear.txt
share/mcabber/help/fr/hlp_color.txt
@@ -195,6 +199,7 @@ share/mcabber/help/it/hlp_alias.txt
share/mcabber/help/it/hlp_authorization.txt
share/mcabber/help/it/hlp_bind.txt
share/mcabber/help/it/hlp_buffer.txt
share/mcabber/help/it/hlp_carbons.txt
share/mcabber/help/it/hlp_chat_disable.txt
share/mcabber/help/it/hlp_clear.txt
share/mcabber/help/it/hlp_color.txt
@@ -233,6 +238,7 @@ share/mcabber/help/nl/hlp_alias.txt
share/mcabber/help/nl/hlp_authorization.txt
share/mcabber/help/nl/hlp_bind.txt
share/mcabber/help/nl/hlp_buffer.txt
share/mcabber/help/nl/hlp_carbons.txt
share/mcabber/help/nl/hlp_chat_disable.txt
share/mcabber/help/nl/hlp_clear.txt
share/mcabber/help/nl/hlp_color.txt
@@ -271,6 +277,7 @@ share/mcabber/help/pl/hlp_alias.txt
share/mcabber/help/pl/hlp_authorization.txt
share/mcabber/help/pl/hlp_bind.txt
share/mcabber/help/pl/hlp_buffer.txt
share/mcabber/help/pl/hlp_carbons.txt
share/mcabber/help/pl/hlp_chat_disable.txt
share/mcabber/help/pl/hlp_clear.txt
share/mcabber/help/pl/hlp_color.txt
@@ -309,6 +316,7 @@ share/mcabber/help/ru/hlp_alias.txt
share/mcabber/help/ru/hlp_authorization.txt
share/mcabber/help/ru/hlp_bind.txt
share/mcabber/help/ru/hlp_buffer.txt
share/mcabber/help/ru/hlp_carbons.txt
share/mcabber/help/ru/hlp_chat_disable.txt
share/mcabber/help/ru/hlp_clear.txt
share/mcabber/help/ru/hlp_color.txt
@@ -347,6 +355,7 @@ share/mcabber/help/uk/hlp_alias.txt
share/mcabber/help/uk/hlp_authorization.txt
share/mcabber/help/uk/hlp_bind.txt
share/mcabber/help/uk/hlp_buffer.txt
share/mcabber/help/uk/hlp_carbons.txt
share/mcabber/help/uk/hlp_chat_disable.txt
share/mcabber/help/uk/hlp_clear.txt
share/mcabber/help/uk/hlp_color.txt

View File

@@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.2 2015/01/16 08:57:46 wiz Exp $
$NetBSD: distinfo,v 1.3 2015/07/14 12:03:40 degroote Exp $
SHA1 (mcabber-0.10.3.tar.bz2) = 9254f520cb37e691fb55d4fc46df4440e4a17f14
RMD160 (mcabber-0.10.3.tar.bz2) = d94e7b2e340cfd83a5b55276cdb0383a8555b347
Size (mcabber-0.10.3.tar.bz2) = 612153 bytes
SHA1 (mcabber-1.0.0.tar.bz2) = 209182eb15aa9a1780e88492781c1f0b2282044f
RMD160 (mcabber-1.0.0.tar.bz2) = 1e723b43de5a9cea41460cb678d779374757a31c
Size (mcabber-1.0.0.tar.bz2) = 602173 bytes
SHA1 (patch-aa) = 6c340bae29a7ba66a911ad94bef4aca8d8a08751

View File

@@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.53 2013/10/15 21:20:29 roy Exp $
# $NetBSD: Makefile,v 1.54 2015/08/18 07:31:03 wiz Exp $
DISTNAME= naim-0.11.8.3.2
PKGREVISION= 1
PKGREVISION= 2
CATEGORIES= chat
MASTER_SITES= http://naim.googlecode.com/files/
EXTRACT_SUFX= .tar.bz2

View File

@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.81 2015/04/25 13:40:39 tnn Exp $
# $NetBSD: Makefile,v 1.82 2015/09/23 11:40:06 joerg Exp $
DISTNAME= psi-0.15
PKGREVISION= 8
@@ -14,7 +14,7 @@ LICENSE= gnu-gpl-v2
DEPENDS+= qca2-ossl>=2.0.0beta3:../../security/qca2-ossl
DIST_SUBDIR= ${DISTNAME}
DISTFILES= ${DEFAULT_DISTFILES} ${LANG_FILES}
DISTFILES= ${DEFAULT_DISTFILES}
USE_TOOLS+= gmake unzip pkg-config
USE_LANGUAGES= c c++
@@ -56,7 +56,8 @@ INSTALL_MAKE_FLAGS= INSTALL_ROOT=${DESTDIR}
# psi_uk.qm psi_ur_PK.qm psi_vi.qm psi_zh_CN.qm psi_zh_TW.qm
.for f in ${LANG_FILES}
SITES.${f}=http://psi-im.org/download/lang/
DISTFILES+= ${f}
SITES.${f}= http://psi-im.org/download/lang/
.endfor
post-install:

View File

@@ -1,35 +1,30 @@
# $NetBSD: Makefile,v 1.18 2014/02/12 23:17:37 tron Exp $
# $NetBSD: Makefile,v 1.20 2015/08/23 14:30:36 wiz Exp $
#
DISTNAME= ScrollZ-1.9.5
PKGNAME= scrollz-1.9.5
DISTNAME= ScrollZ-2.2.3
PKGNAME= ${DISTNAME:tl}
PKGREVISION= 1
CATEGORIES= chat
MASTER_SITES= ftp://ftp.scrollz.com/pub/ScrollZ/source/
MASTER_SITES= http://www.scrollz.info/download/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.scrollz.com/
HOMEPAGE= http://www.scrollz.info/
COMMENT= Advanced IRC client based on ircII client
LICENSE= 2-clause-bsd
LICENSE= modified-bsd # XXX ?
MAKE_JOBS_SAFE= no
MAKE_JOBS_SAFE= no
GNU_CONFIGURE= yes
INSTALLATION_DIRS+= ${PKGMANDIR}/man1
SUBST_CLASSES+= mandir
SUBST_FILES.mandir= Makefile.in
SUBST_MESSAGE.mandir= Fixing PKGMANDIR path.
SUBST_SED.mandir= -e 's|@prefix@/share/man/man1|@mandir@/man1|1'
SUBST_STAGE.mandir= pre-configure
PKG_OPTIONS_VAR= PKG_OPTIONS.scrollz
PKG_SUPPORTED_OPTIONS= inet6 ssl
PKG_SUGGESTED_OPTIONS= inet6 ssl
.include "options.mk"
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Minet6)
CONFIGURE_ARGS+= --enable-ipv6
.endif
.if !empty(PKG_OPTIONS:Mssl)
CONFIGURE_ARGS+= --with-ssl
.include "../../security/openssl/buildlink3.mk"
.endif
post-install:
${CHMOD} -x ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/scrollz.1
.include "../../mk/bsd.pkg.mk"

View File

@@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.6 2009/06/14 18:28:44 joerg Exp $
@comment $NetBSD: PLIST,v 1.7 2015/07/27 22:31:30 wiz Exp $
bin/scrollz
bin/${PKGNAME}
man/man1/scrollz.1
@@ -12,6 +12,7 @@ share/scrollz/help/addchan
share/scrollz/help/addf
share/scrollz/help/addfchan
share/scrollz/help/addfflag
share/scrollz/help/addmon
share/scrollz/help/addn
share/scrollz/help/adds
share/scrollz/help/addw
@@ -34,9 +35,11 @@ share/scrollz/help/awayencr
share/scrollz/help/awaysave
share/scrollz/help/awayt
share/scrollz/help/ban
share/scrollz/help/bantime
share/scrollz/help/bantype
share/scrollz/help/basics
share/scrollz/help/beep
share/scrollz/help/bind/accept_last_chat
share/scrollz/help/bind/backspace
share/scrollz/help/bind/backward_character
share/scrollz/help/bind/backward_history
@@ -59,6 +62,7 @@ share/scrollz/help/bind/forward_character
share/scrollz/help/bind/forward_history
share/scrollz/help/bind/forward_word
share/scrollz/help/bind/help_character
share/scrollz/help/bind/insert_autoreply
share/scrollz/help/bind/insert_tabkey_next
share/scrollz/help/bind/insert_tabkey_prev
share/scrollz/help/bind/keys
@@ -75,6 +79,8 @@ share/scrollz/help/bind/next_window
share/scrollz/help/bind/nothing
share/scrollz/help/bind/parse_command
share/scrollz/help/bind/previous_window
share/scrollz/help/bind/push_empty_stack
share/scrollz/help/bind/push_line
share/scrollz/help/bind/quit_irc
share/scrollz/help/bind/quote_character
share/scrollz/help/bind/refresh_inputline
@@ -145,6 +151,7 @@ share/scrollz/help/chpass
share/scrollz/help/chsignoff
share/scrollz/help/cjoin
share/scrollz/help/clear
share/scrollz/help/clearmon
share/scrollz/help/cleartab
share/scrollz/help/color
share/scrollz/help/commands
@@ -240,6 +247,7 @@ share/scrollz/help/j
share/scrollz/help/join
share/scrollz/help/k
share/scrollz/help/keys
share/scrollz/help/keyx
share/scrollz/help/kick
share/scrollz/help/kickonban
share/scrollz/help/kickonflood
@@ -257,6 +265,7 @@ share/scrollz/help/links
share/scrollz/help/list
share/scrollz/help/listbk
share/scrollz/help/listf
share/scrollz/help/listmon
share/scrollz/help/listn
share/scrollz/help/lists
share/scrollz/help/listw
@@ -284,6 +293,7 @@ share/scrollz/help/mload
share/scrollz/help/mode
share/scrollz/help/modelock
share/scrollz/help/modeunlock
share/scrollz/help/monitor
share/scrollz/help/mop
share/scrollz/help/motd
share/scrollz/help/mreop
@@ -428,6 +438,7 @@ share/scrollz/help/remf
share/scrollz/help/remfchan
share/scrollz/help/remfflag
share/scrollz/help/remlog
share/scrollz/help/remmon
share/scrollz/help/remn
share/scrollz/help/rems
share/scrollz/help/remw
@@ -446,6 +457,7 @@ share/scrollz/help/servlist
share/scrollz/help/servnotice
share/scrollz/help/set/always_split_biggest
share/scrollz/help/set/auto_reconnect
share/scrollz/help/set/auto_reconnect_channels
share/scrollz/help/set/auto_unmark_away
share/scrollz/help/set/auto_whowas
share/scrollz/help/set/away_file
@@ -456,6 +468,7 @@ share/scrollz/help/set/beep_on_mail
share/scrollz/help/set/beep_on_msg
share/scrollz/help/set/beep_when_away
share/scrollz/help/set/bold_video
share/scrollz/help/set/chanlog_strip_ansi
share/scrollz/help/set/channel_name_width
share/scrollz/help/set/client_information
share/scrollz/help/set/clock
@@ -468,12 +481,17 @@ share/scrollz/help/set/ctcp_reply_backlog_seconds
share/scrollz/help/set/ctcp_reply_flood_size
share/scrollz/help/set/ctcp_reply_ignore_seconds
share/scrollz/help/set/dcc_block_size
share/scrollz/help/set/dcc_host
share/scrollz/help/set/dcc_ports
share/scrollz/help/set/debug
share/scrollz/help/set/decrypt_program
share/scrollz/help/set/default_protocol
share/scrollz/help/set/display
share/scrollz/help/set/display_ansi
share/scrollz/help/set/display_encoding
share/scrollz/help/set/eight_bit_characters
share/scrollz/help/set/encrypt_pad_msgs
share/scrollz/help/set/encrypt_pad_public
share/scrollz/help/set/encrypt_program
share/scrollz/help/set/exec_protection
share/scrollz/help/set/flood_after
@@ -497,11 +515,14 @@ share/scrollz/help/set/hold_mode_max
share/scrollz/help/set/hyper_dcc
share/scrollz/help/set/indent
share/scrollz/help/set/input_aliases
share/scrollz/help/set/input_encoding
share/scrollz/help/set/input_prompt
share/scrollz/help/set/input_protection
share/scrollz/help/set/insert_mode
share/scrollz/help/set/inverse_video
share/scrollz/help/set/irc_encoding
share/scrollz/help/set/irchost
share/scrollz/help/set/iso2022_support
share/scrollz/help/set/lastlog
share/scrollz/help/set/lastlog_ansi
share/scrollz/help/set/lastlog_level
@@ -516,21 +537,26 @@ share/scrollz/help/set/max_wallop_nicks
share/scrollz/help/set/menu
share/scrollz/help/set/minimum_servers
share/scrollz/help/set/minimum_users
share/scrollz/help/set/netsplit_time
share/scrollz/help/set/no_ask_nickname
share/scrollz/help/set/no_ctcp_flood
share/scrollz/help/set/notify_handler
share/scrollz/help/set/notify_level
share/scrollz/help/set/notify_on_termination
share/scrollz/help/set/notify_show_name
share/scrollz/help/set/notify_string
share/scrollz/help/set/novice
share/scrollz/help/set/old_encrypt_program
share/scrollz/help/set/pause_after_motd
share/scrollz/help/set/rate_limit_join
share/scrollz/help/set/realname
share/scrollz/help/set/same_window_only
share/scrollz/help/set/save_encryption_keys
share/scrollz/help/set/scroll
share/scrollz/help/set/scroll_lines
share/scrollz/help/set/scrollz_string
share/scrollz/help/set/send_ignore_msg
share/scrollz/help/set/send_userhost_on_nick_in_use
share/scrollz/help/set/set
share/scrollz/help/set/shell
share/scrollz/help/set/shell_flags
@@ -552,14 +578,19 @@ share/scrollz/help/set/status_format
share/scrollz/help/set/status_hold
share/scrollz/help/set/status_hold_lines
share/scrollz/help/set/status_insert
share/scrollz/help/set/status_lines
share/scrollz/help/set/status_loadavg
share/scrollz/help/set/status_mail
share/scrollz/help/set/status_mode
share/scrollz/help/set/status_notify
share/scrollz/help/set/status_notify_repw_end_var
share/scrollz/help/set/status_notify_repw_start_var
share/scrollz/help/set/status_oper
share/scrollz/help/set/status_overwrite
share/scrollz/help/set/status_query
share/scrollz/help/set/status_reverse
share/scrollz/help/set/status_scrolled
share/scrollz/help/set/status_scrolled_lines
share/scrollz/help/set/status_server
share/scrollz/help/set/status_umode
share/scrollz/help/set/status_uptime
@@ -568,12 +599,12 @@ share/scrollz/help/set/status_voice
share/scrollz/help/set/status_window
share/scrollz/help/set/suppress_server_motd
share/scrollz/help/set/tab_max
share/scrollz/help/set/translation
share/scrollz/help/set/trace
share/scrollz/help/set/truncate_public_channel
share/scrollz/help/set/underline_video
share/scrollz/help/set/use_old_msg
share/scrollz/help/set/user_information
share/scrollz/help/set/user_wallops
share/scrollz/help/set/username
share/scrollz/help/set/verbose_ctcp
share/scrollz/help/set/warn_of_ignores
share/scrollz/help/set/xterm_geomoptstr
@@ -583,6 +614,7 @@ share/scrollz/help/setaway
share/scrollz/help/setback
share/scrollz/help/settings
share/scrollz/help/showaway
share/scrollz/help/showchan
share/scrollz/help/showidle
share/scrollz/help/showkill
share/scrollz/help/shownick
@@ -679,42 +711,10 @@ share/scrollz/help/window/sticky
share/scrollz/help/window/swap
share/scrollz/help/window/title
share/scrollz/help/window/unbind
share/scrollz/help/window/unname
share/scrollz/help/window/window
share/scrollz/help/wkill
share/scrollz/help/ww
share/scrollz/help/xecho
share/scrollz/help/xtype
share/scrollz/translation/ASCII
share/scrollz/translation/CP437
share/scrollz/translation/CP850
share/scrollz/translation/DANISH
share/scrollz/translation/DEC_MCS
share/scrollz/translation/DG_MCS
share/scrollz/translation/DUTCH
share/scrollz/translation/FINNISH
share/scrollz/translation/FRENCH
share/scrollz/translation/FRENCH_CANADIAN
share/scrollz/translation/GERMAN
share/scrollz/translation/HP_MCS
share/scrollz/translation/IRV
share/scrollz/translation/ITALIAN
share/scrollz/translation/JIS
share/scrollz/translation/MACINTOSH
share/scrollz/translation/NEXT
share/scrollz/translation/NORWEGIAN_1
share/scrollz/translation/NORWEGIAN_2
share/scrollz/translation/POLISH
share/scrollz/translation/POLISH_NOPL
share/scrollz/translation/PORTUGUESE
share/scrollz/translation/PORTUGUESE_COM
share/scrollz/translation/RUSSIAN
share/scrollz/translation/RUSSIAN_ALT
share/scrollz/translation/RUSSIAN_WIN
share/scrollz/translation/SPANISH
share/scrollz/translation/SWEDISH
share/scrollz/translation/SWEDISH_NAMES
share/scrollz/translation/SWEDISH_NAMES_COM
share/scrollz/translation/SWISS
share/scrollz/translation/UNITED_KINGDOM
share/scrollz/translation/UNITED_KINGDOM_COM
@pkgdir share/scrollz/script

View File

@@ -1,7 +1,9 @@
$NetBSD: distinfo,v 1.9 2013/04/22 21:18:45 zafer Exp $
$NetBSD: distinfo,v 1.10 2015/07/27 22:31:30 wiz Exp $
SHA1 (ScrollZ-1.9.5.tar.gz) = 33496b0e8f4e87b3de9ce78a47d5b77b66b155c0
RMD160 (ScrollZ-1.9.5.tar.gz) = 8817697f6c47f47bcecef196793cb1cffc0031ba
Size (ScrollZ-1.9.5.tar.gz) = 906167 bytes
SHA1 (patch-Makefile.in) = 81bf541e740e1ee855d6e2b43a8eb75892416f5c
SHA1 (patch-aa) = 8c30f9e340a291ff2badcf733861f74e4a44f413
SHA1 (ScrollZ-2.2.3.tar.gz) = 81acfc32f13369e30878ead9f52c598f62f90abd
RMD160 (ScrollZ-2.2.3.tar.gz) = eb0e8eabb200c20b86b206e22f4a62ec08032be2
Size (ScrollZ-2.2.3.tar.gz) = 948958 bytes
SHA1 (patch-aa) = da3ce0d9f5e9169def974c2d9cf190833963b9b8
SHA1 (patch-source_input.c) = 76f2c7b8badf061b8763c95ec668149ad198a3eb
SHA1 (patch-source_screen.c) = f4165aeb2d6c7c51cb506ea7d689fcddf06a8f10
SHA1 (patch-source_translat.c) = 281e55cc33bf26dfde9abdc56eccf228c5baa732

65
chat/scrollz/options.mk Normal file
View File

@@ -0,0 +1,65 @@
# $NetBSD: options.mk,v 1.1 2015/07/27 22:31:30 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.scrollz
PKG_SUPPORTED_OPTIONS= efence inet6 regexp utf8
PKG_SUGGESTED_OPTIONS+= efence inet6
PKG_OPTIONS_OPTIONAL_GROUPS= socks ssl
PKG_OPTIONS_GROUP.socks= socks4 socks5
PKG_OPTIONS_GROUP.ssl= gnutls openssl
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mefence)
.include "../../devel/electric-fence/buildlink3.mk"
CONFIGURE_ARGS+= --with-efence
.else
CONFIGURE_ARGS+= --disable-efence
.endif
.if !empty(PKG_OPTIONS:Mgnutls)
.include "../../security/gnutls/buildlink3.mk"
CONFIGURE_ARGS+= --enable-fish --with-ssl
.else
CONFIGURE_ARGS+= --disable-fish --without-ssl
.endif
.if !empty(PKG_OPTIONS:Minet6)
CONFIGURE_ARGS+= --enable-ipv6
.else
CONFIGURE_ARGS+= --disable-ipv6
.endif
.if !empty(PKG_OPTIONS:Mopenssl)
.include "../../security/openssl/buildlink3.mk"
CONFIGURE_ARGS+= --disable-fish --with-openssl
.else
CONFIGURE_ARGS+= --without-openssl
.endif
.if !empty(PKG_OPTIONS:Mregexp)
CONFIGURE_ARGS+= --enable-regexp
.else
CONFIGURE_ARGS+= --disable-regexp
.endif
.if !empty(PKG_OPTIONS:Msocks4)
.include "../../net/socks4/buildlink3.mk"
CONFIGURE_ARGS+= --with-socks4=${BUILDLINK_PREFIX.socks4}
.else
CONFIGURE_ARGS+= --disable-socks4
.endif
.if !empty(PKG_OPTIONS:Msocks5)
.include "../../net/socks5/buildlink3.mk"
CONFIGURE_ARGS+= --with-socks5=${BUILDLINK_PREFIX.socks5}
.else
CONFIGURE_ARGS+= --disable-socks5
.endif
.if !empty(PKG_OPTIONS:Mutf8)
.include "../../converters/libiconv/buildlink3.mk"
CONFIGURE_ARGS+= --enable-utf8
LIBS+= -liconv
.else
CONFIGURE_ARGS+= --disable-utf8
.endif

View File

@@ -1,17 +0,0 @@
$NetBSD: patch-Makefile.in,v 1.2 2013/04/22 21:18:45 zafer Exp $
Fix destdir build.
--- Makefile.in.orig 2004-05-12 17:53:07.000000000 +0200
+++ Makefile.in 2012-01-21 01:44:49.816033366 +0100
@@ -216,8 +216,8 @@ installdirs:
installhelp:
$(INSTALL_HELP_CMD)
- find $(HELP_DIR) -type d -print | xargs chmod a+rx
- find $(HELP_DIR) -type f -print | xargs chmod a+r
+ find $(DESTDIR)/$(HELP_DIR) -type d -print | xargs chmod a+rx
+ find $(DESTDIR)$(HELP_DIR) -type f -print | xargs chmod a+r
installtranslation: installdirs
$(INSTALL_TRANSLATION_CMD)

View File

@@ -1,9 +1,9 @@
$NetBSD: patch-aa,v 1.4 2007/09/29 12:18:16 rillig Exp $
$NetBSD: patch-aa,v 1.5 2015/07/27 22:31:30 wiz Exp $
Prototypes must match exactly, says gcc4.
--- source/rijndael-alg-ref.c.orig 2002-01-21 22:37:36.000000000 +0100
+++ source/rijndael-alg-ref.c 2007-09-29 14:16:54.000000000 +0200
--- source/rijndael-alg-ref.c.orig 2011-04-29 08:21:18.000000000 +0000
+++ source/rijndael-alg-ref.c
@@ -36,11 +36,11 @@ static word8 shifts[3][4][2] = {
};

View File

@@ -0,0 +1,26 @@
$NetBSD: patch-source_input.c,v 1.1 2015/07/27 22:31:30 wiz Exp $
Fixes incompatible pointer type error.
--- source/input.c.orig 2011-04-29 08:21:18.000000000 +0000
+++ source/input.c
@@ -857,8 +857,8 @@ re_encode:
else
/****************************************************************************/
retval = iconv(mbdata.conv_in,
- &iptr, &isize,
- (char **)&optr, &osize);
+ (const char**)&iptr, &isize,
+ &optr, &osize);
if (retval == (size_t)-1)
{
@@ -1010,7 +1010,7 @@ get_input()
size_t retval;
retval = iconv(conv,
- &source, &left,
+ (const char**)&source, &left,
&dest, &space);
if (retval == (size_t)-1)
{

View File

@@ -0,0 +1,15 @@
$NetBSD: patch-source_screen.c,v 1.1 2015/07/27 22:31:30 wiz Exp $
Fixes incompatible pointer type error.
--- source/screen.c.orig 2011-04-29 08:21:18.000000000 +0000
+++ source/screen.c
@@ -613,7 +613,7 @@ display_text(ustr, length)
else
{
retval = iconv(converter,
- &str, &length,
+ (const char**)&str, &length,
&outptr, &outsize);
}

View File

@@ -0,0 +1,24 @@
$NetBSD: patch-source_translat.c,v 1.1 2015/07/27 22:31:30 wiz Exp $
Fixes incompatible pointer type error.
--- source/translat.c.orig 2011-04-29 08:21:18.000000000 +0000
+++ source/translat.c
@@ -379,7 +379,7 @@ displayable_unival(unsigned unival, icon
/* *outptr = '\0'; */
retval = iconv(conv_out,
- (iconv_const char**)&utfptr, &utfspace,
+ (const char**)&utfptr, &utfspace,
(char **)&outptr, &outspace);
/*
@@ -598,7 +598,7 @@ decode_mb(ptr, dest, data)
cptr = (char *)ptr;
cutfptr = (char *)utfptr;
retval = iconv(data->conv_in,
- (iconv_const char**)&ptr, &is,
+ (const char**)&ptr, &is,
(char **)&utfptr, &utfspace);
data->input_bytes += gave-is;

View File

@@ -1,8 +1,8 @@
# $NetBSD: Makefile,v 1.7 2012/10/03 00:02:44 asau Exp $
# $NetBSD: Makefile,v 1.9 2015/08/18 07:31:03 wiz Exp $
#
DISTNAME= smirk-20080111
PKGREVISION= 1
PKGREVISION= 3
CATEGORIES= chat
MASTER_SITES= ${MASTER_SITE_LOCAL}
EXTRACT_SUFX= .tar.bz2

View File

@@ -1,9 +1,9 @@
# $NetBSD: Makefile,v 1.46 2015/04/06 08:17:21 adam Exp $
# $NetBSD: Makefile,v 1.47 2015/09/12 20:03:00 tnn Exp $
DISTNAME= spectrum-1.4.8
PKGREVISION= 29
CATEGORIES= chat
MASTER_SITES= http://cloud.github.com/downloads/hanzz/libtransport/
MASTER_SITES= https://cloud.github.com/downloads/hanzz/libtransport/
MAINTAINER= schnoebe@NetBSD.org
HOMEPAGE= http://spectrum.im/

View File

@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.41 2015/01/17 15:24:22 bsiegert Exp $
# $NetBSD: Makefile,v 1.42 2015/09/07 12:02:06 jperkin Exp $
DISTNAME= Unreal3.2.10.4
PKGNAME= ${DISTNAME:tl:S/l/lircd-/1}
@@ -100,10 +100,6 @@ OWN_DIRS_PERMS+= ${UIRCD_HOME:Q}/tmp ${UIRCD_USER:Q} \
INSTALLATION_DIRS= sbin ${IRCD_DOCS} ${IRCD_EG} ${IRCD_SHARE}/aliases \
${IRCD_SHARE}/modules
.if ${OPSYS} == "Darwin"
INSTALL_UNSTRIPPED=YES
.endif
CFLAGS.Darwin+= -DUSE_LOCALE
CFLAGS.SunOS+= -DUSE_LOCALE

View File

@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.36 2015/06/12 10:48:29 wiz Exp $
# $NetBSD: Makefile,v 1.37 2015/07/12 18:56:07 wiz Exp $
DISTNAME= vicq-0.4.1
PKGREVISION= 11
@@ -11,7 +11,7 @@ HOMEPAGE= http://gonzo.kiev.ua/projects/vicq.old/
COMMENT= Simple icq client written in perl
LICENSE= gnu-gpl-v2
DEPENDS+= {perl>=5.17.7,p5-Term-ReadLine>=1.11}:../../devel/p5-Term-ReadLine
#DEPENDS+= {perl>=5.17.7,p5-Term-ReadLine>=1.11}:../../devel/p5-Term-ReadLine
WRKSRC= ${WRKDIR}/vicq
CONFIGURE_DIRS= Net/vICQ

View File

@@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.53 2015/06/12 10:48:29 wiz Exp $
# $NetBSD: Makefile,v 1.57 2015/08/23 14:30:37 wiz Exp $
DISTNAME= weechat-1.0
DISTNAME= weechat-1.2
PKGREVISION= 3
CATEGORIES= chat
MASTER_SITES= http://www.weechat.org/files/src/
@@ -25,6 +25,7 @@ CMAKE_ARGS+= -DENABLE_TCL:BOOL=OFF
CMAKE_ARGS+= -DENABLE_MAN:BOOL=ON
CMAKE_ARGS+= -DMANDIR:STRING=${PKGMANDIR}
CMAKE_ARGS+= -DLOCALEDIR:STRING=${PKGLOCALEDIR}/locale
CMAKE_ARGS+= -DENABLE_CHARSET:BOOL=ON
LDFLAGS+= ${BUILDLINK_LDADD.gettext}

View File

@@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.20 2015/04/30 11:36:54 joerg Exp $
@comment $NetBSD: PLIST,v 1.21 2015/08/01 19:10:15 tonio Exp $
bin/weechat
include/weechat/weechat-plugin.h
lib/pkgconfig/weechat.pc
@@ -18,6 +18,7 @@ man/it/man1/weechat.1
man/ja/man1/weechat.1
man/man1/weechat.1
man/pl/man1/weechat.1
man/ru/man1/weechat.1
share/icons/hicolor/32x32/apps/weechat.png
share/locale/cs/LC_MESSAGES/weechat.mo
share/locale/de/LC_MESSAGES/weechat.mo
@@ -30,7 +31,6 @@ share/locale/pl/LC_MESSAGES/weechat.mo
share/locale/pt_BR/LC_MESSAGES/weechat.mo
share/locale/ru/LC_MESSAGES/weechat.mo
share/locale/tr/LC_MESSAGES/weechat.mo
${PLIST.charset}lib/weechat/plugins/charset.so
${PLIST.lua}lib/weechat/plugins/lua.so
${PLIST.perl}lib/weechat/plugins/perl.so
${PLIST.python}lib/weechat/plugins/python.so

View File

@@ -1,11 +1,10 @@
$NetBSD: distinfo,v 1.32 2015/04/30 11:36:54 joerg Exp $
$NetBSD: distinfo,v 1.33 2015/08/01 19:10:15 tonio Exp $
SHA1 (weechat-1.0.tar.bz2) = d3070ffde05cb706d615144e71f933153871894d
RMD160 (weechat-1.0.tar.bz2) = d36e7144884a0779b8242ac5e35f4e3c6379af65
Size (weechat-1.0.tar.bz2) = 2275868 bytes
SHA1 (patch-ab) = d0fac0994602dfa0afde9fe14487f44f8cce25d6
SHA1 (patch-po_CMakeLists.txt) = d6b1fad4ec4026f319f19fb581af93a196f6e78b
SHA1 (patch-src_gui_curses_CMakeLists_txt) = b96a789692e60c824e7f1d3a3fdd0c91d98d50ba
SHA1 (patch-src_gui_curses_gui-curses-term_c) = d1a2d4f08c6df0007e2d6cb1771c889c7b2441c6
SHA1 (weechat-1.2.tar.bz2) = 494c14ee078f9670a9434b842bd8d61107168021
RMD160 (weechat-1.2.tar.bz2) = 9db8427595ceec939d0c0195cef4dfa67d8c4cdd
Size (weechat-1.2.tar.bz2) = 2367277 bytes
SHA1 (patch-ab) = 2a4583e0f5b0336e8c42ad9eb5a65bbec4730207
SHA1 (patch-po_CMakeLists.txt) = 9b97a4a4da4175e31ea53352fd0b95e1c985ba1e
SHA1 (patch-src_gui_curses_CMakeLists_txt) = 28a1b3b9920cc130d0454a18b111d37b8090038b
SHA1 (patch-src_gui_curses_gui-curses-term_c) = 900af9a94e74f229b32031bfeced1b85ea3a0ccf
SHA1 (patch-src_plugins_charset_charset.c) = f0b6e5268908caab5efa8048c8a55b0083ec0ca4
SHA1 (patch-src_plugins_weechat-plugin.h) = 52971fbb702355993fc9f55bfec19bae177f4dcb

View File

@@ -1,19 +1,12 @@
# $NetBSD: options.mk,v 1.11 2014/05/03 13:27:33 alnsn Exp $
# $NetBSD: options.mk,v 1.12 2015/08/01 19:10:15 tonio Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.weechat
PKG_SUPPORTED_OPTIONS= charset gnutls python lua wide-curses perl ruby
PKG_SUGGESTED_OPTIONS= charset gnutls
PKG_SUPPORTED_OPTIONS= gnutls python lua wide-curses perl ruby
PKG_SUGGESTED_OPTIONS= gnutls
.include "../../mk/bsd.options.mk"
PLIST_VARS+= charset lua plugin python perl ruby
.if !empty(PKG_OPTIONS:Mcharset)
CMAKE_ARGS+= -DENABLE_CHARSET:BOOL=ON
PLIST.charset= yes
.else
CMAKE_ARGS+= -DENABLE_CHARSET:BOOL=OFF
.endif
PLIST_VARS+= lua plugin python perl ruby
.if !empty(PKG_OPTIONS:Mgnutls)
.include "../../security/gnutls/buildlink3.mk"
@@ -54,14 +47,14 @@ CMAKE_ARGS+= -DENABLE_PERL:BOOL=OFF
.if !empty(PKG_OPTIONS:Mruby)
.include "../../lang/ruby/buildlink3.mk"
CMAKE_ARGS+= -DENABLE_RUBY:BOOL=ON
USE_TOOLS+= ruby
PLIST.ruby= yes
BUILDLINK_INCDIRS.${RUBY_BASE}+= ${RUBY_INC}
BUILDLINK_INCDIRS.${RUBY_BASE}+= ${RUBY_ARCHINC}
.else
CMAKE_ARGS+= -DENABLE_RUBY:BOOL=OFF
.endif
.if !empty(PKG_OPTIONS:Mpython) || \
!empty(PKG_OPTIONS:Mlua) || \
!empty(PKG_OPTIONS:Mcharset)
!empty(PKG_OPTIONS:Mlua)
PLIST.plugin= yes
.endif

View File

@@ -1,4 +1,6 @@
$NetBSD: patch-ab,v 1.7 2012/05/28 22:55:05 tonio Exp $
$NetBSD: patch-ab,v 1.8 2015/08/01 19:10:15 tonio Exp $
Prefer ncursesw/curses.h over ncursesw/ncurses.h.
--- src/gui/curses/gui-curses.h.orig 2012-01-08 09:13:53.000000000 +0000
+++ src/gui/curses/gui-curses.h

View File

@@ -1,4 +1,6 @@
$NetBSD: patch-po_CMakeLists.txt,v 1.3 2014/08/24 12:45:35 tonio Exp $
$NetBSD: patch-po_CMakeLists.txt,v 1.4 2015/08/01 19:10:15 tonio Exp $
Drop package-name and package-version args to xgettext.
--- po/CMakeLists.txt.orig 2014-08-15 08:09:01.000000000 +0000
+++ po/CMakeLists.txt

View File

@@ -1,8 +1,8 @@
$NetBSD: patch-src_gui_curses_CMakeLists_txt,v 1.4 2015/04/30 11:36:54 joerg Exp $
$NetBSD: patch-src_gui_curses_CMakeLists_txt,v 1.5 2015/08/01 19:10:15 tonio Exp $
Test for ncursesw
--- src/gui/curses/CMakeLists.txt.orig 2014-08-15 08:09:01.000000000 +0000
--- src/gui/curses/CMakeLists.txt.orig 2015-05-10 07:24:50.000000000 +0000
+++ src/gui/curses/CMakeLists.txt
@@ -37,9 +37,11 @@ set(EXECUTABLE weechat)
@@ -28,18 +28,9 @@ Test for ncursesw
list(APPEND EXTRA_LIBS "pthread")
if(ICONV_LIBRARY)
@@ -85,14 +91,3 @@ add_dependencies(${EXECUTABLE} weechat_g
target_link_libraries(${EXECUTABLE} ${STATIC_LIBS} weechat_gui_curses ${EXTRA_LIBS} ${STATIC_LIBS})
@@ -103,4 +109,4 @@ list(APPEND CMAKE_INSTALL_MANIFEST_FILES
# Install executable and symbolic link
install(TARGETS ${EXECUTABLE} RUNTIME DESTINATION bin)
-
-# Create a symbolic link weechat-curses -> weechat
-# This link is created for compatibility with old versions on /upgrade.
-# It may be removed in future.
-install(CODE "
- EXECUTE_PROCESS(
- COMMAND ${CMAKE_COMMAND} -E remove -f \"\$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/weechat-curses${CMAKE_EXECUTABLE_SUFFIX}\"
- COMMAND ${CMAKE_COMMAND} -E create_symlink weechat${CMAKE_EXECUTABLE_SUFFIX} \"\$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/weechat-curses${CMAKE_EXECUTABLE_SUFFIX}\"
- )
- LIST(APPEND CMAKE_INSTALL_MANIFEST_FILES \"${CMAKE_INSTALL_PREFIX}/bin/weechat-curses${CMAKE_EXECUTABLE_SUFFIX}\")
-")
-install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${EXECUTABLE}-curses${CMAKE_EXECUTABLE_SUFFIX} DESTINATION bin)
+

View File

@@ -1,4 +1,4 @@
$NetBSD: patch-src_gui_curses_gui-curses-term_c,v 1.4 2014/08/24 12:45:35 tonio Exp $
$NetBSD: patch-src_gui_curses_gui-curses-term_c,v 1.5 2015/08/01 19:10:15 tonio Exp $
Include <ncurses/term.h>, not <ncursesw/term.h>.
Check for HAVE_NCURSES_TERM_H, not for HAVE_NCURSES_CURSES_H.
@@ -6,9 +6,9 @@ Check for HAVE_NCURSES_TERM_H, not for HAVE_NCURSES_CURSES_H.
Workaround for build failure on early NetBSD 6.99.* and prerelease 6.0
(PR 46492)
--- src/gui/curses/gui-curses-term.c.orig 2014-08-15 08:09:01.000000000 +0000
--- src/gui/curses/gui-curses-term.c.orig 2015-05-10 07:24:50.000000000 +0000
+++ src/gui/curses/gui-curses-term.c
@@ -23,13 +23,13 @@
@@ -23,15 +23,15 @@
#include "config.h"
#endif
@@ -18,14 +18,18 @@ Workaround for build failure on early NetBSD 6.99.* and prerelease 6.0
#include <ncurses/term.h>
#else
-#include <ncursesw/term.h>
-#endif /* __sun */
-#else
+#ifdef __NetBSD__
+/* workaround for build failure on early 6.99.* and prerelease 6.0 */
+#include <sys/cdefs.h>
#endif
-#else
+#endif
#include <term.h>
#endif
-#endif /* HAVE_NCURSESW_CURSES_H */
+#endif /* HAVE_NCURSESW_TERM_H */
/*
@@ -45,7 +45,7 @@
void
gui_term_set_eat_newline_glitch (int value)

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.96 2015/06/12 10:48:29 wiz Exp $
# $NetBSD: Makefile,v 1.97 2015/09/07 12:02:06 jperkin Exp $
.include "Makefile.common"
@@ -28,8 +28,6 @@ BUILDLINK_API_DEPENDS.gtk2+= gtk2+>=2.20.0
.include "../../x11/gtk2/buildlink3.mk"
.if ${OPSYS} == "Darwin"
INSTALL_UNSTRIPPED= YES
. if empty(PKG_BUILD_OPTIONS.gtk2:Mquartz)
CONFIGURE_ARGS+= --enable-xft
LDFLAGS.Darwin+= -L${PREFIX}/lib -lX11