Radix cross Linux

The main Radix cross Linux repository contains the build scripts of packages, which have the most complete and common functionality for desktop machines

452 Commits   2 Branches   1 Tag
Index: cdparanoia-III-10.2-new/interface/Makefile.in
===================================================================
--- cdparanoia-III-10.2-new/interface/Makefile.in	(nonexistent)
+++ cdparanoia-III-10.2-new/interface/Makefile.in	(revision 5)
@@ -0,0 +1,63 @@
+# cdda_paranoia makefile.in ready to go for autoconf.
+
+# DO NOT EDIT BELOW! ##########################################################
+# (unless, of course, you know what you are doing :) ##########################
+
+VPATH=@srcdir@
+srcdir=@srcdir@
+
+@SET_MAKE@
+FLAGS=@SBPCD_H@ @UCDROM_H@ @TYPESIZES@ @CFLAGS@
+OPT=@OPT@ $(FLAGS)
+DEBUG=@DEBUG@ -DCDDA_TEST
+CC=@CC@
+LD=@CC@
+LDFLAGS=@LDFLAGS@ $(FLAGS)
+AR=@AR@
+RANLIB=@RANLIB@
+LIBS = -lm -lrt
+CPPFLAGS+=-D_REENTRANT
+
+OFILES = scan_devices.o	common_interface.o cooked_interface.o interface.o\
+	scsi_interface.o smallft.o toc.o test_interface.o
+
+export VERSION
+
+all: lib slib
+
+debug: 
+	$(MAKE) libcdda_interface.a CFLAGS="$(DEBUG)"
+
+lib:	
+	$(MAKE) libcdda_interface.a CFLAGS="$(OPT)" 
+
+slib:	
+	$(MAKE) lessmessy
+	$(MAKE) libcdda_interface.so CFLAGS="$(OPT) -fpic" 
+	[ -e libcdda_interface.so.0 ] || ln -s libcdda_interface.so libcdda_interface.so.0
+
+test:	
+	$(MAKE) libcdda_interface.a CFLAGS="$(DEBUG)"
+	$(CC) $(DEBUG) -c test.c
+	$(LD) $(DEBUG) test.o $(LDFLAGS) -o cdda_test $(LIBS) libcdda_interface.a
+
+libcdda_interface.a: 	$(OFILES)	
+	$(AR) -r libcdda_interface.a $(OFILES)
+	$(RANLIB) libcdda_interface.a
+
+libcdda_interface.so: 	$(OFILES)	
+	$(CC) -fpic -shared -o libcdda_interface.so.0.$(VERSION) $(SHARED_LDFLAGS) -Wl,-soname -Wl,libcdda_interface.so.0 $(OFILES) $(LIBS)
+	[ -e libcdda_interface.so.0 ] || ln -s libcdda_interface.so.0.$(VERSION) libcdda_interface.so.0
+	[ -e libcdda_interface.so ] || ln -s libcdda_interface.so.0.$(VERSION) libcdda_interface.so
+
+.c.o:
+	$(CC) $(CFLAGS) -c $<
+
+lessmessy:
+	-rm  -f *.o core *~ *.out
+
+clean: lessmessy
+	-rm -f *.a *.so *.so.0 *.so.*
+
+distclean: clean
+	-rm -f  Makefile
Index: cdparanoia-III-10.2-new/interface
===================================================================
--- cdparanoia-III-10.2-new/interface	(nonexistent)
+++ cdparanoia-III-10.2-new/interface	(revision 5)

