9210b7cb07
Move gettext (0.10.35) with gettext-old Update gettext from gettext-devel (0.10.40) Remove gettext-devel Fix dependencies Stage 2 will involve upgraded gettext to 0.11 and fixing issues Stage 3 involves a de-orbit burn sequence for gettext-old Reviewed by: portmgr
58 lines
1.3 KiB
Makefile
58 lines
1.3 KiB
Makefile
# New ports collection makefile for: lynx
|
|
# Date created: 15 Dec 1994
|
|
# Whom: ache
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= lynx
|
|
PORTVERSION= 2.8.5d7
|
|
CATEGORIES= www ipv6
|
|
MASTER_SITES= http://lynx.isc.org/current/
|
|
DISTNAME= ${PORTNAME}2.8.5dev.7
|
|
|
|
MAINTAINER= ache@FreeBSD.org
|
|
|
|
LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext-old
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}2-8-5
|
|
USE_BZIP2= yes
|
|
NO_LATEST_LINK= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-screen=ncurses --with-zlib --libdir="${L_LIB}" \
|
|
--enable-nsl-fork --enable-nls --enable-prettysrc \
|
|
--enable-file-upload --enable-nested-tables \
|
|
--enable-source-cache
|
|
|
|
.ifndef NO_OPENSSL
|
|
USE_OPENSSL= yes
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.ifdef USE_OPENSSL
|
|
CONFIGURE_ARGS+= --with-ssl=${OPENSSLBASE}
|
|
.endif
|
|
|
|
.if ${OSVERSION} >= 400014
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ipv6
|
|
.endif
|
|
CONFIGURE_ENV= CC="${CC} -I${LOCALBASE}/include" LDFLAGS=-L${LOCALBASE}/lib
|
|
MAKE_FLAGS= helpdir=${L_HELP} docdir=${L_DOC} -f
|
|
MAKEFILE= makefile
|
|
INSTALL_TARGET= install-full
|
|
MAN1= lynx.1
|
|
|
|
L_LIB= ${PREFIX}/etc
|
|
L_DOC= ${PREFIX}/share/doc/lynx
|
|
L_HELP= ${PREFIX}/share/lynx_help
|
|
|
|
post-install:
|
|
${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${L_DOC}
|
|
${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${L_HELP}
|
|
${CHOWN} ${SHAREOWN}:${SHAREGRP} ${L_LIB}/lynx.cfg
|
|
|
|
.include <bsd.port.post.mk>
|