0dd1fb9151
mBox is program intended to help you with organizing your music files. The most important features are: - Ability to reencode mp3/ogg/wma to mp3/ogg - contains utility 'convertor' which converts whole directories to desired format. Bitrate, etc. is automatically adjusted depending on settings and source audio. See users-guide for further information. - supports reading/writing tags in MP3 ID3v1 and ID3v2, Ogg Vorbis - supports reading WMA tags - supports FreeDB, treates encoded files as if it was CD, so you can simply select your files and - if found in database - write tags to them. - supports auto tagging - reads tag information from filename - supports batch tags editing - supports batch files renaming (can use tags) - supports directory renaming (can use tags) PR: ports/71288 Submitted by: Vladimir Osintsev <oc@nm.ru>
34 lines
1.0 KiB
Makefile
34 lines
1.0 KiB
Makefile
# New ports collection makefile for: mBox
|
|
# Date created: 01 Sep 2004
|
|
# Whom: Vladimir Osintsev <oc@nm.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mBox
|
|
PORTVERSION= 0.4.0
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://www.mbox.wz.cz/src/
|
|
DISTNAME= ${PORTNAME:L}-${PORTVERSION}
|
|
|
|
MAINTAINER= oc@nm.ru
|
|
COMMENT= Program intended to help with organizing your music files
|
|
|
|
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/wxPython/__init__.py:${PORTSDIR}/x11-toolkits/py-wxPython \
|
|
${PYTHON_SITELIBDIR}/ogg/__init__.py:${PORTSDIR}/audio/py-ogg \
|
|
${PYTHON_SITELIBDIR}/ogg/vorbis.so:${PORTSDIR}/audio/py-vorbis \
|
|
lame:${PORTSDIR}/audio/lame \
|
|
oggenc:${PORTSDIR}/audio/vorbis-tools \
|
|
mplayer:${PORTSDIR}/multimedia/mplayer
|
|
LIB_DEPENDS= wx_gtk2-2.4.0:${PORTSDIR}/x11-toolkits/wxgtk2
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_PYTHON= 2.2+
|
|
USE_BZIP2= yes
|
|
PYTHON_SETUP= ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} setup.py
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
NO_BUILD= yes
|
|
|
|
do-install:
|
|
(cd ${WRKSRC} && ${PYTHON_SETUP} install --prefix=${PREFIX})
|
|
|
|
.include <bsd.port.mk>
|