summaryrefslogtreecommitdiff
path: root/converters
diff options
context:
space:
mode:
authorryoon <ryoon@pkgsrc.org>2014-10-15 13:50:14 +0000
committerryoon <ryoon@pkgsrc.org>2014-10-15 13:50:14 +0000
commitf9de634fe21faf8049fd15f55560ec583dbb1b0c (patch)
treebbf5c2f229f40d354039d06ad4fe3ea14e555cf7 /converters
parent715456bbd15ab952aa27a63b967ee5b440318e57 (diff)
downloadpkgsrc-f9de634fe21faf8049fd15f55560ec583dbb1b0c.tar.gz
Remove unused pacthes.
Thank you, Richard PALO.
Diffstat (limited to 'converters')
-rw-r--r--converters/orcus/patches/patch-bin_pack-release.sh14
-rw-r--r--converters/orcus/patches/patch-configure24
-rw-r--r--converters/orcus/patches/patch-src_Makefile.in24
3 files changed, 0 insertions, 62 deletions
diff --git a/converters/orcus/patches/patch-bin_pack-release.sh b/converters/orcus/patches/patch-bin_pack-release.sh
deleted file mode 100644
index b027cd98c46..00000000000
--- a/converters/orcus/patches/patch-bin_pack-release.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-bin_pack-release.sh,v 1.1 2013/08/24 16:12:10 jaapb Exp $
-
-Use proper test equality operator
---- bin/pack-release.sh.orig 2012-09-07 17:44:34.000000000 +0000
-+++ bin/pack-release.sh
-@@ -23,7 +23,7 @@ popd > /dev/null
-
- tar jcvfh $PACKAGE $DIR
-
--if [ "$1" == "md5" ]; then
-+if [ "$1" = "md5" ]; then
- # prefix the package name with md5 sum.
- MD5SUM=`md5sum $PACKAGE | sed -e 's/\ .*//g'`
- mv $PACKAGE $MD5SUM-$PACKAGE
diff --git a/converters/orcus/patches/patch-configure b/converters/orcus/patches/patch-configure
deleted file mode 100644
index f3e40a948e9..00000000000
--- a/converters/orcus/patches/patch-configure
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD: patch-configure,v 1.2 2013/11/30 16:11:15 richard Exp $
-
-non GNU-sed don't seem to like '|' in regular expressions
-Remove tac linuxism and use tail -r instead
---- configure.orig 2013-04-13 01:56:48.000000000 +0000
-+++ configure
-@@ -15667,7 +15667,7 @@ $as_echo "#define HAVE_BOOST_SYSTEM /**/
-
- LDFLAGS_SAVE=$LDFLAGS
- if test "x$ax_boost_user_system_lib" = "x"; then
-- for libextension in `ls $BOOSTLIBDIR/libboost_system*.a* $BOOSTLIBDIR/libboost_system*.so* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_system.*\)\.\(so\|a\).*$;\1;' | tac` ; do
-+ for libextension in `ls $BOOSTLIBDIR/libboost_system*.a* $BOOSTLIBDIR/libboost_system*.so* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_system\)\..*$;\1;' | tail -r` ; do
- ax_lib=${libextension}
- as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh`
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5
-@@ -15715,7 +15715,7 @@ fi
-
- done
- if test "x$link_system" != "xyes"; then
-- for libextension in `ls $BOOSTLIBDIR/boost_system*.{dll,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_system.*\)\.\(dll\|a\).*$;\1;' | tac` ; do
-+ for libextension in `ls $BOOSTLIBDIR/boost_system*.{dll,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_system\)\..*$;\1;' | tail -r` ; do
- ax_lib=${libextension}
- as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh`
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5
diff --git a/converters/orcus/patches/patch-src_Makefile.in b/converters/orcus/patches/patch-src_Makefile.in
deleted file mode 100644
index 770c5c9ed3d..00000000000
--- a/converters/orcus/patches/patch-src_Makefile.in
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD: patch-src_Makefile.in,v 1.1 2013/11/30 16:11:15 richard Exp $
-
---- src/Makefile.in.orig 2013-04-13 01:56:47.000000000 +0000
-+++ src/Makefile.in
-@@ -437,7 +437,8 @@ orcus_zip_dump_SOURCES = \
- orcus_zip_dump.cpp
-
- orcus_zip_dump_LDADD = \
-- parser/liborcus-parser-@ORCUS_API_VERSION@.la
-+ parser/liborcus-parser-@ORCUS_API_VERSION@.la \
-+ $(BOOST_SYSTEM_LIB)
-
- orcus_zip_dump_CPPFLAGS =
-
-@@ -449,7 +450,8 @@ orcus_xml_dump_SOURCES = \
-
- orcus_xml_dump_LDADD = \
- parser/liborcus-parser-@ORCUS_API_VERSION@.la \
-- liborcus/liborcus-@ORCUS_API_VERSION@.la
-+ liborcus/liborcus-@ORCUS_API_VERSION@.la \
-+ $(BOOST_SYSTEM_LIB)
-
- orcus_xml_dump_CPPFLAGS = -I$(top_builddir)/lib/liborcus/liborcus.la $(COMMON_CPPFLAGS)
-