Date: Fri, 27 Oct 2006 17:18:08 -0300 From: Rodrigo Graeff <delphus@gmail.com> To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/104869: (no subject) Message-ID: <45426980.2090100@gmail.com> Resent-Message-ID: <200610272020.k9RKKKR2043173@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 104869 >Category: ports >Synopsis: [PATCH] net-im/icqnd: [SUMMARIZE CHANGES] >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Oct 27 20:20:19 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Rodrigo Graeff >Release: FreeBSD 6.1-RELEASE-p10 i386 >Organization: >Environment: System: FreeBSD delphus.voipz.com.br 6.1-RELEASE-p10 FreeBSD 6.1-RELEASE-p10 #1: Fri Oct 13 14:04:02 BRT 2006 >Description: [DESCRIBE CHANGES] - Update to new version - Added support for gtkspeel - Added WITHOUT_NLS port option Added file(s): - files/patch-main.cpp Removed file(s): - icqnd/Makefile - icqnd/pkg-descr - icqnd/pkg-plist Port maintainer (delphus@gmail.com) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- icqnd-0.1.9.6.patch begins here --- diff -ruN --exclude=CVS /usr/ports/net-im/icqnd/Makefile /root/icqnd/Makefile --- /usr/ports/net-im/icqnd/Makefile Wed Aug 30 09:01:02 2006 +++ /root/icqnd/Makefile Fri Oct 27 17:09:10 2006 @@ -6,7 +6,7 @@ # PORTNAME= icqnd -PORTVERSION= 0.1.9.5 +PORTVERSION= 0.1.9.6 CATEGORIES= net-im MASTER_SITES= SF @@ -18,12 +18,27 @@ USE_BZIP2= yes USE_GETTEXT= yes +USE_GMAKE= yes GNU_CONFIGURE= yes USE_GNOME= gtk20 gnomehack CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" +OPTIONS= NLS "With native language support" off \ + GTKSPELL "spell checking support" on + .include <bsd.port.pre.mk> + +.if defined(WITHOUT_NLS) +CONFIGURE_ARGS+= --disable-nls +.endif + +.if !defined(WITHOUT_GTKSPELL) +LIB_DEPENDS+= gtkspell.0:${PORTSDIR}/textproc/gtkspell +CONFIGURE_ARGS+= --enable-gtkspell +.else +CONFIGURE_ARGS+= --disable-gtkspell +.endif .if ${OSVERSION} < 500000 BROKEN= Doesn't build on 4.x diff -ruN --exclude=CVS /usr/ports/net-im/icqnd/distinfo /root/icqnd/distinfo --- /usr/ports/net-im/icqnd/distinfo Wed Aug 30 09:01:02 2006 +++ /root/icqnd/distinfo Wed Oct 25 18:47:41 2006 @@ -1,3 +1,3 @@ -MD5 (icqnd-0.1.9.5.tar.bz2) = 2e3184ea58d4d722eaeff3a7f0b689da -SHA256 (icqnd-0.1.9.5.tar.bz2) = 90503e29e395dd340b0205d100c1ad49a9a39fb3d9357d31afaf41a345fa7375 -SIZE (icqnd-0.1.9.5.tar.bz2) = 711877 +MD5 (icqnd-0.1.9.6.tar.bz2) = 57d77adca3b486958fed04412296c60b +SHA256 (icqnd-0.1.9.6.tar.bz2) = 8dae8a01a314bbd1b853bd7205ff2824a9186e2b60a65a15d60f64514e82ce7f +SIZE (icqnd-0.1.9.6.tar.bz2) = 763599 diff -ruN --exclude=CVS /usr/ports/net-im/icqnd/files/patch-main.cpp /root/icqnd/files/patch-main.cpp --- /usr/ports/net-im/icqnd/files/patch-main.cpp Wed Dec 31 21:00:00 1969 +++ /root/icqnd/files/patch-main.cpp Fri Oct 27 16:40:30 2006 @@ -0,0 +1,11 @@ +--- src/main.cpp.orig Fri Oct 27 16:36:29 2006 ++++ src/main.cpp Fri Oct 27 16:36:53 2006 +@@ -89,7 +89,7 @@ + + gtk_set_locale(); + +- textdomain( "icqnd" ); ++ // textdomain( "icqnd" ); + + printf( "Loaded %s language\n", tr( "English" ) ); + diff -ruN --exclude=CVS /usr/ports/net-im/icqnd/icqnd/Makefile /root/icqnd/icqnd/Makefile --- /usr/ports/net-im/icqnd/icqnd/Makefile Tue Aug 29 15:05:47 2006 +++ /root/icqnd/icqnd/Makefile Wed Dec 31 21:00:00 1969 @@ -1,27 +0,0 @@ -# New ports collection makefile for: icqnd -# Date created: 2006-08-29 -# Whom: Charlie & <root@delphus.voipz.com.br> -# -# $FreeBSD$ -# - -PORTNAME= icqnd -PORTVERSION= -#PORTREVISION= 0 -#PORTEPOCH= 0 -CATEGORIES= -MASTER_SITES= -#MASTER_SITE_SUBDIR= -#PKGNAMEPREFIX= -#PKGNAMESUFFIX= -#DISTNAME= -#EXTRACT_SUFX= -#DISTFILES= -#DIST_SUBDIR= ${PORTNAME} -#EXTRACT_ONLY= - -MAINTAINER= root@delphus.voipz.com.br -COMMENT= - -.include <bsd.port.pre.mk> -.include <bsd.port.post.mk> diff -ruN --exclude=CVS /usr/ports/net-im/icqnd/icqnd/pkg-descr /root/icqnd/icqnd/pkg-descr --- /usr/ports/net-im/icqnd/icqnd/pkg-descr Tue Aug 29 15:05:47 2006 +++ /root/icqnd/icqnd/pkg-descr Wed Dec 31 21:00:00 1969 @@ -1,4 +0,0 @@ -[description of the port] - -Author: Author's name and e-mail address -WWW: http://port.home.page/ diff -ruN --exclude=CVS /usr/ports/net-im/icqnd/icqnd/pkg-plist /root/icqnd/icqnd/pkg-plist --- /usr/ports/net-im/icqnd/icqnd/pkg-plist Tue Aug 29 15:05:47 2006 +++ /root/icqnd/icqnd/pkg-plist Wed Dec 31 21:00:00 1969 @@ -1 +0,0 @@ -@comment $FreeBSD$ --- icqnd-0.1.9.6.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: SEND-PR: -*- send-pr -*- To: FreeBSD-gnats-submit@freebsd.org From: Rodrigo Graeff <delphus@gmail.com> Cc: delphus@gmail.com X-send-pr-version: 3.113 X-GNATS-Notify: SEND-PR: [ non-critical | serious | critical ] SEND-PR: [ low | medium | high ] SEND-PR: <choose from the list of categories below (one line)> SEND-PR: advocacy alpha bin conf docs gnu SEND-PR: i386 ia64 java kern misc ports SEND-PR: powerpc sparc64 standards www SEND-PR: [ sw-bug | doc-bug | change-request | update | maintainer-update ]
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?45426980.2090100>