Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 15 Dec 2013 23:46:54 +0000 (UTC)
From:      Koop Mast <kwm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r336598 - in head/devel/regexxer: . files
Message-ID:  <201312152346.rBFNksFs046594@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kwm
Date: Sun Dec 15 23:46:53 2013
New Revision: 336598
URL: http://svnweb.freebsd.org/changeset/ports/336598

Log:
  Update to 0.10.
  
  Adopt.

Added:
  head/devel/regexxer/files/
  head/devel/regexxer/files/patch-Makefile.in   (contents, props changed)
  head/devel/regexxer/files/patch-src_fileshared.h   (contents, props changed)
  head/devel/regexxer/files/patch-src_globalstrings.h   (contents, props changed)
  head/devel/regexxer/files/patch-src_translation.h   (contents, props changed)
Modified:
  head/devel/regexxer/Makefile
  head/devel/regexxer/distinfo
  head/devel/regexxer/pkg-plist

Modified: head/devel/regexxer/Makefile
==============================================================================
--- head/devel/regexxer/Makefile	Sun Dec 15 23:45:39 2013	(r336597)
+++ head/devel/regexxer/Makefile	Sun Dec 15 23:46:53 2013	(r336598)
@@ -1,35 +1,22 @@
 # Created by: Rui Lopes <rui@ruilopes.com>
 # $FreeBSD$
 
-PORTNAME=		regexxer
-PORTVERSION=		0.9
-PORTREVISION=	10
-CATEGORIES=		devel textproc gnome
-MASTER_SITES=		SF
+PORTNAME=	regexxer
+PORTVERSION=	0.10
+CATEGORIES=	devel textproc gnome
+MASTER_SITES=	GNOME
+
+MAINTAINER=	kwm@FreeBSD.org
+COMMENT=	Interactive tool for performing search and replace operations
+
+USES=		gettext gmake pathfix pkgconfig
+USE_XZ=		yes
+GNU_CONFIGURE=	yes
+USE_GNOME=	gnomeprefix intltool intlhack gtkmm30 gtksourceviewmm3
+CPPFLAGS+=	-I${LOCALBASE}/include
+LDFLAGS+=	-L${LOCALBASE}/lib
+INSTALLS_ICONS=	yes
 
-MAINTAINER=		ports@FreeBSD.org
-COMMENT=		An interactive tool for performing search and replace operations
-
-LIB_DEPENDS=		gconfmm-2.6:${PORTSDIR}/devel/gconfmm26 \
-			glademm-2.4:${PORTSDIR}/devel/libglademm24 \
-			pcre.3:${PORTSDIR}/devel/pcre
-
-GNU_CONFIGURE=		yes
-USES=			pathfix gettext gmake pkgconfig
-USE_GNOME=		gnomeprefix intltool intlhack
-CPPFLAGS+=		-I${LOCALBASE}/include
-LDFLAGS+=		-L${LOCALBASE}/lib
-
-GCONF_SCHEMAS=		regexxer.schemas
-INSTALLS_ICONS=		regexxer.png
-
-# This target is only meant to be used by the port maintainer.
-NO_STAGE=	yes
-x-generate-plist:
-	(${PORTSDIR}/Tools/scripts/plist -d -m ${MTREE_FILE} ${PREFIX}|${GREP} regexxer) > temp-pkg-plist
-
-post-patch:
-	@${REINPLACE_CMD} -e 's|glib/.*\.h>|glib.h>|g' \
-		${WRKSRC}/src/globalstrings.h ${WRKSRC}/src/translation.h
+GLIB_SCHEMAS=	org.regexxer.gschema.xml
 
 .include <bsd.port.mk>

Modified: head/devel/regexxer/distinfo
==============================================================================
--- head/devel/regexxer/distinfo	Sun Dec 15 23:45:39 2013	(r336597)
+++ head/devel/regexxer/distinfo	Sun Dec 15 23:46:53 2013	(r336598)
@@ -1,2 +1,2 @@
-SHA256 (regexxer-0.9.tar.gz) = ec6630745e4a87eb57aa498b5d36f014efb91a18293cc7acd9a5b506b6238479
-SIZE (regexxer-0.9.tar.gz) = 299095
+SHA256 (regexxer-0.10.tar.xz) = 2a7832541a0306b3d4eb63a1cf8978d7bbfc7927e9304473fe801d71fd99736c
+SIZE (regexxer-0.10.tar.xz) = 251544

Added: head/devel/regexxer/files/patch-Makefile.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/regexxer/files/patch-Makefile.in	Sun Dec 15 23:46:53 2013	(r336598)
@@ -0,0 +1,10 @@
+--- Makefile.in.orig	2013-12-16 00:13:47.000000000 +0100
++++ Makefile.in	2013-12-16 00:14:26.000000000 +0100
+@@ -1092,7 +1092,6 @@
+ @INTLTOOL_XML_NOMERGE_RULE@
+ 
+ install-data-hook: install-update-icon-cache
+-	$(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir)
+ #$(gsettingsupdateschemacache) $(gsettingsschemadir)
+ 
+ uninstall-hook: uninstall-update-icon-cache

Added: head/devel/regexxer/files/patch-src_fileshared.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/regexxer/files/patch-src_fileshared.h	Sun Dec 15 23:46:53 2013	(r336598)
@@ -0,0 +1,11 @@
+--- src/fileshared.h.orig	2011-10-06 14:50:48.000000000 +0200
++++ src/fileshared.h	2013-12-16 00:09:23.000000000 +0100
+@@ -23,7 +23,7 @@
+ 
+ #include "sharedptr.h"
+ 
+-#include <gtkmm/textbuffer.h>
++#include <gtkmm.h>
+ #include <functional>
+ #include <utility>
+ #include <vector>

