diff options
-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 1a606e6..2f6f8ec 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 0000000..82fda38 --- /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 0000000..82f0c6e --- /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 0000000..9157b61 --- /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 0000000..9487dc7 --- /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 0000000..2e4d7cf --- /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 |