openbsd-ports/www/elinks/Makefile
sthen d1970127d5 bugfix update to 0.11.5, looks ok to previous maintainer.
take maintainership, add detail to license marker while there.
2008-12-30 10:29:09 +00:00

57 lines
1.2 KiB
Makefile

# $OpenBSD: Makefile,v 1.12 2008/12/30 10:29:09 sthen Exp $
COMMENT= full-featured text WWW browser
DISTNAME= elinks-0.11.5
CATEGORIES= www
MASTER_SITES= http://elinks.cz/download/
HOMEPAGE= http://elinks.cz/
MAINTAINER= Stuart Henderson <sthen@openbsd.org>
# GPL, v2 only
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
CONFIGURE_STYLE= gnu
CONFIGURE_ENV+= CFLAGS="${CFLAGS} -I${LOCALBASE}/include" \
LDFLAGS=-L${LOCALBASE}/lib
CONFIGURE_ARGS+= --with-bzlib \
--without-spidermonkey \
--disable-xbel \
--disable-backtrace \
--enable-gopher \
--with-libiconv=${LOCALBASE}
# don't hide compiler command lines
MAKE_ENV= V=true
LIB_DEPENDS+= bz2::archivers/bzip2 \
idn::devel/libidn
USE_GMAKE= Yes
RUN_DEPENDS= ::devel/gettext
WANTLIB= crypto c z ssl
MODULES= converters/libiconv
FLAVORS= lua no_x11
FLAVOR?=
.if ${FLAVOR:L:Mlua}
CONFIGURE_ARGS+= --with-lua
LIB_DEPENDS+= lua.>=5.1::lang/lua
WANTLIB+= m
.else
CONFIGURE_ARGS+= --without-lua
.endif
.if ${FLAVOR:L:Mno_x11}
CONFIGURE_ARGS+= --without-x
.else
CONFIGURE_ARGS+= --with-x
USE_X11= Yes
WANTLIB+= X11
.endif
.include <bsd.port.mk>