diff options
author | knu <knu@FreeBSD.org> | 2001-07-29 23:56:31 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2001-07-29 23:56:31 +0800 |
commit | e2d4a20f225b63ac435376419e57316049ab7396 (patch) | |
tree | f6102c26e168df3cb091f977ab583e18f7707aa1 | |
parent | e68753f98ff33a08cf8ef2aef399ee34ac2ea142 (diff) | |
download | freebsd-ports-graphics-e2d4a20f225b63ac435376419e57316049ab7396.tar.gz freebsd-ports-graphics-e2d4a20f225b63ac435376419e57316049ab7396.tar.zst freebsd-ports-graphics-e2d4a20f225b63ac435376419e57316049ab7396.zip |
Add ruby-mp3tag, a Ruby module to manipulate ID3v1.1 tags in MP3
files.
-rw-r--r-- | audio/Makefile | 1 | ||||
-rw-r--r-- | audio/ruby-mp3tag/Makefile | 34 | ||||
-rw-r--r-- | audio/ruby-mp3tag/distinfo | 1 | ||||
-rw-r--r-- | audio/ruby-mp3tag/pkg-comment | 1 | ||||
-rw-r--r-- | audio/ruby-mp3tag/pkg-descr | 6 | ||||
-rw-r--r-- | audio/ruby-mp3tag/pkg-plist | 6 |
6 files changed, 49 insertions, 0 deletions
diff --git a/audio/Makefile b/audio/Makefile index 1a606e6c560..2f6f8ec88bd 100644 --- a/audio/Makefile +++ b/audio/Makefile @@ -162,6 +162,7 @@ SUBDIR += rplay SUBDIR += rsynth SUBDIR += ruby-audiofile + SUBDIR += ruby-mp3tag SUBDIR += s3mod SUBDIR += sbagen SUBDIR += sdl_mixer diff --git a/audio/ruby-mp3tag/Makefile b/audio/ruby-mp3tag/Makefile new file mode 100644 index 00000000000..82fda38ff64 --- /dev/null +++ b/audio/ruby-mp3tag/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: Ruby/Mp3Tag +# Date created: 30 July 2001 +# Whom: Akinori MUSHA aka knu <knu@idaemons.org> +# +# $FreeBSD$ +# + +PORTNAME= mp3tag +PORTVERSION= 1.0 +CATEGORIES= audio ruby +MASTER_SITES= http://www.cs.auc.dk/~larsch/ruby/ +PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} +DIST_SUBDIR= ruby + +MAINTAINER= knu@FreeBSD.org + +USE_RUBY= yes + +NO_BUILD= yes + +DOCS= README mp3tag.html + +do-install: + ${INSTALL_DATA} ${WRKSRC}/mp3tag.rb ${RUBY_SITELIBDIR}/ +.if !defined(NOPORTDOCS) + ${MKDIR} ${RUBY_EXAMPLESDIR}/${PORTNAME} + ${INSTALL_DATA} ${WRKSRC}/mp3tag_test.rb ${RUBY_EXAMPLESDIR}/${PORTNAME}/ + ${MKDIR} ${RUBY_DOCDIR}/${PORTNAME} +.for f in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/${PORTNAME}/ +.endfor +.endif + +.include <bsd.port.mk> diff --git a/audio/ruby-mp3tag/distinfo b/audio/ruby-mp3tag/distinfo new file mode 100644 index 00000000000..82f0c6ed715 --- /dev/null +++ b/audio/ruby-mp3tag/distinfo @@ -0,0 +1 @@ +MD5 (ruby/mp3tag-1.0.tar.gz) = ed8cbc1e2def150eeb194b1311ea5008 diff --git a/audio/ruby-mp3tag/pkg-comment b/audio/ruby-mp3tag/pkg-comment new file mode 100644 index 00000000000..9157b613e89 --- /dev/null +++ b/audio/ruby-mp3tag/pkg-comment @@ -0,0 +1 @@ +A Ruby module to manipulate ID3v1.1 tags in MP3 files diff --git a/audio/ruby-mp3tag/pkg-descr b/audio/ruby-mp3tag/pkg-descr new file mode 100644 index 00000000000..9487dc732e1 --- /dev/null +++ b/audio/ruby-mp3tag/pkg-descr @@ -0,0 +1,6 @@ +Mp3Tag is a ruby module that handles ID3v1.1 tags in MP3 files. It +can read ID3v1.0 and ID3v1.1 but only write ID3v1.1 tags. It can save +new tags and remove tags. + +Author: Lars Christensen <larsch@cs.auc.dk> +WWW: http://www.cs.auc.dk/~larsch/ruby/mp3tag.html diff --git a/audio/ruby-mp3tag/pkg-plist b/audio/ruby-mp3tag/pkg-plist new file mode 100644 index 00000000000..2e4d7cf2020 --- /dev/null +++ b/audio/ruby-mp3tag/pkg-plist @@ -0,0 +1,6 @@ +%%RUBY_SITELIBDIR%%/mp3tag.rb +%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/mp3tag/mp3tag_test.rb +%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/mp3tag +%%PORTDOCS%%%%RUBY_DOCDIR%%/mp3tag/README +%%PORTDOCS%%%%RUBY_DOCDIR%%/mp3tag/mp3tag.html +%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/mp3tag |