Update of /cvsroot/leaf/src/bering-uclibc/contrib/mpg123
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv10626

Modified Files:
        buildtool.cfg buildtool.mk 
Added Files:
        mpg123-0.60-beta5.tar.gz 
Removed Files:
        Makefile.patch.gz mpg123-0.59r-gpl.tar.gz 
Log Message:
Updated to 0.60-beta5


--- Makefile.patch.gz DELETED ---

--- mpg123-0.59r-gpl.tar.gz DELETED ---

Index: buildtool.cfg
===================================================================
RCS file: /cvsroot/leaf/src/bering-uclibc/contrib/mpg123/buildtool.cfg,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** buildtool.cfg       28 May 2006 21:19:31 -0000      1.2
--- buildtool.cfg       25 Aug 2006 17:36:59 -0000      1.3
***************
*** 5,9 ****
  </File>
  
! <File mpg123-0.59r-gpl.tar.gz>
        Server = cvs-contrib-sourceforge
        Directory = mpg123
--- 5,9 ----
  </File>
  
! <File mpg123-0.60-beta5.tar.gz>
        Server = cvs-contrib-sourceforge
        Directory = mpg123
***************
*** 12,27 ****
  </File>
  
- <File Makefile.patch.gz>
-       Server = cvs-contrib-sourceforge
-       Directory = mpg123
-       revision = HEAD
-       envname = MPG123_PATCH1
- </File>
- 
  <Package>
    <mpg123_i486>
      packagename = mpg123
!     Version = 0.59r-gpl
!     Revision = 2
  
      Help <<EOF
--- 12,20 ----
  </File>
  
  <Package>
    <mpg123_i486>
      packagename = mpg123
!     Version = 0.60-beta5
!     Revision = 1
  
      Help <<EOF
***************
*** 52,56 ****
    <mpg123_pentium>
      packagename = mpg123
!     Version = 0.59r-gpl
      Revision = 1
  
--- 45,49 ----
    <mpg123_pentium>
      packagename = mpg123
!     Version = 0.60-beta5
      Revision = 1
  
***************
*** 82,86 ****
    <mpg123_3dnow>
      packagename = mpg123
!     Version = 0.59r-gpl
      Revision = 1
  
--- 75,79 ----
    <mpg123_3dnow>
      packagename = mpg123
!     Version = 0.60-beta5
      Revision = 1
  
***************
*** 109,111 ****
--- 102,134 ----
      </Contents>
    </mpg123_3dnow>
+ 
+   <mpg123_mmx>
+     packagename = mpg123
+     Version = 0.60-beta5
+     Revision = 1
+ 
+     Help <<EOF
+       MPEG 1.0/2.0 Layer 1,2,3 audio player
+       Executable optimized for MMX processors
+       LRP package by __PACKAGER__, __BUILDDATE__
+       EOF
+ 
+     <Permissions>
+       Files = 755
+       Directories = 755
+     </Permissions>
+ 
+     <Owner>
+       Files = root:root
+       Directories = root:root
+     </Owner>
+ 
+     <Contents>
+       <File>
+         Source = usr/bin/mpg123_mmx
+       Filename = usr/bin/mpg123
+       Type = binary
+       </File>
+     </Contents>
+   </mpg123_mmx>
  </Package>

Index: buildtool.mk
===================================================================
RCS file: /cvsroot/leaf/src/bering-uclibc/contrib/mpg123/buildtool.mk,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** buildtool.mk        28 May 2006 21:19:31 -0000      1.2
--- buildtool.mk        25 Aug 2006 17:37:00 -0000      1.3
***************
*** 1,19 ****
  include $(MASTERMAKEFILE)
  
! MPG123_DIR:=mpg123-0.59r-gpl
  
  $(MPG123_DIR)/.source:
        zcat $(MPG123_SOURCE) | tar -xvf -
