Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 31 Jul 2002 18:14:28 +0200 (CEST)
From:      "Simon L.Nielsen" <simon@nitro.dk>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/41204: rdesktop port broken
Message-ID:  <20020731161428.E86E86D70@marvin.babeltech.dk>

next in thread | raw e-mail | index | archive | help

>Number:         41204
>Category:       ports
>Synopsis:       rdesktop port broken
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Wed Jul 31 09:20:01 PDT 2002
>Closed-Date:
>Last-Modified:
>Originator:     Simon L. Nielsen <simon@nitro.dk>
>Release:        FreeBSD 4.6-RELEASE-p3 i386
>Organization:
BabelTech A/S
>Environment:
System: FreeBSD marvin.babeltech.dk 4.6-RELEASE-p3 FreeBSD 4.6-RELEASE-p3 #2: Fri Jul 19 15:08:45 CEST 2002 simon@cvs.babeltech.dk:/usr/obj/usr/src/sys/MARVIN i386

>Description:
The rdesktop port cannot install due to an error in the makefile :

[root@marvin:rdesktop] make install
===>  Installing for rdesktop-1.0.0.p19.7.6_1
===>   rdesktop-1.0.0.p19.7.6_1 depends on shared library: X11.6 - found
install -c -m 755 -s rdesktop /usr/local/bin
install -c -m 755 -s rdp-srvr /usr/local/bin
install: rdp-srvr: No such file or directory
gmake: *** [install] Error 71
*** Error code 2

The problem appears to be caused by the change from PERL to REINPLACE_CMD
since the sed regexps is a bit different.

>How-To-Repeat:
	cd /usr/ports/net/rdesktop && make install
>Fix:

--- Makefile.orig	Wed Jul 31 17:44:42 2002
+++ Makefile	Wed Jul 31 18:03:18 2002
@@ -49,7 +49,7 @@
 	@${REINPLACE_CMD} -e 's:^PREFIX.*:PREFIX=${PREFIX}:g' ${WRKSRC}/Makefile
 	@${REINPLACE_CMD} -e 's:^install.*:install\: rdesktop:g' \
 		${WRKSRC}/Makefile
-	@${REINPLACE_CMD} -e 's:^.*\(INSTALL\) rdp-srvr.*::g' ${WRKSRC}/Makefile
+	@${REINPLACE_CMD} -e 's:^.*(INSTALL) rdp-srvr.*::g' ${WRKSRC}/Makefile
 	@${REINPLACE_CMD} -e 's:<endian.h>:<machine/endian.h>:g' \
 		${WRKSRC}/rdesktop.h
 
>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020731161428.E86E86D70>