Date: Sat, 3 Oct 2020 16:12:49 +0000 (UTC) From: Mateusz Piotrowski <0mp@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r551327 - head/x11/gdm Message-ID: <202010031612.093GCnlJ039218@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: 0mp Date: Sat Oct 3 16:12:49 2020 New Revision: 551327 URL: https://svnweb.freebsd.org/changeset/ports/551327 Log: x11/gdm: Fix pkg-message pkg-message does not contain %%PREFIX%% anymore, so a sed(1) call is not necessary. In addition to that, passing pkg-message though fmt(1) was breaking the UCL inside causing pkg-message to not be displayed at all. Approved by: portmgr blanket MFH: 2020Q4 Modified: head/x11/gdm/Makefile Modified: head/x11/gdm/Makefile ============================================================================== --- head/x11/gdm/Makefile Sat Oct 3 16:07:35 2020 (r551326) +++ head/x11/gdm/Makefile Sat Oct 3 16:12:49 2020 (r551327) @@ -3,7 +3,7 @@ PORTNAME= gdm PORTVERSION= 3.28.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11 gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome @@ -92,7 +92,6 @@ SUB_FILES+= gdm-launch-environment \ locale.conf GDMDIR?= ${PREFIX}/etc/gdm -PKGMESSAGE= ${WRKDIR}/pkg-message GNOME_LOCALSTATEDIR= /var @@ -168,8 +167,5 @@ post-install: @${RM} ${STAGEDIR}${PREFIX}/lib/udev/rules.d/61-gdm.rules @${RMDIR} ${STAGEDIR}${PREFIX}/lib/udev/rules.d @${RMDIR} ${STAGEDIR}${PREFIX}/lib/udev - - @${SED} -e 's|%%PREFIX%%|${PREFIX}|g' < ${PKGDIR}/pkg-message \ - | /usr/bin/fmt 75 79 > ${PKGMESSAGE} .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010031612.093GCnlJ039218>