svn commit: r362282 - head/audio/musicpd

Adam Weinberger adamw at adamw.org
Mon Jul 21 14:14:03 UTC 2014


On 21 Jul, 2014, at 9:19, Chris Rees <crees at physics.org> wrote:

> 
> 
> On 20 July 2014 02:04:38 BST, Baptiste Daroussin <bapt at FreeBSD.org> wrote:
>> On Sat, Jul 19, 2014 at 09:31:28PM +0000, Chris Rees wrote:
>>> Author: crees
>>> Date: Sat Jul 19 21:31:27 2014
>>> New Revision: 362282
>>> URL: http://svnweb.freebsd.org/changeset/ports/362282
>>> QAT: https://qat.redports.org/buildarchive/r362282/
>>> 
>>> Log:
>>>  Stop pkg complaining, and do exactly the same as before :)
>>> 
>>> Modified:
>>>  head/audio/musicpd/Makefile
>>>  head/audio/musicpd/pkg-plist
>>> 
>>> Modified: head/audio/musicpd/Makefile
>>> 
>> ==============================================================================
>>> --- head/audio/musicpd/Makefile	Sat Jul 19 20:26:10 2014	(r362281)
>>> +++ head/audio/musicpd/Makefile	Sat Jul 19 21:31:27 2014	(r362282)
>>> @@ -217,17 +217,26 @@ post-patch:
>>> .endif
>>> 
>>> do-install:
>>> -	@${INSTALL_PROGRAM} ${WRKSRC}/src/mpd \
>>> +	${INSTALL_PROGRAM} ${WRKSRC}/src/mpd \
>>> 		${STAGEDIR}/${PREFIX}/bin/${PORTNAME}
>>> -	@${INSTALL_MAN} ${WRKSRC}/doc/mpd.1 \
>>> +	${INSTALL_MAN} ${WRKSRC}/doc/mpd.1 \
>>> 		${STAGEDIR}/${PREFIX}/man/man1/${PORTNAME}.1
>>> -	@${INSTALL_MAN} ${WRKSRC}/doc/mpd.conf.5 \
>>> +	${INSTALL_MAN} ${WRKSRC}/doc/mpd.conf.5 \
>>> 		${STAGEDIR}/${PREFIX}/man/man5/${PORTNAME}.conf.5
>>> -	@${MKDIR} ${STAGEDIR}/${DOCSDIR}
>>> -.for doc in ${PORTDOCS}
>>> -	@${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}/${DOCSDIR}/
>>> -.endfor
>>> -	@${INSTALL_DATA} ${WRKSRC}/doc/mpdconf.example \
>>> +	${MKDIR} ${STAGEDIR}/${DOCSDIR}
>>> +	${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}/${DOCSDIR}/
>>> +	${INSTALL_DATA} ${WRKSRC}/doc/mpdconf.example \
>>> 		${STAGEDIR}/${PREFIX}/etc/${PORTNAME}.conf.sample
>>> +	${PRINTF} "%s\n%s\n%s\n" "@cwd /" "@owner ${MPDUSER}" \
>>> +		"@group ${MPDGROUP}" >> ${TMPPLIST}
>>> +	cd ${STAGEDIR} && ${MKDIR} -v ${MPDDIR:S,^/,,}/.mpd | ${SORT} -r |
>> \
>>> +		${SED} 's,^, at dirrmtry ,' >> ${TMPPLIST}
>>> +.ifndef WITH_PKGNG
>>> +	# Cute, we can't use @dirrmtry with pkg_old...
>>> +	# Remove once all using pkgng
>> 
>> Now is does :)
>> 
>>> +	${REINPLACE_CMD} \
>>> +		's,^@dirrmtry \(.*\), at unexec rmdir \1 > /dev/null || :,' \
>>> +		${TMPPLIST}
>>> +.endif
>>> 
>>> .include <bsd.port.mk>
>>> 
>>> Modified: head/audio/musicpd/pkg-plist
>>> 
>> ==============================================================================
>>> --- head/audio/musicpd/pkg-plist	Sat Jul 19 20:26:10 2014	(r362281)
>>> +++ head/audio/musicpd/pkg-plist	Sat Jul 19 21:31:27 2014	(r362282)
>>> @@ -2,7 +2,5 @@ bin/musicpd
>>> @unexec if cmp -s %D/etc/musicpd.conf.sample %D/etc/musicpd.conf;
>> then rm -f %D/etc/musicpd.conf; fi
>>> etc/musicpd.conf.sample
>>> @exec if [ ! -f %B/musicpd.conf ] ; then cp -p %D/%F
>> %B/musicpd.conf; fi
>> 
>> The above can be replaced by @sample etc/musicpd.conf.sample
>> 
>>> - at exec install -d -o %%MPDUSER%% -g %%MPDGROUP%% %%MPDDIR%%
>> %%MPDDIR%%/.mpd
>>> - at unexec rmdir -p %%MPDDIR%%/.mpd 2>/dev/null || true
> 
> Yes, I did that when I just removed all that above code, thanks.
> 
> What would be really nice would be a chmod u+w on the config file once copied over!

@mode 666
@sample etc/musicpd.conf.sample
@mode

If you only want it on the non-sample, you can also add
@exec chmod 444 %D/etc/musicpd.conf.sample

# Adam

-- 
Adam Weinberger
adamw at adamw.org
http://www.adamw.org



More information about the svn-ports-all mailing list