[SCM] calf/master: + AutoHell: fix icon installation, bump version number to 0.0.18.1, update ChangeLog

js at users.alioth.debian.org js at users.alioth.debian.org
Tue May 7 15:39:14 UTC 2013


The following commit has been merged in the master branch:
commit 60f56d4d25e9d1a1e636c04b426d56079ad3b8b3
Author: Krzysztof Foltman <wdev at foltman.com>
Date:   Tue Jan 27 23:11:33 2009 +0000

    + AutoHell: fix icon installation, bump version number to 0.0.18.1, update ChangeLog

diff --git a/ChangeLog b/ChangeLog
index 192d5c4..9675471 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Version 0.0.18.1
+
++ Filter: fixed subtle redraw bugs
++ Icons: fixed packaging-incompatible paths
+
 Version 0.0.18
 
 + Filterclavier: new plugin (a MIDI controlled filter) by Hans Baier
diff --git a/configure.ac b/configure.ac
index b707e30..09a4554 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@
 # Process this file with autoconf to produce a configure script.
 
 AC_PREREQ(2.61)
-AC_INIT([calf],[0.0.18],[wdev at foltman.com])
+AC_INIT([calf],[0.0.18.1],[wdev at foltman.com])
 AC_CONFIG_SRCDIR([config.h.in])
 AC_CONFIG_HEADER([config.h])
 
diff --git a/icons/Makefile.am b/icons/Makefile.am
index 946328c..371e68c 100644
--- a/icons/Makefile.am
+++ b/icons/Makefile.am
@@ -3,14 +3,14 @@ SIZES = 16x16 24x24 32x32 48x48
 
 install-data-hook:
 	-for fn in $(SIZES); do \
-		mkdir -p "$(datadir)/icons/hicolor/$${fn}/apps/"; \
-		cp "calf_$${fn}.png" "$(datadir)/icons/hicolor/$${fn}/apps/calf.png"; \
+		mkdir -p "$(DESTDIR)$(datadir)/icons/hicolor/$${fn}/apps/"; \
+		cp "calf_$${fn}.png" "$(DESTDIR)$(datadir)/icons/hicolor/$${fn}/apps/calf.png"; \
 	done
-	@-gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
+	@-gtk-update-icon-cache -f -t $(DESTDIR)$(datadir)/icons/hicolor
 	
 uninstall-hook:
 	@-for fn in $(SIZES); do \
-		rm -f "$(datadir)/icons/hicolor/$${fn}/apps/calf.png"; \
+		rm -f "$(DESTDIR)$(datadir)/icons/hicolor/$${fn}/apps/calf.png"; \
 	done
-	@-gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
+	@-gtk-update-icon-cache -f -t $(DESTDIR)$(datadir)/icons/hicolor
 	

-- 
calf audio plugins packaging



More information about the pkg-multimedia-commits mailing list