pkgsrc/www/dillo/Makefile
ryoon 1beac64a6b 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
2013-06-09 16:29:33 +00:00

49 lines
1.5 KiB
Makefile

# $NetBSD: Makefile,v 1.62 2013/06/09 16:29:33 ryoon Exp $
DISTNAME= dillo-3.0.3
CATEGORIES= www
MASTER_SITES= http://www.dillo.org/download/
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 dillo-install-hyphenation
USE_TOOLS+= perl:run
DEPENDS+= wget-[0-9]*:../../net/wget
PKG_SYSCONFSUBDIR= dillo
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}
LIBS.SunOS+= -liconv
.include "options.mk"
post-install:
${INSTALL_DATA} ${WRKSRC}/doc/*.txt ${DESTDIR}${PREFIX}/share/doc/dillo
${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"
.include "../../mk/jpeg.buildlink3.mk"
.include "../../graphics/png/buildlink3.mk"
.include "../../x11/fltk13/buildlink3.mk"
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"