View | Details | Raw Unified | Return to bug 150830
Collapse All | Expand All

(-)b/Makefile (-3 / +2 lines)
Lines 6-13 Link Here
6
#
6
#
7
7
8
PORTNAME=	gnash
8
PORTNAME=	gnash
9
PORTVERSION=	0.8.7
9
PORTVERSION=	0.8.8
10
PORTREVISION=	4
11
CATEGORIES=	graphics
10
CATEGORIES=	graphics
12
# getgnash.org is slow
11
# getgnash.org is slow
13
MASTER_SITES=	${MASTER_SITE_GNU} \
12
MASTER_SITES=	${MASTER_SITE_GNU} \
Lines 39-45 MAKE_JOBS_SAFE= yes Link Here
39
38
40
CONFIGURE_ARGS=	--with-boost-incl="${LOCALBASE}/include" \
39
CONFIGURE_ARGS=	--with-boost-incl="${LOCALBASE}/include" \
41
		--with-boost-lib="${LOCALBASE}/lib" \
40
		--with-boost-lib="${LOCALBASE}/lib" \
42
		--disable-testsuite --enable-avm2 \
41
		--disable-testsuite \
43
		--with-plugins-install=system \
42
		--with-plugins-install=system \
44
		--sysconfdir="${WRKDIR}/etc" \
43
		--sysconfdir="${WRKDIR}/etc" \
45
		--disable-jemalloc # leads to infinite recursion on FreeBSD
44
		--disable-jemalloc # leads to infinite recursion on FreeBSD
(-)b/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (gnash-0.8.7.tar.bz2) = 039533fec46e46b94ac6b04e33d58f3a
1
MD5 (gnash-0.8.8.tar.bz2) = ce57f66e222f7eb1adf7f7b4a1274612
2
SHA256 (gnash-0.8.7.tar.bz2) = 73b8a7c788511e453add26fd68cebd5818b39f9da21cc7c78e9cef8bc837e896
2
SHA256 (gnash-0.8.8.tar.bz2) = dcac4b81f81ecd6cc7c5422d7c731fc5c2a7be7fb18b5570a7e6f8fb5fc6e220
3
SIZE (gnash-0.8.7.tar.bz2) = 3617298
3
SIZE (gnash-0.8.8.tar.bz2) = 3850383
(-)a/files/patch-utilities-dumpshm.cpp (-20 lines)
Removed Link Here
1
--- utilities/dumpshm.cpp.orig	2010-02-11 02:20:23.000000000 +0300
2
+++ utilities/dumpshm.cpp	2010-02-18 22:26:30.000000000 +0300
3
@@ -316,12 +316,12 @@
4
         }
5
 #ifdef IPC_PERM_KEY
6
         if (shmseg.shm_segsz == 64528) {
7
-            log_debug(_("Found it! \"set LCShmKey %s\" in your ~/.gnashrc",
8
+            log_debug(_("Found it! \"set LCShmKey %s\" in your ~/.gnashrc"),
9
                         boost::io::group(hex, showbase,
10
-                            shmseg.shm_perm.IPC_PERM_KEY)));
11
-            log_debug(_("Last changed on: %s", ctime(&shmseg.shm_ctime)));
12
-            log_debug(_("Last attached on: %s", ctime(&shmseg.shm_atime)));
13
-            log_debug(_("Last detached on: %s", ctime(&shmseg.shm_dtime)));
14
+                            shmseg.shm_perm.IPC_PERM_KEY));
15
+            log_debug(_("Last changed on: %s"), ctime(&shmseg.shm_ctime));
16
+            log_debug(_("Last attached on: %s"), ctime(&shmseg.shm_atime));
17
+            log_debug(_("Last detached on: %s"), ctime(&shmseg.shm_dtime));
18
             return shmseg.shm_perm.IPC_PERM_KEY;
19
         }
20
 #endif    // end of IPC_PERM_KEY

Return to bug 150830