From owner-svn-ports-all@FreeBSD.ORG Sat Sep 20 18:09:49 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 023377C0; Sat, 20 Sep 2014 18:09:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D5F19866; Sat, 20 Sep 2014 18:09:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8KI9mGI034704; Sat, 20 Sep 2014 18:09:48 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8KI9lrm034700; Sat, 20 Sep 2014 18:09:47 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201409201809.s8KI9lrm034700@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Sat, 20 Sep 2014 18:09:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r368671 - in head/math/ggobi: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Sep 2014 18:09:49 -0000 Author: pawel Date: Sat Sep 20 18:09:47 2014 New Revision: 368671 URL: http://svnweb.freebsd.org/changeset/ports/368671 QAT: https://qat.redports.org/buildarchive/r368671/ Log: - Update to version 2.1.11 - Add LICENSE, pkg-message about ggobirc configuration - Drop usage of stale USE_AUTOTOOLS - Strip binaries PR: ports/193616 Submitted by: maintainer Added: head/math/ggobi/files/ head/math/ggobi/files/pkg-message.in (contents, props changed) Modified: head/math/ggobi/Makefile head/math/ggobi/distinfo head/math/ggobi/pkg-plist Modified: head/math/ggobi/Makefile ============================================================================== --- head/math/ggobi/Makefile Sat Sep 20 17:53:26 2014 (r368670) +++ head/math/ggobi/Makefile Sat Sep 20 18:09:47 2014 (r368671) @@ -2,41 +2,31 @@ # $FreeBSD$ PORTNAME= ggobi -PORTVERSION= 2.1.9 -PORTREVISION= 3 +PORTVERSION= 2.1.11 CATEGORIES= math graphics MASTER_SITES= http://www.ggobi.org/downloads/ MAINTAINER= rhurlin@gwdg.de COMMENT= Data visualization system -USES= libtool pathfix pkgconfig tar:bzip2 +LICENSE= EPL + +LIB_DEPENDS= libltdl.so:${PORTSDIR}/devel/libltdl + +USES= pkgconfig tar:bzip2 libtool pathfix desktop-file-utils USE_GNOME= gtk20 libxml2 USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-all-plugins +SUB_FILES= pkg-message + ALL_TARGET= all ggobirc +INSTALL_TARGET= install-strip -post-patch: - @${REINPLACE_CMD} -e 's|ND_coord_i|ND_coord|' \ - ${WRKSRC}/plugins/GraphLayout/graphviz.c - @${REINPLACE_CMD} '/ltdl/d' ${WRKSRC}/src/plugin.h - @${REINPLACE_CMD} -e 's|#line 0|#line 1|' \ - ${WRKSRC}/src/ggobi-data.c \ - ${WRKSRC}/src/ggobi-renderer-cairo.c \ - ${WRKSRC}/src/ggobi-renderer-factory.c \ - ${WRKSRC}/src/ggobi-renderer.c - -post-configure: -# build gets irritated by the presence of an external graphviz version - @${REINPLACE_CMD} -e 's|#define HAVE_LIBGVC 1|/* #define HAVE_LIBGVC 1 */|' \ - ${WRKSRC}/plugins/GraphLayout/config.h - @${REINPLACE_CMD} -e 's|LIBGVC_CFLAGS = -I${LOCALBASE}/include/graphviz|LIBGVC_CFLAGS =|' \ - ${WRKSRC}/plugins/GraphLayout/Makefile - @${REINPLACE_CMD} -e 's|LIBGVC_LIBS = -L${LOCALBASE}/lib/graphviz -lgvc -lgraph -lcdt|LIBGVC_LIBS =|' \ - ${WRKSRC}/plugins/GraphLayout/Makefile +post-build: + @${REINPLACE_CMD} -e 's|plugin.la|plugin.so|g' ${WRKSRC}/ggobirc post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/etc/xdg/ggobi Modified: head/math/ggobi/distinfo ============================================================================== --- head/math/ggobi/distinfo Sat Sep 20 17:53:26 2014 (r368670) +++ head/math/ggobi/distinfo Sat Sep 20 18:09:47 2014 (r368671) @@ -1,2 +1,2 @@ -SHA256 (ggobi-2.1.9.tar.bz2) = 9f47ccfdbae7ae22c0096e9a171a523505e031f68dfaf705799cb87d42d73dcc -SIZE (ggobi-2.1.9.tar.bz2) = 2778042 +SHA256 (ggobi-2.1.11.tar.bz2) = 2c4ddc3ab71877ba184523e47b0637526e6f3701bd9afb6472e6dfc25646aed7 +SIZE (ggobi-2.1.11.tar.bz2) = 2787709 Added: head/math/ggobi/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/ggobi/files/pkg-message.in Sat Sep 20 18:09:47 2014 (r368671) @@ -0,0 +1,8 @@ +=============================================================================== + +If GGobi does not find its plugin files, start with a copy of + +%%PREFIX%%/etc/xdc/ggobi/ggobirc.sample + +=============================================================================== + Modified: head/math/ggobi/pkg-plist ============================================================================== --- head/math/ggobi/pkg-plist Sat Sep 20 17:53:26 2014 (r368670) +++ head/math/ggobi/pkg-plist Sat Sep 20 18:09:47 2014 (r368671) @@ -1,4 +1,5 @@ bin/ggobi +@sample etc/xdg/ggobi/ggobirc.sample include/ggobi/GGStructSizes.c include/ggobi/GGobiAPI.h include/ggobi/GGobiApp.h @@ -50,6 +51,8 @@ lib/libggobi.so.0 lib/libggobi.so.0.0.0 libdata/pkgconfig/ggobi.pc share/applications/ggobi.desktop +%%PORTDOCS%%%%DOCSDIR%%/XML.pdf +%%PORTDOCS%%%%DOCSDIR%%/manual.pdf %%DATADIR%%/data/Shipman.csv %%DATADIR%%/data/Shipman.xml %%DATADIR%%/data/adhoc.xml @@ -114,22 +117,16 @@ share/applications/ggobi.desktop %%DATADIR%%/plugins/ggvis/plugin.so.0.0.0 %%DATADIR%%/share/colorschemes.xml share/pixmaps/ggobi.png -@dirrm %%DATADIR%%/share -@dirrm %%DATADIR%%/plugins/ggvis -@dirrm %%DATADIR%%/plugins/VarCloud -@dirrm %%DATADIR%%/plugins/GraphLayout -@dirrm %%DATADIR%%/plugins/GraphAction -@dirrm %%DATADIR%%/plugins/DescribeDisplay +@dirrm etc/xdg/ggobi +@dirrm include/ggobi +%%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrm %%DATADIR%%/data @dirrm %%DATADIR%%/plugins/DataViewer +@dirrm %%DATADIR%%/plugins/DescribeDisplay +@dirrm %%DATADIR%%/plugins/GraphAction +@dirrm %%DATADIR%%/plugins/GraphLayout +@dirrm %%DATADIR%%/plugins/VarCloud +@dirrm %%DATADIR%%/plugins/ggvis @dirrm %%DATADIR%%/plugins -@dirrm %%DATADIR%%/data +@dirrm %%DATADIR%%/share @dirrm %%DATADIR%% -@dirrm include/ggobi -@unexec if cmp -s %D/etc/xdg/ggobi/ggobirc.sample %D/etc/xdg/ggobi/ggobirc; then rm -f %D/etc/xdg/ggobi/ggobirc; fi -etc/xdg/ggobi/ggobirc.sample -@exec if [ ! -f %B/ggobirc ]; then cp -p %D/%F %B/ggobirc; fi -%%DOCSDIR%%/XML.pdf -%%DOCSDIR%%/manual.pdf -@dirrm %%DOCSDIR%% -@dirrmtry etc/xdg/ggobi -@dirrmtry etc/xdg