diff options
author | agc <agc> | 2001-10-12 09:21:15 +0000 |
---|---|---|
committer | agc <agc> | 2001-10-12 09:21:15 +0000 |
commit | bedcfca655c423b371de7ec0d8defdc922cc681b (patch) | |
tree | c4561f7299e52df90469f8cd9af6a9bb06f36217 | |
parent | dbe2b0197d9c4b6ff0e924cd0b8f7e4c819a67ee (diff) | |
download | pkgsrc-bedcfca655c423b371de7ec0d8defdc922cc681b.tar.gz |
Initial import of id3-0.12 into the packages collection.
id3 is an ID3 v1.1 tag editor. ID3 tags are traditionally put at the
end of compressed streamed audio files to denote information about the
audio contents. Up to thirty characters of Title, Artist, and Album
information can be stored, as well as a 28-character comment,
four-digit year, track number up to 255, and an enumerated genre.
-rw-r--r-- | audio/id3/Makefile | 14 | ||||
-rw-r--r-- | audio/id3/distinfo | 5 | ||||
-rw-r--r-- | audio/id3/patches/patch-aa | 38 | ||||
-rw-r--r-- | audio/id3/pkg/DESCR | 5 | ||||
-rw-r--r-- | audio/id3/pkg/PLIST | 3 |
5 files changed, 65 insertions, 0 deletions
diff --git a/audio/id3/Makefile b/audio/id3/Makefile new file mode 100644 index 00000000000..d0d1147ac42 --- /dev/null +++ b/audio/id3/Makefile @@ -0,0 +1,14 @@ +# $NetBSD: Makefile,v 1.1.1.1 2001/10/12 09:21:15 agc Exp $ + +DISTNAME= id3_0.12.orig +PKGNAME= id3-0.12 +CATEGORIES= audio +MASTER_SITES= http://frantica.lly.org/~rcw/id3/ + +MAINTAINER= packages@netbsd.org +HOMEPAGE= http://frantica.lly.org/~rcw/abcde/page/ +COMMENT= ID3 v1.1 tag editor + +WRKSRC= ${WRKDIR}/${PKGNAME} + +.include "../../mk/bsd.pkg.mk" diff --git a/audio/id3/distinfo b/audio/id3/distinfo new file mode 100644 index 00000000000..f0315301332 --- /dev/null +++ b/audio/id3/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2001/10/12 09:21:15 agc Exp $ + +SHA1 (id3_0.12.orig.tar.gz) = 6e74313f56214a73ef8b54edabd698444e07080f +Size (id3_0.12.orig.tar.gz) = 12492 bytes +SHA1 (patch-aa) = bdc5f4ffb461e65657d56b878ae4545121b4be15 diff --git a/audio/id3/patches/patch-aa b/audio/id3/patches/patch-aa new file mode 100644 index 00000000000..6648fc5ab4e --- /dev/null +++ b/audio/id3/patches/patch-aa @@ -0,0 +1,38 @@ +$NetBSD: patch-aa,v 1.1.1.1 2001/10/12 09:21:15 agc Exp $ + +--- Makefile 2001/10/12 08:59:21 1.1 ++++ Makefile 2001/10/12 09:11:16 +@@ -3,17 +3,17 @@ + + SHELL = /bin/sh + +-CC = gcc +-CFLAGS = -g -O2 +-LDFLAGS = ++#CC = gcc ++#CFLAGS = -g -O2 ++#LDFLAGS = + LIBS = + DEFS = +-INSTALL = /usr/bin/install -c ++#INSTALL = /usr/bin/install + + # Installation directories +-prefix = ${DESTDIR}/usr ++prefix = ${PREFIX} + exec_prefix = ${prefix} +-mandir = ${prefix}/share/man/man1 ++mandir = ${prefix}/man/man1 + bindir = ${exec_prefix}/bin + + INCL = +@@ -34,7 +34,5 @@ + rm -f *~ *.o core $(PRODUCT) + + install: $(PRODUCT) +- $(INSTALL) -d -m 755 $(bindir) +- $(INSTALL) -s -m 755 -o 0 $(PRODUCT) $(bindir) +- $(INSTALL) -d -m 755 $(mandir) +- $(INSTALL) -m 644 -o 0 $(PRODUCT).1 $(mandir) ++ $(BSD_INSTALL_PROGRAM) $(PRODUCT) $(bindir) ++ $(BSD_INSTALL_MAN) -m 644 -o 0 $(PRODUCT).1 $(mandir) diff --git a/audio/id3/pkg/DESCR b/audio/id3/pkg/DESCR new file mode 100644 index 00000000000..bc02df7443f --- /dev/null +++ b/audio/id3/pkg/DESCR @@ -0,0 +1,5 @@ +id3 is an ID3 v1.1 tag editor. ID3 tags are traditionally put at the +end of compressed streamed audio files to denote information about the +audio contents. Up to thirty characters of Title, Artist, and Album +information can be stored, as well as a 28-character comment, +four-digit year, track number up to 255, and an enumerated genre. diff --git a/audio/id3/pkg/PLIST b/audio/id3/pkg/PLIST new file mode 100644 index 00000000000..9013de3f855 --- /dev/null +++ b/audio/id3/pkg/PLIST @@ -0,0 +1,3 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2001/10/12 09:21:15 agc Exp $ +bin/id3 +man/man1/id3.1 |