Bug 48388 - ftp/lukemftpd: Maintainer does not exist and path problems
Summary: ftp/lukemftpd: Maintainer does not exist and path problems
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ports-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-02-17 20:50 UTC by Rudolf Čejka
Modified: 2003-07-30 07:06 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Rudolf Čejka 2003-02-17 20:50:06 UTC
 
 * 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:
Comment 1 Daichi GOTO freebsd_committer freebsd_triage 2003-07-30 07:06:13 UTC
State Changed
From-To: open->closed

Committed. Thanks!