From owner-svn-ports-all@FreeBSD.ORG Sun Jul 13 16:49:38 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5EEA89C1; Sun, 13 Jul 2014 16:49:38 +0000 (UTC) Received: from apnoea.adamw.org (apnoea.adamw.org [204.109.59.150]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3786A25CE; Sun, 13 Jul 2014 16:49:37 +0000 (UTC) Received: from [192.168.192.25] (dhcp-108-170-169-12.cable.user.start.ca [108.170.169.12]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by apnoea.adamw.org (Postfix) with ESMTPSA id 230E812B02A; Sun, 13 Jul 2014 12:49:36 -0400 (EDT) Content-Type: text/plain; charset=windows-1252 Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) Subject: Re: svn commit: r361621 - in head: . multimedia multimedia/universal-media-server multimedia/universal-media-server/files From: Adam Weinberger In-Reply-To: <201407121522.s6CFM1s3057945@svn.freebsd.org> Date: Sun, 13 Jul 2014 12:49:34 -0400 Content-Transfer-Encoding: quoted-printable Message-Id: <4CFF4B28-5228-43A9-A655-993F99A65F1A@adamw.org> References: <201407121522.s6CFM1s3057945@svn.freebsd.org> To: Kurt Jaeger X-Mailer: Apple Mail (2.1878.6) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Jul 2014 16:49:38 -0000 On 12 Jul, 2014, at 11:22, Kurt Jaeger wrote: > Log: > multimedia/universal-media-server: new port >=20 > Added: head/multimedia/universal-media-server/Makefile > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > +++ head/multimedia/universal-media-server/Makefile Sat Jul 12 = 15:22:00 2014 (r361621) >=20 > +do-install: > + @${MKDIR} ${STAGEDIR}${UMS_PROFILE_PATH} > + @${CP} ${WRKSRC}/UMS.conf = ${STAGEDIR}${UMS_PROFILE_PATH}/UMS.conf.sample > + @${CP} ${WRKSRC}/WEB.conf = ${STAGEDIR}${UMS_PROFILE_PATH}/WEB.conf.sample You create UMS.conf.sample and WEB.conf.sample here with cp... > Added: head/multimedia/universal-media-server/pkg-plist > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > +++ head/multimedia/universal-media-server/pkg-plist Sat Jul 12 = 15:22:00 2014 (r361621) > @@ -0,0 +1,150 @@ >=20 > +@exec mkdir -p %%UMS_PROFILE_PATH%% > +%%UMS_PROFILE_PATH%%/UMS.conf.sample > +%%UMS_PROFILE_PATH%%/WEB.conf.sample > +@dirrmtry %%UMS_PROFILE_PATH%% But they=92re not listed with @sample. This means you=92ll have stale = items in ${STAGEDIR}, and stale items in ${UMS_PROFILE_PATH} on = deinstallation. And it should work without the =93@exec mkdir=94, I = think? You may have wanted: do-install: ${MV} ${WRKSRC}/UMS.conf ${STAGEDIR... pkg-plist: @sample %%UMS_PROFILE_PATH%%/UMS.conf.sample @sample %%UMS_PROFILE_PATH%%/WEB.conf.sample @dirrmtry %%UMS_PROFILE_PATH%% # Adam --=20 Adam Weinberger adamw@adamw.org http://www.adamw.org