af93f62e24
it now uses the fltk2 toolkit instead of gtk1 add a patch to fix accessing websites that have ipv6 addr while you don't full changelog: http://cvs.auriga.wearlab.de/cgi-bin/cvsweb.cgi/dillo2/ChangeLog?rev=HEAD;cvsroot=dillo from new MAINTAINER James Turner (former maintainer Jim Uhl resigned) requested by kili@
44 lines
1015 B
Makefile
44 lines
1015 B
Makefile
# $OpenBSD: Makefile,v 1.27 2008/10/19 08:42:55 ajacoutot Exp $
|
|
|
|
COMMENT= fast and light graphical web browser
|
|
|
|
DISTNAME= dillo-2.0
|
|
CATEGORIES= www
|
|
|
|
HOMEPAGE= http://www.dillo.org/
|
|
|
|
MAINTAINER= James Turner <james@bsdgroup.org>
|
|
|
|
# GPLv3
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB= X11 Xext Xft Xi Xinerama Xrender c crypto fontconfig m \
|
|
pthread ssl stdc++ z
|
|
|
|
MODULES= converters/libiconv
|
|
|
|
MASTER_SITES= ${HOMEPAGE}download/
|
|
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
BUILD_DEPENDS= ::x11/fltk2
|
|
LIB_DEPENDS= jpeg.>=62::graphics/jpeg \
|
|
png.>=2::graphics/png
|
|
|
|
USE_X11= Yes
|
|
USE_GMAKE= Yes
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= --enable-ipv6 \
|
|
--disable-threaded-dns
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/libpng" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/dillo
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.txt ${PREFIX}/share/doc/dillo
|
|
|
|
.include <bsd.port.mk>
|