diff options
author | obrien <obrien@FreeBSD.org> | 2005-02-07 16:14:41 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2005-02-07 16:14:41 +0800 |
commit | 372eab9a5209173b8eaab80b430c84b0ba5cb5b6 (patch) | |
tree | 9cb0aeedb17a8f10b51dd764eb77f7763422d4ee /net/rdesktop/Makefile | |
parent | 53ae9d07e08011e03cb77de140e2cf474db67a05 (diff) | |
download | freebsd-ports-gnome-372eab9a5209173b8eaab80b430c84b0ba5cb5b6.tar.gz freebsd-ports-gnome-372eab9a5209173b8eaab80b430c84b0ba5cb5b6.tar.zst freebsd-ports-gnome-372eab9a5209173b8eaab80b430c84b0ba5cb5b6.zip |
Fix '[1077366] Send Client IP instead of 127.0.0.1 using RDPv5'
Obtained from: http://sourceforge.net/tracker/index.php?func=detail&aid=1077366&group_id=24366&atid=381349
Diffstat (limited to 'net/rdesktop/Makefile')
-rw-r--r-- | net/rdesktop/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net/rdesktop/Makefile b/net/rdesktop/Makefile index 9f60ad482c79..10527b193f51 100644 --- a/net/rdesktop/Makefile +++ b/net/rdesktop/Makefile @@ -7,11 +7,13 @@ PORTNAME= rdesktop PORTVERSION= 1.3.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net comms MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} +EXTRA_PATCHES= ${WRKDIR}/extra-patch-localIP + MAINTAINER= matt@fruitsalad.org COMMENT= RDP client for Windows NT/2000/2003 Terminal Server @@ -24,6 +26,10 @@ CONFIGURE_ARGS= --prefix=${PREFIX} DOCS= doc/AUTHORS doc/TODO doc/*.txt MAN1= rdesktop.1 +pre-patch: + ${SED} -e 's,rdesktop-1.3.1_localip/,,g' \ + ${FILESDIR}/extra-patch-localIP \ + > ${WRKDIR}/extra-patch-localIP post-patch: @${REINPLACE_CMD} -e 's|$$cc|${CC}|' \ ${WRKSRC}/configure |