From owner-svn-ports-all@freebsd.org Thu Dec 29 17:44: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 B5C16C96F69; Thu, 29 Dec 2016 17:44: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 85147104E; Thu, 29 Dec 2016 17:44: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 uBTHimjn020196; Thu, 29 Dec 2016 17:44:48 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBTHimKv020195; Thu, 29 Dec 2016 17:44:48 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201612291744.uBTHimKv020195@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 29 Dec 2016 17:44:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r429931 - head/audio/mp3info 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.23 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: Thu, 29 Dec 2016 17:44:49 -0000 Author: sunpoet Date: Thu Dec 29 17:44:48 2016 New Revision: 429931 URL: https://svnweb.freebsd.org/changeset/ports/429931 Log: - Fix PORTVERSION - Fix LICENSE - Add LICENSE_FILE - Convert to options target helper PR: 215653 Submitted by: amdmi3 Modified: head/audio/mp3info/Makefile Modified: head/audio/mp3info/Makefile ============================================================================== --- head/audio/mp3info/Makefile Thu Dec 29 17:35:04 2016 (r429930) +++ head/audio/mp3info/Makefile Thu Dec 29 17:44:48 2016 (r429931) @@ -2,15 +2,15 @@ # $FreeBSD$ PORTNAME= mp3info -PORTVERSION= 0.8.5 -DISTVERSIONSUFFIX= a +PORTVERSION= 0.8.5a CATEGORIES= audio MASTER_SITES= SUNSITE/apps/sound/mp3-utils/mp3info MAINTAINER= sunpoet@FreeBSD.org COMMENT= MP3 technical info viewer and ID3 1.x tag editor -LICENSE= GPLv2 +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/LICENSE OPTIONS_DEFINE= GTK2 DOCS GTK2_DESC= Enable to have the gmp3info @@ -27,10 +27,14 @@ GTK2_USE= GNOME=gtk20 GTK2_USES= pkgconfig do-install: - ${MKDIR} ${STAGEDIR}${DOCSDIR}/ ${INSTALL_PROGRAM} ${WRKSRC}/mp3info ${STAGEDIR}${PREFIX}/bin/ ${INSTALL_MAN} ${WRKSRC}/mp3info.1 ${STAGEDIR}${PREFIX}/man/man1/ - -${INSTALL_PROGRAM} ${WRKSRC}/gmp3info ${STAGEDIR}${PREFIX}/bin/ + +do-install-GTK2-on: + ${INSTALL_PROGRAM} ${WRKSRC}/gmp3info ${STAGEDIR}${PREFIX}/bin/ + +do-install-DOCS-on: + ${MKDIR} ${STAGEDIR}${DOCSDIR}/ cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ .include