summaryrefslogtreecommitdiff
path: root/textproc/odt2tex
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2016-07-28 10:26:33 +0000
committerwiz <wiz@pkgsrc.org>2016-07-28 10:26:33 +0000
commit8df9cf009c04d36c20e78c9b8e61b6aecea6ac0d (patch)
tree4ff2ff6be8f1b35bdb9e358e4ace025077a99b63 /textproc/odt2tex
parent0ed9d9161fb05c638048bf9194bf85c1f0dd0767 (diff)
downloadpkgsrc-8df9cf009c04d36c20e78c9b8e61b6aecea6ac0d.tar.gz
Updated odt2tex to 0.0.13.
2016-07-27 v0.0.13 Fixed some possible memleaks, thanks Valgrind again Included Patch from Thomas Klausner fixing Makefile glitches
Diffstat (limited to 'textproc/odt2tex')
-rw-r--r--textproc/odt2tex/Makefile4
-rw-r--r--textproc/odt2tex/distinfo11
-rw-r--r--textproc/odt2tex/patches/patch-Makefile31
3 files changed, 7 insertions, 39 deletions
diff --git a/textproc/odt2tex/Makefile b/textproc/odt2tex/Makefile
index 27f51025efa..e196d11519b 100644
--- a/textproc/odt2tex/Makefile
+++ b/textproc/odt2tex/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.1 2016/07/26 12:53:11 wiz Exp $
+# $NetBSD: Makefile,v 1.2 2016/07/28 10:26:33 wiz Exp $
-DISTNAME= odt2tex-0.0.12
+DISTNAME= odt2tex-0.0.13
CATEGORIES= textproc
MASTER_SITES= ${MASTER_SITE_GITHUB:=simonaw/}
diff --git a/textproc/odt2tex/distinfo b/textproc/odt2tex/distinfo
index 8c279faeae7..478587b5b6b 100644
--- a/textproc/odt2tex/distinfo
+++ b/textproc/odt2tex/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.1 2016/07/26 12:53:11 wiz Exp $
+$NetBSD: distinfo,v 1.2 2016/07/28 10:26:33 wiz Exp $
-SHA1 (odt2tex-0.0.12.tar.gz) = a258823a176435a5c630b20c11976d63f6a0c693
-RMD160 (odt2tex-0.0.12.tar.gz) = cfb612594dcc303d0737ba0b3beb955eea6eb593
-SHA512 (odt2tex-0.0.12.tar.gz) = fa51f96f02176927e2f7d6d475c9dc888b874cf0c329e4df22938626e6f01a1206bca751b6712a6adc7bc7213733bc28b60999add2692e3e2725b86251d6e2f9
-Size (odt2tex-0.0.12.tar.gz) = 1018780 bytes
-SHA1 (patch-Makefile) = ba465a5a40f65dc5b16637a172726dcc8568b3c9
+SHA1 (odt2tex-0.0.13.tar.gz) = 48dc092f2b432d897596f9dc6f9237d21fe858b0
+RMD160 (odt2tex-0.0.13.tar.gz) = 4c61da9cfe4ac24e19a090606276da05f989c58b
+SHA512 (odt2tex-0.0.13.tar.gz) = 1b48cdf65a15698433145808751490e8b9fbcb321affce60d736a951f37e328d2a43efd297ff89aacd7e52797db07ea9ac25b26e42170bf87b5f5e9a3c6e0381
+Size (odt2tex-0.0.13.tar.gz) = 1018966 bytes
diff --git a/textproc/odt2tex/patches/patch-Makefile b/textproc/odt2tex/patches/patch-Makefile
deleted file mode 100644
index 0193f8439f1..00000000000
--- a/textproc/odt2tex/patches/patch-Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-$NetBSD: patch-Makefile,v 1.1 2016/07/26 12:53:11 wiz Exp $
-
-Fix include paths and link paths, and fix install target.
-
---- Makefile.orig 2016-07-26 03:17:27.000000000 +0000
-+++ Makefile
-@@ -1,12 +1,12 @@
- compiler = gcc
- target = odt2tex
--incdirs = -Iinc
-+incdirs = -Iinc `pkg-config --cflags libzip`
- src = src
- rm = rm
- inc = inc
- optimize = -O2
- flags = -pipe -Wall $(optimize)
--libs = -lexpat -lzip
-+libs = -lexpat `pkg-config --libs libzip`
- strip = -s
-
- # Objects for Main Binary
-@@ -32,7 +32,8 @@ clean :
- -@$(rm) $(target) $(src)/*.o 2>/dev/null
-
- install:
-- install -D $(target) $(DESTDIR)
-+ install -d $(DESTDIR)$(PREFIX)/bin
-+ install $(target) $(DESTDIR)$(PREFIX)/bin
-
- test:
- ./odt2tex in=testdoc.odt out=testdoc-out