dffe3ad6b3
- for ftp transfers, dillo relies on wget; add run_depends on it (maintainer is actually working on making use of ftp(1) instead, thanks to kili@'s suggestion; but for now we need ftp working) from James Turner (MAINTAINER)
47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
# $OpenBSD: Makefile,v 1.29 2008/11/03 11:05:25 ajacoutot Exp $
|
|
|
|
COMMENT= fast and light graphical web browser
|
|
|
|
DISTNAME= dillo-2.0
|
|
PKGNAME= ${DISTNAME}p1
|
|
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
|
|
# XXX dillo should be patched to use ftp(1)
|
|
RUN_DEPENDS= ::net/wget
|
|
|
|
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>
|