Added: head/devel/regexxer/files/patch-src_globalstrings.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/regexxer/files/patch-src_globalstrings.h	Sun Dec 15 23:46:53 2013	(r336598)
@@ -0,0 +1,11 @@
+--- src/globalstrings.h.orig	2013-12-16 00:04:58.000000000 +0100
++++ src/globalstrings.h	2013-12-16 00:05:20.000000000 +0100
+@@ -21,7 +21,7 @@
+ #ifndef REGEXXER_GLOBALSTRINGS_H_INCLUDED
+ #define REGEXXER_GLOBALSTRINGS_H_INCLUDED
+ 
+-#include <glib/gutils.h>  /* for G_DIR_SEPARATOR_S */
++#include <glib.h>  /* for G_DIR_SEPARATOR_S */
+ 
+ namespace Regexxer
+ {

Added: head/devel/regexxer/files/patch-src_translation.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/regexxer/files/patch-src_translation.h	Sun Dec 15 23:46:53 2013	(r336598)
@@ -0,0 +1,11 @@
+--- src/translation.h.orig	2013-12-16 00:04:52.000000000 +0100
++++ src/translation.h	2013-12-16 00:05:10.000000000 +0100
+@@ -21,7 +21,7 @@
+ #ifndef REGEXXER_TRANSLATION_H_INCLUDED
+ #define REGEXXER_TRANSLATION_H_INCLUDED
+ 
+-#include <glib/gmacros.h>
++#include <glib.h>
+ #include <glibmm/ustring.h>
+ 
+ #ifndef gettext_noop

Modified: head/devel/regexxer/pkg-plist
==============================================================================
--- head/devel/regexxer/pkg-plist	Sun Dec 15 23:45:39 2013	(r336597)
+++ head/devel/regexxer/pkg-plist	Sun Dec 15 23:46:53 2013	(r336598)
@@ -1,41 +1,54 @@
 bin/regexxer
 share/applications/regexxer.desktop
-share/regexxer/mainwindow.glade
-share/regexxer/prefdialog.glade
 share/icons/hicolor/48x48/apps/regexxer.png
 share/locale/ar/LC_MESSAGES/regexxer.mo
 share/locale/bg/LC_MESSAGES/regexxer.mo
 share/locale/ca/LC_MESSAGES/regexxer.mo
 share/locale/cs/LC_MESSAGES/regexxer.mo
+share/locale/da/LC_MESSAGES/regexxer.mo
 share/locale/de/LC_MESSAGES/regexxer.mo
 share/locale/dz/LC_MESSAGES/regexxer.mo
+share/locale/el/LC_MESSAGES/regexxer.mo
 share/locale/en_CA/LC_MESSAGES/regexxer.mo
 share/locale/en_GB/LC_MESSAGES/regexxer.mo
 share/locale/es/LC_MESSAGES/regexxer.mo
 share/locale/eu/LC_MESSAGES/regexxer.mo
 share/locale/fi/LC_MESSAGES/regexxer.mo
 share/locale/fr/LC_MESSAGES/regexxer.mo
+share/locale/gl/LC_MESSAGES/regexxer.mo
+share/locale/gu/LC_MESSAGES/regexxer.mo
 share/locale/hu/LC_MESSAGES/regexxer.mo
 share/locale/it/LC_MESSAGES/regexxer.mo
 share/locale/ja/LC_MESSAGES/regexxer.mo
+share/locale/nb/LC_MESSAGES/regexxer.mo
 share/locale/ne/LC_MESSAGES/regexxer.mo
 share/locale/nl/LC_MESSAGES/regexxer.mo
+share/locale/oc/LC_MESSAGES/regexxer.mo
 share/locale/pa/LC_MESSAGES/regexxer.mo
 share/locale/pl/LC_MESSAGES/regexxer.mo
 share/locale/pt/LC_MESSAGES/regexxer.mo
 share/locale/pt_BR/LC_MESSAGES/regexxer.mo
+share/locale/ru/LC_MESSAGES/regexxer.mo
 share/locale/rw/LC_MESSAGES/regexxer.mo
+share/locale/sk/LC_MESSAGES/regexxer.mo
 share/locale/sl/LC_MESSAGES/regexxer.mo
 share/locale/sr/LC_MESSAGES/regexxer.mo
-share/locale/sr@Latn/LC_MESSAGES/regexxer.mo
+share/locale/sr@latin/LC_MESSAGES/regexxer.mo
 share/locale/sv/LC_MESSAGES/regexxer.mo
+share/locale/ta/LC_MESSAGES/regexxer.mo
 share/locale/uk/LC_MESSAGES/regexxer.mo
 share/locale/vi/LC_MESSAGES/regexxer.mo
 share/locale/zh_CN/LC_MESSAGES/regexxer.mo
 share/locale/zh_HK/LC_MESSAGES/regexxer.mo
 share/locale/zh_TW/LC_MESSAGES/regexxer.mo
+share/regexxer/mainwindow.ui
+share/regexxer/prefdialog.ui
 @dirrm share/regexxer
+@dirrmtry share/locale/sr@latin/LC_MESSAGES
+@dirrmtry share/locale/sr@latin
 @dirrmtry share/locale/rw/LC_MESSAGES
 @dirrmtry share/locale/rw
+@dirrmtry share/locale/or/LC_MESSAGES
+@dirrmtry share/locale/or
 @dirrmtry share/locale/dz/LC_MESSAGES
 @dirrmtry share/locale/dz



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