Date: Sat, 25 Jan 2014 18:52:14 +0000 (UTC) From: Antoine Brodin <antoine@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341075 - in head/graphics/picviz: . files Message-ID: <201401251852.s0PIqEiQ047233@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: antoine Date: Sat Jan 25 18:52:14 2014 New Revision: 341075 URL: http://svnweb.freebsd.org/changeset/ports/341075 QAT: https://qat.redports.org/buildarchive/r341075/ Log: - Add explicit dependency on pkgconf (needed for cairo detection) - Patch a CMakeLists to properly change rpath during install - Add stage support Added: head/graphics/picviz/files/patch-src__bin__CMakeLists.txt (contents, props changed) Modified: head/graphics/picviz/Makefile head/graphics/picviz/pkg-plist Modified: head/graphics/picviz/Makefile ============================================================================== --- head/graphics/picviz/Makefile Sat Jan 25 18:45:18 2014 (r341074) +++ head/graphics/picviz/Makefile Sat Jan 25 18:52:14 2014 (r341075) @@ -3,7 +3,7 @@ PORTNAME= picviz PORTVERSION= 0.4 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics security MASTER_SITES= http://www.wallinfire.net/picviz/attachment/wiki/ReleasesDownload/ DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}?format=raw @@ -11,13 +11,10 @@ DISTFILES= ${PORTNAME}-${PORTVERSION}${E MAINTAINER= ports@timit.nl COMMENT= Parallel coordinates plotter -LIB_DEPENDS= pcre.3:${PORTSDIR}/devel/pcre \ - cairo.2:${PORTSDIR}/graphics/cairo +LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre \ + libcairo.so:${PORTSDIR}/graphics/cairo USE_LDCONFIG= yes -USES= bison cmake +USES= bison cmake pkgconfig -MAN1= pcv.1 - -NO_STAGE= yes .include <bsd.port.mk> Added: head/graphics/picviz/files/patch-src__bin__CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/picviz/files/patch-src__bin__CMakeLists.txt Sat Jan 25 18:52:14 2014 (r341075) @@ -0,0 +1,8 @@ +--- ./src/bin/CMakeLists.txt.orig 2008-10-27 11:39:31.000000000 +0000 ++++ ./src/bin/CMakeLists.txt 2014-01-25 16:50:49.000000000 +0000 +@@ -3,4 +3,4 @@ + add_executable(pcv pcv.c) + target_link_libraries(pcv picviz) + +-INSTALL(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/pcv DESTINATION bin) ++INSTALL(TARGETS pcv DESTINATION bin) Modified: head/graphics/picviz/pkg-plist ============================================================================== --- head/graphics/picviz/pkg-plist Sat Jan 25 18:45:18 2014 (r341074) +++ head/graphics/picviz/pkg-plist Sat Jan 25 18:52:14 2014 (r341075) @@ -29,5 +29,6 @@ lib/picviz/libpicvizoutsvg.so lib/picviz/libpicvizrendebug.so lib/picviz/libpicvizrenheatline.so libdata/pkgconfig/picviz.pc +man/man1/pcv.1.gz @dirrm lib/picviz @dirrm include/picviz
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401251852.s0PIqEiQ047233>