Created attachment 152460 [details] diff file for audio/id3mtag New in this version: + Simply lists tags if run without options. + Processes all already-present tags by default, not just ID3v1. + Should be able to handle most ID3v2.4 tags. + Now uses iconv to convert between charsets. Port specific: + All URL's have been changed due to the original website going down.
A commit references this bug: Author: amdmi3 Date: Mon Feb 2 18:39:39 UTC 2015 New revision: 378315 URL: https://svnweb.freebsd.org/changeset/ports/378315 Log: - Update to 0.79 PR: 197258 Submitted by: squell@alumina.nl (maintainer) Changes: head/audio/id3mtag/Makefile head/audio/id3mtag/distinfo head/audio/id3mtag/pkg-descr
Committed with minor change (added LICENSE_FILE). Since you're the author, I suggest to fix the makefile to not override flags set in environment. This will make building with pre-set environment and from packaging systems easier. In particular, with FreeBSD ports it'll allow to drop MAKE_ARGS. --- -CC = cc -CXX = c++ -CFLAGS = $(WARNINGS:%=-W%) -pedantic -g -Os -CXXFLAGS = $(CFLAGS) -fno-rtti -LDFLAGS = +CC ?= cc +CXX ?= c++ +CFLAGS += $(WARNINGS:%=-W%) -pedantic -g -Os +CXXFLAGS += $(WARNINGS:%=-W%) -pedantic -g -Os -fno-rtti +LDFLAGS += ---