diff options
author | leot <leot@pkgsrc.org> | 2016-04-20 06:57:21 +0000 |
---|---|---|
committer | leot <leot@pkgsrc.org> | 2016-04-20 06:57:21 +0000 |
commit | 0aa9cb799032cb8276c84c131688209c0a7be2da (patch) | |
tree | 7022b1d15505ac93d033cdcae3d85c1028a26758 | |
parent | 50d53c8f3a5603bd71dd65f64e80b505069a323f (diff) | |
download | pkgsrc-0aa9cb799032cb8276c84c131688209c0a7be2da.tar.gz |
Update graphics/girara to 0.2.6.
Changes:
0.2.6:
* GTK+ 3.20 compatibility
* Update translations
-rw-r--r-- | graphics/girara/Makefile | 4 | ||||
-rw-r--r-- | graphics/girara/distinfo | 11 | ||||
-rw-r--r-- | graphics/girara/patches/patch-Makefile | 15 |
3 files changed, 23 insertions, 7 deletions
diff --git a/graphics/girara/Makefile b/graphics/girara/Makefile index ac5ea9f84e5..6ed83eb34d5 100644 --- a/graphics/girara/Makefile +++ b/graphics/girara/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.1 2016/02/14 13:38:37 leot Exp $ +# $NetBSD: Makefile,v 1.2 2016/04/20 06:57:21 leot Exp $ # -DISTNAME= girara-0.2.5 +DISTNAME= girara-0.2.6 CATEGORIES= x11 MASTER_SITES= http://pwmt.org/projects/girara/download/ diff --git a/graphics/girara/distinfo b/graphics/girara/distinfo index a7c0193bd0e..b0ffb9d1ec3 100644 --- a/graphics/girara/distinfo +++ b/graphics/girara/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.1 2016/02/14 13:38:37 leot Exp $ +$NetBSD: distinfo,v 1.2 2016/04/20 06:57:21 leot Exp $ -SHA1 (girara-0.2.5.tar.gz) = 45a6b3fece67a10c44409c776946dc412f41bfaa -RMD160 (girara-0.2.5.tar.gz) = d51ba0e216a88a8e16a881af3eef870690dd00f8 -SHA512 (girara-0.2.5.tar.gz) = 62f497d0bcab0765946d141b5c9bd79459e526e385da32f69311e810c9142e570de41521b98df8e08b44e0e34326db370f5b5ed4cb02bbdc2124febe6c2cce45 -Size (girara-0.2.5.tar.gz) = 75215 bytes +SHA1 (girara-0.2.6.tar.gz) = 674e4294fe091fe93a1c186d95b3263b30cd8a5e +RMD160 (girara-0.2.6.tar.gz) = 872889a2d5abcb907d8dbe2a27e7c9bb238963b8 +SHA512 (girara-0.2.6.tar.gz) = a55702fc85594c6b8ee2cf3cdcde659b2b85559d1d5d2eff9ff05247b9762d0ee4ccc8e5e2fbb12ad174fb85bca7941a413c866aafa419765ed88cc1c4efa901 +Size (girara-0.2.6.tar.gz) = 75841 bytes +SHA1 (patch-Makefile) = 26e28108f3d448ee4305cd4e3d8f7e9e3b24d343 SHA1 (patch-macros.h) = f9467ab009a53feec710a5f3d984c7b67b6747be diff --git a/graphics/girara/patches/patch-Makefile b/graphics/girara/patches/patch-Makefile new file mode 100644 index 00000000000..7be845b98ab --- /dev/null +++ b/graphics/girara/patches/patch-Makefile @@ -0,0 +1,15 @@ +$NetBSD: patch-Makefile,v 1.1 2016/04/20 06:57:21 leot Exp $ + +Fix install permissions of shared libraries. + +--- Makefile.orig 2016-04-18 20:35:34.000000000 +0000 ++++ Makefile +@@ -265,7 +265,7 @@ install-static: static + install-shared: shared + $(call colorecho,INSTALL,"Install shared library") + $(QUIET)mkdir -m 755 -p ${DESTDIR}${LIBDIR} +- $(QUIET)install -m 644 ${BUILDDIR_RELEASE}/${BINDIR}/${SOVERSIONFILE} ${DESTDIR}${LIBDIR} ++ $(QUIET)install -m 755 ${BUILDDIR_RELEASE}/${BINDIR}/${SOVERSIONFILE} ${DESTDIR}${LIBDIR} + $(QUIET)ln -sf ${SOVERSIONFILE} ${DESTDIR}${LIBDIR}/${SOMAJORFILE} || \ + echo "Failed to create ${SOMAJORFILE}. Please check if it exists and points to the correct version of ${SOFILE}." + $(QUIET)ln -sf ${SOVERSIONFILE} ${DESTDIR}${LIBDIR}/${SOFILE} || \ |