Add port sysutils/titlefix:

Renames files in a proper English title format: prepositions, conjunctions,
and articles (<5 letters) are in lowercase unless they are the first or
last word in the title; all others begin with uppercase. Can use id3v2 to
tag mp3s using info in filename.

WWW: http://sourceforge.net/projects/titlefix/
This commit is contained in:
Andrew Pantyukhin 2006-08-18 09:03:18 +00:00
parent 3c23efb76a
commit f34d452231
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=170928
4 changed files with 38 additions and 0 deletions

View File

@ -575,6 +575,7 @@
SUBDIR += ticker.app
SUBDIR += timelimit
SUBDIR += tinybsd
SUBDIR += titlefix
SUBDIR += tmpreaper
SUBDIR += tmpwatch
SUBDIR += topless

View File

@ -0,0 +1,28 @@
# New ports collection makefile for: titlefix
# Date created: 17 August 2006
# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= titlefix
PORTVERSION= 0.5
CATEGORIES= sysutils
MASTER_SITES= SF
MAINTAINER= infofarmer@FreeBSD.org
COMMENT= Renames files in a proper English title format
RUN_DEPENDS= id3v2:${PORTSDIR}/audio/id3v2
USE_PERL5_RUN= yes
NO_BUILD= yes
MAN1= titlefix.1 titlefixid3.1 titleid3.1
PLIST_FILES= bin/titlefix bin/titlefixid3 bin/titleid3
do-install:
@${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
@${LN} -sf ${PREFIX}/bin/${PORTNAME} ${PREFIX}/bin/titlefixid3
@${LN} -sf ${PREFIX}/bin/${PORTNAME} ${PREFIX}/bin/titleid3
@${INSTALL_MAN} ${MAN1:S,^,${WRKSRC}/man1/,} ${MAN1PREFIX}/man/man1/
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (titlefix-0.5.tar.gz) = cf44b0814fdb1990406d92d177041d8a
SHA256 (titlefix-0.5.tar.gz) = 761a32eaae96ac96d13122621281a9e1856256bf6156f0b65bcba7a8dbda36c9
SIZE (titlefix-0.5.tar.gz) = 11124

View File

@ -0,0 +1,6 @@
Renames files in a proper English title format: prepositions, conjunctions,
and articles (<5 letters) are in lowercase unless they are the first or
last word in the title; all others begin with uppercase. Can use id3v2 to
tag mp3s using info in filename.
WWW: http://sourceforge.net/projects/titlefix/