2013-06-05 17:00:14 +00:00
|
|
|
# Created by: andi_payn@speedymail.com
|
2003-12-09 00:05:55 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= ggiterm
|
2005-07-13 14:28:08 +00:00
|
|
|
PORTVERSION= 0.7.1
|
2008-07-08 20:33:16 +00:00
|
|
|
PORTREVISION= 3
|
2003-12-09 00:05:55 +00:00
|
|
|
CATEGORIES= x11
|
2009-08-22 00:39:37 +00:00
|
|
|
MASTER_SITES= SF
|
2003-12-09 00:05:55 +00:00
|
|
|
|
2011-12-28 05:47:59 +00:00
|
|
|
MAINTAINER= ports@FreeBSD.org
|
2003-12-09 00:05:55 +00:00
|
|
|
COMMENT= A terminal emulator for GGI
|
|
|
|
|
|
|
|
LIB_DEPENDS= ggi.2:${PORTSDIR}/graphics/libggi
|
|
|
|
|
2013-06-05 17:00:14 +00:00
|
|
|
DEPRECATED= Unmaintained and broken
|
|
|
|
EXPIRATION_DATE=2013-09-01
|
|
|
|
|
2003-12-09 00:05:55 +00:00
|
|
|
GNU_CONFIGURE= yes
|
2004-12-09 09:49:38 +00:00
|
|
|
CONFIGURE_ARGS= --with-ggi-prefix=${LOCALBASE}
|
2011-09-23 22:26:39 +00:00
|
|
|
CPPFLAGS+= ${PTHREAD_CFLAGS}
|
|
|
|
LDFLAGS+= ${PTHREAD_LIBS}
|
2003-12-09 00:05:55 +00:00
|
|
|
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
2005-11-19 19:48:05 +00:00
|
|
|
SUB_FILES= pkg-message
|
2003-12-09 00:05:55 +00:00
|
|
|
|
2012-05-31 14:49:26 +00:00
|
|
|
OPTIONS_DEFINE= FREETYPE DOCS
|
|
|
|
OPTIONS_DEFAULT= FREETYPE
|
2004-08-20 22:54:45 +00:00
|
|
|
|
2008-07-08 20:33:16 +00:00
|
|
|
PORTDOCS= AUTHORS README
|
|
|
|
|
2004-08-20 22:54:45 +00:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2010-03-20 15:04:45 +00:00
|
|
|
.if ${OSVERSION} > 900007
|
|
|
|
BROKEN= fails to build with new utmpx
|
|
|
|
.endif
|
|
|
|
|
2012-05-31 14:49:26 +00:00
|
|
|
.if ${PORT_OPTIONS:MFREETYPE}
|
2004-08-20 22:54:45 +00:00
|
|
|
LIB_DEPENDS+= freetype.9:${PORTSDIR}/print/freetype2
|
2013-04-27 18:25:24 +00:00
|
|
|
USES+= iconv
|
2004-08-20 22:54:45 +00:00
|
|
|
CONFIGURE_ARGS+=--with-ft-prefix=${LOCALBASE}
|
2004-12-09 09:49:38 +00:00
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+=--without-freetype
|
2003-12-09 00:05:55 +00:00
|
|
|
.endif
|
|
|
|
|
2004-12-09 09:49:38 +00:00
|
|
|
MAN1= ggiterm.1
|
|
|
|
|
2003-12-09 00:05:55 +00:00
|
|
|
post-install:
|
2005-11-19 19:48:05 +00:00
|
|
|
@${INSTALL_DATA} ${WRKSRC}/ggiterm.termcap ${DATADIR}
|
2012-05-31 14:49:26 +00:00
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
2003-12-09 00:05:55 +00:00
|
|
|
@${MKDIR} ${DOCSDIR}
|
2008-07-08 20:33:16 +00:00
|
|
|
.for f in ${PORTDOCS}
|
|
|
|
@${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
|
|
|
.endfor
|
2003-12-09 00:05:55 +00:00
|
|
|
.endif
|
2005-11-19 19:48:05 +00:00
|
|
|
@${CAT} ${PKGMESSAGE}
|
2003-12-09 00:05:55 +00:00
|
|
|
|
2004-08-20 22:54:45 +00:00
|
|
|
.include <bsd.port.post.mk>
|