From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 30 01:50:03 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 AEE271065673 for ; Tue, 30 Jun 2009 01:50:01 +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 52E418FC1A for ; Tue, 30 Jun 2009 01:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n5U1o1St023366 for ; Tue, 30 Jun 2009 01:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n5U1o1hM023365; Tue, 30 Jun 2009 01:50:01 GMT (envelope-from gnats) Resent-Date: Tue, 30 Jun 2009 01:50:01 GMT Resent-Message-Id: <200906300150.n5U1o1hM023365@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Carlos A. M. dos Santos" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 987B3106564A for ; Tue, 30 Jun 2009 01:47:26 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 85F968FC12 for ; Tue, 30 Jun 2009 01:47:26 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id n5U1lQmH073174 for ; Tue, 30 Jun 2009 01:47:26 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id n5U1lQXA073173; Tue, 30 Jun 2009 01:47:26 GMT (envelope-from nobody) Message-Id: <200906300147.n5U1lQXA073173@www.freebsd.org> Date: Tue, 30 Jun 2009 01:47:26 GMT From: "Carlos A. M. dos Santos" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/136174: net-im/ayttm: upgrade from version 0.5.0.45 to 0.5.0.82 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Jun 2009 01:50:03 -0000 >Number: 136174 >Category: ports >Synopsis: net-im/ayttm: upgrade from version 0.5.0.45 to 0.5.0.82 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Jun 30 01:50:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Carlos A. M. dos Santos >Release: 8-CURRENT >Organization: N.A. >Environment: FreeBSD avatar 8.0-CURRENT FreeBSD 8.0-CURRENT #1: Thu Jun 18 00:12:45 BRT 2009 root@avatar:/usr/obj/usr/src/sys/Compaq_nx6320 amd64 >Description: * Upgrade port from version 0.5.0.45 to 0.5.0.82 * Add option to enable aim-toc service (default off) * Add option to enable icq-toc service (default off) >How-To-Repeat: not applicable >Fix: apply the attached patch Patch attached with submission follows: diff -dur ayttm.orig/Makefile ayttm/Makefile --- ayttm.orig/Makefile 2009-06-29 22:34:57.000000000 -0300 +++ ayttm/Makefile 2009-06-29 21:45:42.000000000 -0300 @@ -6,8 +6,7 @@ # PORTNAME= ayttm -PORTVERSION= 0.5.0.45 -PORTREVISION= 1 +PORTVERSION= 0.5.0.82 CATEGORIES= net-im MASTER_SITES= SF DISTNAME= ${PORTNAME}-${PORTVERSION:R}-${PORTVERSION:E} @@ -20,8 +19,10 @@ gpgme.17:${PORTSDIR}/security/gpgme \ pspell.16:${PORTSDIR}/textproc/aspell -OPTIONS= ARTS "Enable aRts support" off \ - ESOUND "Enable EsounD support" off +OPTIONS= ARTS "Enable aRts support" off \ + ESOUND "Enable EsounD support" off \ + AIM_TOC "Include aim-toc service" off \ + ICQ_TOC "Include icq-toc service" off USE_BZIP2= yes USE_XORG= xpm xscrnsaver @@ -51,6 +52,20 @@ CONFIGURE_ARGS+= --disable-esd .endif +.if defined(WITH_AIM_TOC) +CONFIGURE_ARGS+= --enable-aim-toc +PLIST_SUB+= AIM_TOC="" +.else +PLIST_SUB+= AIM_TOC="@comment " +.endif + +.if defined(WITH_ICQ_TOC) +CONFIGURE_ARGS+= --enable-icq-toc +PLIST_SUB+= ICQ_TOC="" +.else +PLIST_SUB+= ICQ_TOC="@comment " +.endif + post-patch: @${REINPLACE_CMD} -e 's|-L/usr/local/lib||g ; \ s|-lpthread|${PTHREAD_LIBS}|g ; \ @@ -63,4 +78,7 @@ 's|-L/usr/local/lib/pth/||g ; \ s|-lproxy|../libproxy/libproxy.a|g' ${WRKSRC}/src/Makefile.in +post-build: + @${ECHO} 'Categories=Application;Network;' >> ${WRKSRC}/ayttm.desktop + .include diff -dur ayttm.orig/distinfo ayttm/distinfo --- ayttm.orig/distinfo 2008-06-18 01:19:00.000000000 -0300 +++ ayttm/distinfo 2009-06-28 19:51:03.000000000 -0300 @@ -1,3 +1,3 @@ -MD5 (ayttm-0.5.0-45.tar.bz2) = b609a148cd36ecb219c2b3f1513bfbd0 -SHA256 (ayttm-0.5.0-45.tar.bz2) = 4c732c742205f04023b09c2a884ace558ec2bd58ddcf3e9db1bd56395cbc48b9 -SIZE (ayttm-0.5.0-45.tar.bz2) = 1408451 +MD5 (ayttm-0.5.0-82.tar.bz2) = 6646c6ae40b26edad75c0f07903a537b +SHA256 (ayttm-0.5.0-82.tar.bz2) = 6c889fef0c0bd18b6517f4655eaa1e7915d746c18a332b8a6ad7260a371f94bd +SIZE (ayttm-0.5.0-82.tar.bz2) = 1569698 diff -dur ayttm.orig/pkg-plist ayttm/pkg-plist --- ayttm.orig/pkg-plist 2008-06-18 01:19:00.000000000 -0300 +++ ayttm/pkg-plist 2009-06-29 21:58:58.000000000 -0300 @@ -1,18 +1,12 @@ bin/ayttm bin/ayttm_streamer_wrapper.sh etc/ayttmrc -include/ayttm/yahoo2.h -include/ayttm/yahoo2_callbacks.h -include/ayttm/yahoo2_types.h -include/ayttm/yahoo_fn.h -include/ayttm/yahoo_httplib.h -include/ayttm/yahoo_list.h lib/ayttm/aim-oscar.a lib/ayttm/aim-oscar.la lib/ayttm/aim-oscar.so -lib/ayttm/aim-toc.a -lib/ayttm/aim-toc.la -lib/ayttm/aim-toc.so +%%AIM_TOC%%lib/ayttm/aim-toc.a +%%AIM_TOC%%lib/ayttm/aim-toc.la +%%AIM_TOC%%lib/ayttm/aim-toc.so lib/ayttm/autotrans.a lib/ayttm/autotrans.la lib/ayttm/autotrans.so @@ -22,9 +16,9 @@ lib/ayttm/custmsg.a lib/ayttm/custmsg.la lib/ayttm/custmsg.so -lib/ayttm/icq-toc.a -lib/ayttm/icq-toc.la -lib/ayttm/icq-toc.so +%%ICQ_TOC%%lib/ayttm/icq-toc.a +%%ICQ_TOC%%lib/ayttm/icq-toc.la +%%ICQ_TOC%%lib/ayttm/icq-toc.so lib/ayttm/img2jpc.a lib/ayttm/img2jpc.la lib/ayttm/img2jpc.so @@ -112,7 +106,12 @@ %%DATADIR%%/sounds/BuddyLeave.au %%DATADIR%%/sounds/Receive.au %%DATADIR%%/sounds/Send.au +share/pixmaps/away.png share/pixmaps/ayttm.png +share/pixmaps/buddy.png +share/pixmaps/group-chat.png +share/pixmaps/group.png +share/pixmaps/smileys.png @dirrmtry share/applnk/Internet @dirrmtry share/applnk @dirrmtry share/applications @@ -122,4 +121,3 @@ @dirrm %%DATADIR%%/smileys @dirrm %%DATADIR%% @dirrm lib/ayttm -@dirrm include/ayttm >Release-Note: >Audit-Trail: >Unformatted: