Update of /cvsroot/fink/dists/10.2/unstable/main/finkinfo/utils
In directory sc8-pr-cvs1:/tmp/cvs-serv30665/utils
Modified Files:
bchunk.info
Added Files:
cdirip.info cdrdao.info cdrdao.patch
Removed Files:
cdirip-0.6.2-1.info cdirip-0.6.2-1.patch cdrdao-1.1.7-2.info
cdrdao-1.1.7-2.patch
Log Message:
fix md5, move to new name scheme
--- NEW FILE: cdirip.info ---
Package: cdirip
Version: 0.6.2
Revision: 1
Source: http://cdirip.cjb.net/%n062-src.zip
NoSourceDirectory: true
SourceRename: %n-%v.zip
Source-MD5: 88416058349e30ad194d6edf9dca1d47
PatchScript: find . -type f \! -name "*.o" -exec perl -p -i -e 's/\r\n/\n/;' {} \; &&
patch -p1 < %a/%n.patch
CompileScript: make -f Makefile.linux all
InstallScript: <<
mkdir -p %i/bin
cp cdirip %i/bin
mkdir -p %i/share/doc/%n
echo "The package is released as Public Domain by the author." >
%i/share/doc/%n/LICENSE
<<
Description: DiskJuggler (.cdi) Image Converter
DescDetail: <<
A small tool which will scan and extract the contents of a DiscJuggler (both v2.0 and
v3.0 versions) image. These images end with extension .CDI, hence the name.
Many people has trouble with these images because of the lack of recorder support
DiscJuggler has, so the purpose of this tool is allowing people to burn these images
with another recording program, such as CDR-Win. I would recomment this program
because of its good support for ISO and WAV track images. CDIrip will automatically
generate a cuesheet ready for this program. Anyways, other software can be used, such
as Fireburner and cdrecord.
<<
License: Public Domain
Maintainer: Chris Zubrzycki <[EMAIL PROTECTED]>
Homepage: http://cdirip.cjb.net/
--- NEW FILE: cdrdao.info ---
Package: cdrdao
Version: 1.1.7
Revision: 2
Source: mirror:sourceforge:/%n/%n-%v.src.tar.bz2
SourceDirectory: %n-%v
Source-MD5: a85c0fa006ad3af64b76fd86b10b2ad4
BuildDepends: pccts, autoconf2.5, lame, dlcompat-dev, ncurses-dev
Depends: lame-shlibs, ncurses
Patch: %n.patch
UpdateConfigGuessInDirs: scsilib/conf
SetLDFLAGS: -framework IOKit -framework CoreFoundation
ConfigureParams: --with-pcctsbin=%p/bin --with-pcctsinc=%p/include/pccts
--mandir='${prefix}/share/man' --with-lame-lib=%p/lib --with-lame-include=%p/include/
--disable-gtkmmtest
CompileScript: <<
rm -rf pccts
./configure %c
make
<<
InstallScript: <<
make install DESTDIR=%d
mkdir -p %i/share/doc/cdrdao
mv testtocs %i/share/doc/cdrdao/example-tocs
mv utils/toc2cue utils/toc2mp3 %i/bin
mv contrib %i/share/doc/cdrdao/
<<
DocFiles: COPYING CREDITS README* Release*
Description: Create CDs in disc-at-once (DAO) mode
DescDetail: <<
Writes audio CD-Rs in disc-at-once (DAO) mode allowing control over
pre-gaps (length down to 0, nonzero audio data) and sub-channel
information like ISRC codes. All data that is written to the disc must
be specified with a text file. Audio data may be in WAVE or raw format.
<<
License: GPL
Maintainer: Chris Zubrzycki <[EMAIL PROTECTED]>
Homepage: http://cdrdao.sf.net/
--- NEW FILE: cdrdao.patch ---
diff -ruN cdrdao-1.1.7/Makefile.in cdrdao-1.1.7.new/Makefile.in
--- cdrdao-1.1.7/Makefile.in Sun Oct 6 14:53:55 2002
+++ cdrdao-1.1.7.new/Makefile.in Tue Oct 29 11:27:01 2002
@@ -41,8 +41,8 @@
#
#
#
-SUBDIRS = @pccts_target@ @scsilib_dir@ trackdb paranoia dao utils @xdao@
-SUBDIRSINST = trackdb dao utils @xdao@
+SUBDIRS = @pccts_target@ @scsilib_dir@ trackdb paranoia dao utils
+SUBDIRSINST = trackdb dao utils
all:
for d in $(SUBDIRS) ; do \
diff -ruN cdrdao-1.1.7/dao/Makefile.in cdrdao-1.1.7.new/dao/Makefile.in
--- cdrdao-1.1.7/dao/Makefile.in Sun Oct 6 14:53:56 2002
+++ cdrdao-1.1.7.new/dao/Makefile.in Tue Oct 29 11:27:01 2002
@@ -67,14 +67,14 @@
all: $(PRG)
install: all installdirs
- $(INSTALL_PROGRAM) $(PRG) $(bindir)
- $(INSTALL_DATA) cdrdao.man $(man1dir)/cdrdao.1
- $(INSTALL_DATA) cdrdao.drivers $(DRIVER_TABLE_FILE)
+ $(INSTALL_PROGRAM) $(PRG) $(DESTDIR)$(bindir)
+ $(INSTALL_DATA) cdrdao.man $(DESTDIR)$(man1dir)/cdrdao.1
+ $(INSTALL_DATA) cdrdao.drivers $(DESTDIR)$(DRIVER_TABLE_FILE)
installdirs:
- $(srcdir)/../mkinstalldirs $(bindir)
- $(srcdir)/../mkinstalldirs $(man1dir)
- $(srcdir)/../mkinstalldirs $(CDRDAO_DATA_DIR)
+ $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir)
+ $(srcdir)/../mkinstalldirs $(DESTDIR)$(man1dir)
+ $(srcdir)/../mkinstalldirs $(DESTDIR)$(CDRDAO_DATA_DIR)
clean:
rm -f *.o $(PRG)
diff -ruN cdrdao-1.1.7/dao/main.cc cdrdao-1.1.7.new/dao/main.cc
--- cdrdao-1.1.7/dao/main.cc Sun Oct 6 14:53:56 2002
+++ cdrdao-1.1.7.new/dao/main.cc Tue Oct 29 11:30:12 2002
@@ -105,6 +105,11 @@
static const char *SCSI_DEVICE = "/dev/cdrecorder";
static int FIFO_BUFFERS = 32;
+#elif defined(__APPLE__) && defined(__GNUC__)
+
+static const char *SCSI_DEVICE = "IOCompactDiscServices";
+static int FIFO_BUFFERS = 32;
+
#else
static const char *SCSI_DEVICE = "0,0,0";
diff -ruN cdrdao-1.1.7/utils/Makefile.in cdrdao-1.1.7.new/utils/Makefile.in
--- cdrdao-1.1.7/utils/Makefile.in Sun Oct 6 14:53:56 2002
+++ cdrdao-1.1.7.new/utils/Makefile.in Tue Oct 29 11:27:01 2002
@@ -56,9 +56,9 @@
$(INSTALL_PROGRAM) @utils_targets@ $(bindir)
installdirs:
- $(srcdir)/../mkinstalldirs $(bindir)
-# $(srcdir)/../mkinstalldirs $(man1dir)
-# $(srcdir)/../mkinstalldirs $(CDRDAO_DATA_DIR)
+ $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir)
+# $(srcdir)/../mkinstalldirs $(DESTDIR)$(man1dir)
+# $(srcdir)/../mkinstalldirs $(DESTDIR)$(CDRDAO_DATA_DIR)
clean:
rm -f *.o toc2cue toc2mp3
diff -ruN cdrdao-1.1.7/xdao/CdDevice.cc cdrdao-1.1.7.new/xdao/CdDevice.cc
--- cdrdao-1.1.7/xdao/CdDevice.cc Sun Oct 6 14:53:56 2002
+++ cdrdao-1.1.7.new/xdao/CdDevice.cc Tue Oct 29 11:27:01 2002
@@ -22,7 +22,11 @@
#include <stddef.h>
#include <stdio.h>
#include <unistd.h>
+
+#ifdef HAVE_MALLOC_H
#include <malloc.h>
+#endif
+
#include <errno.h>
#include <ctype.h>
#include <assert.h>
diff -ruN cdrdao-1.1.7/xdao/Makefile.in cdrdao-1.1.7.new/xdao/Makefile.in
--- cdrdao-1.1.7/xdao/Makefile.in Sun Oct 6 14:53:56 2002
+++ cdrdao-1.1.7.new/xdao/Makefile.in Tue Oct 29 11:27:01 2002
@@ -71,32 +71,32 @@
all: $(PRG)
install: all installdirs
- $(INSTALL_PROGRAM) $(PRG) $(bindir)
- $(INSTALL_DATA) xcdrdao.man $(man1dir)/xcdrdao.1
- $(INSTALL_DATA) gcdmaster.png $(PIXMAPS_DIR)/gcdmaster.png
- $(INSTALL_DATA) pixmap_audiocd.png $(PIXMAPS_DIR)/pixmap_audiocd.png
- $(INSTALL_DATA) pixmap_copycd.png $(PIXMAPS_DIR)/pixmap_copycd.png
- $(INSTALL_DATA) pixmap_datacd.png $(PIXMAPS_DIR)/pixmap_datacd.png
- $(INSTALL_DATA) pixmap_dumpcd.png $(PIXMAPS_DIR)/pixmap_dumpcd.png
- $(INSTALL_DATA) pixmap_help.png $(PIXMAPS_DIR)/pixmap_help.png
- $(INSTALL_DATA) pixmap_mixedcd.png $(PIXMAPS_DIR)/pixmap_mixedcd.png
- $(INSTALL_DATA) pixmap_open.png $(PIXMAPS_DIR)/pixmap_open.png
- $(INSTALL_DATA) pixmap_play-start.xpm $(PIXMAPS_DIR)/pixmap_play-start.xpm
- $(INSTALL_DATA) pixmap_play-pause.xpm $(PIXMAPS_DIR)/pixmap_play-pause.xpm
- $(INSTALL_DATA) pixmap_play-stop.xpm $(PIXMAPS_DIR)/pixmap_play-stop.xpm
- $(INSTALL_DATA) pixmap_cursor-tool.xpm $(PIXMAPS_DIR)/pixmap_cursor-tool.xpm
- $(INSTALL_DATA) pixmap_zoom-tool.xpm $(PIXMAPS_DIR)/pixmap_zoom-tool.xpm
- $(INSTALL_DATA) pixmap_zoom-in.xpm $(PIXMAPS_DIR)/pixmap_zoom-in.xpm
- $(INSTALL_DATA) pixmap_zoom-out.xpm $(PIXMAPS_DIR)/pixmap_zoom-out.xpm
- $(INSTALL_DATA) pixmap_zoom-selection.xpm
$(PIXMAPS_DIR)/pixmap_zoom-selection.xpm
- $(INSTALL_DATA) pixmap_zoom-fit.xpm $(PIXMAPS_DIR)/pixmap_zoom-fit.xpm
- $(INSTALL_DATA) gcdmaster.desktop
$(datadir)/gnome/apps/Applications/gcdmaster.desktop
+ $(INSTALL_PROGRAM) $(PRG) $(DESTDIR)$(bindir)
+ $(INSTALL_DATA) xcdrdao.man $(DESTDIR)$(man1dir)/xcdrdao.1
+ $(INSTALL_DATA) gcdmaster.png $(DESTDIR)$(PIXMAPS_DIR)/gcdmaster.png
+ $(INSTALL_DATA) pixmap_audiocd.png $(DESTDIR)$(PIXMAPS_DIR)/pixmap_audiocd.png
+ $(INSTALL_DATA) pixmap_copycd.png $(DESTDIR)$(PIXMAPS_DIR)/pixmap_copycd.png
+ $(INSTALL_DATA) pixmap_datacd.png $(DESTDIR)$(PIXMAPS_DIR)/pixmap_datacd.png
+ $(INSTALL_DATA) pixmap_dumpcd.png $(DESTDIR)$(PIXMAPS_DIR)/pixmap_dumpcd.png
+ $(INSTALL_DATA) pixmap_help.png $(DESTDIR)$(PIXMAPS_DIR)/pixmap_help.png
+ $(INSTALL_DATA) pixmap_mixedcd.png $(DESTDIR)$(PIXMAPS_DIR)/pixmap_mixedcd.png
+ $(INSTALL_DATA) pixmap_open.png $(DESTDIR)$(PIXMAPS_DIR)/pixmap_open.png
+ $(INSTALL_DATA) pixmap_play-start.xpm
$(DESTDIR)$(PIXMAPS_DIR)/pixmap_play-start.xpm
+ $(INSTALL_DATA) pixmap_play-pause.xpm
$(DESTDIR)$(PIXMAPS_DIR)/pixmap_play-pause.xpm
+ $(INSTALL_DATA) pixmap_play-stop.xpm
$(DESTDIR)$(PIXMAPS_DIR)/pixmap_play-stop.xpm
+ $(INSTALL_DATA) pixmap_cursor-tool.xpm
$(DESTDIR)$(PIXMAPS_DIR)/pixmap_cursor-tool.xpm
+ $(INSTALL_DATA) pixmap_zoom-tool.xpm
$(DESTDIR)$(PIXMAPS_DIR)/pixmap_zoom-tool.xpm
+ $(INSTALL_DATA) pixmap_zoom-in.xpm $(DESTDIR)$(PIXMAPS_DIR)/pixmap_zoom-in.xpm
+ $(INSTALL_DATA) pixmap_zoom-out.xpm
$(DESTDIR)$(PIXMAPS_DIR)/pixmap_zoom-out.xpm
+ $(INSTALL_DATA) pixmap_zoom-selection.xpm
$(DESTDIR)$(PIXMAPS_DIR)/pixmap_zoom-selection.xpm
+ $(INSTALL_DATA) pixmap_zoom-fit.xpm
$(DESTDIR)$(PIXMAPS_DIR)/pixmap_zoom-fit.xpm
+ $(INSTALL_DATA) gcdmaster.desktop
$(DESTDIR)$(datadir)/gnome/apps/Applications/gcdmaster.desktop
installdirs:
- $(srcdir)/../mkinstalldirs $(bindir)
- $(srcdir)/../mkinstalldirs $(man1dir)
- $(srcdir)/../mkinstalldirs $(PIXMAPS_DIR)
- $(srcdir)/../mkinstalldirs $(datadir)/gnome/apps/Applications
+ $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir)
+ $(srcdir)/../mkinstalldirs $(DESTDIR)$(man1dir)
+ $(srcdir)/../mkinstalldirs $(DESTDIR)$(PIXMAPS_DIR)
+ $(srcdir)/../mkinstalldirs $(DESTDIR)$(datadir)/gnome/apps/Applications
uninstall:
rm -f $(bindir)/$(PRG) $(man1dir)/xcdrdao.1
Index: bchunk.info
===================================================================
RCS file: /cvsroot/fink/dists/10.2/unstable/main/finkinfo/utils/bchunk.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- bchunk.info 18 Sep 2003 17:33:07 -0000 1.1
+++ bchunk.info 22 Sep 2003 01:52:38 -0000 1.2
@@ -2,9 +2,9 @@
Version: 1.1.1
Revision: 1
Source: http://hes.iki.fi/%n/%n-%v.tar.gz
-Source-MD5: 9a86fde990df3a58fad51876139f121c
+Source-MD5: 9a86fde990df3a58fad51876139f121c
-CompileScript: make CC=cc LD=cc
+CompileScript: make CC=gcc LD=gcc
InstallScript: <<
mkdir -p %i/bin
--- cdirip-0.6.2-1.info DELETED ---
--- cdirip-0.6.2-1.patch DELETED ---
--- cdrdao-1.1.7-2.info DELETED ---
--- cdrdao-1.1.7-2.patch DELETED ---
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Fink-commits mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-commits