diff options
author | Koop Mast <kwm@FreeBSD.org> | 2014-05-17 09:56:00 +0000 |
---|---|---|
committer | Koop Mast <kwm@FreeBSD.org> | 2014-05-17 09:56:00 +0000 |
commit | c951967af7efc8ade2b54be511649053a1a8cb0a (patch) | |
tree | e9172feaf552da3dbe353c195227e5c9d143116e /graphics/libGL/files/patch-src_mapi_es2api_Makefile.in | |
parent | - Update to 1.0.8 (diff) |
Enable shared libglapi library and make a port for it. It is used by libGL
and libglesv2. This fixes undefined symbol issues in libglesv2.
Clean up stagedir of unwanted files/directories, so check-plist passes.
Switch logic and always build gallium support in graphics/dri on i386 and
amd64. Gallium is used for Radeon HD 5000+ support.
Use USES=tar:bzip2
Under WITH_NEW_XORG:
Add patch to remove some dependencies for aclocal.m4 which are absent.
This allows the removal of USE_AUTOTOOLS, REAPPLY_PATCHES and pre-configure
target.
Add INSTALL_TARGET=install-strip to strip libraries.
USES=libtool:keepla
Fix a /use typo with /usr in post-patch.
Bump PORTREVISION for the libtool and libglapi changes.
Submitted by: tijl@ (libtool and autotools changes)
Obtained from: xorg-dev repo (libglapi and gallium changes)
Diffstat (limited to 'graphics/libGL/files/patch-src_mapi_es2api_Makefile.in')
-rw-r--r-- | graphics/libGL/files/patch-src_mapi_es2api_Makefile.in | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/graphics/libGL/files/patch-src_mapi_es2api_Makefile.in b/graphics/libGL/files/patch-src_mapi_es2api_Makefile.in deleted file mode 100644 index 1e3229ef40cc..000000000000 --- a/graphics/libGL/files/patch-src_mapi_es2api_Makefile.in +++ /dev/null @@ -1,20 +0,0 @@ ---- src/mapi/es2api/Makefile.in.orig 2013-08-01 23:22:21.000000000 +0200 -+++ src/mapi/es2api/Makefile.in 2013-09-01 11:38:01.000000000 +0200 -@@ -958,9 +958,14 @@ - # a while by putting a link to the driver into /lib of the build tree. - all-local: libGLESv2.la - $(MKDIR_P) $(top_builddir)/$(LIB_DIR); -- ln -f .libs/libGLESv2.so $(top_builddir)/$(LIB_DIR)/libGLESv2.so -- ln -f .libs/libGLESv2.so.2 $(top_builddir)/$(LIB_DIR)/libGLESv2.so.2 -- ln -f .libs/libGLESv2.so.2.0.0 $(top_builddir)/$(LIB_DIR)/libGLESv2.so.2.0.0 -+ base=$(basename $<); \ -+ dlname=$$(grep dlname= .libs/$< | cut -d "'" -f 2); \ -+ ver=$$(grep current= .libs/$< | cut -d "=" -f 2); \ -+ ln -f .libs/$$dlname $(top_builddir)/$(LIB_DIR)/$$dlname; \ -+ if [ ! -f $(top_builddir)/$(LIB_DIR)/$$base.so.$$ver ]; then \ -+ ln -sf $$dlname $(top_builddir)/$(LIB_DIR)/$$base.so.$$ver; \ -+ fi; \ -+ ln -sf $$base.so.$$ver $(top_builddir)/$(LIB_DIR)/$$base.so - - # Tell versions [3.59,3.63) of GNU make to not export all variables. - # Otherwise a system limit (for SysV at least) may be exceeded. |