Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 20 Nov 2012 22:31:40 +0000 (UTC)
From:      Pawel Pekala <pawel@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r307604 - in head/sysutils: . shmcat
Message-ID:  <201211202231.qAKMVe94005868@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pawel
Date: Tue Nov 20 22:31:40 2012
New Revision: 307604
URL: http://svnweb.freebsd.org/changeset/ports/307604

Log:
  This is a simple tool that dumps System V shared memory segments, files and
  text. It might be useful when you have to debug programs that use System V
  shared memory.
  
  WWW: http://sourceforge.net/projects/shmcat/
  
  PR:		ports/172972
  Submitted by:	Gasol Wu <gasol.wu@gmail.com>
  Feature safe:	yes

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

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Tue Nov 20 22:28:03 2012	(r307603)
+++ head/sysutils/Makefile	Tue Nov 20 22:31:40 2012	(r307604)
@@ -851,6 +851,7 @@
     SUBDIR += sge61
     SUBDIR += sge62
     SUBDIR += shlock
+    SUBDIR += shmcat
     SUBDIR += sievelog
     SUBDIR += skill
     SUBDIR += slack

Added: head/sysutils/shmcat/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/shmcat/Makefile	Tue Nov 20 22:31:40 2012	(r307604)
@@ -0,0 +1,34 @@
+# Created by: Gasol Wu <gasol.wu@gmail.com>
+# $FreeBSD$
+
+PORTNAME=	shmcat
+PORTVERSION=	1.5
+CATEGORIES=	sysutils
+MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
+MASTER_SITE_SUBDIR=	${PORTNAME}
+
+MAINTAINER=	gasol.wu@gmail.com
+COMMENT=	Simple tool that dumps System V shared memory segments
+
+USE_BZIP2=	yes
+USE_ICONV=	yes
+GNU_CONFIGURE=	yes
+CONFIGURE_ARGS+=--with-libintl-prefix=${LOCALBASE}
+
+OPTIONS_DEFINE=	NLS
+
+MAN1=		shmcat.1 \
+		ftok.1
+
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MNLS}
+MANLANG=	"" de
+USE_GETTEXT=	yes
+PLIST_SUB+=	NLS=""
+.else
+CONFIGURE_ARGS+=--disable-nls
+PLIST_SUB+=	NLS="@comment "
+.endif
+
+.include <bsd.port.mk>

Added: head/sysutils/shmcat/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/shmcat/distinfo	Tue Nov 20 22:31:40 2012	(r307604)
@@ -0,0 +1,2 @@
+SHA256 (shmcat-1.5.tar.bz2) = 1aa15c67719e5a8b745af6877d2dc79c89b9b0987504703732bc04b2291d1f65
+SIZE (shmcat-1.5.tar.bz2) = 300975

Added: head/sysutils/shmcat/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/shmcat/pkg-descr	Tue Nov 20 22:31:40 2012	(r307604)
@@ -0,0 +1,5 @@
+This is a simple tool that dumps System V shared memory segments, files and
+text. It might be useful when you have to debug programs that use System V
+shared memory.
+
+WWW: http://sourceforge.net/projects/shmcat/

Added: head/sysutils/shmcat/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/shmcat/pkg-plist	Tue Nov 20 22:31:40 2012	(r307604)
@@ -0,0 +1,12 @@
+@comment $FreeBSD$
+bin/ftok
+bin/shmcat
+%%NLS%%share/locale/de/LC_MESSAGES/shmcat.mo
+%%NLS%%share/locale/en@boldquot/LC_MESSAGES/shmcat.mo
+%%NLS%%share/locale/en@quot/LC_MESSAGES/shmcat.mo
+%%NLS%%@dirrmtry man/de
+%%NLS%%@dirrmtry man/de/man1
+%%NLS%%@dirrmtry share/locale/en@boldquot
+%%NLS%%@dirrmtry share/locale/en@boldquot/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/en@quot
+%%NLS%%@dirrmtry share/locale/en@quot/LC_MESSAGES



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211202231.qAKMVe94005868>