Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
A small utility to read and write TAG info, as well as retrieve the MP3
Header info and print it all out in a nice format.
Released under GNU GPL.
Features:
- Get, Set and Wipe MP3 TAG Info.
- Get MPEG Audio Version 1, 2 and 2.5 (All Layers) Header info.
- Userdefinable output formatting (rather advanced).
- Can rename files according to userdefined scheme.
+18
View File
@@ -0,0 +1,18 @@
# $NetBSD: Makefile,v 1.11 2012/10/02 23:47:59 asau Exp $
#
DISTNAME= mp3info-0.2.16
CATEGORIES= audio
MASTER_SITES= ${MASTER_SITE_SUNSITE:=apps/sound/editors/}
MAINTAINER= simonb@NetBSD.org
COMMENT= MP3 header and tag information tool
CONFLICTS= gmp3info-[0-9]*
PKG_INSTALLATION_TYPES= overwrite pkgviews
GNU_CONFIGURE= YES
USE_LANGUAGES= c c++
.include "../../mk/bsd.pkg.mk"
+3
View File
@@ -0,0 +1,3 @@
@comment $NetBSD: PLIST,v 1.1 2001/11/01 00:17:29 zuntum Exp $
bin/mp3info
man/man1/mp3info.1
+7
View File
@@ -0,0 +1,7 @@
$NetBSD: distinfo,v 1.5 2011/09/04 23:41:52 dholland Exp $
SHA1 (mp3info-0.2.16.tar.gz) = b4cb7feb0b2c52ce1c2a23b919f4ab3c3012b11f
RMD160 (mp3info-0.2.16.tar.gz) = 61810736aff11e1e241d78f572acd4890f795851
Size (mp3info-0.2.16.tar.gz) = 42950 bytes
SHA1 (patch-aa) = 4b036972514390c517eed0d1a86acf871c7d2730
SHA1 (patch-configure) = 995088079b05571d545eae85e0d22a574799b3b0
+12
View File
@@ -0,0 +1,12 @@
$NetBSD: patch-aa,v 1.1 2004/06/16 03:25:48 minskim Exp $
--- mp3info.cxx.orig 1999-03-19 14:36:34.000000000 -0600
+++ mp3info.cxx
@@ -7,6 +7,7 @@
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
+#include <time.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/time.h>
+15
View File
@@ -0,0 +1,15 @@
$NetBSD: patch-configure,v 1.1 2011/09/04 23:41:52 dholland Exp $
Fix test program; implicit int return type is not valid in C++.
--- configure~ 1999-03-19 21:04:21.000000000 +0000
+++ configure
@@ -818,7 +818,7 @@ cross_compiling=$ac_cv_prog_cxx_cross
cat > conftest.$ac_ext <<EOF
#line 820 "configure"
#include "confdefs.h"
-main(){return(0);}
+int main(){return(0);}
EOF
if { (eval echo configure:824: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
ac_cv_prog_cxx_works=yes