diff options
author | Chris Piazza <cpiazza@FreeBSD.org> | 1999-07-24 03:57:36 +0000 |
---|---|---|
committer | Chris Piazza <cpiazza@FreeBSD.org> | 1999-07-24 03:57:36 +0000 |
commit | 35e08ef4ac2969214e422e41254da8624e22c6c6 (patch) | |
tree | 172a7974fcce2b6f8e24e6aaaf437f34c335bbb9 /audio/ripenc | |
parent | daedfcfdccdf3d3e4f03eab4502091936cb9a9aa (diff) | |
download | ports-35e08ef4ac2969214e422e41254da8624e22c6c6.tar.gz ports-35e08ef4ac2969214e422e41254da8624e22c6c6.zip |
Update to version 0.7
PR: 12778
Submitted by: Joao Carlos Mendes Luis <jonny@jonny.eng.br>, maintainer
Notes
Notes:
svn path=/head/; revision=20335
Diffstat (limited to 'audio/ripenc')
-rw-r--r-- | audio/ripenc/Makefile | 10 | ||||
-rw-r--r-- | audio/ripenc/distinfo | 2 | ||||
-rw-r--r-- | audio/ripenc/files/patch-aa | 33 |
3 files changed, 40 insertions, 5 deletions
diff --git a/audio/ripenc/Makefile b/audio/ripenc/Makefile index 31f8b6566502..8adbae38a3a6 100644 --- a/audio/ripenc/Makefile +++ b/audio/ripenc/Makefile @@ -1,19 +1,21 @@ # New ports collection makefile for: ripenc # URL: http://www.asde.com/~mjparme/index.htm -# Version required: 0.6 +# Version required: 0.7 # Date created: 28 February 1999 # Whom: Joao Carlos Mendes Luis <jonny@jonny.eng.br> # -# $Id: $ +# $Id: Makefile,v 1.1.1.1 1999/04/27 12:57:55 taoka Exp $ # -DISTNAME= ripenc0.6 -PKGNAME= ripenc-0.6 +DISTNAME= ripenc0.7 +PKGNAME= ripenc-0.7 CATEGORIES= audio MASTER_SITES= http://www.asde.com/~mjparme/ MAINTAINER= jonny@jonny.eng.br +WRKSRC= ${WRKDIR}/ripenc + NO_BUILD= Shell Script do-install: diff --git a/audio/ripenc/distinfo b/audio/ripenc/distinfo index d6270e7d7126..6667d3f73432 100644 --- a/audio/ripenc/distinfo +++ b/audio/ripenc/distinfo @@ -1 +1 @@ -MD5 (ripenc0.6.tar.gz) = 3c2051a3b9d77c03056235d434c5fba1 +MD5 (ripenc0.7.tar.gz) = c51ecce28d63d27444437be2d35261a6 diff --git a/audio/ripenc/files/patch-aa b/audio/ripenc/files/patch-aa new file mode 100644 index 000000000000..5814f43c6ac8 --- /dev/null +++ b/audio/ripenc/files/patch-aa @@ -0,0 +1,33 @@ +--- ripenc.org Wed Jul 21 14:58:41 1999 ++++ ripenc Wed Jul 21 15:01:22 1999 +@@ -340,6 +340,9 @@ + tosha) + tosha -q -f wav -d ${DEVICE} -t ${num} -o ${SAVETO}/${NAME}.wav + ;; ++ dagrab) ++ dagrab -d ${DEVICE} -f ${SAVETO}/${NAME}.wav ${num} ++ ;; + none) + echo "Not Ripping" + esac +@@ -550,7 +553,8 @@ + echo "1) cdparanoia" + echo "2) cdda2wav" + echo "3) tosha" +- echo "4) none (assume wavs exist and/or wav files need to be encoded)" ++ echo "4) dagrab" ++ echo "5) none (assume wavs exist and/or wav files need to be encoded)" + echo -n "? " ; read ch + if [ "$ch" = "1" ] ; + then +@@ -565,6 +569,10 @@ + RIPPER=tosha + fi + if [ "$ch" = "4" ] ; ++ then ++ RIPPER=dagrab ++ fi ++ if [ "$ch" = "5" ] ; + then + RIPPER=none + fi |