Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 17 Feb 2003 21:43:39 +0100 (CET)
From:      Cejka Rudolf <cejkar@fit.vutbr.cz>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/48388: ftp/lukemftpd: Maintainer does not exist and path problems
Message-ID:  <200302172043.h1HKhd2H091208@kazi.fit.vutbr.cz>

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

>Number:         48388
>Category:       ports
>Synopsis:       ftp/lukemftpd: Maintainer does not exist and path problems
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Mon Feb 17 12:50:06 PST 2003
>Closed-Date:
>Last-Modified:
>Originator:     Rudolf Cejka
>Release:        FreeBSD 4.6-STABLE i386
>Organization:
FIT, Brno University of Technology, Czech Republic
>Environment:
>Description:
 
 * There is MAINTAINER=debolaz@debolaz.com in ftp/lukemftpd/Makefile,
   but mail to him returned to me, so it seems that maintainer does
   not exist anymore.
 
 * It seems that thanks to changes in sed, where characters \x (there is \t
   in Makefile) are not recognized anymore (and it seems it is the correct
   behavior?), port lukemftpd is not compiled correctly, because
   _DEFAULT_CONFDIR is not changed from /etc to /usr/local/etc - it stays
   as /etc. I mean lines in Makefile
 
 	${REINPLACE_CMD} -e \
 		"s@^#define\t_DEFAULT_CONFDIR\t\"/etc\"@#define\t_DEFAULT_CONFDIR\t\"${PREFIX}/etc\"@" \
 	${WRKSRC}/src/pathnames.h
 
   where "\t" is not accepted by sed and sed interprets it as
 
 	${REINPLACE_CMD} -e \
 		"s@^#definet_DEFAULT_CONFDIRt\"/etc\"@#definet_DEFAULT_CONFDIRt\"${PREFIX}/etc\"@" \
 	${WRKSRC}/src/pathnames.h
 
   so _DEFAULT_CONFDIR stays unchanged. If "\t" is changed to real
   tab characters, it works again:
 
 --- Makefile.orig	Mon Feb 17 21:41:50 2003
 +++ Makefile	Mon Feb 17 21:41:38 2003
 @@ -37,7 +37,7 @@
  	${WRKSRC}/src/${f}
  .endfor
  	${REINPLACE_CMD} -e \
 -		"s@^#define\t_DEFAULT_CONFDIR\t\"/etc\"@#define\t_DEFAULT_CONFDIR\t\"${PREFIX}/etc\"@" \
 +		"s@^#define	_DEFAULT_CONFDIR	\"/etc\"@#define	_DEFAULT_CONFDIR	\"${PREFIX}/etc\"@" \
  	${WRKSRC}/src/pathnames.h
  
  do-install:
>How-To-Repeat:
>Fix:
>Release-Note:
>Audit-Trail:
>Unformatted:

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




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