Property changes on: cdparanoia-III-10.2-new/interface
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: cdparanoia-III-10.2-new/paranoia/Makefile.in
===================================================================
--- cdparanoia-III-10.2-new/paranoia/Makefile.in	(nonexistent)
+++ cdparanoia-III-10.2-new/paranoia/Makefile.in	(revision 5)
@@ -0,0 +1,66 @@
+# cdda_paranoia makefile.in ready to go for autoconf.
+
+# DO NOT EDIT BELOW! ##########################################################
+# (unless, of course, you know what you are doing :) ##########################
+
+.SUFFIXES: .t
+VPATH=@srcdir@
+srcdir=@srcdir@
+
+@SET_MAKE@
+FLAGS=@TYPESIZES@ @CFLAGS@
+OPT=@OPT@ $(FLAGS)
+DEBUG=@DEBUG@ 
+CC=@CC@
+LD=@CC@
+LDFLAGS=@LDFLAGS@ $(FLAGS)
+AR=@AR@
+RANLIB=@RANLIB@
+CPPFLAGS+=-D_REENTRANT
+
+OFILES = paranoia.o p_block.o overlap.o gap.o isort.o 
+#TFILES = isort.t gap.t p_block.t paranoia.t
+
+LIBS = ../interface/libcdda_interface.a -lm
+export VERSION
+
+all: lib slib
+
+debug: 
+	$(MAKE) libcdda_paranoia.a CFLAGS="$(DEBUG)"
+
+lib:	
+	$(MAKE) libcdda_paranoia.a CFLAGS="$(OPT)" 
+
+slib:	
+	$(MAKE) lessmessy
+	$(MAKE) libcdda_paranoia.so CFLAGS="$(OPT) -fpic" 
+
+#test:	$(TFILES)
+#
+
+libcdda_paranoia.a: 	$(OFILES)	
+	$(AR) -r libcdda_paranoia.a $(OFILES)
+	$(RANLIB) libcdda_paranoia.a
+
+libcdda_paranoia.so: 	$(OFILES)	
+	$(CC) -fpic -shared -o libcdda_paranoia.so.0.$(VERSION) $(SHARED_LDFLAGS) -Wl,-soname -Wl,libcdda_paranoia.so.0 $(OFILES) -L ../interface -lcdda_interface
+	[ -e libcdda_paranoia.so.0 ] || ln -s libcdda_paranoia.so.0.$(VERSION) libcdda_paranoia.so.0
+	[ -e libcdda_paranoia.so ] || ln -s libcdda_paranoia.so.0.$(VERSION) libcdda_paranoia.so
+
+.c.o:
+	$(CC) $(CFLAGS) -c $<
+
+.c.t:
+	$(CC) -g -DTEST $(DEBUG) -o $@ $< $(LIBS)
+	$@
+
+lessmessy:
+	-rm -f *.o  *.t core *~
+
+clean: lessmessy
+	-rm -f  *.a *.so *.so.0 *.so.0.* core
+
+distclean: clean
+	-rm -f Makefile 
+
Index: cdparanoia-III-10.2-new/paranoia
===================================================================
--- cdparanoia-III-10.2-new/paranoia	(nonexistent)
+++ cdparanoia-III-10.2-new/paranoia	(revision 5)

Property changes on: cdparanoia-III-10.2-new/paranoia
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: cdparanoia-III-10.2-new
===================================================================
--- cdparanoia-III-10.2-new	(nonexistent)
+++ cdparanoia-III-10.2-new	(revision 5)

Property changes on: cdparanoia-III-10.2-new
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: create.patch.sh
===================================================================
--- create.patch.sh	(nonexistent)
+++ create.patch.sh	(revision 5)
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+VERSION=10.2
+
+tar --files-from=file.list -xzvf ../cdparanoia-III-$VERSION.tar.gz
+mv cdparanoia-III-$VERSION cdparanoia-III-$VERSION-orig
+
+cp -rf ./cdparanoia-III-$VERSION-new ./cdparanoia-III-$VERSION
+
+diff --unified -Nr  cdparanoia-III-$VERSION-orig  cdparanoia-III-$VERSION > cdparanoia-$VERSION-shared-ldflags.patch
+
+mv cdparanoia-$VERSION-shared-ldflags.patch ../patches
+
+rm -rf ./cdparanoia-III-$VERSION
+rm -rf ./cdparanoia-III-$VERSION-orig

Property changes on: create.patch.sh
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Index: file.list
===================================================================
--- file.list	(nonexistent)
+++ file.list	(revision 5)
@@ -0,0 +1,2 @@
+cdparanoia-III-10.2/interface/Makefile.in
+cdparanoia-III-10.2/paranoia/Makefile.in
Index: .
===================================================================
--- .	(nonexistent)
+++ .	(revision 5)

Property changes on: .
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~