From owner-freebsd-ports Sun Feb 28 11:20:19 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 BF4F9152A7 for ; Sun, 28 Feb 1999 11:20:16 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id LAA32449; Sun, 28 Feb 1999 11:20:00 -0800 (PST) (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 699D81528E for ; Sun, 28 Feb 1999 11:13:15 -0800 (PST) (envelope-from jonny@jonny.eng.br) Received: (from jonny@localhost) by roma.coe.ufrj.br (8.8.8/8.8.8) id QAA28989; Sun, 28 Feb 1999 16:12:59 -0300 (EST) (envelope-from jonny) Message-Id: <199902281912.QAA28989@roma.coe.ufrj.br> Date: Sun, 28 Feb 1999 16:12:59 -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/10309: New port: id3ren Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10309 >Category: ports >Synopsis: New port, id3ren, mpeg3 audio information utility >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: Sun Feb 28 11:20:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Joao Carlos Mendes Luis >Release: FreeBSD 2.2.8-STABLE i386 >Organization: COPPE/UFRJ >Environment: >Description: An easy port, indeed, but nobody has yet ported it. BTW: A USE_UNZIP option in bsd.ports.mk would probably be useful in the near future. >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: # # id3ren # id3ren/pkg # id3ren/pkg/COMMENT # id3ren/pkg/DESCR # id3ren/pkg/PLIST # id3ren/files # id3ren/files/md5 # id3ren/patches # id3ren/patches/patch-aa # id3ren/Makefile # echo c - id3ren mkdir -p id3ren > /dev/null 2>&1 echo c - id3ren/pkg mkdir -p id3ren/pkg > /dev/null 2>&1 echo x - id3ren/pkg/COMMENT sed 's/^X//' >id3ren/pkg/COMMENT << 'END-of-id3ren/pkg/COMMENT' XMpeg Audio Layer 3 util: rename files, edit tags, search, etc. END-of-id3ren/pkg/COMMENT echo x - id3ren/pkg/DESCR sed 's/^X//' >id3ren/pkg/DESCR << 'END-of-id3ren/pkg/DESCR' Xid3 Renamer is used to rename batches of mpeg3 files by reading the XID3 tag at the end of the file which contains the song name, artist, Xalbum, year, and a comment. The secondary function of id3 Renamer is Xa tagger, which can create, modify, or remove ID3 tags. X XIf you have questions, comments, or bugs mail me at badcrc@tscnet.com. XTo get the latest version go to http://tscnet.com/pages/badcrc/apps/id3ren/ X X-- XPorted by: Joao Carlos Mendes Luis END-of-id3ren/pkg/DESCR echo x - id3ren/pkg/PLIST sed 's/^X//' >id3ren/pkg/PLIST << 'END-of-id3ren/pkg/PLIST' Xbin/id3ren END-of-id3ren/pkg/PLIST echo c - id3ren/files mkdir -p id3ren/files > /dev/null 2>&1 echo x - id3ren/files/md5 sed 's/^X//' >id3ren/files/md5 << 'END-of-id3ren/files/md5' XMD5 (id3ren97a.zip) = 4cb10259b1b523c0f9cd064034fcfaaa END-of-id3ren/files/md5 echo c - id3ren/patches mkdir -p id3ren/patches > /dev/null 2>&1 echo x - id3ren/patches/patch-aa sed 's/^X//' >id3ren/patches/patch-aa << 'END-of-id3ren/patches/patch-aa' X--- /lab/elepot/users/Others/jonny/tmp/tohome/mp3/util/id3ren/src/Makefile Wed Mar 18 04:28:44 1998 X+++ Makefile Sun Feb 28 16:04:16 1999 X@@ -1,16 +1,18 @@ X-CFLAGS = -O2 -s -Wall X+CFLAGS += -O2 -s -Wall X CC = gcc X RM = rm -f X-INSTALL = install -s -m 755 X-INSTALL_DIR = .. X+INSTALL = install -cs -m 755 -o root -g wheel X+INSTALL_DIR = ${PREFIX}/bin X INSTALL_NAME = id3ren X X SOURCES = id3ren.c id3tag.c file.c misc.c X X-all: X+all: ${INSTALL_NAME} X+ X+${INSTALL_NAME}: X ${CC} ${CFLAGS} -o ${INSTALL_NAME} ${SOURCES} X X-install: all X+install: ${INSTALL_NAME} X ${INSTALL} ${INSTALL_NAME} ${INSTALL_DIR}/${INSTALL_NAME} X X clean: END-of-id3ren/patches/patch-aa echo x - id3ren/Makefile sed 's/^X//' >id3ren/Makefile << 'END-of-id3ren/Makefile' X# New ports collection makefile for: id3ren X# URL: http://tscnet.com/pages/badcrc/apps/id3ren/ X# Version required: 0.97a X# Date created: 28 February 1999 X# Whom: Joao Carlos Mendes Luis X# X# $Id: $ X# X XDISTNAME= id3ren97a XPKGNAME= id3ren-0.97a XCATEGORIES= audio XMASTER_SITES= http://tscnet.com/pages/badcrc/apps/id3ren/ XEXTRACT_SUFX= .zip XWRKSRC= ${WRKDIR}/id3ren/src X XMAINTAINER= jonny@jonny.eng.br X XBUILD_DEPENDS= unzip:${PORTSDIR}/archivers/unzip X Xdo-extract: X @${RM} -rf ${WRKDIR} X @${MKDIR} ${WRKDIR} X @unzip -q -o ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} -d ${WRKDIR} X X.include END-of-id3ren/Makefile exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message