aboutsummaryrefslogtreecommitdiff
path: root/databases/p5-Search-Namazu
diff options
context:
space:
mode:
authorJun Kuriyama <kuriyama@FreeBSD.org>2004-04-06 09:26:46 +0000
committerJun Kuriyama <kuriyama@FreeBSD.org>2004-04-06 09:26:46 +0000
commit01a5be59f4a9c58d5c1249144012a4ea475f19d4 (patch)
treebee088ffde9ba0876041871c8772241283124b80 /databases/p5-Search-Namazu
parent41d31ec934887655cebc9d18a29878bc1cb6e6b1 (diff)
downloadports-01a5be59f4a9c58d5c1249144012a4ea475f19d4.tar.gz
ports-01a5be59f4a9c58d5c1249144012a4ea475f19d4.zip
Link shared module with libintl to avoid this error:
/usr/libexec/ld-elf.so.1: /usr/local/lib/libnmz.so.6: Undefined symbol "libintl_gettext"
Notes
Notes: svn path=/head/; revision=106308
Diffstat (limited to 'databases/p5-Search-Namazu')
-rw-r--r--databases/p5-Search-Namazu/Makefile2
-rw-r--r--databases/p5-Search-Namazu/files/patch-Makefile.PL10
2 files changed, 11 insertions, 1 deletions
diff --git a/databases/p5-Search-Namazu/Makefile b/databases/p5-Search-Namazu/Makefile
index 8ab5361ee5b5..c0f951427223 100644
--- a/databases/p5-Search-Namazu/Makefile
+++ b/databases/p5-Search-Namazu/Makefile
@@ -7,7 +7,7 @@
PORTNAME= Search-Namazu
PORTVERSION= 0.92
-PORTREVISION= 3
+PORTREVISION= 4
CATEGORIES= databases perl5
MASTER_SITES= http://www.namazu.org/~knok/
PKGNAMEPREFIX= p5-
diff --git a/databases/p5-Search-Namazu/files/patch-Makefile.PL b/databases/p5-Search-Namazu/files/patch-Makefile.PL
new file mode 100644
index 000000000000..580ab3786d17
--- /dev/null
+++ b/databases/p5-Search-Namazu/files/patch-Makefile.PL
@@ -0,0 +1,10 @@
+--- Makefile.PL.orig Tue Apr 6 18:23:32 2004
++++ Makefile.PL Tue Apr 6 18:23:44 2004
+@@ -13,6 +13,6 @@
+ 'NAME' => 'Search::Namazu',
+ 'VERSION_FROM' => 'Namazu.pm',
+ 'INC' => $cflags,
+- 'LIBS' => $libs,
++ 'LIBS' => "$libs -lintl",
+ 'clean' => {'FILES' => "t/index"}
+ );