From owner-svn-ports-all@freebsd.org Fri Feb 16 17:46:21 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CE6A8F035B4; Fri, 16 Feb 2018 17:46:20 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2D1ED68266; Fri, 16 Feb 2018 17:46:20 +0000 (UTC) (envelope-from yuri@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 25E5910E70; Fri, 16 Feb 2018 17:46:20 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1GHkJq4027281; Fri, 16 Feb 2018 17:46:19 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1GHkJXU027277; Fri, 16 Feb 2018 17:46:19 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201802161746.w1GHkJXU027277@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 16 Feb 2018 17:46:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462049 - in head/devel: . raylib X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . raylib X-SVN-Commit-Revision: 462049 X-SVN-Commit-Repository: ports 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.25 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: Fri, 16 Feb 2018 17:46:21 -0000 Author: yuri Date: Fri Feb 16 17:46:19 2018 New Revision: 462049 URL: https://svnweb.freebsd.org/changeset/ports/462049 Log: New port: devel/raylib: Simple and easy-to-use library to learn videogames programming PR: 225402 Submitted by: Martin Filla Approved by: tcberner Added: head/devel/raylib/ head/devel/raylib/Makefile (contents, props changed) head/devel/raylib/distinfo (contents, props changed) head/devel/raylib/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Feb 16 17:23:28 2018 (r462048) +++ head/devel/Makefile Fri Feb 16 17:46:19 2018 (r462049) @@ -5209,6 +5209,7 @@ SUBDIR += ragel SUBDIR += raknet SUBDIR += rapidjson + SUBDIR += raylib SUBDIR += rbenv SUBDIR += rbtools SUBDIR += rclint Added: head/devel/raylib/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/raylib/Makefile Fri Feb 16 17:46:19 2018 (r462049) @@ -0,0 +1,35 @@ +# $FreeBSD$ + +PORTNAME= raylib +DISTVERSION= 1.9.4 +DISTVERSIONSUFFIX= -dev +CATEGORIES= devel + +MAINTAINER= martinfilla@post.cz +COMMENT= Library to learn videogames programming + +LICENSE= ZLIB +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +LIB_DEPENDS= libglfw.so:graphics/glfw + +USES= cmake:outsource openal +USE_GITHUB= yes +GH_ACCOUNT= raysan5 +USE_LDCONFIG= yes +USE_GL= gl glu +USE_XORG= ice sm x11 xcursor xext xrandr xi xinerama xxf86vm + +CMAKE_ON= SHARED_RAYLIB +CMAKE_OFF= STATIC_RAYLIB BUILD_EXAMPLES BUILD_GAMES + +PLIST_FILES= include/raylib.h \ + lib/libraylib.so \ + lib/libraylib.so.1 \ + lib/libraylib.so.${DISTVERSION} \ + libdata/pkgconfig/raylib.pc + +post-extract: # remove bundled files + @${RM} -r ${WRKSRC}/src/external/glfw ${WRKSRC}/src/external/include ${WRKSRC}/src/rglfw.c + +.include Added: head/devel/raylib/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/raylib/distinfo Fri Feb 16 17:46:19 2018 (r462049) @@ -0,0 +1,3 @@ +TIMESTAMP = 1517870297 +SHA256 (raysan5-raylib-1.9.4-dev_GH0.tar.gz) = fd3ad6aa6b3d4d9bb2c4dba20aa32d45b5d6c1e840d784aadb7dc26d14b4cfeb +SIZE (raysan5-raylib-1.9.4-dev_GH0.tar.gz) = 95803288 Added: head/devel/raylib/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/raylib/pkg-descr Fri Feb 16 17:46:19 2018 (r462049) @@ -0,0 +1,9 @@ +Raylib is a programming library to learn videogames programming. +It doesn't have a fancy interface, has no visual helpers, and no auto-debugging. +It is created based on the believe ther that just coding in the best way +to learn. + +Raylib is highly inspired by Borland BGI graphics lib and by XNA framework. +Allegro and SDL have also been used as reference. + +WWW: http://www.raylib.com/