- update to eog-plugin-3.6.1 and remove CONFIGURE_STYLE accordingly

This commit is contained in:
jasper 2012-10-16 08:18:13 +00:00
parent a1b2a01536
commit 9109b0b23b
3 changed files with 4 additions and 27 deletions

View File

@ -1,10 +1,9 @@
# $OpenBSD: Makefile,v 1.39 2012/09/29 07:47:24 ajacoutot Exp $
# $OpenBSD: Makefile,v 1.40 2012/10/16 08:18:13 jasper Exp $
COMMENT= plugins for EOG
GNOME_PROJECT= eog-plugins
GNOME_VERSION= 3.6.0
REVISION= 1
GNOME_VERSION= 3.6.1
CATEGORIES= graphics
@ -42,8 +41,6 @@ LIB_DEPENDS= devel/libgdata \
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= x11/gnome/eog>=${GNOME_VERSION}
AUTOCONF_VERSION= 2.68
CONFIGURE_STYLE= autoconf
# XXX the "postr" plugin needs postr which hasn't been ported yet
CONFIGURE_ARGS+= --enable-python \
--with-plugins=all

View File

@ -1,2 +1,2 @@
SHA256 (gnome/eog-plugins-3.6.0.tar.xz) = ORnxotBYhniRpEJLxaWurpUcLlahQex3z6TrcMwImrA=
SIZE (gnome/eog-plugins-3.6.0.tar.xz) = 330256
SHA256 (gnome/eog-plugins-3.6.1.tar.xz) = AnCuBfbN2cc0cjIzcMR3nxFIx38/iJDIn7hIjPgwUaw=
SIZE (gnome/eog-plugins-3.6.1.tar.xz) = 330580

View File

@ -1,20 +0,0 @@
$OpenBSD: patch-configure_ac,v 1.5 2012/10/03 11:32:20 jasper Exp $
From 5076859fb215d77514c6cde826407960f6a23130 Mon Sep 17 00:00:00 2001
From: Jasper Lievisse Adriaanse <jasper@humppa.nl>
Date: Wed, 03 Oct 2012 11:30:55 +0000
Subject: Use a more portable grep construct.
https://bugzilla.gnome.org/show_bug.cgi?id=685356
--- configure.ac.orig Wed Sep 19 18:36:52 2012
+++ configure.ac Wed Oct 3 12:36:22 2012
@@ -174,7 +174,7 @@ disabled_plugins=
# *******************
check_plugin_defined() {
- if echo "$2" | egrep "\b($1)\b" > /dev/null;
+ if echo "$2" | grep -w "$1" > /dev/null;
then
return 1
else