mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
46 lines
1.2 KiB
Makefile
46 lines
1.2 KiB
Makefile
# New ports collection makefile for: gnometelnet
|
|
# Date created: 2 August 2000
|
|
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gnometelnet
|
|
PORTVERSION= 2.5
|
|
PORTREVISION= 6
|
|
CATEGORIES= net gnome
|
|
MASTER_SITES= http://www.cyest.org/downloads/
|
|
DISTNAME= ${PORTNAME:S/gnome/gnome-/}-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A nice frontend to the telnet, ssh, and rlogin clients for GNOME
|
|
|
|
BROKEN= Size mismatch
|
|
|
|
USE_AUTOTOOLS= automake:15:env libtool:15
|
|
USE_BZIP2= yes
|
|
USE_GNOME= gnomehack gnomelibs gnomeprefix
|
|
USE_GMAKE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
pre-configure:
|
|
@${LN} -sf ${AUTOMAKE_DIR}/install-sh ${WRKSRC}
|
|
@${RM} -f ${WRKSRC}/config.cache
|
|
.for file in config.guess config.sub
|
|
@${RM} -f ${WRKSRC}/${file} && ${TOUCH} ${WRKSRC}/${file}
|
|
.endfor
|
|
|
|
post-install:
|
|
@${MKDIR} ${PREFIX}/share/gnome/apps/Internet
|
|
${INSTALL_DATA} ${WRKSRC}/share/GTelnet.desktop \
|
|
${PREFIX}/share/gnome/apps/Internet
|
|
@${MKDIR} ${PREFIX}/share/pixmaps
|
|
${INSTALL_DATA} ${WRKSRC}/share/*.png \
|
|
${PREFIX}/share/pixmaps
|
|
@${MKDIR} ${PREFIX}/share/pixmaps/gnome-telnet
|
|
${INSTALL_DATA} ${WRKSRC}/share/*.jpg \
|
|
${PREFIX}/share/pixmaps/gnome-telnet
|
|
|
|
.include <bsd.port.mk>
|