mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
3ce0f21808
- Convert to USES=libtool and bump dependent ports - Add INSTALL_TARGET=install-strip - Remove patches that renamed include directories and libraries so they didn't conflict with early development versions of glib/gtk 2.0
39 lines
894 B
Makefile
39 lines
894 B
Makefile
# Created by: Hammurabi Mendes <hmendes@brturbo.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ssh-gui
|
|
PORTVERSION= 0.7.1
|
|
PORTREVISION= 6
|
|
CATEGORIES= security
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Front-end for ssh which can open multiple xterms
|
|
|
|
USE_GNOME= gtk12
|
|
|
|
ALL_TARGET= ssh-gui
|
|
|
|
PLIST_FILES= bin/ssh-gui
|
|
PORTDOCS= README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !exists(/usr/bin/ssh) && !exists(${LOCALBASE}/bin/ssh)
|
|
RUN_DEPENDS+= ssh:${PORTSDIR}/security/openssh-portable
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -E -e "s|(CC)=.*|\1=${CC}|" -e "s|(CFLAGS)=-Wall|\1\+=|" \
|
|
-e "s|glib-config|${GLIB_CONFIG}|" -e "s|gtk-config|${GTK_CONFIG}|" \
|
|
${BUILD_WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.post.mk>
|