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.
This commit is contained in:
parent
40a1f0a5b8
commit
9ef8e436ff
5 changed files with 65 additions and 0 deletions
14
audio/id3/Makefile
Normal file
14
audio/id3/Makefile
Normal file
|
@ -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"
|
5
audio/id3/distinfo
Normal file
5
audio/id3/distinfo
Normal file
|
@ -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
|
38
audio/id3/patches/patch-aa
Normal file
38
audio/id3/patches/patch-aa
Normal file
|
@ -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)
|
5
audio/id3/pkg/DESCR
Normal file
5
audio/id3/pkg/DESCR
Normal file
|
@ -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.
|
3
audio/id3/pkg/PLIST
Normal file
3
audio/id3/pkg/PLIST
Normal file
|
@ -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
|
Loading…
Reference in a new issue