From owner-svn-ports-head@freebsd.org Mon Dec 28 11:04:25 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 5A9EE4D7752; Mon, 28 Dec 2020 11:04:25 +0000 (UTC) (envelope-from otis@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4D4F6x24kWz3H0C; Mon, 28 Dec 2020 11:04:25 +0000 (UTC) (envelope-from otis@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 3AAE218814; Mon, 28 Dec 2020 11:04:25 +0000 (UTC) (envelope-from otis@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BSB4Ptf087577; Mon, 28 Dec 2020 11:04:25 GMT (envelope-from otis@FreeBSD.org) Received: (from otis@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BSB4O4U087576; Mon, 28 Dec 2020 11:04:24 GMT (envelope-from otis@FreeBSD.org) Message-Id: <202012281104.0BSB4O4U087576@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: otis set sender to otis@FreeBSD.org using -f From: Juraj Lutter Date: Mon, 28 Dec 2020 11:04:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r559460 - head/devel/raylib X-SVN-Group: ports-head X-SVN-Commit-Author: otis X-SVN-Commit-Paths: head/devel/raylib X-SVN-Commit-Revision: 559460 X-SVN-Commit-Repository: ports 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.34 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: Mon, 28 Dec 2020 11:04:25 -0000 Author: otis Date: Mon Dec 28 11:04:24 2020 New Revision: 559460 URL: https://svnweb.freebsd.org/changeset/ports/559460 Log: devel/raylib: Install missing header files The header files: - raymath.h - rlgl.h - physac.h were missing from the installation and pkg-plist. Also, while here, cleanup some style nits and bump PORTREVISION. PR: 251819 Submitted by: Martin Filla (maintainer) Reported by: Mattias Wikstrom Reviewed by: osa (mentor) Approved by: osa (mentor) Differential Revision: https://reviews.freebsd.org/D27776 Modified: head/devel/raylib/Makefile Modified: head/devel/raylib/Makefile ============================================================================== --- head/devel/raylib/Makefile Mon Dec 28 10:43:33 2020 (r559459) +++ head/devel/raylib/Makefile Mon Dec 28 11:04:24 2020 (r559460) @@ -2,7 +2,7 @@ PORTNAME= raylib DISTVERSION= 3.0.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel education MAINTAINER= freebsd@sysctl.cz @@ -24,7 +24,9 @@ USE_XORG= ice sm x11 xcursor xext xi xinerama xrandr x CMAKE_ON= SHARED USE_EXTERNAL_GLFW CMAKE_OFF= BUILD_EXAMPLES BUILD_GAMES STATIC -PLIST_FILES= include/raylib.h \ +PLIST_FILES= include/physac.h \ + include/raylib.h \ + include/raymath.h \ lib/cmake/raylib/raylib-config-version.cmake \ lib/cmake/raylib/raylib-config.cmake \ lib/libraylib.so \ @@ -33,7 +35,14 @@ PLIST_FILES= include/raylib.h \ libdata/pkgconfig/raylib.pc post-extract: - # Remove bundled files. - @${RM} -r ${WRKSRC}/src/external/glfw ${WRKSRC}/src/external/include ${WRKSRC}/src/rglfw.c +# Remove bundled files. + ${RM} -r ${WRKSRC}/src/external/glfw ${WRKSRC}/src/external/include ${WRKSRC}/src/rglfw.c + +post-install: +# Install all parts for raylib + ${INSTALL_DATA} ${WRKSRC}/src/raylib.h \ + ${WRKSRC}/src/raymath.h \ + ${WRKSRC}/src/physac.h \ + ${STAGEDIR}${PREFIX}/include .include