From owner-svn-ports-head@FreeBSD.ORG Wed Jun 4 14:39:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D3C813F0; Wed, 4 Jun 2014 14:39:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B489129C1; Wed, 4 Jun 2014 14:39:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s54EdOm9036386; Wed, 4 Jun 2014 14:39:24 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s54EdNsE036376; Wed, 4 Jun 2014 14:39:23 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201406041439.s54EdNsE036376@svn.freebsd.org> From: Dmitry Marakasov Date: Wed, 4 Jun 2014 14:39:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r356504 - in head: irc/bitlbee irc/irssi-otr net-im/climm net-im/mcabber security/libotr3 security/py-otr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jun 2014 14:39:25 -0000 Author: amdmi3 Date: Wed Jun 4 14:39:22 2014 New Revision: 356504 URL: http://svnweb.freebsd.org/changeset/ports/356504 QAT: https://qat.redports.org/buildarchive/r356504/ Log: - Switch security/libotr3 to USES=libtool, drop .la files - Bump dependent ports as .so version has changed Approved by: portmgr blanket Modified: head/irc/bitlbee/Makefile head/irc/irssi-otr/Makefile head/net-im/climm/Makefile head/net-im/mcabber/Makefile head/security/libotr3/Makefile head/security/libotr3/pkg-plist head/security/py-otr/Makefile Modified: head/irc/bitlbee/Makefile ============================================================================== --- head/irc/bitlbee/Makefile Wed Jun 4 14:36:42 2014 (r356503) +++ head/irc/bitlbee/Makefile Wed Jun 4 14:39:22 2014 (r356504) @@ -2,7 +2,7 @@ PORTNAME= bitlbee PORTVERSION= 3.2.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= irc MASTER_SITES= http://get.bitlbee.org/src/ \ ${MASTER_SITE_LOCAL} @@ -73,7 +73,7 @@ LIB_DEPENDS+= libgnutls.so:${PORTSDIR}/s .if ${PORT_OPTIONS:MOTR} CONFIGURE_ARGS+=--otr=1 -LIB_DEPENDS+= libotr.so.4:${PORTSDIR}/security/libotr3 +LIB_DEPENDS+= libotr.so.2:${PORTSDIR}/security/libotr3 .else CONFIGURE_ARGS+=--otr=0 .endif Modified: head/irc/irssi-otr/Makefile ============================================================================== --- head/irc/irssi-otr/Makefile Wed Jun 4 14:36:42 2014 (r356503) +++ head/irc/irssi-otr/Makefile Wed Jun 4 14:39:22 2014 (r356504) @@ -3,7 +3,7 @@ PORTNAME= irssi-otr PORTVERSION= 0.3 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= irc MASTER_SITES= ftp://download.tuxfamily.org/${MASTER_SITE_SUBDIR}/ MASTER_SITE_SUBDIR= irssiotr @@ -13,8 +13,8 @@ COMMENT= A plugin for irssi for Off-the- BUILD_DEPENDS= ${LOCALBASE}/include/irssi/src/common.h:${PORTSDIR}/irc/irssi \ ${LOCALBASE}/bin/libgcrypt-config:${PORTSDIR}/security/libgcrypt -LIB_DEPENDS= otr.4:${PORTSDIR}/security/libotr3 \ - gcrypt:${PORTSDIR}/security/libgcrypt +LIB_DEPENDS= libotr.so.2:${PORTSDIR}/security/libotr3 \ + libgcrypt.so:${PORTSDIR}/security/libgcrypt RUN_DEPENDS= irssi:${PORTSDIR}/irc/irssi LICENSE= GPLv2 Modified: head/net-im/climm/Makefile ============================================================================== --- head/net-im/climm/Makefile Wed Jun 4 14:36:42 2014 (r356503) +++ head/net-im/climm/Makefile Wed Jun 4 14:39:22 2014 (r356504) @@ -3,7 +3,7 @@ PORTNAME= climm PORTVERSION= 0.7.1 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= net-im MASTER_SITES= http://www.climm.org/source/ \ http://http.bg.climm.org/source/ @@ -28,7 +28,7 @@ XMPP_DESC= Enable XMPP Jabber support .if ${PORT_OPTIONS:MOTR} CPPFLAGS+= -I${LOCALBASE}/include CONFIGURE_ARGS+= --enable-otr -LIB_DEPENDS+= libotr.so.4:${PORTSDIR}/security/libotr3 +LIB_DEPENDS+= libotr.so.2:${PORTSDIR}/security/libotr3 .else CONFIGURE_ARGS+= --disable-otr .endif Modified: head/net-im/mcabber/Makefile ============================================================================== --- head/net-im/mcabber/Makefile Wed Jun 4 14:36:42 2014 (r356503) +++ head/net-im/mcabber/Makefile Wed Jun 4 14:39:22 2014 (r356504) @@ -3,7 +3,7 @@ PORTNAME= mcabber PORTVERSION= 0.10.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im MASTER_SITES= http://www.lilotux.net/~mikael/mcabber/files/ CENKES @@ -37,7 +37,7 @@ ASPELL_LIB_DEPENDS= libaspell.so:${PORTS ASPELL_CONFIGURE_ENABLE=aspell ENCHANT_LIB_DEPENDS= libenchant.so:${PORTSDIR}/textproc/enchant ENCHANT_CONFIGURE_ENABLE=enchant -OTR_LIB_DEPENDS= libotr.so.4:${PORTSDIR}/security/libotr3 \ +OTR_LIB_DEPENDS= libotr.so.2:${PORTSDIR}/security/libotr3 \ libgcrypt.so:${PORTSDIR}/security/libgcrypt OTR_CONFIGURE_ENABLE= otr Modified: head/security/libotr3/Makefile ============================================================================== --- head/security/libotr3/Makefile Wed Jun 4 14:36:42 2014 (r356503) +++ head/security/libotr3/Makefile Wed Jun 4 14:39:22 2014 (r356504) @@ -4,7 +4,7 @@ PORTNAME= libotr PORTVERSION= 3.2.1 # Please do not bump PORTREVISION for this port unless you have # confirmed via testing that it is necessary -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security net-im net MASTER_SITES= http://www.c-s.li/ports/ \ https://otr.cypherpunks.ca/ @@ -23,7 +23,9 @@ LIB_DEPENDS= libgpg-error.so:${PORTSDIR} CONFLICTS= libotr-* -USE_AUTOTOOLS= autoconf libtool +USE_AUTOTOOLS= autoconf +USES= libtool +GNU_CONFIGURE= yes USE_LDCONFIG= yes verify: checksum Modified: head/security/libotr3/pkg-plist ============================================================================== --- head/security/libotr3/pkg-plist Wed Jun 4 14:36:42 2014 (r356503) +++ head/security/libotr3/pkg-plist Wed Jun 4 14:39:22 2014 (r356504) @@ -19,9 +19,9 @@ include/libotr/tlv.h include/libotr/userstate.h include/libotr/version.h lib/libotr.a -lib/libotr.la lib/libotr.so -lib/libotr.so.4 +lib/libotr.so.2 +lib/libotr.so.2.2.1 libdata/pkgconfig/libotr.pc man/man1/otr_mackey.1.gz man/man1/otr_modify.1.gz Modified: head/security/py-otr/Makefile ============================================================================== --- head/security/py-otr/Makefile Wed Jun 4 14:36:42 2014 (r356503) +++ head/security/py-otr/Makefile Wed Jun 4 14:39:22 2014 (r356504) @@ -2,7 +2,7 @@ PORTNAME= otr PORTVERSION= 0.2.1.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security python MASTER_SITES= http://python-otr.pentabarf.de/releases/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,7 +13,7 @@ COMMENT= Python bindings for libotr BUILD_DEPENDS= swig1.3:${PORTSDIR}/devel/swig13 # This should be updated to the newer version of libotr -LIB_DEPENDS= otr.4:${PORTSDIR}/security/libotr3 +LIB_DEPENDS= libotr.so.2:${PORTSDIR}/security/libotr3 USES= pkgconfig USE_PYTHON= yes