summaryrefslogtreecommitdiff
path: root/www/epiphany
diff options
context:
space:
mode:
authordrochner <drochner>2011-03-12 13:04:15 +0000
committerdrochner <drochner>2011-03-12 13:04:15 +0000
commit6337e918a90b8817a5d0d179390d82b6078e97ca (patch)
treeb0f5a82e0b5ed126ae7250a25a42e3a6afb83a6e /www/epiphany
parentd4da527a102bb922449bb2ef9d85b2bf03fb91af (diff)
downloadpkgsrc-6337e918a90b8817a5d0d179390d82b6078e97ca.tar.gz
fix build error if no certificate file is present, noticed by obache
Diffstat (limited to 'www/epiphany')
-rw-r--r--www/epiphany/Makefile3
-rw-r--r--www/epiphany/distinfo3
-rw-r--r--www/epiphany/patches/patch-aa20
3 files changed, 24 insertions, 2 deletions
diff --git a/www/epiphany/Makefile b/www/epiphany/Makefile
index d5cf31a1e13..84934d8ab7c 100644
--- a/www/epiphany/Makefile
+++ b/www/epiphany/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.114 2011/03/11 21:02:35 drochner Exp $
+# $NetBSD: Makefile,v 1.115 2011/03/12 13:04:15 drochner Exp $
#
DISTNAME= epiphany-2.30.6
@@ -19,6 +19,7 @@ USE_LIBTOOL= YES
USE_PKGLOCALEDIR= YES
USE_LANGUAGES= c c++
+# see pkgsrc/security/mozilla-rootcerts
CONFIGURE_ARGS+= --with-ca-file=/etc/ssl/certs/ca-certificates.crt
PKGCONFIG_OVERRIDE= data/epiphany.pc.in
diff --git a/www/epiphany/distinfo b/www/epiphany/distinfo
index 4ef3b1c4558..7a91fb6a04a 100644
--- a/www/epiphany/distinfo
+++ b/www/epiphany/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.52 2010/11/18 02:39:09 obache Exp $
+$NetBSD: distinfo,v 1.53 2011/03/12 13:04:15 drochner Exp $
SHA1 (epiphany-2.30.6.tar.bz2) = a4bde975f9b2b97d6aad14b4b8a715b40d19a155
RMD160 (epiphany-2.30.6.tar.bz2) = 60f2c7d699dd8728dc79cce012475972943c4007
Size (epiphany-2.30.6.tar.bz2) = 5927938 bytes
+SHA1 (patch-aa) = 408c45c8fa725e01608c766cd3a093c4f940244c
diff --git a/www/epiphany/patches/patch-aa b/www/epiphany/patches/patch-aa
new file mode 100644
index 00000000000..0ccef550a18
--- /dev/null
+++ b/www/epiphany/patches/patch-aa
@@ -0,0 +1,20 @@
+$NetBSD: patch-aa,v 1.13 2011/03/12 13:04:15 drochner Exp $
+
+Don't check existence of root certificates at build time
+to avoid a hard dependency.
+
+--- configure.orig 2010-09-15 16:27:21.000000000 +0000
++++ configure
+@@ -14652,9 +14652,9 @@ else
+
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_ca_file" >&5
+ $as_echo "$with_ca_file" >&6; }
+- if ! test -f "$with_ca_file"; then
+- as_fn_error $? "No such file '$with_ca_file'. Use --with-ca-file=path to set, or --without-ca-file to disable" "$LINENO" 5
+- fi
++# if ! test -f "$with_ca_file"; then
++# as_fn_error $? "No such file '$with_ca_file'. Use --with-ca-file=path to set, or --without-ca-file to disable" "$LINENO" 5
++# fi
+ GTLS_SYSTEM_CA_FILE="$with_ca_file"
+
+