update to mp3info 0.8.5a
see http://www.ibiblio.org/mp3info/ChangeLog for details partly done by Giovanni Bechis <bigionews at snb.it>
This commit is contained in:
parent
bb1d809e7d
commit
c3a5051ef3
@ -1,8 +1,8 @@
|
||||
# $OpenBSD: Makefile,v 1.20 2006/08/01 12:13:28 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.21 2006/12/22 17:32:12 steven Exp $
|
||||
|
||||
COMMENT= "MP3 information tool"
|
||||
COMMENT= "MP3 technical info viewer and ID3 1.x tag editor"
|
||||
|
||||
DISTNAME= mp3info-0.8.4
|
||||
DISTNAME= mp3info-0.8.5a
|
||||
CATEGORIES= audio
|
||||
|
||||
HOMEPAGE= http://www.ibiblio.org/mp3info/
|
||||
@ -25,11 +25,14 @@ FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Mno_x11}
|
||||
ALL_TARGET= mp3info doc
|
||||
INSTALL_TARGET= install-no_x11
|
||||
INSTALL_TARGET= install-mp3info
|
||||
.else
|
||||
USE_X11= Yes
|
||||
LIB_DEPENDS= gtk.>=1.2,gdk.>=1.2::x11/gtk+
|
||||
WANTLIB+= X11 Xext Xi glib gmodule iconv intl m
|
||||
MODULES= devel/gettext
|
||||
LIB_DEPENDS= gtk-x11-2.0,gdk-x11-2.0,gdk_pixbuf-2.0::x11/gtk+2
|
||||
WANTLIB+= X11 Xext Xrender fontconfig freetype m z atk-1.0 \
|
||||
cairo glib-2.0 gmodule-2.0 gobject-2.0 glitz pango-1.0 \
|
||||
pangocairo-1.0 pangoft2-1.0 png
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,4 +1,4 @@
|
||||
MD5 (mp3info-0.8.4.tgz) = 879d0ced8ede5ec9fbaff4813851ea3f
|
||||
RMD160 (mp3info-0.8.4.tgz) = 265db8a8c32956b485c4af8aa42f2f29d4bb0825
|
||||
SHA1 (mp3info-0.8.4.tgz) = a291aa1c3c216f838f85c1148adbb69f7bf31d80
|
||||
SIZE (mp3info-0.8.4.tgz) = 38773
|
||||
MD5 (mp3info-0.8.5a.tgz) = cb7b619a10a40aaac2113b87bb2b2ea2
|
||||
RMD160 (mp3info-0.8.5a.tgz) = 898b566d9ba2f352949d061d991d92f2c8996ec3
|
||||
SHA1 (mp3info-0.8.5a.tgz) = 54df29eb6c2e581899affc12be698b0a71d91ca6
|
||||
SIZE (mp3info-0.8.5a.tgz) = 127482
|
||||
|
@ -1,6 +1,6 @@
|
||||
$OpenBSD: patch-Makefile,v 1.1 2003/12/09 02:33:45 margarida Exp $
|
||||
--- Makefile.orig 2001-07-16 10:17:27.000000000 +0100
|
||||
+++ Makefile 2003-12-08 02:23:50.000000000 +0000
|
||||
$OpenBSD: patch-Makefile,v 1.2 2006/12/22 17:32:12 steven Exp $
|
||||
--- Makefile.orig Fri Nov 10 01:14:11 2006
|
||||
+++ Makefile Fri Dec 22 18:22:15 2006
|
||||
@@ -28,9 +28,9 @@
|
||||
# bindir = where binaries get installed (default = /usr/local/bin)
|
||||
# mandir = where the manual page gets installed (default = /usr/local/man/man1)
|
||||
@ -14,15 +14,3 @@ $OpenBSD: patch-Makefile,v 1.1 2003/12/09 02:33:45 margarida Exp $
|
||||
|
||||
# No changes necessary below this line
|
||||
|
||||
@@ -75,6 +75,11 @@ install: mp3info gmp3info
|
||||
$(INSTALL) gmp3info $(bindir)/gmp3info
|
||||
$(INSTALL) mp3info.1 $(mandir)/mp3info.1
|
||||
|
||||
+install-no_x11: mp3info
|
||||
+ $(STRIP) mp3info
|
||||
+ $(INSTALL) mp3info $(bindir)/mp3info
|
||||
+ $(INSTALL) mp3info.1 $(mandir)/mp3info.1
|
||||
+
|
||||
uninstall:
|
||||
rm -f $(bindir)/mp3info
|
||||
rm -f $(bindir)/gmp3info
|
||||
|
@ -1,22 +0,0 @@
|
||||
$OpenBSD: patch-gmp3info_c,v 1.1 2003/12/29 18:28:32 espie Exp $
|
||||
--- gmp3info.c.orig 2003-12-29 19:22:54.000000000 +0100
|
||||
+++ gmp3info.c 2003-12-29 19:23:30.000000000 +0100
|
||||
@@ -484,12 +484,12 @@ void quick_popup(char *title, char *mess
|
||||
}
|
||||
|
||||
void about_mp3info(void) {
|
||||
- quick_popup(VERSION,"MP3Info
|
||||
- An ID3 Tag Editor\n\n
|
||||
- Original author: Ricardo Cerqueira <rmc@plug.pt>
|
||||
- Current maintainer: Cedric Tefft <cedric@earthling.net>
|
||||
- GTK Version: Ricardo Cerqueira <rmc@plug.pt>\n\n
|
||||
- Ricardo Cerqueira, Cedric Tefft 1999-2001\n\n");
|
||||
+ quick_popup(VERSION,"MP3Info\n"
|
||||
+" An ID3 Tag Editor\n\n\n"
|
||||
+" Original author: Ricardo Cerqueira <rmc@plug.pt>\n"
|
||||
+" Current maintainer: Cedric Tefft <cedric@earthling.net>\n"
|
||||
+" GTK Version: Ricardo Cerqueira <rmc@plug.pt>\n\n\n"
|
||||
+" Ricardo Cerqueira, Cedric Tefft 1999-2001\n\n");
|
||||
}
|
||||
|
||||
/* rmcc has left the building */
|
@ -1,8 +1,4 @@
|
||||
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.
|
||||
|
||||
Features:
|
||||
- Get, Set and Wipe MP3 TAG Info.
|
||||
- Get MPEG Audio Version 1, 2 and 2.5 Header info.
|
||||
- User-definable output formatting (rather advanced).
|
||||
- Can rename files according to user-defined scheme.
|
||||
MP3Info is a little utility used to read and modify the ID3 tags of MP3
|
||||
files. MP3Info can also display various technical aspects of an MP3 file
|
||||
including playing time, bit-rate, sampling frequency and other attributes
|
||||
in a pre-defined or user-specifiable output format.
|
||||
|
Loading…
Reference in New Issue
Block a user