Date: Sat, 29 Aug 2009 03:00:19 +0900 From: KATO Tsuguru <tkato432@yahoo.com> To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/138277: Update port: graphics/icoutils to 0.28.0 Message-ID: <20090829030019.0f51a5d1.tkato432@yahoo.com> Resent-Message-ID: <200908281810.n7SIA3hZ066851@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 138277 >Category: ports >Synopsis: Update port: graphics/icoutils to 0.28.0 >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 Aug 28 18:10:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.2-RELEASE-p2 i386 >Organization: >Environment: >Description: - Update to version 0.28.0 Remove file: files/patch-icotool__Makefile.in files/patch-icotool__win32-endian.c files/patch-wrestool__Makefile.in >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/icoutils/Makefile graphics/icoutils/Makefile --- /usr/ports/graphics/icoutils/Makefile 2009-08-17 05:11:59.000000000 +0900 +++ graphics/icoutils/Makefile 2009-08-26 01:24:15.000000000 +0900 @@ -6,7 +6,7 @@ # PORTNAME= icoutils -PORTVERSION= 0.27.0 +PORTVERSION= 0.28.0 CATEGORIES= graphics MASTER_SITES= SAVANNAH @@ -16,9 +16,9 @@ LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png RUN_DEPENDS= ${SITE_PERL}/LWP.pm:${PORTSDIR}/www/p5-libwww -USE_GETTEXT= yes USE_PERL5_RUN= yes GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-nls CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" diff -urN /usr/ports/graphics/icoutils/distinfo graphics/icoutils/distinfo --- /usr/ports/graphics/icoutils/distinfo 2009-07-09 23:19:18.000000000 +0900 +++ graphics/icoutils/distinfo 2009-08-26 00:48:43.000000000 +0900 @@ -1,3 +1,3 @@ -MD5 (icoutils-0.27.0.tar.gz) = e0ec22c83290317a04110a3d05d1c7ac -SHA256 (icoutils-0.27.0.tar.gz) = 848456fdfddfdefde30946ff60658b3af544623dcde2118c75aa583a0bdf46a9 -SIZE (icoutils-0.27.0.tar.gz) = 489729 +MD5 (icoutils-0.28.0.tar.gz) = 8b28053a5b6c2fd900d73a7aeed0cdb3 +SHA256 (icoutils-0.28.0.tar.gz) = c02f0249ed937f108ae337a86a8c3564ea6c8c2282d61665109f206e757b5f69 +SIZE (icoutils-0.28.0.tar.gz) = 500481 diff -urN /usr/ports/graphics/icoutils/files/patch-icotool__Makefile.in graphics/icoutils/files/patch-icotool__Makefile.in --- /usr/ports/graphics/icoutils/files/patch-icotool__Makefile.in 2009-07-09 18:05:36.000000000 +0900 +++ graphics/icoutils/files/patch-icotool__Makefile.in 1970-01-01 09:00:00.000000000 +0900 @@ -1,15 +0,0 @@ ---- icotool/Makefile.in.orig 2009-06-30 03:14:01.000000000 +0900 -+++ icotool/Makefile.in 2009-07-07 01:32:50.000000000 +0900 -@@ -559,9 +559,10 @@ - win32.h - - icotool_LDADD = \ -- @PNG_LIBS@ \ - ../common/libcommon.a \ -- ../lib/libgnu.a -+ ../lib/libgnu.a \ -+ @PNG_LIBS@ \ -+ @LIBINTL@ - - man_MANS = \ - icotool.1 diff -urN /usr/ports/graphics/icoutils/files/patch-icotool__win32-endian.c graphics/icoutils/files/patch-icotool__win32-endian.c --- /usr/ports/graphics/icoutils/files/patch-icotool__win32-endian.c 2005-11-28 08:15:47.000000000 +0900 +++ graphics/icoutils/files/patch-icotool__win32-endian.c 1970-01-01 09:00:00.000000000 +0900 @@ -1,41 +0,0 @@ ---- icotool/win32-endian.c.orig Sun Nov 27 18:43:33 2005 -+++ icotool/win32-endian.c Sun Nov 27 21:05:48 2005 -@@ -17,6 +17,10 @@ - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA - */ - -+#if (defined(__unix__) || defined(unix)) && !defined(USG) -+#include <sys/param.h> -+#endif -+ - #include <config.h> - #include "win32-endian.h" - -@@ -27,6 +31,27 @@ - #define bswap_16(x) NXSwapShort(x) - #define bswap_32(x) NXSwapInt(x) - #define bswap_64(x) NXSwapLongLong(x) -+#elif defined(__FreeBSD__) && (__FreeBSD_version >= 470000) -+# include <sys/endian.h> -+# if (__FreeBSD_version >= 500000) -+# define bswap_16(x) bswap16(x) -+# define bswap_32(x) bswap32(x) -+# define bswap_64(x) bswap64(x) -+# else -+# define bswap_16(x) be16toh(x) -+# define bswap_32(x) be32toh(x) -+# define bswap_64(x) \ -+ x = ((((x) & 0xff00000000000000) >> 56) | \ -+ (((x) & 0x00ff000000000000) >> 40) | \ -+ (((x) & 0x0000ff0000000000) >> 24) | \ -+ (((x) & 0x000000ff00000000) >> 8) | \ -+ (((x) & 0x00000000ff000000) << 8) | \ -+ (((x) & 0x0000000000ff0000) << 24) | \ -+ (((x) & 0x000000000000ff00) << 40) | \ -+ (((x) & 0x00000000000000ff) << 56)) -+# endif /* >= 4.7-R || >= 5.0-CURRENT */ -+#else -+# include "common/byteswap.h" - #endif - - #define BSWAP16(x) ((x) = bswap_16(x)) diff -urN /usr/ports/graphics/icoutils/files/patch-wrestool__Makefile.in graphics/icoutils/files/patch-wrestool__Makefile.in --- /usr/ports/graphics/icoutils/files/patch-wrestool__Makefile.in 2009-07-09 18:05:36.000000000 +0900 +++ graphics/icoutils/files/patch-wrestool__Makefile.in 1970-01-01 09:00:00.000000000 +0900 @@ -1,12 +0,0 @@ ---- wrestool/Makefile.in.orig 2009-06-30 03:14:01.000000000 +0900 -+++ wrestool/Makefile.in 2009-07-07 01:33:24.000000000 +0900 -@@ -558,7 +558,8 @@ - - wrestool_LDADD = \ - ../common/libcommon.a \ -- ../lib/libgnu.a -+ ../lib/libgnu.a \ -+ @LIBINTL@ - - man_MANS = \ - wrestool.1 >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20090829030019.0f51a5d1.tkato432>