diff options
Diffstat (limited to 'repo/system/glew')
-rw-r--r-- | repo/system/glew/glew.patch | 34 | ||||
-rw-r--r-- | repo/system/glew/glew.xibuild | 20 |
2 files changed, 0 insertions, 54 deletions
diff --git a/repo/system/glew/glew.patch b/repo/system/glew/glew.patch deleted file mode 100644 index 61c4447..0000000 --- a/repo/system/glew/glew.patch +++ /dev/null @@ -1,34 +0,0 @@ -Fixes pkg-config file to have correct system libdir. - -diff -aur glew-2.2.0/Makefile glew-2.2.0-alpine/Makefile ---- glew-2.2.0/Makefile 2020-03-15 11:53:59.000000000 +0000 -+++ glew-2.2.0-alpine/Makefile 2022-01-28 02:42:23.773580331 +0000 -@@ -144,7 +144,7 @@ - glew.pc: glew.pc.in - sed \ - -e "s|@prefix@|$(GLEW_PREFIX)|g" \ -- -e "s|@libdir@|$(LIBDIR)|g" \ -+ -e "s|@libdir@|/usr/lib|g" \ - -e "s|@exec_prefix@|$(BINDIR)|g" \ - -e "s|@includedir@|$(INCDIR)|g" \ - -e "s|@version@|$(GLEW_VERSION)|g" \ - -diff -aur glew-2.2.0/config/Makefile.linux glew-2.2.0-alpine/config/Makefile.linux ---- glew-2.2.0/config/Makefile.linux 2020-03-15 11:53:59.000000000 +0000 -+++ glew-2.2.0-alpine/config/Makefile.linux 2022-01-28 02:43:26.813582486 +0000 -@@ -12,13 +12,8 @@ - ifeq (e2k,${M_ARCH}) - ARCH64 = true - endif --ifeq (${ARCH64},true) -- LDFLAGS.EXTRA = -L/usr/X11R6/lib64 -L/usr/lib64 -- LIBDIR = $(GLEW_DEST)/lib64 --else -- LDFLAGS.EXTRA = -L/usr/X11R6/lib -L/usr/lib -- LIBDIR = $(GLEW_DEST)/lib --endif -+LDFLAGS.EXTRA = -L/usr/X11R6/lib -L/usr/lib -+LIBDIR = $(GLEW_DEST)/lib - LDFLAGS.GL = -lGL -lX11 - LDFLAGS.STATIC = -Wl,-Bstatic - LDFLAGS.DYNAMIC = -Wl,-Bdynamic diff --git a/repo/system/glew/glew.xibuild b/repo/system/glew/glew.xibuild deleted file mode 100644 index fcace5f..0000000 --- a/repo/system/glew/glew.xibuild +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -NAME="glew" -DESC="A cross-platform C/C++ extension loading library" - -MAKEDEPS="make " -DEPS="libxmu libxi mesa glu" - -PKG_VER=2.2.0 -SOURCE="https://downloads.sourceforge.net/glew/glew-$PKG_VER.tgz" -ADDITIONAL="glew.patch " - -build () { - make GLEW_DEST=$PKG_DEST -} - -package () { - make GLEW_DEST=$PKG_DEST/usr install - mv $PKG_DEST/usr/lib64/* $PKG_DEST/usr/lib/ -} |