pkgsrc/www/dillo/Makefile
xtraeme 8919f642e2 Update www/dillo to 0.8.0, closes PR pkg/24768.
Changes:

Version 0.8.0 [Feb 08, 2004]

 - * Added a right-mouse-button popup for images!
   Patch: Frank de Lange, Eric Gaudet, Jorge Arellano
 - * Made main document window grab focus on startup, fullwindow,
     and after open url (BUG#330)
   * Set Ctrl-U to focus the location entry,
     Ctrl-R to reload, and Ctrl-H to hide controls.
   Patches: Johan Hovold, Jorge Arellano, Stephan Goetter
 - * Added a missing handler for broken-connection condition.
   Patch: Jorge Arellano, Phil Pennock
 - * Introduced a new way of handling dillo plugins! Now the
   communications and managing is done by a daemon: dpid.
   This comes with a lot of advantages described in Dpid.txt.
   Patch: Programming: Ferdi Franceschini; Design: Jorge Arellano
 - * Wrote documentation for dpid (Dpid.txt).
   * Removed a memory leak in Get_line().
   Patches: Jorge Arellano, Ferdi Franceschini
 - * Developed a plugin for downloads. It uses wget and can handle several
   connections at the same time.
   * Developed stress tests for both dpid and the downloads dpi.
   Patches: Ferdi Franceschini
 - * Adapted dpi.c to manage plugins through dpid.
   * Improved the incoming dpi-stream processing to accept images from a dpi.
   * Added/updated lots of dpi-related comments.
   * Updated the dpi1 spec.
   * Removed the forced end-to-end reload that was set upon dpis. Now,
     dpi-generated pages can be cached.
   * Made dillo able to handle multiple plugins (still lacks a dynamic API)

... etc, etc.
2004-03-14 01:26:55 +00:00

41 lines
1.1 KiB
Makefile

# $NetBSD: Makefile,v 1.18 2004/03/14 01:26:55 xtraeme Exp $
#
DISTNAME= dillo-0.8.0
CATEGORIES= www
MASTER_SITES= http://dillo.auriga.wearlab.de/download/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= Benjamin.Wong@cc.gatech.edu
HOMEPAGE= http://dillo.auriga.wearlab.de/
COMMENT= Very small and fast graphical web-browser
USE_BUILDLINK3= YES
USE_PKGINSTALL= YES
USE_X11= YES
GNU_CONFIGURE= YES
CONFIGURE_ARGS= --sysconfdir=${PKG_SYSCONFDIR}
EGDIR= ${PREFIX}/share/examples/dillo
CONF_FILES= ${EGDIR}/dillorc.default ${PKG_SYSCONFDIR}/dillorc
.include "../../mk/bsd.prefs.mk"
.if defined(USE_INET6) && !empty(USE_INET6:M[Yy][Ee][Ss])
BUILD_DEFS+= USE_INET6
CONFIGURE_ARGS+= --enable-ipv6
.endif
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/dillo
${INSTALL_DATA} ${WRKSRC}/doc/* ${PREFIX}/share/doc/dillo
${INSTALL_DATA_DIR} ${EGDIR}
${INSTALL_DATA} ${WRKSRC}/dillorc ${EGDIR}/dillorc.default
.include "../../graphics/jpeg/buildlink3.mk"
.include "../../graphics/png/buildlink3.mk"
.include "../../x11/gtk/buildlink3.mk"
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"