1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-03 06:04:53 +00:00
freebsd-ports/net/tn5250/Makefile
Ade Lovett 54a0b86543 Mass-conversion to the USE_AUTOTOOLS New World Order. The code present
in bsd.autotools.mk essentially makes this a no-op given that all the
old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in
exactly the same way as USE_AUTOTOOLS itself.

Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME
team -- all GNOME 2.12.x ports use it.

Preliminary documentation can be found at:
	http://people.FreeBSD.org/~ade/autotools.txt

which is in the process of being SGMLized before introduction into the
Porters Handbook.

Light blue touch-paper.  Run.
2005-11-15 06:52:12 +00:00

56 lines
1.4 KiB
Makefile

# New ports collection makefile for: tn5250
# Date created: 20 January 2000
# Whom: Elias Mandouvalos <ocean@compulink.gr>
#
# $FreeBSD$
#
PORTNAME= tn5250
PORTVERSION= 0.17.3
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= ports@FreeBSD.org
COMMENT= 5250 Telnet protocol and Terminal
USE_GNOME= gnomehack gnometarget pkgconfig
USE_OPENSSL= yes
USE_GETOPT_LONG= yes
USE_AUTOTOOLS= libtool:15
CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
CONFIGURE_ARGS= --enable-os-dir=no --with-ssl=${OPENSSLBASE}
INSTALLS_SHLIB= yes
MAN1= lp5250d.1 scs2ascii.1 scs2pdf.1 scs2ps.1 tn5250.1
MAN5= tn5250rc.5
CPPFLAGS= -I${LOCALBASE}/include
LDFLAGS= -L${LOCALBASE}/lib
.if defined(WITH_SLANG)
LIB_DEPENDS+= slang.1:${PORTSDIR}/devel/libslang
PKGNAMESUFFIX= -slang
CONFIGURE_ARGS+= --with-slang=yes
LDFLAGS+= -lcurses
.else
CONFIGURE_ARGS+= --with-slang=no
.endif
pre-everything::
.if !defined(WITH_SLANG)
@${ECHO_MSG}
@${ECHO_MSG} "If you want to compile with S/Lang support,"
@${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_SLANG=yes\""
@${ECHO_MSG}
.endif
post-install:
${INSTALL_SCRIPT} ${WRKSRC}/freebsd/5250keys ${PREFIX}/bin
.for file in README sample.termcap us.5250.kbd
${INSTALL_DATA} ${WRKSRC}/freebsd/${file} ${DATADIR}
.endfor
.include <bsd.port.mk>