mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
54a0b86543
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.
45 lines
1.2 KiB
Makefile
45 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= 1
|
|
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
|
|
|
|
USE_AUTOTOOLS= automake:15:env libtool:15
|
|
USE_BZIP2= yes
|
|
USE_X_PREFIX= 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/gnome/pixmaps
|
|
${INSTALL_DATA} ${WRKSRC}/share/*.png \
|
|
${PREFIX}/share/gnome/pixmaps
|
|
@${MKDIR} ${PREFIX}/share/gnome/pixmaps/gnome-telnet
|
|
${INSTALL_DATA} ${WRKSRC}/share/*.jpg \
|
|
${PREFIX}/share/gnome/pixmaps/gnome-telnet
|
|
|
|
.include <bsd.port.mk>
|