From owner-freebsd-ports Wed Jul 21 11:22: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B27DD14D89 for ; Wed, 21 Jul 1999 11:22:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA95445; Wed, 21 Jul 1999 11:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from roma.coe.ufrj.br (roma.coe.ufrj.br [146.164.53.65]) by hub.freebsd.org (Postfix) with ESMTP id 3385414D89 for ; Wed, 21 Jul 1999 11:15:55 -0700 (PDT) (envelope-from jonny@jonny.eng.br) Received: (from jonny@localhost) by roma.coe.ufrj.br (8.8.8/8.8.8) id PAA24930; Wed, 21 Jul 1999 15:14:20 -0300 (EST) (envelope-from jonny) Message-Id: <199907211814.PAA24930@roma.coe.ufrj.br> Date: Wed, 21 Jul 1999 15:14:20 -0300 (EST) From: Joao Carlos Mendes Luis Reply-To: jonny@jonny.eng.br To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/12742: Port upgrade, ripenc, distfile removed. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12742 >Category: ports >Synopsis: Version upgrade >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jul 21 11:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Joao Carlos Mendes Luis >Release: FreeBSD 2.2.8-STABLE i386 >Organization: SEF/RJ >Environment: >Description: Port distifiles has been removed from master site, new version. I'm the maintainer for this port. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # . # ./files # ./files/md5 # ./pkg # ./pkg/COMMENT # ./pkg/DESCR # ./pkg/PLIST # ./Makefile # ./patches # ./patches/patch-aa # echo c - . mkdir -p . > /dev/null 2>&1 echo c - ./files mkdir -p ./files > /dev/null 2>&1 echo x - ./files/md5 sed 's/^X//' >./files/md5 << 'END-of-./files/md5' XMD5 (ripenc0.7.tar.gz) = c51ecce28d63d27444437be2d35261a6 END-of-./files/md5 echo c - ./pkg mkdir -p ./pkg > /dev/null 2>&1 echo x - ./pkg/COMMENT sed 's/^X//' >./pkg/COMMENT << 'END-of-./pkg/COMMENT' XScript that automates the ripping, encoding, and naming of CD's END-of-./pkg/COMMENT echo x - ./pkg/DESCR sed 's/^X//' >./pkg/DESCR << 'END-of-./pkg/DESCR' XBourne shell script RIPENC (short for "rip and encode"). This script Xsupports cdparanoia, cdda2wav and tosha (a FreeBSD ripper) for ripping Xand bladeenc, 8hz-mp3 and l3enc for encoding. RIPENC also utilizes XCDDB lookups to name the songs as they are ripped. Cda, which is Xincluded in the XMCD package, must be used if you wish to utilize CDDB Xnaming. A manual naming option is also available. X XThis is version 0.6 (released Feb 27, 1999). X XWWW: http://www.asde.com/~mjparme/index.htm X X- Joao Carlos Mendes Luis X X XNote: This port does not depend on the binary utilities referenced Xabove. Choose and install then based on your own preferences. END-of-./pkg/DESCR echo x - ./pkg/PLIST sed 's/^X//' >./pkg/PLIST << 'END-of-./pkg/PLIST' Xbin/ripenc END-of-./pkg/PLIST echo x - ./Makefile sed 's/^X//' >./Makefile << 'END-of-./Makefile' X# New ports collection makefile for: ripenc X# URL: http://www.asde.com/~mjparme/index.htm X# Version required: 0.7 X# Date created: 28 February 1999 X# Whom: Joao Carlos Mendes Luis X# X# $Id: Makefile,v 1.1.1.1 1999/04/27 12:57:55 taoka Exp $ X# X XDISTNAME= ripenc0.7 XPKGNAME= ripenc-0.7 XCATEGORIES= audio XMASTER_SITES= http://www.asde.com/~mjparme/ X XMAINTAINER= jonny@jonny.eng.br X XWRKSRC= ${WRKDIR}/ripenc X XNO_BUILD= Shell Script X Xdo-install: X ${INSTALL_SCRIPT} ${WRKSRC}/ripenc ${PREFIX}/bin X X.include END-of-./Makefile echo c - ./patches mkdir -p ./patches > /dev/null 2>&1 echo x - ./patches/patch-aa sed 's/^X//' >./patches/patch-aa << 'END-of-./patches/patch-aa' X--- ripenc.org Wed Jul 21 14:58:41 1999 X+++ ripenc Wed Jul 21 15:01:22 1999 X@@ -340,6 +340,9 @@ X tosha) X tosha -q -f wav -d ${DEVICE} -t ${num} -o ${SAVETO}/${NAME}.wav X ;; X+ dagrab) X+ dagrab -d ${DEVICE} -f ${SAVETO}/${NAME}.wav ${num} X+ ;; X none) X echo "Not Ripping" X esac X@@ -550,7 +553,8 @@ X echo "1) cdparanoia" X echo "2) cdda2wav" X echo "3) tosha" X- echo "4) none (assume wavs exist and/or wav files need to be encoded)" X+ echo "4) tosha" X+ echo "5) none (assume wavs exist and/or wav files need to be encoded)" X echo -n "? " ; read ch X if [ "$ch" = "1" ] ; X then X@@ -565,6 +569,10 @@ X RIPPER=tosha X fi X if [ "$ch" = "4" ] ; X+ then X+ RIPPER=dagrab X+ fi X+ if [ "$ch" = "5" ] ; X then X RIPPER=none X fi END-of-./patches/patch-aa exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message