diff options
author | ryoon <ryoon@pkgsrc.org> | 2015-10-17 08:12:43 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2015-10-17 08:12:43 +0000 |
commit | 4691850de3cfb6bf03a6bbef624c32b4f9458e26 (patch) | |
tree | bf8f72ac457622939499b7aa698bb43e9f2b1b0b | |
parent | c8dfc1baf09e077a7ae8c3593cc316a5fae28d55 (diff) | |
download | pkgsrc-4691850de3cfb6bf03a6bbef624c32b4f9458e26.tar.gz |
Bump PKGREVISION
* Fix path in *.pc files.
-rw-r--r-- | textproc/lucene++/Makefile | 3 | ||||
-rw-r--r-- | textproc/lucene++/distinfo | 4 | ||||
-rw-r--r-- | textproc/lucene++/patches/patch-liblucene++-contrib.pc.cmake | 20 | ||||
-rw-r--r-- | textproc/lucene++/patches/patch-liblucene++.pc.cmake | 19 |
4 files changed, 44 insertions, 2 deletions
diff --git a/textproc/lucene++/Makefile b/textproc/lucene++/Makefile index 1cd576b1cec..6f060052783 100644 --- a/textproc/lucene++/Makefile +++ b/textproc/lucene++/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.1 2015/10/17 03:02:47 ryoon Exp $ +# $NetBSD: Makefile,v 1.2 2015/10/17 08:12:43 ryoon Exp $ DISTNAME= LucenePlusPlus-rel_3.0.7 PKGNAME= ${DISTNAME:S/LucenePlusPlus-rel_/lucene++-/} +PKGREVISION= 1 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_GITHUB:=luceneplusplus/LucenePlusPlus/archive/rel_${PKGVERSION_NOREV}/} diff --git a/textproc/lucene++/distinfo b/textproc/lucene++/distinfo index 32ed9430733..f9c8f390c68 100644 --- a/textproc/lucene++/distinfo +++ b/textproc/lucene++/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.1 2015/10/17 03:02:47 ryoon Exp $ +$NetBSD: distinfo,v 1.2 2015/10/17 08:12:43 ryoon Exp $ SHA1 (LucenePlusPlus-rel_3.0.7.tar.gz) = b2c38e7ca5056934a5bdb1a69ea251110e3c0377 RMD160 (LucenePlusPlus-rel_3.0.7.tar.gz) = 352f0e204655d9614cff2a843d5132f85bda78a4 @@ -6,3 +6,5 @@ SHA512 (LucenePlusPlus-rel_3.0.7.tar.gz) = 92f3bba320980673cc64c983616aa38d25b44 Size (LucenePlusPlus-rel_3.0.7.tar.gz) = 2013570 bytes SHA1 (patch-CMakeLists.txt) = db25e72a4c4d5dc38b9c805b75bf7c4469f7029d SHA1 (patch-include_VariantUtils.h) = 4c71eaee81b18fe7019ca3006804713f3117cac9 +SHA1 (patch-liblucene++-contrib.pc.cmake) = 6317251e9d8f569f08b8505edc58d2b628117c5f +SHA1 (patch-liblucene++.pc.cmake) = 2d8efacfda33adbe4564402458744dd259f24ac7 diff --git a/textproc/lucene++/patches/patch-liblucene++-contrib.pc.cmake b/textproc/lucene++/patches/patch-liblucene++-contrib.pc.cmake new file mode 100644 index 00000000000..a1cc453e4ae --- /dev/null +++ b/textproc/lucene++/patches/patch-liblucene++-contrib.pc.cmake @@ -0,0 +1,20 @@ +$NetBSD: patch-liblucene++-contrib.pc.cmake,v 1.1 2015/10/17 08:12:43 ryoon Exp $ + +--- liblucene++-contrib.pc.cmake.orig 2015-01-30 16:14:22.000000000 +0000 ++++ liblucene++-contrib.pc.cmake +@@ -1,13 +1,13 @@ + prefix=@CMAKE_INSTALL_PREFIX@ + exec_prefix=${prefix}/bin +-libdir=${prefix}/@LIB_DESTINATION@ ++libdir=@LIB_DESTINATION@ + includedir=${prefix}/include/lucene++ + lib=lucene++-contrib + + Name: liblucene++-contrib + Description: Contributions for Lucene++ - a C++ search engine, ported from the popular Apache Lucene + Version: @lucene++_VERSION@ +-Libs: -L${prefix}/@LIB_DESTINATION@ -l${lib} ++Libs: -L@LIB_DESTINATION@ -l${lib} + Cflags: -I${includedir} + Requires: liblucene++ = @lucene++_VERSION@ + diff --git a/textproc/lucene++/patches/patch-liblucene++.pc.cmake b/textproc/lucene++/patches/patch-liblucene++.pc.cmake new file mode 100644 index 00000000000..a4def699767 --- /dev/null +++ b/textproc/lucene++/patches/patch-liblucene++.pc.cmake @@ -0,0 +1,19 @@ +$NetBSD: patch-liblucene++.pc.cmake,v 1.1 2015/10/17 08:12:43 ryoon Exp $ + +--- liblucene++.pc.cmake.orig 2015-01-30 16:14:22.000000000 +0000 ++++ liblucene++.pc.cmake +@@ -1,12 +1,12 @@ + prefix=@CMAKE_INSTALL_PREFIX@ + exec_prefix=${prefix}/bin +-libdir=${prefix}/@LIB_DESTINATION@ ++libdir=@LIB_DESTINATION@ + includedir=${prefix}/include/lucene++ + lib=lucene++ + + Name: liblucene++ + Description: Lucene++ - a C++ search engine, ported from the popular Apache Lucene + Version: @lucene++_VERSION@ +-Libs: -L${prefix}/@LIB_DESTINATION@ -l${lib} ++Libs: -L@LIB_DESTINATION@ -l${lib} + Cflags: -I${includedir} + |