Cantus is an easy to use tool for tagging and renaming MP3 and OGG/Vorbis files. It has many features including mass tagging and renaming of MP3s, the ability to generate a tag out of the filename, filter definitions for renaming, recursive actions, CDDB (Freedb) lookup (no CD needed), copy between ID3V1 and ID3V2 tags, and a lot more. WWW: http://www.debain.org/software/cantus/ PR: ports/66799 Submitted by: Sergey Akifyev <asa@gascom.ru>
42 lines
986 B
Makefile
42 lines
986 B
Makefile
# New ports collection makefile for: cantus_3
|
|
# Date created: 18 May 2004
|
|
# Whom: asa@gascom.ru
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cantus_3
|
|
PORTVERSION= 3.0.0
|
|
CATEGORIES= audio
|
|
MASTER_SITES= ftp://ftp.gascom.ru/pub/asa/ \
|
|
http://web222.mis02.de/releases/cantus_3/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-1
|
|
|
|
MAINTAINER= asa@gascom.ru
|
|
COMMENT= Tool for tagging and renaming MP3 and OGG/Vorbis files
|
|
|
|
BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash2
|
|
LIB_DEPENDS= gtkmm-2.0.6:${PORTSDIR}/x11-toolkits/gtk--2 \
|
|
glademm-2.0.1:${PORTSDIR}/devel/libglademm \
|
|
ogg.5:${PORTSDIR}/audio/libogg \
|
|
vorbis.3:${PORTSDIR}/audio/libvorbis
|
|
|
|
USE_GMAKE= yes
|
|
USE_GNOME= gnomehack libglade2
|
|
USE_X_PREFIX= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 500000
|
|
IGNORE= Does not build on 4.X.
|
|
.endif
|
|
|
|
BASH?= ${LOCALBASE}/bin/bash
|
|
|
|
do-build:
|
|
@cd ${WRKSRC} && ${BASH} build.sh --prefix '${PREFIX}'
|
|
|
|
do-install:
|
|
@cd ${WRKSRC} && ${BASH} build.sh --install --prefix '${PREFIX}'
|
|
|
|
.include <bsd.port.post.mk>
|