1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-15 03:14:23 +00:00
freebsd-ports/www/lynx/Makefile
Martin Matuska 73eb29be00 - Introduce lynx.cfg.sample and lynx.lss.sample
- Do not delete/overwrite lynx.lss if changed

PR:		ports/112863
Patch by:	mm
Approved by:	maintainer (timeout), garga (mentor, implicit)
2007-08-13 11:16:24 +00:00

69 lines
1.6 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= 1
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 \
--with-curses-dir=/usr
.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
post-patch:
@${RM} -f ${WRKSRC}/CHANGES.orig
@${REINPLACE_CMD} -e 's|-lssl -lcrypto|-L${OPENSSLLIB} &|g' \
${WRKSRC}/configure
post-install:
${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR}
${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${L_HELP}
${CHOWN} ${SHAREOWN}:${SHAREGRP} ${L_LIB}/lynx.cfg
.include <bsd.port.mk>