From owner-svn-ports-all@freebsd.org Sun Jan 3 17:50:49 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E4E25A60E13; Sun, 3 Jan 2016 17:50:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9112F1B7F; Sun, 3 Jan 2016 17:50:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u03HomAf085668; Sun, 3 Jan 2016 17:50:48 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u03HomLg085666; Sun, 3 Jan 2016 17:50:48 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201601031750.u03HomLg085666@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 3 Jan 2016 17:50:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r405178 - in head/audio/id3mtag: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jan 2016 17:50:50 -0000 Author: sunpoet Date: Sun Jan 3 17:50:48 2016 New Revision: 405178 URL: https://svnweb.freebsd.org/changeset/ports/405178 Log: - Update to 0.80 - Remove MAKE_ARGS - Add BASH option - Respect ICONV_* variables - Convert to new options target helper Changes: https://github.com/squell/id3/releases Deleted: head/audio/id3mtag/files/ Modified: head/audio/id3mtag/Makefile head/audio/id3mtag/distinfo Modified: head/audio/id3mtag/Makefile ============================================================================== --- head/audio/id3mtag/Makefile Sun Jan 3 17:50:43 2016 (r405177) +++ head/audio/id3mtag/Makefile Sun Jan 3 17:50:48 2016 (r405178) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= id3mtag -PORTVERSION= 0.79 +PORTVERSION= 0.80 CATEGORIES= audio MASTER_SITES= http://github.com/squell/id3/releases/download/${PORTVERSION}/ DISTNAME= id3-${PORTVERSION} @@ -15,26 +15,31 @@ LICENSE_FILE= ${WRKSRC}/COPYING MAKEFILE= makefile ALL_TARGET= build -MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \ - CXX="${CXX}" CXXFLAGS="${CXXFLAGS}" PLIST_FILES= bin/id3 man/man1/id3.1.gz PORTDOCS= README CHANGES -OPTIONS_DEFINE= DOCS +OPTIONS_DEFINE= DOCS BASH +BASH_DESC= Support for bash auto-completion +BASH_PLIST_FILES= share/bash-completion/completions/id3 USES= iconv -CFLAGS+= -I${LOCALBASE}/include -Wno-parentheses -LDFLAGS+= -L${LOCALBASE}/lib ${ICONV_LIB} -CXXFLAGS+= -fno-rtti +CFLAGS+= -I${ICONV_INCLUDE_PATH} +LDFLAGS+= -L${ICONV_PREFIX}/lib ${ICONV_LIB} do-install: ${INSTALL_PROGRAM} ${WRKSRC}/id3 ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/id3.man ${STAGEDIR}${MANPREFIX}/man/man1/id3.1 + +post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} .endfor +post-install-BASH-on: + ${MKDIR} ${STAGEDIR}${PREFIX}/share/bash-completion/completions + ${INSTALL_DATA} ${WRKSRC}/bash/complete ${STAGEDIR}${PREFIX}/${BASH_PLIST_FILES} + .include Modified: head/audio/id3mtag/distinfo ============================================================================== --- head/audio/id3mtag/distinfo Sun Jan 3 17:50:43 2016 (r405177) +++ head/audio/id3mtag/distinfo Sun Jan 3 17:50:48 2016 (r405178) @@ -1,2 +1,2 @@ -SHA256 (id3-0.79.tar.gz) = 8ef017440deed8445d957c31d82ee2f5a83d08b4c7274fcba78fb0b70f848b91 -SIZE (id3-0.79.tar.gz) = 71331 +SHA256 (id3-0.80.tar.gz) = aa61735c5806ed77b71de1408a78371d04add8c8c9b1532a055949081e5a35e2 +SIZE (id3-0.80.tar.gz) = 78289