summaryrefslogtreecommitdiff
path: root/www/dillo/Makefile
diff options
context:
space:
mode:
authorryoon <ryoon@pkgsrc.org>2013-06-09 16:29:33 +0000
committerryoon <ryoon@pkgsrc.org>2013-06-09 16:29:33 +0000
commit96d030aed6f57eb1038718e94a52b78998d51715 (patch)
tree6e6093374db65a0dbd7cd206450fbd4e7f314736 /www/dillo/Makefile
parentd1b90559e94bd153dfb273079fdc253ac055d25e (diff)
downloadpkgsrc-96d030aed6f57eb1038718e94a52b78998d51715.tar.gz
Update to 3.0.3
* Add LICENSE. Changelog: dillo-3.0.3 [April 17, 2013] +- Support for CSS display property - Replace polling in DNS with a pipe. - Packed trie to optimize hyphenator memory consumption. - Fix crash in datauri dpi. - Speed up DNS requests when ipv6 isn't enabled. Patches: Johannes Hofmann +- Fix image input coordinates (BUG#1070) - When location bar is given focus, temporarily show panels if hidden (BUG#1093). - Fix bug where data URI has charset but no media type. - Bug meter line number fix for bare carriage returns. - Add some more info to various bug meter messages. - For text selection, fix releasing mouse button outside of boundary. - While selecting text, moving cursor outside viewport will scroll it. - Make form resetting work for <select>. - Never leave location bar empty when requesting page (BUG#1113). - Some improvements to tab navigation of form widgets (includes BUG#1111). - Don't let form input widget insert literal control chars (BUG#1110). - Assorted improvements to browser usability from the keyboard. - Added user interface color preferences (ui_*). - Removed show_url preference. Patches: corvid +- Automatic hyphenation (includes penalty_* preferences that control line-breaking). Patch: Sebastian Geerken +- Added the "view-source" keybinding (default: Ctrl-U). Patch: Alexander Voigt +- Introduced the domainrc mechanism for finer-grained control than filter_auto_requests had provided. Patch: p37sitdu, corvid +- After focusing option menu, keypress will seek to next one beginning with that character. - When active tab is closed, focus the last one visited or opened. - Fixed a bug in dpip when dillo aborts a running dpi connection. Patches: Jorge Arellano Cid +- Better window titles. - Show dialog if saved file would overwrite an existing one. Patches: Jeremy Henty +- Remove hardcoded UI colors. Patch: Benjamin Johnson, corvid +- Fix fd leak in dpi write failure case. Patch: p37sitdu, Jorge Arellano Cid
Diffstat (limited to 'www/dillo/Makefile')
-rw-r--r--www/dillo/Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/www/dillo/Makefile b/www/dillo/Makefile
index 08f290e7721..aa539e5cb40 100644
--- a/www/dillo/Makefile
+++ b/www/dillo/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.61 2013/05/31 12:42:32 wiz Exp $
+# $NetBSD: Makefile,v 1.62 2013/06/09 16:29:33 ryoon Exp $
-DISTNAME= dillo-3.0.2
-PKGREVISION= 5
+DISTNAME= dillo-3.0.3
CATEGORIES= www
MASTER_SITES= http://www.dillo.org/download/
EXTRACT_SUFX= .tar.bz2
@@ -9,12 +8,13 @@ EXTRACT_SUFX= .tar.bz2
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.dillo.org/
COMMENT= Very small and fast graphical web-browser
+LICENSE= gnu-gpl-v3
USE_LANGUAGES= c c++
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
-REPLACE_PERL+= dpid/dpidc
+REPLACE_PERL+= dpid/dpidc dillo-install-hyphenation
USE_TOOLS+= perl:run
DEPENDS+= wget-[0-9]*:../../net/wget
@@ -24,6 +24,7 @@ EGDIR= ${PREFIX}/share/examples/dillo
CONF_FILES= ${EGDIR}/dillorc ${PKG_SYSCONFDIR}/dillorc
CONF_FILES+= ${EGDIR}/dpidrc ${PKG_SYSCONFDIR}/dpidrc
CONF_FILES+= ${EGDIR}/keysrc ${PKG_SYSCONFDIR}/keysrc
+CONF_FILES+= ${EGDIR}/domainrc ${PKG_SYSCONFDIR}/domainrc
INSTALLATION_DIRS= share/doc/dillo ${EGDIR}
@@ -36,6 +37,7 @@ post-install:
${INSTALL_DATA} ${WRKSRC}/doc/README ${DESTDIR}${PREFIX}/share/doc/dillo
${INSTALL_DATA} ${WRKSRC}/dillorc ${DESTDIR}${EGDIR}
${INSTALL_DATA} ${WRKSRC}/src/keysrc ${DESTDIR}${EGDIR}
+ ${INSTALL_DATA} ${WRKSRC}/src/domainrc ${DESTDIR}${EGDIR}
.include "../../converters/libiconv/buildlink3.mk"
.include "../../devel/zlib/buildlink3.mk"