-       zcat $(MPG123_PATCH1) | patch -d $(MPG123_DIR) -p1
        touch $(MPG123_DIR)/.source
  
  $(MPG123_DIR)/.build: $(MPG123_DIR)/.source
        mkdir -p $(BT_STAGING_DIR)/usr/bin
!       $(MAKE) -C $(MPG123_DIR) linux-i486
!       cp -a -f $(MPG123_DIR)/mpg123 $(BT_STAGING_DIR)/usr/bin/mpg123_i486
!       $(MAKE) -C $(MPG123_DIR) clean linux
!       cp -a -f $(MPG123_DIR)/mpg123 $(BT_STAGING_DIR)/usr/bin/mpg123_pentium
!       $(MAKE) -C $(MPG123_DIR) clean linux-3dnow
!       cp -a -f $(MPG123_DIR)/mpg123 $(BT_STAGING_DIR)/usr/bin/mpg123_3dnow
        $(BT_STRIP) $(BT_STRIP_BINOPTS) $(BT_STAGING_DIR)/usr/bin/mpg123_*
        touch $(MPG123_DIR)/.build
--- 1,35 ----
  include $(MASTERMAKEFILE)
  
! MPG123_DIR:=mpg123-0.60-beta5
  
  $(MPG123_DIR)/.source:
        zcat $(MPG123_SOURCE) | tar -xvf -
        touch $(MPG123_DIR)/.source
  
  $(MPG123_DIR)/.build: $(MPG123_DIR)/.source
        mkdir -p $(BT_STAGING_DIR)/usr/bin
!       (cd $(MPG123_DIR); CFLAGS="$(BT_COPT_FLAGS)" CC=$(TARGET_CC) \
!               ./configure --with-audio=oss --disable-debug --prefix=/usr \
!                       --with-optimization=0 --with-cpu=i486)
!       $(MAKE) -C $(MPG123_DIR)
!       cp -a -f $(MPG123_DIR)/src/mpg123 $(BT_STAGING_DIR)/usr/bin/mpg123_i486
!       $(MAKE) -C $(MPG123_DIR) clean
!       (cd $(MPG123_DIR); CFLAGS="$(BT_COPT_FLAGS)" CC=$(TARGET_CC) \
!               ./configure --with-audio=oss --disable-debug --prefix=/usr \
!                       --with-optimization=0 --with-cpu=i586)
!       $(MAKE) -C $(MPG123_DIR)
!       cp -a -f $(MPG123_DIR)/src/mpg123 
$(BT_STAGING_DIR)/usr/bin/mpg123_pentium
!       $(MAKE) -C $(MPG123_DIR) clean
!       (cd $(MPG123_DIR); CFLAGS="$(BT_COPT_FLAGS)" CC=$(TARGET_CC) \
!               ./configure --with-audio=oss --disable-debug --prefix=/usr \
!                       --with-optimization=0 --with-cpu=3dnow)
!       $(MAKE) -C $(MPG123_DIR)
!       cp -a -f $(MPG123_DIR)/src/mpg123 $(BT_STAGING_DIR)/usr/bin/mpg123_3dnow
!       $(MAKE) -C $(MPG123_DIR) clean
!       (cd $(MPG123_DIR); CFLAGS="$(BT_COPT_FLAGS)" CC=$(TARGET_CC) \
!               ./configure --with-audio=oss --disable-debug --prefix=/usr \
!                       --with-optimization=0 --with-cpu=mmx)
!       $(MAKE) -C $(MPG123_DIR)
!       cp -a -f $(MPG123_DIR)/src/mpg123 $(BT_STAGING_DIR)/usr/bin/mpg123_mmx
        $(BT_STRIP) $(BT_STRIP_BINOPTS) $(BT_STAGING_DIR)/usr/bin/mpg123_*
        touch $(MPG123_DIR)/.build

--- NEW FILE: mpg123-0.60-beta5.tar.gz ---
(This appears to be a binary file; contents omitted.)


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
leaf-cvs-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/leaf-cvs-commits

Reply via email to