Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 1 Sep 2020 08:41:23 +0000 (UTC)
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r547246 - in head/x11/tabbed: . files
Message-ID:  <202009010841.0818fNh1048438@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: danfe
Date: Tue Sep  1 08:41:23 2020
New Revision: 547246
URL: https://svnweb.freebsd.org/changeset/ports/547246

Log:
  Convert the patch in the "context diff" format which no longer correctly
  applies by the modern FreeBSD patch(1).  Patch was applied on the FreeBSD
  8.4 and then regenerated with ``make makepatch''.  While here, replace
  hardcoded ``/usr/local'' with ${LOCALBASE} as appropriate, merge in the
  change made with sed(1), and typofix + shorten the COMMENT text.
  
  Reported by:	pkg-fallout

Modified:
  head/x11/tabbed/Makefile
  head/x11/tabbed/files/patch-config.mk

Modified: head/x11/tabbed/Makefile
==============================================================================
--- head/x11/tabbed/Makefile	Tue Sep  1 08:35:06 2020	(r547245)
+++ head/x11/tabbed/Makefile	Tue Sep  1 08:41:23 2020	(r547246)
@@ -7,7 +7,7 @@ CATEGORIES=	x11
 MASTER_SITES=	http://dl.suckless.org/tools/
 
 MAINTAINER=	mp39590@gmail.com
-COMMENT=	Simple generic tabbed fronted to xembed aware applications
+COMMENT=	Tabbed frontend to Xembed-aware applications
 
 LICENSE=	MIT
 
@@ -29,8 +29,6 @@ post-extract:
 	@${ECHO_MSG} "creating config.h from ${TABBED_CONF}"
 	@${CP} ${TABBED_CONF} ${WRKSRC}/config.h
 .endif
-	@${REINPLACE_CMD} 's|-std=c99 -pedantic -Wall -O0|${CFLAGS}|' \
-		${WRKSRC}/config.mk
 
 post-install:
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}

Modified: head/x11/tabbed/files/patch-config.mk
==============================================================================
--- head/x11/tabbed/files/patch-config.mk	Tue Sep  1 08:35:06 2020	(r547245)
+++ head/x11/tabbed/files/patch-config.mk	Tue Sep  1 08:41:23 2020	(r547246)
@@ -1,39 +1,29 @@
-*** config.mk.orig	2014-01-19 21:53:24.000000000 +0400
---- config.mk	2014-01-19 22:40:13.000000000 +0400
-***************
-*** 5,15 ****
-  
-  # paths
-  PREFIX = /usr/local
-! MANPREFIX = ${PREFIX}/share/man
-  
-  # includes and libs
-! INCS = -I. -I/usr/include
-! LIBS = -L/usr/lib -lc -lX11
-  
-  # flags
-  CPPFLAGS = -DVERSION=\"${VERSION}\" -D_BSD_SOURCE
---- 5,15 ----
-  
-  # paths
-  PREFIX = /usr/local
-! MANPREFIX = ${PREFIX}/man
-  
-  # includes and libs
-! INCS = -I. -I/usr/local/include
-! LIBS = -L/usr/local/lib -lc -lX11
-  
-  # flags
-  CPPFLAGS = -DVERSION=\"${VERSION}\" -D_BSD_SOURCE
-***************
-*** 21,25 ****
-  #LDFLAGS = ${LIBS}
-  
-  # compiler and linker
-! CC = cc
-  
---- 21,25 ----
-  #LDFLAGS = ${LIBS}
-  
-  # compiler and linker
-! CC?= cc
+--- config.mk.orig	2014-01-21 18:22:03 UTC
++++ config.mk
+@@ -5,15 +5,15 @@ VERSION = 0.6
+ 
+ # paths
+ PREFIX = /usr/local
+-MANPREFIX = ${PREFIX}/share/man
++MANPREFIX = ${PREFIX}/man
+ 
+ # includes and libs
+-INCS = -I. -I/usr/include
+-LIBS = -L/usr/lib -lc -lX11
++INCS = -I. -I${LOCALBASE}/include
++LIBS = -L${LOCALBASE}/lib -lX11
+ 
+ # flags
+ CPPFLAGS = -DVERSION=\"${VERSION}\" -D_BSD_SOURCE
+-CFLAGS = -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
++CFLAGS += -Wall ${INCS} ${CPPFLAGS}
+ LDFLAGS = -s ${LIBS}
+ 
+ # Solaris
+@@ -21,5 +21,5 @@ LDFLAGS = -s ${LIBS}
+ #LDFLAGS = ${LIBS}
+ 
+ # compiler and linker
+-CC = cc
++CC?= cc
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009010841.0818fNh1048438>