From owner-svn-ports-head@freebsd.org Mon Jan 21 07:30:57 2019 Return-Path: Delivered-To: svn-ports-head@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 02403149A1B3; Mon, 21 Jan 2019 07:30:57 +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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) 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 9B41972478; Mon, 21 Jan 2019 07:30:56 +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 8EE36E722; Mon, 21 Jan 2019 07:30:56 +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 x0L7Uurh064197; Mon, 21 Jan 2019 07:30:56 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x0L7UtEc064191; Mon, 21 Jan 2019 07:30:55 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201901210730.x0L7UtEc064191@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 21 Jan 2019 07:30:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r490822 - in head/graphics: . glee glee/files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/graphics: . glee glee/files X-SVN-Commit-Revision: 490822 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9B41972478 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.972,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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, 21 Jan 2019 07:30:57 -0000 Author: yuri Date: Mon Jan 21 07:30:55 2019 New Revision: 490822 URL: https://svnweb.freebsd.org/changeset/ports/490822 Log: New port: Cross-platform extension loading library for OpenGL Added: head/graphics/glee/ head/graphics/glee/Makefile (contents, props changed) head/graphics/glee/distinfo (contents, props changed) head/graphics/glee/files/ head/graphics/glee/files/glee.pc.in (contents, props changed) head/graphics/glee/files/patch-Makefile.in (contents, props changed) head/graphics/glee/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Mon Jan 21 07:02:22 2019 (r490821) +++ head/graphics/Makefile Mon Jan 21 07:30:55 2019 (r490822) @@ -266,6 +266,7 @@ SUBDIR += gkrellkam2 SUBDIR += gle SUBDIR += gle-graphics + SUBDIR += glee SUBDIR += glew SUBDIR += glexcess SUBDIR += glfw Added: head/graphics/glee/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/glee/Makefile Mon Jan 21 07:30:55 2019 (r490822) @@ -0,0 +1,39 @@ +# $FreeBSD$ + +PORTNAME= GLee +DISTVERSION= 5.4.0 +CATEGORIES= graphics +MASTER_SITES= https://elf-stone.com/downloads/${PORTNAME}/ +DISTNAME= ${PORTNAME}-${DISTVERSION}-src + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Cross-platform extension loading library for OpenGL + +LICENSE= BSD2CLAUSE + +USES= gl gmake +GNU_CONFIGURE= yes +USE_LDCONFIG= yes +USE_GL= gl + +NO_WRKSUBDIR= yes + +CFLAGS+= -fPIC +LDFLAGS+= -Wl,-z,defs -Wl,--as-needed -Wl,--no-undefined -L${LOCALBASE}/lib -lGL + +SUB_FILES= glee.pc + +PLIST_FILES= include/GL/GLee.h \ + lib/libGLee.so \ + lib/libGLee.so.5 \ + lib/libGLee.so.5.4 \ + libdata/pkgconfig/glee.pc + +post-install: + cd ${STAGEDIR}${PREFIX}/lib && \ + ${MV} libGLee.so libGLee.so.${DISTVERSION:R} && \ + ${LN} -s libGLee.so.${DISTVERSION:R} libGLee.so.${DISTVERSION:R:R} && \ + ${LN} -s libGLee.so.${DISTVERSION:R} libGLee.so + ${INSTALL_DATA} ${WRKDIR}/glee.pc ${STAGEDIR}${PREFIX}/libdata/pkgconfig + +.include Added: head/graphics/glee/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/glee/distinfo Mon Jan 21 07:30:55 2019 (r490822) @@ -0,0 +1,3 @@ +TIMESTAMP = 1548012607 +SHA256 (GLee-5.4.0-src.tar.gz) = 3b58430172392ec75acdad5fd833ecf494c5518382bc27932f48d46dbb01cd29 +SIZE (GLee-5.4.0-src.tar.gz) = 269529 Added: head/graphics/glee/files/glee.pc.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/glee/files/glee.pc.in Mon Jan 21 07:30:55 2019 (r490822) @@ -0,0 +1,12 @@ +prefix=%%PREFIX%% +exec_prefix=${prefix} +libdir=${exec_prefix}/lib +includedir=${prefix}/include + +Name: GLee +Description: GL Easy Extension library +Version: 5.4.0 +Requires: +Conflicts: +Libs: -L${libdir} -lGLee +Cflags: -I${includedir} Added: head/graphics/glee/files/patch-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/glee/files/patch-Makefile.in Mon Jan 21 07:30:55 2019 (r490822) @@ -0,0 +1,24 @@ +--- Makefile.in.orig 2009-02-07 20:45:53 UTC ++++ Makefile.in +@@ -38,14 +38,15 @@ BINDISTFILES=glee/${LIBNAME} glee/${READ + + all: + ${CXX} ${SRCDIR}/${SOURCE} -shared -I${SRCDIR} -I${INCLUDEDIR} ${LIBS} \ +- ${CXXFLAGS} ${DEFS} -o ${SRCDIR}/${LIBNAME} ++ ${CXXFLAGS} ${LDFLAGS} ${DEFS} -Wl,-soname,libGLee.so.5 -o ${SRCDIR}/${LIBNAME} + + install: +- ${INSTALLD} ${HEADER} ${INCLUDEDIR}/GL +- ${INSTALLP} ${LIBNAME} ${LIBDIR} +- ${MKDIR} -p ${DATADIR}/doc/GLee +- ${INSTALLD} ${README} ${DATADIR}/doc/GLee +- ${LDCONFIG} ++ ${MKDIR} -p ${DESTDIR}${INCLUDEDIR}/GL ++ ${INSTALLD} ${HEADER} ${DESTDIR}${INCLUDEDIR}/GL ++ ${INSTALLP} ${LIBNAME} ${DESTDIR}${LIBDIR} ++ #${MKDIR} -p ${DATADIR}/doc/GLee ++ #${INSTALLD} ${README} ${DATADIR}/doc/GLee ++ #${LDCONFIG} + + dists: dist bindist redist + Added: head/graphics/glee/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/glee/pkg-descr Mon Jan 21 07:30:55 2019 (r490822) @@ -0,0 +1,4 @@ +GLee facilitates OpenGL extension loading, and +can be used by any code using OpenGL. + +WWW: https://elf-stone.com/glee.php