diff options
author | schmonz <schmonz@pkgsrc.org> | 2008-10-05 22:56:41 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2008-10-05 22:56:41 +0000 |
commit | e111d74c3f0a7cf7fc55b78c8c29815d9a3e6ec2 (patch) | |
tree | 7e65b133ebb4bdc9d15ce92e3d7bb8193bc50d47 /audio/mp3splt/Makefile | |
parent | eb8f04705c5956494b951c79748314193732a241 (diff) | |
download | pkgsrc-e111d74c3f0a7cf7fc55b78c8c29815d9a3e6ec2.tar.gz |
Update mp3splt to 2.2.1 (obviating the need for mp3splt-devel) and take
MAINTAINER. From the changelog:
- corrected the -g option to be more intuitive
- fixed bug in the man page (from wrong '-t' to wrong '-g')
- changed small usage error on '-g' option
- mp3splt is now using libmp3splt
- checks for compatibilities between options
- added 'm-' for mp3 STDIN
- possibility to specify the server and port for freedb search;
(now using tracktype.org by default)
- original id3v1 for mp3 tags are kept in the splitted files and also
ogg vorbis tags
- add custom tags with the new '-g' option
- '-o' option now creates the specified directories if '-d' option is not
specified
- added '-Q' option which enables the '-q' option and does not print
anything to STDOUT
- added experimental '-D' debug mode option
- added '-i' option for counting the number of silence splitpoints
- also added '-h' option which shows a small usage
Diffstat (limited to 'audio/mp3splt/Makefile')
-rw-r--r-- | audio/mp3splt/Makefile | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/audio/mp3splt/Makefile b/audio/mp3splt/Makefile index 9922a09199b..8052bde37eb 100644 --- a/audio/mp3splt/Makefile +++ b/audio/mp3splt/Makefile @@ -1,23 +1,19 @@ -# $NetBSD: Makefile,v 1.12 2008/07/14 12:55:58 joerg Exp $ +# $NetBSD: Makefile,v 1.13 2008/10/05 22:56:41 schmonz Exp $ # -DISTNAME= mp3splt-2.1c-src -PKGNAME= ${DISTNAME:S/-src//} +DISTNAME= mp3splt-2.2.1 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mp3splt/} -MAINTAINER= pkgsrc-users@NetBSD.org +MAINTAINER= schmonz@NetBSD.org HOMEPAGE= http://mp3splt.sourceforge.net/ COMMENT= Command line utility to split MP3 (VBR supported) and OGG files PKG_DESTDIR_SUPPORT= user-destdir -WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} USE_PKGLOCALEDIR= yes -GNU_CONFIGURE= yes - -.include "../../audio/libmad/buildlink3.mk" -.include "../../audio/libvorbis/buildlink3.mk" -.include "../../multimedia/libogg/buildlink3.mk" +GNU_CONFIGURE= yes +USE_FEATURES= getopt_long +.include "../../audio/libmp3splt/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |