svn commit: r393730 - in head/x11-toolkits/vte3: . files

Koop Mast kwm at FreeBSD.org
Sat Aug 8 14:11:04 UTC 2015


Author: kwm
Date: Sat Aug  8 14:11:03 2015
New Revision: 393730
URL: https://svnweb.freebsd.org/changeset/ports/393730

Log:
  * Remove 8.x patch.
  * Make OSVERSION conditionals check OPSYS == FreeBSD. And add check for
    OPSYS == DragonFly, since they don't have zlib.pc in there base [1]
  * Remove old reinplace that didn't apply anymore. And the thing it was supposed
    to handle is done elsewhere in the Makefile.
  
  Reported by:	marino@ [1]
  Tested by:	marino@

Deleted:
  head/x11-toolkits/vte3/files/extra-patch-gnome-pty-helper_gnome-utmp.c
Modified:
  head/x11-toolkits/vte3/Makefile

Modified: head/x11-toolkits/vte3/Makefile
==============================================================================
--- head/x11-toolkits/vte3/Makefile	Sat Aug  8 13:56:32 2015	(r393729)
+++ head/x11-toolkits/vte3/Makefile	Sat Aug  8 14:11:03 2015	(r393730)
@@ -48,12 +48,8 @@ PLIST_SUB=	VERSION=2.91
 
 .include <bsd.port.options.mk>
 
-.if ${OSVERSION} < 900007
-EXTRA_PATCHES+=		${FILESDIR}/extra-patch-gnome-pty-helper_gnome-utmp.c
-.endif
-
-.if ${OSVERSION} < 1000000
-CFLAGS+=	-lz
+.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 || ${OPSYS} == DragonFly
+LIBS+=	-lz
 .endif
 
 post-patch:
@@ -62,7 +58,7 @@ post-patch:
 		${WRKSRC}/src/Makefile.in
 .endif
 # zlib.pc only is available on 10.1-R and newer.
-.if ${OSVERSION} < 1000000
+.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 || ${OPSYS} == DragonFly
 	@${REINPLACE_CMD} -e 's|gio-unix-2.0 zlib|gio-unix-2.0|g' \
 		${WRKSRC}/configure
 .endif
@@ -74,8 +70,6 @@ post-patch:
 .endif
 	@${REINPLACE_CMD} -e 's|(AM_MAKEFLAGS) install-exec-hook|(AM_MAKEFLAGS)|g' \
 		${WRKSRC}/gnome-pty-helper/Makefile.in
-	@${REINPLACE_CMD} -e 's|zlib"|"|g' \
-		${WRKSRC}/configure
 
 .include <bsd.port.mk>
 


More information about the svn-ports-all mailing list