[Debian-in-commits] [SCM] fonts-gargi.git branch, master, updated. upstream/2.0-37-g43058ce

Vasudev Kamath kamathvasudev at gmail.com
Sun Feb 3 09:42:30 UTC 2013


The following commit has been merged in the master branch:
commit b6dd3df41df7d3cf8a23bed5b4d09545d04244bf
Author: Vasudev Kamath <kamathvasudev at gmail.com>
Date:   Sun Feb 3 15:00:07 2013 +0530

    Patch to fix upstream make file

diff --git a/debian/patches/1001_make_fix.patch b/debian/patches/1001_make_fix.patch
new file mode 100644
index 0000000..178f449
--- /dev/null
+++ b/debian/patches/1001_make_fix.patch
@@ -0,0 +1,24 @@
+Description: Remove the mktemp generated directory
+ Upstream make file forgets to remove temporary directories
+ created using mktmp command. This patch fixes this problem
+ .
+Author: Vasudev Kamath <kamathvasudev at gmail.com>
+Forwarded: no
+Last-Update: 2013-02-03
+
+--- a/Makefile
++++ b/Makefile
+@@ -5,9 +5,11 @@ CURDIR := $(shell pwd)
+ TMP := $(shell mktemp -d Gargi.XXX)
+ 
+ default:
+-	./generate.pe *.sfd
++	./generate.pe Gargi_2.0.sfd
++	rm -rf ${TMP}
+ clean:
+-	rm -rf *.ttf
++	rm -rf ${TMP}
++	rm -f *.ttf
+ sdist:
+ 	mkdir -p ${TMP}/${ARCHIVE}
+ 	cp *.sfd COPYING *.txt Makefile generate.pe ${TMP}/${ARCHIVE}
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..cb8ba1b
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+1001_make_fix.patch

-- 
fonts-gargi.git



More information about the Debian-in-commits mailing list