1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-27 10:03:20 +00:00

- Update to 1.1

- Give maintainership to submitter

PR:		40212
Submitted by:	Tilman Linneweh <tilman@arved.de>
Approved by:	Joao Carlos Mendes Luis <jonny@jonny.eng.br>
		(previous maintainer)
This commit is contained in:
Hye-Shik Chang 2002-07-05 19:09:04 +00:00
parent f55b5f8ad1
commit 55c997b301
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=62492
4 changed files with 6 additions and 42 deletions

View File

@ -6,13 +6,11 @@
#
PORTNAME= ripenc
PORTVERSION= 0.7
PORTVERSION= 1.1
CATEGORIES= audio
MASTER_SITES= ftp://ftp.vision.net.au/ftp4/html/files/ \
ftp://ftp.loxinfo.co.th/pub/unix/cd-writer/
DISTNAME= ${PORTNAME}${PORTVERSION}
MASTER_SITES= http://home.kc.rr.com/ripenc/
MAINTAINER= jonny@jonny.eng.br
MAINTAINER= freebsdports@arved.de
WRKSRC= ${WRKDIR}/ripenc

View File

@ -1 +1 @@
MD5 (ripenc0.7.tar.gz) = c51ecce28d63d27444437be2d35261a6
MD5 (ripenc-1.1.tar.gz) = e0b7911b534a962f1f010709d38cac1b

View File

@ -1,33 +0,0 @@
--- 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

View File

@ -5,9 +5,8 @@ CDDB lookups to name the songs as they are ripped. Cda, which is
included in the XMCD package, must be used if you wish to utilize CDDB
naming. A manual naming option is also available.
This is version 0.6 (released Feb 27, 1999).
WWW: http://www.asde.com/~mjparme/index.htm
Author: Michael J. Parmeley
WWW: http://home.kc.rr.com/ripenc/
- Joao Carlos Mendes Luis
<jonny@jonny.eng.br>