svn commit: r439346 - in head/graphics: . gcolor3

Tobias Kortkamp tobik at FreeBSD.org
Mon Apr 24 21:08:52 UTC 2017


Author: tobik
Date: Mon Apr 24 21:08:50 2017
New Revision: 439346
URL: https://svnweb.freebsd.org/changeset/ports/439346

Log:
  New port: graphics/gcolor3
  
  Gcolor3 enables you to pick the color from any pixel on your screen.
  It also offers a palette, so that you can easily mix and match a
  couple of colors together.
  
  When you have found the perfect combination of colors, naturally you
  want to save them.  Gcolor3 allows you to conveniently save and
  retrieve colors.
  
  WWW: https://hjdskes.github.io/projects/gcolor3/
  
  Approved by:	lme (mentor)
  Differential Revision:	https://reviews.freebsd.org/D10481

Added:
  head/graphics/gcolor3/
  head/graphics/gcolor3/Makefile   (contents, props changed)
  head/graphics/gcolor3/distinfo   (contents, props changed)
  head/graphics/gcolor3/pkg-descr   (contents, props changed)
  head/graphics/gcolor3/pkg-plist   (contents, props changed)
Modified:
  head/graphics/Makefile

Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile	Mon Apr 24 20:23:23 2017	(r439345)
+++ head/graphics/Makefile	Mon Apr 24 21:08:50 2017	(r439346)
@@ -217,6 +217,7 @@
     SUBDIR += gbm
     SUBDIR += gcolor
     SUBDIR += gcolor2
+    SUBDIR += gcolor3
     SUBDIR += gd
     SUBDIR += gdal
     SUBDIR += gdchart

Added: head/graphics/gcolor3/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/gcolor3/Makefile	Mon Apr 24 21:08:50 2017	(r439346)
@@ -0,0 +1,27 @@
+# $FreeBSD$
+
+PORTNAME=	gcolor3
+PORTVERSION=	2.2
+DISTVERSIONPREFIX=	v
+CATEGORIES=	graphics
+
+MAINTAINER=	tobik at FreeBSD.org
+COMMENT=	Simple color chooser
+
+LICENSE=	GPLv2+
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		autoreconf gmake gettext libtool pkgconfig
+USE_GNOME=	cairo gdkpixbuf2 gtk30 intltool
+GNU_CONFIGURE=	yes
+INSTALLS_ICONS=	yes
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	Hjdskes
+
+OPTIONS_DEFINE=	NLS
+OPTIONS_SUB=	yes
+
+NLS_CONFIGURE_ENABLE=	nls
+
+.include <bsd.port.mk>

Added: head/graphics/gcolor3/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/gcolor3/distinfo	Mon Apr 24 21:08:50 2017	(r439346)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1493043434
+SHA256 (Hjdskes-gcolor3-v2.2_GH0.tar.gz) = a3f67108ef7524b424b774b4b68332e45371703f61d659ce7ca1da47c7fb5590
+SIZE (Hjdskes-gcolor3-v2.2_GH0.tar.gz) = 37947

Added: head/graphics/gcolor3/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/gcolor3/pkg-descr	Mon Apr 24 21:08:50 2017	(r439346)
@@ -0,0 +1,9 @@
+Gcolor3 enables you to pick the color from any pixel on your screen.
+It also offers a palette, so that you can easily mix and match a
+couple of colors together.
+
+When you have found the perfect combination of colors, naturally you
+want to save them.  Gcolor3 allows you to conveniently save and
+retrieve colors.
+
+WWW: https://hjdskes.github.io/projects/gcolor3/

Added: head/graphics/gcolor3/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/gcolor3/pkg-plist	Mon Apr 24 21:08:50 2017	(r439346)
@@ -0,0 +1,11 @@
+bin/gcolor3
+share/appdata/gcolor3.appdata.xml
+share/applications/gcolor3.desktop
+share/icons/hicolor/scalable/apps/gcolor3.svg
+%%NLS%%share/locale/de_DE/LC_MESSAGES/Gcolor3.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/Gcolor3.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/Gcolor3.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/Gcolor3.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/Gcolor3.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/Gcolor3.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/Gcolor3.mo


More information about the svn-ports-head mailing list