summaryrefslogtreecommitdiff
path: root/www/kazehakase/options.mk
diff options
context:
space:
mode:
authorreed <reed@pkgsrc.org>2006-01-04 23:59:40 +0000
committerreed <reed@pkgsrc.org>2006-01-04 23:59:40 +0000
commitf66fa1f39be429c5d5bfff9dac4f260e3741c434 (patch)
treea4b119652140beed2d427b624da8139ea52e84c6 /www/kazehakase/options.mk
parent954114cdb5595726c9a8e7f6654f1e21b42acbf6 (diff)
downloadpkgsrc-f66fa1f39be429c5d5bfff9dac4f260e3741c434.tar.gz
Update to 0.3.3 from maintainer via PR #32272.
(I did this a while ago but never updated since it has problem using default firefox dependency, but with mozilla it does work fine. I now see that 0.3.4 is now available.) Added a gnutls option. Adds a options.mk file for this (and for gecko). USE_DIRS updated to xdg-1.2. Removed glib2 buildlink include. New "fr" locale file. Changelog: Kazehakase-0.3.3: - Fixed compile problem on FreeBSD (Kouhei Sutou) - Fixed multiplying windows on restoring session (Hiroyuki Ikezoe) Kazehakase-0.3.2: - Dialog for SSL certificates (Hidetaka Iwai) - scrolling mouse wheel with 3 (right) button click (Kouhei Sutou) - Set the label color in the sidebar to the same color of the tab label (Jim Apple) - Fix BUG #2190, #2659, #2740 (Gna) and #4982, #7241 (SF.jp) Kazehakase-0.3.1: - Use GnuTLS instead of OpenSSL (Hidetaka Iwai) - Added TabCloseAllSameSiteAsThis action (Ryo SHIMIZU) - French translation (Jocelyn Jaubert)
Diffstat (limited to 'www/kazehakase/options.mk')
-rw-r--r--www/kazehakase/options.mk16
1 files changed, 16 insertions, 0 deletions
diff --git a/www/kazehakase/options.mk b/www/kazehakase/options.mk
new file mode 100644
index 00000000000..f2ea6a91d0c
--- /dev/null
+++ b/www/kazehakase/options.mk
@@ -0,0 +1,16 @@
+# $NetBSD: options.mk,v 1.1 2006/01/04 23:59:40 reed Exp $
+#
+
+PKG_OPTIONS_VAR= PKG_OPTIONS.kazehakase
+PKG_SUPPORTED_OPTIONS= gnutls
+PKG_SUGGESTED_OPTIONS+= gnutls
+
+.include "../../www/mozilla/gecko-options.mk"
+.include "../../mk/bsd.options.mk"
+
+.if !empty(PKG_OPTIONS:Mgnutls)
+. include "../../security/gnutls/buildlink3.mk"
+CONFIGURE_ARGS+= --enable-ssl
+.else
+CONFIGURE_ARGS+= --disable-ssl
+.endif