From patchwork Thu Apr 3 21:01:17 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Cercueil X-Patchwork-Id: 336779 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 806A0140095 for ; Fri, 4 Apr 2014 08:02:55 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id B1B5031D3D; Thu, 3 Apr 2014 21:02:54 +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 bfZOFVfpPAT3; Thu, 3 Apr 2014 21:02:51 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 5693F31D13; Thu, 3 Apr 2014 21:02:33 +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 68FAA1C1E95 for ; Thu, 3 Apr 2014 21:02:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 664DF8C828 for ; Thu, 3 Apr 2014 21:02:24 +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 yNFiY33EhvC3 for ; Thu, 3 Apr 2014 21:02:21 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from marvin.crapouillou.net (rev33.vpn.fdn.fr [80.67.179.33]) by whitealder.osuosl.org (Postfix) with ESMTPS id 706848C7CA for ; Thu, 3 Apr 2014 21:02:21 +0000 (UTC) Received: from 95-91-234-117-dynip.superkabel.de ([95.91.234.117] helo=debian.hitronhub.home) by marvin.crapouillou.net with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA256:128) (Exim 4.80) (envelope-from ) id 1WVom9-00045j-AX; Thu, 03 Apr 2014 23:02:17 +0200 From: Paul Cercueil To: buildroot@busybox.net Date: Thu, 3 Apr 2014 23:01:17 +0200 Message-Id: <1396558881-29631-7-git-send-email-paul@crapouillou.net> X-Mailer: git-send-email 1.9.0 In-Reply-To: <1396558881-29631-1-git-send-email-paul@crapouillou.net> References: <1396558881-29631-1-git-send-email-paul@crapouillou.net> Cc: Maarten ter Huurne Subject: [Buildroot] [PATCH 07/11] fmtools: Switch to 2.x series 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: Maarten ter Huurne Specifically, bump version to 2.0.1. The 2.x series uses the V4L2 API instead of V4L. Signed-Off-By: Maarten ter Huurne Acked-By: Paul Cercueil Reviewed-by: "Yann E. MORIN" --- package/fmtools/Config.in | 4 ++-- package/fmtools/fmtools.mk | 15 +++------------ 2 files changed, 5 insertions(+), 14 deletions(-) diff --git a/package/fmtools/Config.in b/package/fmtools/Config.in index 1591618..182b517 100644 --- a/package/fmtools/Config.in +++ b/package/fmtools/Config.in @@ -2,8 +2,8 @@ config BR2_PACKAGE_FMTOOLS bool "fmtools" help fmtools is a pair of simple command-line utilities for - "video4linux" radio tuner cards under Linux. It includes + "video4linux2" radio tuner cards under Linux. It includes fm for power control, tuning, and volume and fmscan for scanning for stations. - http://www.stanford.edu/~blp/fmtools/ + http://benpfaff.org/fmtools/ diff --git a/package/fmtools/fmtools.mk b/package/fmtools/fmtools.mk index 5f305b9..bacd73c 100644 --- a/package/fmtools/fmtools.mk +++ b/package/fmtools/fmtools.mk @@ -4,18 +4,9 @@ # ################################################################################ -FMTOOLS_VERSION = 1.0.2 -FMTOOLS_SITE = http://www.stanford.edu/~blp/fmtools/ +FMTOOLS_VERSION = 2.0.1 +FMTOOLS_SITE = http://benpfaff.org/fmtools FMTOOLS_LICENSE = GPLv2+ FMTOOLS_LICENSE_FILES = COPYING -define FMTOOLS_BUILD_CMDS - $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) -endef - -define FMTOOLS_INSTALL_TARGET_CMDS - $(INSTALL) -D -m 0755 $(@D)/fm $(TARGET_DIR)/usr/sbin/fm - $(INSTALL) -D -m 0755 $(@D)/fmscan $(TARGET_DIR)/usr/sbin/fmscan -endef - -$(eval $(generic-package)) +$(eval $(autotools-package))