freebsd-ports/www/lynx/Makefile

81 lines
1.7 KiB
Makefile
Raw Normal View History

# Created by: Andrey Chernov <ache@FreeBSD.org>
1999-08-31 04:43:35 +02:00
# $FreeBSD$
1994-11-06 11:19:31 +01:00
PORTNAME= lynx
PORTVERSION= 2.8.7.2
PORTEPOCH= 1
2002-04-02 18:04:24 +02:00
CATEGORIES= www ipv6
MASTER_SITES= http://lynx.isc.org/current/
DISTNAME= ${PORTNAME}${PORTVERSION:R}rel.${PORTVERSION:E}
MAINTAINER= jharris@widomaker.com
COMMENT= Non-graphical, text-based World-Wide Web client
1997-12-02 01:24:34 +01:00
CONFLICTS= lynx-2.8.[8-9]*
USE_BZIP2= yes
USE_OPENSSL= yes
WRKSRC= ${WRKDIR}/${PORTNAME}2-8-7
GNU_CONFIGURE= yes
CONFIGURE_ARGS+=--with-zlib --libdir="${L_LIB}" \
--enable-nsl-fork --enable-persistent-cookies \
--enable-nested-tables --enable-gzip-help \
--with-screen=ncursesw
MAKE_JOBS_UNSAFE= yes
OPTIONS_DEFINE= DEFAULT_COLORS IPV6 NLS SSL
OPTIONS_DEFAULT= SSL
DEFAULT_COLORS_DESC= Colors support
.include <bsd.port.options.mk>
.if empty(PORT_OPTIONS:MNLS)
CONFIGURE_ARGS+=--disable-nls
PLIST_SUB+= NLS='@comment '
.else
USES+= gettext iconv
CONFIGURE_ARGS+=--enable-nls ${ICONV_CONFIGURE_ARG}
PLIST_SUB+= NLS=''
.endif
.if ${PORT_OPTIONS:MIPV6} && !defined(NO_INET6)
CONFIGURE_ARGS+=--enable-ipv6
.else
CONFIGURE_ARGS+=--disable-ipv6
.endif
.if ${PORT_OPTIONS:MSSL}
CONFIGURE_ARGS+= --with-ssl=${OPENSSLBASE}
.endif
.if ${PORT_OPTIONS:MDEFAULT_COLORS}
CONFIGURE_ARGS+=--enable-default-colors
.endif
.if empty(PORT_OPTIONS:MDOCS)
CONFIGURE_ARGS+=--disable-local-docs
INSTALL_TARGET= install
DOCSDIR=
L_HELP=
.else
INSTALL_TARGET= install-full
L_HELP= ${PREFIX}/share/lynx_help
MAKE_ARGS= helpdir=${L_HELP} docdir=${DOCSDIR}
.endif
MAKEFILE= makefile
L_LIB= ${PREFIX}/etc
1998-10-31 16:36:18 +01:00
SUB_FILES= pkg-message
post-install:
2014-02-18 20:41:13 +01:00
.if ${PORT_OPTIONS:MDOCS}
# Fix some stage symlinks
${LN} -sf ${DOCSDIR}/COPYHEADER ${STAGEDIR}${L_HELP}
${LN} -sf ${DOCSDIR}/COPYING ${STAGEDIR}${L_HELP}
.endif
.include <bsd.port.mk>