From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 21 05:40:08 2009 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA0C3106568C for ; Fri, 21 Aug 2009 05:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BE79F8FC3D for ; Fri, 21 Aug 2009 05:40:08 +0000 (UTC) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7L5e8Ng040830 for ; Fri, 21 Aug 2009 05:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7L5e845040829; Fri, 21 Aug 2009 05:40:08 GMT (envelope-from gnats) Date: Fri, 21 Aug 2009 05:40:08 GMT Message-Id: <200908210540.n7L5e845040829@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: wahjava@gmail.com (Ashish SHUKLA) Cc: Subject: Re: ports/137959: [PATCH] irc/bitlbee-otr is not doing SRV lookups for XMPP protocol X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ashish SHUKLA List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Aug 2009 05:40:09 -0000 The following reply was made to PR ports/137959; it has been noted by GNATS. From: wahjava@gmail.com (Ashish SHUKLA) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/137959: [PATCH] irc/bitlbee-otr is not doing SRV lookups for XMPP protocol Date: Fri, 21 Aug 2009 10:59:48 +0530 --=-=-= Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha1; protocol="application/pgp-signature" --==-=-= Content-Transfer-Encoding: quoted-printable Please discard the old diff file. The attached diff file has MASTERS_SITE set to MASTER_SITE_FREEBSD as the distfile is already uploaded to the FreeBSD FTP servers. Thanks =2D-=20 Ashish SHUKLA --==-=-= Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.12 (FreeBSD) iEYEARECAAYFAkqOMNAACgkQHy+EEHYuXnRjbACggnbNnKWEUbUXhIKTW/8N7tdR y7YAoIHcWDnI2jDRShULDIJbNIg0YDqp =xugt -----END PGP SIGNATURE----- --==-=-=-- --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=bitlbee-otr.diff Content-Description: bitlbee-otr diff file diff -urN /usr/ports/irc/bitlbee-otr/Makefile bitlbee-otr/Makefile --- /usr/ports/irc/bitlbee-otr/Makefile 2009-08-18 05:35:25.000000000 +0530 +++ bitlbee-otr/Makefile 2009-08-19 23:11:59.000000000 +0530 @@ -7,9 +7,9 @@ PORTNAME= bitlbee-otr PORTVERSION= 1.2.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= irc -MASTER_SITES= http://wahjava.googlepages.com/ +MASTER_SITES= ${MASTER_SITE_FREEBSD} MAINTAINER= wahjava@gmail.com COMMENT= An IRC to other chat networks gateway with support for OTR diff -urN /usr/ports/irc/bitlbee-otr/files/patch-configure bitlbee-otr/files/patch-configure --- /usr/ports/irc/bitlbee-otr/files/patch-configure 1970-01-01 05:30:00.000000000 +0530 +++ bitlbee-otr/files/patch-configure 2009-08-19 14:59:56.000000000 +0530 @@ -0,0 +1,22 @@ + +$FreeBSD$ + +--- configure.orig ++++ configure +@@ -350,13 +350,11 @@ + + echo 'SSL_CLIENT=ssl_'$ssl'.o' >> Makefile.settings + +-for i in $systemlibdirs; do +- if [ -f $i/libresolv.a ]; then ++if [ "$arch" = FreeBSD ]; then ++ if [ `strings /lib/libc.so.* |grep res_query |wc -l` -gt 0 ]; then + echo '#define HAVE_RESOLV_A' >> config.h +- echo 'EFLAGS+='$i'/libresolv.a' >> Makefile.settings +- break + fi +-done ++fi + + STORAGES="text xml" + --=-=-=--