From owner-svn-ports-all@FreeBSD.ORG  Wed Aug  7 22:31:49 2013
Return-Path: <owner-svn-ports-all@FreeBSD.ORG>
Delivered-To: svn-ports-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTP id C5FD1D2E;
 Wed,  7 Aug 2013 22:31:49 +0000 (UTC) (envelope-from wg@FreeBSD.org)
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))
 (No client certificate requested)
 by mx1.freebsd.org (Postfix) with ESMTPS id A3FBA2F03;
 Wed,  7 Aug 2013 22:31:49 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r77MVn49031525;
 Wed, 7 Aug 2013 22:31:49 GMT (envelope-from wg@svn.freebsd.org)
Received: (from wg@localhost)
 by svn.freebsd.org (8.14.7/8.14.5/Submit) id r77MVmLk031519;
 Wed, 7 Aug 2013 22:31:48 GMT (envelope-from wg@svn.freebsd.org)
Message-Id: <201308072231.r77MVmLk031519@svn.freebsd.org>
From: William Grzybowski <wg@FreeBSD.org>
Date: Wed, 7 Aug 2013 22:31:48 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r324367 - in head/math: . gkmap
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.14
Precedence: list
List-Id: SVN commit messages for the ports tree <svn-ports-all.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/options/svn-ports-all>,
 <mailto:svn-ports-all-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/svn-ports-all>
List-Post: <mailto:svn-ports-all@freebsd.org>
List-Help: <mailto:svn-ports-all-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/svn-ports-all>,
 <mailto:svn-ports-all-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 07 Aug 2013 22:31:49 -0000

Author: wg
Date: Wed Aug  7 22:31:48 2013
New Revision: 324367
URL: http://svnweb.freebsd.org/changeset/ports/324367

Log:
  math/gkmap: Simplification of Boolean Functions using Karnaugh Map
  
  GKmap is a free K-Map disclosure software, which is developed to solve
  the Digital Electronics design problems. Along with design it also helps
  in analysis of information flow in the digital circuits.
  
  WWW: http://sourceforge.net/projects/gkmap/
  
  PR:		ports/180981
  Submitted by:	Javad Kouhi <javad.kouhi gmail.com>

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

Modified: head/math/Makefile
==============================================================================
--- head/math/Makefile	Wed Aug  7 22:22:17 2013	(r324366)
+++ head/math/Makefile	Wed Aug  7 22:31:48 2013	(r324367)
@@ -141,6 +141,7 @@
     SUBDIR += ggobi
     SUBDIR += giacxcas
     SUBDIR += givaro
+    SUBDIR += gkmap
     SUBDIR += glgraph
     SUBDIR += glm
     SUBDIR += glpk

Added: head/math/gkmap/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/gkmap/Makefile	Wed Aug  7 22:31:48 2013	(r324367)
@@ -0,0 +1,18 @@
+# Created by: Javad Kouhi <javad.kouhi@gmail.com>
+# $FreeBSD$
+
+PORTNAME=	gkmap
+PORTVERSION=	0.2
+CATEGORIES=	math
+MASTER_SITES=	SF/gkmap/gkmap/gkmap-${PORTVERSION}/
+
+MAINTAINER=	javad.kouhi@gmail.com
+COMMENT=	Simplification of Boolean Functions using Karnaugh Map
+
+LICENSE=	GPLv2
+
+GNU_CONFIGURE=	yes
+
+USE_GNOME=	gtk20 libglade2 libxml2
+
+.include <bsd.port.mk>

Added: head/math/gkmap/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/gkmap/distinfo	Wed Aug  7 22:31:48 2013	(r324367)
@@ -0,0 +1,2 @@
+SHA256 (gkmap-0.2.tar.gz) = 089782871f5b499dd1799f9691a0b227b47f6cef383529c9562b5a16ce67156b
+SIZE (gkmap-0.2.tar.gz) = 337242

Added: head/math/gkmap/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/gkmap/pkg-descr	Wed Aug  7 22:31:48 2013	(r324367)
@@ -0,0 +1,5 @@
+GKmap is a free K-Map disclosure software, which is developed to solve
+the Digital Electronics design problems. Along with design it also helps
+in analysis of information flow in the digital circuits.
+
+WWW: http://sourceforge.net/projects/gkmap/

Added: head/math/gkmap/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/gkmap/pkg-plist	Wed Aug  7 22:31:48 2013	(r324367)
@@ -0,0 +1,12 @@
+bin/gkmap
+share/doc/gkmap/AUTHORS
+share/doc/gkmap/COPYING
+share/doc/gkmap/ChangeLog
+share/doc/gkmap/INSTALL
+share/doc/gkmap/NEWS
+share/doc/gkmap/README
+share/gkmap/pixmaps/kmap.png
+share/gkmap/pixmaps/rc.png
+@dirrm share/gkmap/pixmaps
+@dirrm share/gkmap
+@dirrm share/doc/gkmap