mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
641aa14c2d
with/without devel/ncurses installed. This also causes problem when you specify to use OpenSSL from ports, as we add -L/usr before -L/usr/local. - Add OPENSSLBASE to --with-ssl, no need to patch configurate script anymore. - Add some instructions for using SSL PR: ports/118096 Submitted by: bf <bf2006a at yahoo.com> Approved by: Jason Harris <jharris at widomaker.com> (maintainer)
69 lines
1.5 KiB
Makefile
69 lines
1.5 KiB
Makefile
# New ports collection makefile for: lynx
|
|
# Date created: 15 Dec 1994
|
|
# Whom: Andrey Chernov <ache@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= lynx
|
|
PORTVERSION= 2.8.6.5
|
|
PORTREVISION= 2
|
|
PORTEPOCH= 1
|
|
CATEGORIES= www ipv6
|
|
MASTER_SITES= http://lynx.isc.org/current/ \
|
|
ftp://lynx.isc.org/lynx${PORTVERSION}/patches/:patches
|
|
DISTNAME= ${PORTNAME}${PORTVERSION:R}rel.${PORTVERSION:E}
|
|
|
|
MAINTAINER= jharris@widomaker.com
|
|
COMMENT= A non-graphical, text-based World-Wide Web client
|
|
|
|
CONFLICTS= lynx-current*
|
|
|
|
USE_BZIP2= yes
|
|
USE_OPENSSL= yes
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}2-8-6
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+=--with-screen=ncurses --with-zlib --libdir="${L_LIB}" \
|
|
--enable-nsl-fork --enable-persistent-cookies \
|
|
--with-ssl="${OPENSSLBASE}"
|
|
|
|
.if defined(WITHOUT_NLS)
|
|
CONFIGURE_ARGS+=--disable-nls
|
|
PLIST_SUB+= NLS='@comment '
|
|
.else
|
|
USE_GETTEXT= yes
|
|
USE_ICONV= yes
|
|
CONFIGURE_ARGS+=--enable-nls --with-libiconv-prefix="${LOCALBASE}"
|
|
PLIST_SUB+= NLS=''
|
|
.endif
|
|
|
|
.if defined(NO_INET6) || defined(WITHOUT_IPV6)
|
|
CONFIGURE_ARGS+=--disable-ipv6
|
|
.else
|
|
CONFIGURE_ARGS+=--enable-ipv6
|
|
.endif
|
|
|
|
.if defined(ENABLE_DEFAULT_COLORS)
|
|
CONFIGURE_ARGS+=--enable-default-colors
|
|
.endif
|
|
|
|
MAKE_ARGS= helpdir=${L_HELP} docdir=${DOCSDIR}
|
|
MAKEFILE= makefile
|
|
INSTALL_TARGET= install-full
|
|
MAN1= lynx.1
|
|
|
|
L_LIB= ${PREFIX}/etc
|
|
L_HELP= ${PREFIX}/share/lynx_help
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
post-patch:
|
|
@${RM} -f ${WRKSRC}/CHANGES.orig
|
|
|
|
post-install:
|
|
${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR}
|
|
${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${L_HELP}
|
|
${CHOWN} ${SHAREOWN}:${SHAREGRP} ${L_LIB}/lynx.cfg
|
|
|
|
.include <bsd.port.mk>
|