Update graffer version to 1.1. Fix: Patch attached with submission follows:
Some fixes: -PORTVERSION= 1.0 +PORTVERSION= 1.1 +PORTREVISION= 1 You don't need to set PORTREVISION. @${REINPLACE_CMD} -e "s|/etc/|${STAGEDIR}${PREFIX}/etc/|" \ ${WRKSRC}/graffer.[c8] @${REINPLACE_CMD} -e "s|/etc/|${STAGEDIR}${PREFIX}/etc/|" \ ${WRKSRC}/graffer.conf.example This looks wrong to me. You don't want ${STAGEDIR} appearing in installed files. It's just for the build process. Remove it completely from those lines.
(In reply to Tim Bishop from comment #1) > Some fixes: > > -PORTVERSION= 1.0 > +PORTVERSION= 1.1 > +PORTREVISION= 1 > > You don't need to set PORTREVISION. > > @${REINPLACE_CMD} -e "s|/etc/|${STAGEDIR}${PREFIX}/etc/|" \ > ${WRKSRC}/graffer.[c8] > @${REINPLACE_CMD} -e "s|/etc/|${STAGEDIR}${PREFIX}/etc/|" \ > ${WRKSRC}/graffer.conf.example > > This looks wrong to me. You don't want ${STAGEDIR} appearing in installed > files. It's just for the build process. Remove it completely from those > lines. Yes, you are right. I found the mistake after patch was sent. Correct: @${REINPLACE_CMD} -e "s|/etc/|${PREFIX}/etc/|" \ ${WRKSRC}/graffer.[c8] @${REINPLACE_CMD} -e "s|/etc/|${PREFIX}/etc/|" \ ${WRKSRC}/graffer.conf.example
A commit references this bug: Author: tdb Date: Tue Jun 3 10:12:42 UTC 2014 New revision: 356318 URL: http://svnweb.freebsd.org/changeset/ports/356318 Log: Update to version 1.1 PR: 190107 Submitted by: Nikola Kolev <koue@chaosophia.net> (maintainer) Changes: head/sysutils/graffer/Makefile head/sysutils/graffer/distinfo
Committed, thanks!