89f8b05214
lang/gcc which have moved from GCC 4.8.5 to GCC 4.9.4 (at least under some circumstances such as versions of FreeBSD or platforms). In particular that is ports with USE_GCC=yes, USE_GCC=any, or one of gcc-c++11-lib, openmp, nestedfct, c++11-lib as well as c++14-lang, c++11-lang, c++0x, c11 requested via USES=compiler.
45 lines
1 KiB
Makefile
45 lines
1 KiB
Makefile
# Created by: Hye-Shik Chang
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= rhtvision
|
|
PORTVERSION= 2.2.1.1
|
|
PORTREVISION= 3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SF/tvision/UNIX/${PORTVERSION:R}%20CVS20100714%20Source%20and%20Debian%205.0
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION:R}-${PORTVERSION:E}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Complete C++ Text User Interface (TUI) library
|
|
|
|
OPTIONS_DEFINE= NLS X11
|
|
OPTIONS_SUB= yes
|
|
|
|
WRKSRC= ${WRKDIR}/tvision
|
|
|
|
USES= gmake perl5 shebangfix
|
|
SHEBANG_FILES= config.pl confignt.pl conflib.pl linux/compress
|
|
USE_GCC= yes
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --prefix=${STAGEDIR}${PREFIX} \
|
|
--real-prefix=${PREFIX} \
|
|
--no-libs-here
|
|
USE_LDCONFIG= yes
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
PLIST_SUB= VERSION="${PORTVERSION:R}"
|
|
|
|
NLS_USES= gettext
|
|
NLS_CONFIGURE_OFF= --no-intl
|
|
|
|
X11_USE= XORG=x11,xmu
|
|
X11_CONFIGURE_ON= --x-include=${LOCALBASE}/include \
|
|
--x-lib=${LOCALBASE}/lib
|
|
X11_CONFIGURE_OFF= --X11lib=no
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/rhtv-config \
|
|
${STAGEDIR}${PREFIX}/lib/librhtv.so
|
|
|
|
.include <bsd.port.mk>
|