The following patch fixes these issues: *) manpage installation to wrong directory (kris) *) pkg-descr contains a URL but no WWW (portlint -A) *) use DOCSDIR macro (portlint -A) How-To-Repeat: N/A
I think you forget to dump PORTREVISION. --- Makefile.orig Fri Aug 8 12:40:38 2003 +++ Makefile Sun Aug 17 21:30:32 2003 @@ -7,13 +7,14 @@ PORTNAME= sscalc PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= astro MASTER_SITES= http://www.icehouse.net/kew/ MAINTAINER= kew@icehouse.net COMMENT= A sunrise/sunset time calculator -BROKEN= "Installs manpage into wrong directory" +MAN1= sscalc.1 pre-fetch: .if !defined(LAT) @@ -22,10 +23,13 @@ @${ECHO_MSG} "Compiling in lat/longs" .endif -post-install: - @strip ${PREFIX}/bin/sscalc - @${MKDIR} ${PREFIX}/share/doc/sscalc - ${INSTALL_DATA} ${WRKSRC}/cities.txt ${PREFIX}/share/doc/sscalc - ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/sscalc +do-install: + ${INSTALL_PROGRAM} ${WRKDIR}/${DISTNAME}/sscalc ${PREFIX}/bin + ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/sscalc.1 ${MAN1PREFIX}/man/man1 +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/cities.txt ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} +.endif .include <bsd.port.mk> _________________________________________________________________ Help STOP SPAM with the new MSN 8 and get 2 months FREE* http://join.msn.com/?page=features/junkmail
State Changed From-To: open->closed Committed, thanks!