From owner-svn-ports-all@FreeBSD.ORG Sun Oct 6 22:58:16 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 24AC3534; Sun, 6 Oct 2013 22:58:16 +0000 (UTC) (envelope-from marino@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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 124E523B8; Sun, 6 Oct 2013 22:58:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r96MwF3a062035; Sun, 6 Oct 2013 22:58:15 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r96MwF8B062034; Sun, 6 Oct 2013 22:58:15 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201310062258.r96MwF8B062034@svn.freebsd.org> From: John Marino Date: Sun, 6 Oct 2013 22:58:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r329636 - head/cad/varkon 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.14 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, 06 Oct 2013 22:58:16 -0000 Author: marino Date: Sun Oct 6 22:58:15 2013 New Revision: 329636 URL: http://svnweb.freebsd.org/changeset/ports/329636 Log: cad/varkon: Hardcode PLATFORM to "FreeBSD" The use of $OPSYS to define the platform actually breaks the build on DragonFly. The PLATFORM has to be recognized, and it serves for file selection. DragonFly (the only other OPSYS using ports for now) needs "FreeBSD", not "DragonFly" to be defined as PLATFORM in order to build. This change has no effect for FreeBSD users. Varkon is an unmaintained port. Modified: head/cad/varkon/Makefile Modified: head/cad/varkon/Makefile ============================================================================== --- head/cad/varkon/Makefile Sun Oct 6 22:49:11 2013 (r329635) +++ head/cad/varkon/Makefile Sun Oct 6 22:58:15 2013 (r329636) @@ -19,8 +19,8 @@ BUILD_WRKSRC= ${WRKSRC}/sources USE_XORG= xpm USE_GL= glu -USE_GMAKE= yes -MAKE_ENV= PLATFORM="${OPSYS}" +USES= gmake +MAKE_ENV= PLATFORM=FreeBSD ALL_TARGET= # none MAKE_JOBS_UNSAFE= yes