openbsd-ports/www/xxxterm/Makefile
marco 1828da6c40 * rewrite of the cookie code to work around all kinds of libsoup issues.
* undo tab closure
* add socket to drive browser from CLI
* add option to only launch one xxxterm session
* add yank/paste support
* add runtime JS toggle
* add runtime cookie toggle
* add basic command aliasing
* add generic code to display runtime settings
* add new tab navigation button
* add runtime file to save cookie and JS white list items
* add restart browser command
* add ctrl-arrow keys to navigate tabs
* add wrap-around tab support
* make ESC go to command mode when in search or address bar
* fix tabbing through entry fields
* move X on tabs to left and make it a real button
* add option to open new tab after the current one instead of always
  appending to end of tab lists
* add session and persistent cookies in a sane matter (damn you libsoup)
* several other minor bug fixes

ok sthen
2011-01-02 22:15:13 +00:00

50 lines
1.3 KiB
Makefile
Executable File

# $OpenBSD: Makefile,v 1.10 2011/01/02 22:15:13 marco Exp $
COMMENT = vi-like minimalists web browser
DISTNAME = xxxterm-1.187
CATEGORIES = www
HOMEPAGE = http://opensource.conformal.com/wiki/XXXTerm
MAINTAINER = Laurent Fanis <laurent@openbsd.org>
# BSD
PERMIT_PACKAGE_CDROM = Yes
PERMIT_PACKAGE_FTP = Yes
PERMIT_DISTFILES_CDROM =Yes
PERMIT_DISTFILES_FTP = Yes
MODULES = devel/gettext
WANTLIB += X11 Xau Xcomposite Xcursor Xdamage Xdmcp Xext Xfixes
WANTLIB += Xi Xinerama Xrandr Xrender atk-1.0 c cairo expat fontconfig
WANTLIB += freetype gdk-x11-2.0 gdk_pixbuf-2.0 gio-2.0 glib-2.0
WANTLIB += gmodule-2.0 gnutls gobject-2.0 gthread-2.0 gtk-x11-2.0
WANTLIB += m pango-1.0 pangocairo-1.0 pangoft2-1.0 pixman-1 png
WANTLIB += pthread pthread-stubs soup-2.4 util xcb xcb-render
WANTLIB += GL Xxf86vm drm xcb-shm xml2 z
WANTLIB += webkit-1.0
LIB_DEPENDS = www/webkit
MASTER_SITES = http://opensource.conformal.com/snapshots/xxxterm/
EXTRACT_SUFX = .tgz
NO_REGRESS= Yes
EXAMPLEDIR = ${PREFIX}/share/examples/xxxterm
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/xxxterm ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/xxxterm.1 ${PREFIX}/man/man8/xxxterm.1
${INSTALL_DATA_DIR} ${EXAMPLEDIR}
${INSTALL_DATA} ${WRKSRC}/xxxterm.conf ${EXAMPLEDIR}
${INSTALL_DATA} ${WRKSRC}/favorites ${EXAMPLEDIR}
.include <bsd.port.mk>