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 /graphics/girara/patches/patch-Makefile | |
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
Diffstat (limited to 'graphics/girara/patches/patch-Makefile')
-rw-r--r-- | graphics/girara/patches/patch-Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
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} || \ |