Initial import of oggtag-1.0

oggtag is a tiny command-line editor for description tags in Ogg Vorbis
files. It can set all the tags suggested by the Ogg Vorbis specification[1]
on one or several files at a time.

[1] http://www.xiph.org/ogg/vorbis/doc/v-comment.html

Submitted and maintained by Julian Leyh <oenone /at/ oenone.de>
This commit is contained in:
xsa 2004-06-10 20:37:44 +00:00
parent 5873f51b97
commit 16eb0f8499
5 changed files with 62 additions and 0 deletions

39
audio/oggtag/Makefile Normal file
View File

@ -0,0 +1,39 @@
# $OpenBSD: Makefile,v 1.1.1.1 2004/06/10 20:37:44 xsa Exp $
COMMENT= "command-line editor for tags in Ogg Vorbis files"
DISTNAME= oggtag_1.0
PKGNAME= ${DISTNAME:S/_/-/}
CATEGORIES= audio
HOMEPAGE= http://oggtag.sourceforge.net/
MAINTAINER= Julian Leyh <oenone@oenone.de>
# LGPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=oggtag/}
EXTRACT_SUFX= .tgz
LIB_DEPENDS= ogg.5::audio/libogg \
vorbis.3::audio/libvorbis
WRKDIST= ${WRKDIR}
NO_REGRESS= Yes
LIBS= -lm -lvorbis -logg
do-build:
cd ${WRKSRC} && \
${CC} ${CFLAGS} -o oggtag oggtag.c vcedit.c \
-I${LOCALBASE}/include -L${LOCALBASE}/lib ${LIBS}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/oggtag ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/oggtag.1 ${PREFIX}/man/man1
.include <bsd.port.mk>

3
audio/oggtag/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (oggtag_1.0.tgz) = bd67509c68c2c396d86341949e7fb94d
RMD160 (oggtag_1.0.tgz) = 8869bdf3a41d706958ceff78318f5c4e010278ba
SHA1 (oggtag_1.0.tgz) = e34c572ebf35a2fabc86f6d874a918cef3f13712

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-oggtag_c,v 1.1.1.1 2004/06/10 20:37:44 xsa Exp $
--- oggtag.c.orig 2002-12-02 10:03:27.000000000 +0100
+++ oggtag.c 2004-06-10 16:51:58.000000000 +0200
@@ -4,6 +4,8 @@
*/
#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
#include <unistd.h>
#include "vcedit.h"

5
audio/oggtag/pkg/DESCR Normal file
View File

@ -0,0 +1,5 @@
oggtag is a tiny command-line editor for description tags in Ogg Vorbis
files. It can set all the tags suggested by the Ogg Vorbis specification[1]
on one or several files at a time.
[1] http://www.xiph.org/ogg/vorbis/doc/v-comment.html

3
audio/oggtag/pkg/PLIST Normal file
View File

@ -0,0 +1,3 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2004/06/10 20:37:44 xsa Exp $
bin/oggtag
man/man1/oggtag.1