Date: Sun, 11 Nov 2018 09:59:28 +0000 (UTC) From: "Carlos J. Puga Medina" <cpm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r484679 - in head/devel: . spread-sheet-widget Message-ID: <201811110959.wAB9xSOB071282@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cpm Date: Sun Nov 11 09:59:28 2018 New Revision: 484679 URL: https://svnweb.freebsd.org/changeset/ports/484679 Log: devel/spread-sheet-widget: Library for Gtk+ which provides a widget for tabular data GNU Spread Sheet Widget is a library for Gtk+ which provides a widget for viewing and manipulating 2 dimensional tabular data in a manner similar to many popular spread sheet programs. The design follows the model-view-controller paradigm and is of complexity O(1) in both time and space. This means that it is efficient and fast even for very large data. Features commonly found in graphical user interfaces such as cut and paste, drag and drop and row/column labelling are also included. WWW: https://www.gnu.org/software/ssw/ Added: head/devel/spread-sheet-widget/ head/devel/spread-sheet-widget/Makefile (contents, props changed) head/devel/spread-sheet-widget/distinfo (contents, props changed) head/devel/spread-sheet-widget/pkg-descr (contents, props changed) head/devel/spread-sheet-widget/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Nov 11 09:54:04 2018 (r484678) +++ head/devel/Makefile Sun Nov 11 09:59:28 2018 (r484679) @@ -6213,6 +6213,7 @@ SUBDIR += spin SUBDIR += spirv-tools SUBDIR += splint + SUBDIR += spread-sheet-widget SUBDIR += srecord SUBDIR += st SUBDIR += stack Added: head/devel/spread-sheet-widget/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/spread-sheet-widget/Makefile Sun Nov 11 09:59:28 2018 (r484679) @@ -0,0 +1,31 @@ +# Created by: Carlos J. Puga Medina <cpm@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= spread-sheet-widget +PORTVERSION= 0.3 +CATEGORIES= devel +MASTER_SITES= GNU_ALPHA +MASTER_SITE_SUBDIR= ssw + +MAINTAINER= cpm@FreeBSD.org +COMMENT= Library for Gtk+ which provides a widget for tabular data + +LICENSE= GPLv3+ +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= gmake gnome libtool makeinfo pkgconfig +USE_GNOME= atk glib20 gtk30 +USE_LDCONFIG= yes +GNU_CONFIGURE= yes +INSTALL_TARGET= install-strip + +PORTDOCS= AUTHORS ChangeLog NEWS README TODO +INFO= spread-sheet-widget + +OPTIONS_DEFINE= DOCS + +post-install-DOCS-on: + (cd ${WRKSRC} && ${COPYTREE_SHARE} \ + "${PORTDOCS}" ${STAGEDIR}${DOCSDIR}) + +.include <bsd.port.mk> Added: head/devel/spread-sheet-widget/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/spread-sheet-widget/distinfo Sun Nov 11 09:59:28 2018 (r484679) @@ -0,0 +1,3 @@ +TIMESTAMP = 1541867942 +SHA256 (spread-sheet-widget-0.3.tar.gz) = 1e2dc2c6fb8f3718188cec635b6601ba453b4bb3683ccc67cddef825a0f723c1 +SIZE (spread-sheet-widget-0.3.tar.gz) = 501469 Added: head/devel/spread-sheet-widget/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/spread-sheet-widget/pkg-descr Sun Nov 11 09:59:28 2018 (r484679) @@ -0,0 +1,12 @@ +GNU Spread Sheet Widget is a library for Gtk+ which provides a widget +for viewing and manipulating 2 dimensional tabular data in a manner +similar to many popular spread sheet programs. + +The design follows the model-view-controller paradigm and is of +complexity O(1) in both time and space. This means that it is efficient +and fast even for very large data. + +Features commonly found in graphical user interfaces such as cut and +paste, drag and drop and row/column labelling are also included. + +WWW: https://www.gnu.org/software/ssw/ Added: head/devel/spread-sheet-widget/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/spread-sheet-widget/pkg-plist Sun Nov 11 09:59:28 2018 (r484679) @@ -0,0 +1,8 @@ +include/ssw-axis-model.h +include/ssw-sheet-axis.h +include/ssw-sheet.h +lib/libspread-sheet-widget.a +lib/libspread-sheet-widget.so +lib/libspread-sheet-widget.so.0 +lib/libspread-sheet-widget.so.0.0.0 +libdata/pkgconfig/spread-sheet-widget.pc
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811110959.wAB9xSOB071282>