From owner-svn-ports-all@FreeBSD.ORG Sun Jun 21 15:07:14 2015 Return-Path: Delivered-To: svn-ports-all@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D8F9473F; Sun, 21 Jun 2015 15:07:13 +0000 (UTC) (envelope-from mich@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 C71D39BA; Sun, 21 Jun 2015 15:07:13 +0000 (UTC) (envelope-from mich@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5LF7Dir005592; Sun, 21 Jun 2015 15:07:13 GMT (envelope-from mich@FreeBSD.org) Received: (from mich@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5LF7DAJ005589; Sun, 21 Jun 2015 15:07:13 GMT (envelope-from mich@FreeBSD.org) Message-Id: <201506211507.t5LF7DAJ005589@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mich set sender to mich@FreeBSD.org using -f From: Michael Landin Hostbaek Date: Sun, 21 Jun 2015 15:07:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r390242 - head/games/braincurses 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, 21 Jun 2015 15:07:14 -0000 Author: mich Date: Sun Jun 21 15:07:12 2015 New Revision: 390242 URL: https://svnweb.freebsd.org/changeset/ports/390242 Log: - update to 1.0.0 - project moved to github > Description of fields to fill in above: 76 columns --| > PR: If a GNATS PR is affected by the change. > Differential Revision: https://reviews.freebsd.org/D### (*full* phabric URL needed). > Submitted by: If someone else sent in the change. > Reviewed by: If someone else reviewed your modification. > Approved by: If you needed approval for this commit. > Obtained from: If the change is from a third party. > MFC after: N [day[s]|week[s]|month[s]]. Request a reminder email. > MFH: Ports tree branch name. Request approval for merge. > Relnotes: Set to 'yes' for mention in release notes. > Security: Vulnerability reference (one per line) or description. > Sponsored by: If the change was sponsored by an organization. > Empty fields above will be automatically removed. M Makefile M distinfo M pkg-plist Modified: head/games/braincurses/Makefile head/games/braincurses/distinfo head/games/braincurses/pkg-plist Modified: head/games/braincurses/Makefile ============================================================================== --- head/games/braincurses/Makefile Sun Jun 21 14:41:05 2015 (r390241) +++ head/games/braincurses/Makefile Sun Jun 21 15:07:12 2015 (r390242) @@ -2,27 +2,31 @@ # $FreeBSD$ PORTNAME= braincurses -PORTVERSION= 0.5a +PORTVERSION= 1.0.0 CATEGORIES= games -MASTER_SITES= http://freebsdcluster.org/~mich/software/ MAINTAINER= mich@FreeBSD.org COMMENT= Clone of the Mastermind game -LDFLAGS+= -lncurses -WRKSRC= ${WRKDIR}/${PORTNAME} +LICENSE= GPLv2 + +USE_GITHUB= yes +GH_ACCOUNT= bderrly +GH_TAGNAME= 8f603c1 + +LDFLAGS+= -L${LOCALBASE}/lib -lncurses OPTIONS_DEFINE= DOCS do-build: cd ${WRKSRC} && \ - ${CXX} -c -o curses/windows.o curses/windows.cpp && \ + ${CXX} -c -o windows/windows.o windows/windows.cpp && \ ${CXX} ${CFLAGS} -c ${PORTNAME}.cpp && \ - ${CXX} ${CFLAGS} ${LDFLAGS} -o ${PORTNAME} curses/windows.o ${PORTNAME}.o + ${CXX} ${CFLAGS} ${LDFLAGS} -o ${PORTNAME} windows/windows.o ${PORTNAME}.o do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}/README + ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR}/README.md .include Modified: head/games/braincurses/distinfo ============================================================================== --- head/games/braincurses/distinfo Sun Jun 21 14:41:05 2015 (r390241) +++ head/games/braincurses/distinfo Sun Jun 21 15:07:12 2015 (r390242) @@ -1,2 +1,2 @@ -SHA256 (braincurses-0.5a.tar.gz) = 495ecd6b94a72044101365d5b9d8aee50d7d326b4537ec57815715c1fa31ea8d -SIZE (braincurses-0.5a.tar.gz) = 11911 +SHA256 (bderrly-braincurses-1.0.0-8f603c1_GH0.tar.gz) = e9c5f48a312414067ad459d6e6c09372da772c7a0ada3971775899fdbd25fdb5 +SIZE (bderrly-braincurses-1.0.0-8f603c1_GH0.tar.gz) = 11730 Modified: head/games/braincurses/pkg-plist ============================================================================== --- head/games/braincurses/pkg-plist Sun Jun 21 14:41:05 2015 (r390241) +++ head/games/braincurses/pkg-plist Sun Jun 21 15:07:12 2015 (r390242) @@ -1,2 +1,2 @@ bin/braincurses -%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/README.md