svn commit: r551327 - head/x11/gdm

Mateusz Piotrowski 0mp at FreeBSD.org
Sat Oct 3 16:12:50 UTC 2020


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>


More information about the svn-ports-all mailing list