From patchwork Fri May 25 12:47:31 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Dawson X-Patchwork-Id: 161334 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 76423B6F6E for ; Fri, 25 May 2012 22:47:46 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 129AE31A7C; Fri, 25 May 2012 12:47:44 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2LFaWwHlEURh; Fri, 25 May 2012 12:47:42 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 4728131A48; Fri, 25 May 2012 12:47:42 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 2D5E08F753 for ; Fri, 25 May 2012 12:47:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 1D4FD8F0A1 for ; Fri, 25 May 2012 12:47:40 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id erXkaWrrsRia for ; Fri, 25 May 2012 12:47:38 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-ee0-f43.google.com (mail-ee0-f43.google.com [74.125.83.43]) by whitealder.osuosl.org (Postfix) with ESMTPS id 0E6998AA67 for ; Fri, 25 May 2012 12:47:37 +0000 (UTC) Received: by eeke50 with SMTP id e50so360844eek.16 for ; Fri, 25 May 2012 05:47:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:x-mailer; bh=DClhLr9JFAmTXg8XvquE7Zzfx33kcwHF355K+Jp/Kr8=; b=dpXK346KMBFv1c5IgIFmfkhCsyR0yQZvA1Jxg+kIaB/9KxR2uY54I1sEAZzsI1lPUC Tb453QJN67ax1rnKvv47NST18Xk2cUnZkrpQixrT6NDGg4VmywBqno+tk/siix0flVqq iWo2Knb9iBZCQoJp+mR92GZVsdGmnUqghuflJM71VfYw92WFHYC7poBnj+sObSSkezlh Q61m+W2H+p4+iyTws+b1GDm5d778VoMFJ8kMbKBIX0MuZrcijUw1Ms56pF26QRQx7X38 67kST7fzsS68hDgyZWWc9KURZTRQJ+5ysHs056q086sRVkiThUMrSQCIp1ulvWeNXaXc FYPg== Received: by 10.14.119.77 with SMTP id m53mr667143eeh.26.1337950055910; Fri, 25 May 2012 05:47:35 -0700 (PDT) Received: from percy.train.local ([213.170.149.177]) by mx.google.com with ESMTPS id c51sm6909887eei.12.2012.05.25.05.47.33 (version=SSLv3 cipher=OTHER); Fri, 25 May 2012 05:47:34 -0700 (PDT) From: spdawson@gmail.com To: buildroot@busybox.net Date: Fri, 25 May 2012 13:47:31 +0100 Message-Id: <1337950052-18644-1-git-send-email-spdawson@gmail.com> X-Mailer: git-send-email 1.7.9.5 Subject: [Buildroot] [PATCH resend] midori: bump version to 0.4.6 X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net From: Simon Dawson Signed-off-by: Simon Dawson --- package/midori/Config.in | 3 +++ package/midori/midori.mk | 8 ++++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/package/midori/Config.in b/package/midori/Config.in index 95a0afb..49867e4 100644 --- a/package/midori/Config.in +++ b/package/midori/Config.in @@ -2,6 +2,9 @@ config BR2_PACKAGE_MIDORI bool "midori" select BR2_PACKAGE_WEBKIT select BR2_PACKAGE_LIBSEXY + select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE + select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT_IF_LOCALE + select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE depends on BR2_PACKAGE_LIBGTK2 depends on BR2_INSTALL_LIBSTDCPP # webkit depends on BR2_USE_WCHAR # webkit diff --git a/package/midori/midori.mk b/package/midori/midori.mk index 3e46b1a..19bf6dd 100644 --- a/package/midori/midori.mk +++ b/package/midori/midori.mk @@ -4,10 +4,10 @@ # ############################################################# -MIDORI_VERSION = 0.3.6 +MIDORI_VERSION = 0.4.6 MIDORI_SOURCE = midori-$(MIDORI_VERSION).tar.bz2 -MIDORI_SITE = http://archive.xfce.org/src/apps/midori/0.3/ -MIDORI_DEPENDENCIES = host-pkg-config host-intltool webkit libsexy libgtk2 +MIDORI_SITE = http://archive.xfce.org/src/apps/midori/0.4/ +MIDORI_DEPENDENCIES = host-pkg-config host-intltool webkit libsexy libgtk2 host-vala $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext libintl) $(if $(BR2_PACKAGE_LIBICONV),libiconv) ifneq ($(BR2_PACKAGE_XORG7),y) define MIDORI_WITHOUT_X11 @@ -21,7 +21,7 @@ define MIDORI_CONFIGURE_CMDS $(TARGET_CONFIGURE_OPTS) \ ./waf configure \ --prefix=/usr \ - --disable-vala \ + --disable-libnotify \ ) endef