Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 4 Aug 2013 16:35:29 +0000
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        Jason Helfman <jgh@FreeBSD.org>
Cc:        svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org
Subject:   Re: svn commit: r324179 - in head/devel: . acme
Message-ID:  <20130804163529.GA22214@FreeBSD.org>
In-Reply-To: <201308030733.r737XGXd008385@svn.freebsd.org>
References:  <201308030733.r737XGXd008385@svn.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Sat, Aug 03, 2013 at 07:33:16AM +0000, Jason Helfman wrote:
> New Revision: 324179
> URL: http://svnweb.freebsd.org/changeset/ports/324179
> 
> +BUILD_WRKSRC =	${WRKSRC}/src

Stray space before =.

> +PLIST_FILES=	bin/acme \
> +		%%DATADIR%%/6502 \
> +		%%DATADIR%%/6502/Help.txt \
> +		%%DATADIR%%/6502/std.a \
> +		%%DATADIR%%/65816 \
> +		%%DATADIR%%/65816/Help.txt \
> +		%%DATADIR%%/65816/std.a \
> +		%%DATADIR%%/Own \
> +		%%DATADIR%%/Own/Help.txt
> +PLIST_DIRSTRY=	%%DATADIR%%/6502 \
> +		%%DATADIR%%/65816 \
> +		%%DATADIR%%/Own \
> +		%%DATADIR%%

Typically using PLIST_* makes sense for short (like, five or so) entries;
in this case I would say that traditional pkg-plist should have been used.

> +post-patch-script:
> +.for i in CC CFLAGS
> +	@${REINPLACE_CMD} 's|${i}.*= |${i} ?= |g' ${WRKSRC}/src/Makefile
> +.endfor

Did you try to pass CC="${CC}" CFLAGS="${CFLAGS}" as MAKE_ARGS instead?

> +	${INSTALL_PROGRAM} ${WRKSRC}/src/acme ${PREFIX}/bin/${PORTNAME}

Trailing ${PORTNAME} is both unneeded and confusing here (it suggests
that ${PORTNAME} != acme).

> +.for dir in 6502 65816 Own
> +	@${MKDIR} ${DATADIR}/${dir}
> +.endfor
> +	${INSTALL_DATA} ${WRKSRC}/ACME_Lib/6502/* ${DATADIR}/6502
> +	${INSTALL_DATA} ${WRKSRC}/ACME_Lib/65816/* ${DATADIR}/65816
> +	${INSTALL_DATA} ${WRKSRC}/ACME_Lib/Own/* ${DATADIR}/Own
> +
> +.if ${PORT_OPTIONS:MDOCS}
> +	${MKDIR} ${DOCSDIR}

This MKDIR call is unmuted, but previous and the next ones are.  This is
inconsistent and thus does not look good.

./danfe



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