From owner-svn-ports-all@FreeBSD.ORG Wed Apr 1 14:10:45 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D98C14B5; Wed, 1 Apr 2015 14:10:45 +0000 (UTC) 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 AA99D253; Wed, 1 Apr 2015 14:10:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t31EAjg3003152; Wed, 1 Apr 2015 14:10:45 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t31EAiqc003143; Wed, 1 Apr 2015 14:10:44 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201504011410.t31EAiqc003143@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 1 Apr 2015 14:10:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r382915 - in head/games/einstein: . 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.18-1 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: Wed, 01 Apr 2015 14:10:46 -0000 Author: amdmi3 Date: Wed Apr 1 14:10:44 2015 New Revision: 382915 URL: https://svnweb.freebsd.org/changeset/ports/382915 QAT: https://qat.redports.org/buildarchive/r382915/ Log: - Fix build on DragonFly - Strip binary Added: head/games/einstein/files/patch-convert.h (contents, props changed) head/games/einstein/files/patch-unicode.cpp (contents, props changed) Modified: head/games/einstein/Makefile Modified: head/games/einstein/Makefile ============================================================================== --- head/games/einstein/Makefile Wed Apr 1 14:10:20 2015 (r382914) +++ head/games/einstein/Makefile Wed Apr 1 14:10:44 2015 (r382915) @@ -3,7 +3,7 @@ PORTNAME= einstein PORTVERSION= 2.0 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= games MASTER_SITES= http://games.flowix.com/files/einstein/ DISTNAME= ${PORTNAME}-${PORTVERSION}-src @@ -20,4 +20,7 @@ post-patch: -e "s,@@PREFIX@@,${PREFIX}," \ ${WRKSRC}/Makefile +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/einstein + .include Added: head/games/einstein/files/patch-convert.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/einstein/files/patch-convert.h Wed Apr 1 14:10:44 2015 (r382915) @@ -0,0 +1,10 @@ +--- convert.h.orig 2005-08-14 06:40:58.000000000 +0400 ++++ convert.h 2015-03-27 02:57:05.826432000 +0300 +@@ -5,6 +5,7 @@ + #include + #include + #include ++#include + + #include "exceptions.h" + #include "unicode.h" Added: head/games/einstein/files/patch-unicode.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/einstein/files/patch-unicode.cpp Wed Apr 1 14:10:44 2015 (r382915) @@ -0,0 +1,9 @@ +--- unicode.cpp.orig 2005-08-14 06:40:58.000000000 +0400 ++++ unicode.cpp 2015-03-27 02:57:47.513365000 +0300 +@@ -1,5 +1,6 @@ + #include + #include ++#include + #ifdef WIN32 + #include + #endif