svn commit: r512388 - head/devel/flatcc

Yuri Victorovich yuri at FreeBSD.org
Fri Sep 20 06:17:34 UTC 2019


Author: yuri
Date: Fri Sep 20 06:17:33 2019
New Revision: 512388
URL: https://svnweb.freebsd.org/changeset/ports/512388

Log:
  devel/flatcc: Fix plist when built with debug info

Modified:
  head/devel/flatcc/Makefile
  head/devel/flatcc/pkg-plist

Modified: head/devel/flatcc/Makefile
==============================================================================
--- head/devel/flatcc/Makefile	Fri Sep 20 05:46:58 2019	(r512387)
+++ head/devel/flatcc/Makefile	Fri Sep 20 06:17:33 2019	(r512388)
@@ -19,6 +19,8 @@ USE_LDCONFIG=	yes
 CMAKE_ON=	BUILD_SHARED_LIBS FLATCC_INSTALL
 CMAKE_OFF=	FLATCC_TEST
 
+PLIST_SUB=	SUFFIX=${WITH_DEBUG:D_d}
+
 do-test:
 	@cd ${BUILD_WRKSRC} && \
 		${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -DFLATCC_TEST:BOOL=ON ${CMAKE_SOURCE_PATH} && \

Modified: head/devel/flatcc/pkg-plist
==============================================================================
--- head/devel/flatcc/pkg-plist	Fri Sep 20 05:46:58 2019	(r512387)
+++ head/devel/flatcc/pkg-plist	Fri Sep 20 06:17:33 2019	(r512388)
@@ -1,4 +1,4 @@
-bin/flatcc
+bin/flatcc%%SUFFIX%%
 include/flatcc/flatcc.h
 include/flatcc/flatcc_accessors.h
 include/flatcc/flatcc_alloc.h
@@ -64,5 +64,5 @@ include/flatcc/support/cdump.h
 include/flatcc/support/elapsed.h
 include/flatcc/support/hexdump.h
 include/flatcc/support/readfile.h
-lib/libflatcc.so
-lib/libflatccrt.so
+lib/libflatcc%%SUFFIX%%.so
+lib/libflatccrt%%SUFFIX%%.so


More information about the svn-ports-all mailing list