From: Bernhard Fischer <rep.dot.nop@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] svn commit: trunk/buildroot/package/mpg123
Date: Mon, 30 Jul 2007 11:50:10 +0200 [thread overview]
Message-ID: <20070730095010.GF23273@aon.at> (raw)
In-Reply-To: <20070728170539.66936A4682@busybox.net>
On Sat, Jul 28, 2007 at 10:05:39AM -0700, ulf at uclibc.org wrote:
>Author: ulf
>Date: 2007-07-28 10:05:38 -0700 (Sat, 28 Jul 2007)
>New Revision: 19300
>
>Log:
>Bump version of mpg123,use configure, change site to Sourceforge
>
>Modified:
> trunk/buildroot/package/mpg123/Config.in
> trunk/buildroot/package/mpg123/mpg123.mk
>
>
>Changeset:
>Modified: trunk/buildroot/package/mpg123/Config.in
>===================================================================
>--- trunk/buildroot/package/mpg123/Config.in 2007-07-28 16:49:16 UTC (rev 19299)
>+++ trunk/buildroot/package/mpg123/Config.in 2007-07-28 17:05:38 UTC (rev 19300)
>@@ -6,3 +6,8 @@
> MPEG 1.0/2.0 layers 1, 2 and 3.
>
> http://www.mpg123.de/
>+
>+config BR2_PACKAGE_MPG123_ALSA
>+ bool
>+ default y
>+ depends on BR2_PACKAGE_ALSA_LIB
>
>Modified: trunk/buildroot/package/mpg123/mpg123.mk
>===================================================================
>--- trunk/buildroot/package/mpg123/mpg123.mk 2007-07-28 16:49:16 UTC (rev 19299)
>+++ trunk/buildroot/package/mpg123/mpg123.mk 2007-07-28 17:05:38 UTC (rev 19300)
>@@ -3,53 +3,67 @@
> # mpg123
> #
> #############################################################
>+MPG123_VERSION=0.66
>+MPG123_SOURCE=mpg123-$(MPG123_VERSION).tar.bz2
>+MPG123_CAT:=$(BZCAT)
>+MPG123_SITE:=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/mpg123
>+MPG123_DIR:=$(BUILD_DIR)/mpg123-$(MPG123_VERSION)
>+MPG123_BIN:=mpg123
>+MPG123_TARGET_BIN:=usr/bin/$(MPG123_BIN)
>
>-MPG123_VERSION=0.59r
>+# Check if ALSA is built, then we should configure after alsa-lib so
>+# ./configure can find alsa-lib.
>+ifeq ($(strip $(BR2_PACKAGE_MPG123_ALSA)),y)
>+MPG123_USE_ALSA:=--with-audio=alsa
>+MPG123_ALSA_DEP:=alsa-lib
>+endif
>
>-# Don't alter below this line unless you (think) you know
>-# what you are doing! Danger, Danger!
>-
>-MPG123_SOURCE=mpg123-$(MPG123_VERSION).tar.gz
>-MPG123_CAT:=$(ZCAT)
>-MPG123_SITE=http://www.mpg123.de/mpg123
>-MPG123_DIR=$(BUILD_DIR)/mpg123-$(MPG123_VERSION)
>-
> $(DL_DIR)/$(MPG123_SOURCE):
> $(WGET) -P $(DL_DIR) $(MPG123_SITE)/$(MPG123_SOURCE)
>
> $(MPG123_DIR)/.unpacked: $(DL_DIR)/$(MPG123_SOURCE)
> $(MPG123_CAT) $(DL_DIR)/$(MPG123_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
> toolchain/patch-kernel.sh $(MPG123_DIR) package/mpg123/ mpg123\*.patch
>+ $(CONFIG_UPDATE) $(MPG123_DIR)/build
> touch $@
>
>-$(MPG123_DIR)/mpg123: $(MPG123_DIR)/.unpacked
>- rm -f $@
>-ifeq ($(BR2_ARCH),"i386")
>- $(MAKE) CC=$(TARGET_CC) CFLAGS="$(TARGET_CFLAGS)" -C $(MPG123_DIR) linux
>-else
>-ifeq ($(BR2_ENDIAN),"LITTLE")
>- $(MAKE) CC=$(TARGET_CC) CFLAGS="$(TARGET_CFLAGS)" -C $(MPG123_DIR) linux-littleend
>-else
>- $(MAKE) CC=$(TARGET_CC) CFLAGS="$(TARGET_CFLAGS)" -C $(MPG123_DIR) linux-bigend
>-endif
>-endif
>+$(MPG123_DIR)/.configured: $(MPG123_DIR)/.unpacked
>+ (cd $(MPG123_DIR); rm -rf config.cache; \
>+ $(TARGET_CONFIGURE_OPTS) \
>+ CFLAGS="$(TARGET_CFLAGS)" \
>+ LDFLAGS="$(TARGET_LDFLAGS)" \
Missing TARGET_CONFIGURE_ARGS.
Ulf, you usually forget to use the TARGET_CONFIGURE_ARGS. Please audit
all of your patches to include them, TIA.
> mpg123-clean:
>- -$(MAKE) -C $(MPG123_DIR) clean
>+ @if [ -d $(MPG123_DIR)/Makefile ] ; then \
>+ $(MAKE) -C $(MPG123_DIR) clean ; \
>+ fi;
This changes looks like it is wrong. Please revert (-$(MAKE) is the
correct thing to do).
next prev parent reply other threads:[~2007-07-30 9:50 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-07-28 17:05 [Buildroot] svn commit: trunk/buildroot/package/mpg123 ulf at uclibc.org
2007-07-30 9:50 ` Bernhard Fischer [this message]
-- strict thread matches above, loose matches on Subject: below --
2007-09-23 14:24 ulf at uclibc.org
2007-08-28 19:36 ulf at uclibc.org
2007-08-28 18:18 ulf at uclibc.org
2007-08-01 8:54 ulf at uclibc.org
2007-05-31 15:42 jacmet at uclibc.org
2006-12-14 16:03 aldot at uclibc.org
2006-12-14 15:55 aldot at uclibc.org
2006-12-14 16:06 ` Ulrich Hecht
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20070730095010.GF23273@aon.at \
--to=rep.dot.nop@gmail.com \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox