svn commit: r551467 - branches/2020Q4/x11/gdm

Mateusz Piotrowski 0mp at FreeBSD.org
Sun Oct 4 23:05:25 UTC 2020


Author: 0mp
Date: Sun Oct  4 23:05:24 2020
New Revision: 551467
URL: https://svnweb.freebsd.org/changeset/ports/551467

Log:
  MFH: r551327
  
  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
  
  Approved by:	ports-secteam (fluffy)

Modified:
  branches/2020Q4/x11/gdm/Makefile
Directory Properties:
  branches/2020Q4/   (props changed)

Modified: branches/2020Q4/x11/gdm/Makefile
==============================================================================
--- branches/2020Q4/x11/gdm/Makefile	Sun Oct  4 21:35:55 2020	(r551466)
+++ branches/2020Q4/x11/gdm/Makefile	Sun Oct  4 23:05:24 2020	(r551467)
@@ -3,7 +3,7 @@
 
 PORTNAME=	gdm
 PORTVERSION=	3.28.4
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	x11 gnome
 MASTER_SITES=	GNOME
 DIST_SUBDIR=	gnome
@@ -93,7 +93,6 @@ SUB_FILES+=	gdm-launch-environment \
 		locale.conf
 
 GDMDIR?=	${PREFIX}/etc/gdm
-PKGMESSAGE=	${WRKDIR}/pkg-message
 
 GNOME_LOCALSTATEDIR=	/var
 
@@ -163,8 +162,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