pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/audio/cripple Import cripple from pkgsrc-wip.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9cc6a1815ff8
branches:  trunk
changeset: 504983:9cc6a1815ff8
user:      ghen <ghen%pkgsrc.org@localhost>
date:      Wed Dec 28 15:52:01 2005 +0000

description:
Import cripple from pkgsrc-wip.

Cripple is a simple command line CD ripper wrapper.  It uses audio/cdparanoia,
misc/libcdio or sysutils/cdrecord to rip, and audio/lame or audio/bladeenc to
encode tracks from a CD.

Cripple retrieves naming information for filenames and ID3 tags from the freedb
(CDDB) or local xmcd/CDDB format files, which it can write.  CDDB access is
implemented via HTTP and works through proxies.  There is built-in support for
writing ID3v1.1 tags to output files.

diffstat:

 audio/cripple/DESCR            |   8 ++++++++
 audio/cripple/MESSAGE          |  16 ++++++++++++++++
 audio/cripple/Makefile         |  15 +++++++++++++++
 audio/cripple/PLIST            |   3 +++
 audio/cripple/distinfo         |   6 ++++++
 audio/cripple/patches/patch-aa |  13 +++++++++++++
 6 files changed, 61 insertions(+), 0 deletions(-)

diffs (85 lines):

diff -r a03f12032765 -r 9cc6a1815ff8 audio/cripple/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/cripple/DESCR       Wed Dec 28 15:52:01 2005 +0000
@@ -0,0 +1,8 @@
+Cripple is a simple command line CD ripper wrapper.  It uses audio/cdparanoia,
+misc/libcdio or sysutils/cdrecord to rip, and audio/lame or audio/bladeenc to
+encode tracks from a CD.
+
+Cripple retrieves naming information for filenames and ID3 tags from the freedb
+(CDDB) or local xmcd/CDDB format files, which it can write.  CDDB access is
+implemented via HTTP and works through proxies.  There is built-in support for
+writing ID3v1.1 tags to output files.
diff -r a03f12032765 -r 9cc6a1815ff8 audio/cripple/MESSAGE
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/cripple/MESSAGE     Wed Dec 28 15:52:01 2005 +0000
@@ -0,0 +1,16 @@
+===========================================================================
+$NetBSD: MESSAGE,v 1.1.1.1 2005/12/28 15:52:01 ghen Exp $
+
+To use this package you will need at least one of the following rippers:
+
+audio/cdparanoia
+misc/libcdio
+sysutils/cdrecord
+
+and one of the following encoders:
+
+audio/lame
+audio/bladeenc
+
+It will use cdparanoia and lame by default.
+===========================================================================
diff -r a03f12032765 -r 9cc6a1815ff8 audio/cripple/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/cripple/Makefile    Wed Dec 28 15:52:01 2005 +0000
@@ -0,0 +1,15 @@
+# $NetBSD: Makefile,v 1.1.1.1 2005/12/28 15:52:01 ghen Exp $
+
+DISTNAME=      cripple-0.06b
+CATEGORIES=    audio
+MASTER_SITES=  ${HOMEPAGE}
+EXTRACT_SUFX=  .tar.bz2
+
+MAINTAINER=    ghen%NetBSD.org@localhost
+HOMEPAGE=      http://www.vortex.prodigynet.co.uk/cripple/
+COMMENT=       Command line CD ripper/encoder wrapper with cddb support
+
+GNU_CONFIGURE= yes
+BUILD_TARGET=  cripple
+
+.include "../../mk/bsd.pkg.mk"
diff -r a03f12032765 -r 9cc6a1815ff8 audio/cripple/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/cripple/PLIST       Wed Dec 28 15:52:01 2005 +0000
@@ -0,0 +1,3 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2005/12/28 15:52:01 ghen Exp $
+bin/cripple
+man/man1/cripple.1
diff -r a03f12032765 -r 9cc6a1815ff8 audio/cripple/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/cripple/distinfo    Wed Dec 28 15:52:01 2005 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1.1.1 2005/12/28 15:52:01 ghen Exp $
+
+SHA1 (cripple-0.06b.tar.bz2) = 24a2ad31a056549fa52751937ed6b582e34acb85
+RMD160 (cripple-0.06b.tar.bz2) = 7cdfad53667a2a35e6a4e32505654d2fcd57c856
+Size (cripple-0.06b.tar.bz2) = 56452 bytes
+SHA1 (patch-aa) = 142b9dceb2f2c77f1cb2452f02d0c084ca188a95
diff -r a03f12032765 -r 9cc6a1815ff8 audio/cripple/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/cripple/patches/patch-aa    Wed Dec 28 15:52:01 2005 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.1.1.1 2005/12/28 15:52:01 ghen Exp $
+
+--- cripple.h.orig     2005-05-01 22:56:23.000000000 +0200
++++ cripple.h
+@@ -68,6 +68,8 @@
+ 
+ #ifdef __sun
+ #  define DEF_CD_DEV  "/vol/dev/aliases/cdrom0"
++#elif defined(__NetBSD__)
++#  define DEF_CD_DEV  "/dev/rcd0d"
+ #elif defined(__win32__)
+ /*
+  * on win32 a null path will cause read_cdtoc_from_drive() to search for one.



Home | Main Index | Thread Index | Old Index