From owner-svn-ports-head@freebsd.org Wed Nov 18 10:14:13 2015 Return-Path: Delivered-To: svn-ports-head@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 CB1B1A32342; Wed, 18 Nov 2015 10:14:13 +0000 (UTC) (envelope-from amdmi3@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 93CB118E9; Wed, 18 Nov 2015 10:14:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAIAECJg068870; Wed, 18 Nov 2015 10:14:12 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAIAECVL068865; Wed, 18 Nov 2015 10:14:12 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201511181014.tAIAECVL068865@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 18 Nov 2015 10:14:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r401855 - in head/audio/ksmp3play: . 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-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Nov 2015 10:14:14 -0000 Author: amdmi3 Date: Wed Nov 18 10:14:12 2015 New Revision: 401855 URL: https://svnweb.freebsd.org/changeset/ports/401855 Log: - Add LICENSE - Switch to options helpers - Regenerate patches with `make makepatch` Modified: head/audio/ksmp3play/Makefile head/audio/ksmp3play/files/patch-configure head/audio/ksmp3play/files/patch-ksmp3play.c head/audio/ksmp3play/files/patch-ksmp3play.h head/audio/ksmp3play/files/patch-windows.c Modified: head/audio/ksmp3play/Makefile ============================================================================== --- head/audio/ksmp3play/Makefile Wed Nov 18 10:14:05 2015 (r401854) +++ head/audio/ksmp3play/Makefile Wed Nov 18 10:14:12 2015 (r401855) @@ -10,6 +10,9 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME} MAINTAINER= ports@FreeBSD.org COMMENT= Curses-based MP3 player +LICENSE= GPLv2 # or later +LICENSE_FILE= ${WRKSRC}/COPYING + LIB_DEPENDS= libsmpeg.so:${PORTSDIR}/multimedia/smpeg GNU_CONFIGURE= yes @@ -23,7 +26,7 @@ LDFLAGS+= -L${LOCALBASE}/lib OPTIONS_DEFINE= DOCS -post-install: +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} Modified: head/audio/ksmp3play/files/patch-configure ============================================================================== --- head/audio/ksmp3play/files/patch-configure Wed Nov 18 10:14:05 2015 (r401854) +++ head/audio/ksmp3play/files/patch-configure Wed Nov 18 10:14:12 2015 (r401855) @@ -1,6 +1,6 @@ ---- configure.orig Mon Aug 20 04:22:22 2001 -+++ configure Thu Oct 23 12:10:52 2003 -@@ -1258,15 +1258,15 @@ +--- configure.orig 2008-06-15 10:23:18 UTC ++++ configure +@@ -1258,15 +1258,15 @@ int main (int argc, char *argv[]) } else { Modified: head/audio/ksmp3play/files/patch-ksmp3play.c ============================================================================== --- head/audio/ksmp3play/files/patch-ksmp3play.c Wed Nov 18 10:14:05 2015 (r401854) +++ head/audio/ksmp3play/files/patch-ksmp3play.c Wed Nov 18 10:14:12 2015 (r401855) @@ -1,6 +1,6 @@ ---- ksmp3play.c.orig Mon Aug 20 04:43:37 2001 -+++ ksmp3play.c Sun Dec 29 11:01:56 2002 -@@ -22,6 +22,7 @@ +--- ksmp3play.c.orig 2008-06-17 05:57:56 UTC ++++ ksmp3play.c +@@ -42,6 +42,7 @@ #include "ksmp3play.h" #include #include Modified: head/audio/ksmp3play/files/patch-ksmp3play.h ============================================================================== --- head/audio/ksmp3play/files/patch-ksmp3play.h Wed Nov 18 10:14:05 2015 (r401854) +++ head/audio/ksmp3play/files/patch-ksmp3play.h Wed Nov 18 10:14:12 2015 (r401855) @@ -1,5 +1,5 @@ ---- ksmp3play.h.orig Sun Nov 4 20:25:57 2001 -+++ ksmp3play.h Sun Nov 4 20:26:42 2001 +--- ksmp3play.h.orig 2008-04-14 00:22:27 UTC ++++ ksmp3play.h @@ -29,8 +29,9 @@ #include #include @@ -11,7 +11,7 @@ #else struct option { -@@ -43,6 +44,7 @@ +@@ -43,6 +44,7 @@ struct option # define required_argument 1 # define optional_argument 2 #endif Modified: head/audio/ksmp3play/files/patch-windows.c ============================================================================== --- head/audio/ksmp3play/files/patch-windows.c Wed Nov 18 10:14:05 2015 (r401854) +++ head/audio/ksmp3play/files/patch-windows.c Wed Nov 18 10:14:12 2015 (r401855) @@ -1,6 +1,6 @@ ---- windows.c.orig Mon Aug 20 02:43:24 2001 -+++ windows.c Sun Dec 29 12:45:25 2002 -@@ -22,7 +22,7 @@ +--- windows.c.orig 2008-06-17 05:57:56 UTC ++++ windows.c +@@ -30,7 +30,7 @@ #include "ksmp3play.h" #include