Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
Various makefile fixes to allow cross compilation
Partly ported from
http://anonscm.debian.org/cgit/pkg-games/libsoil.git/tree/debian/patches/linking_correctly.patch
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
diff -uNr soil.org/projects/makefile/alternate_Makefile.txt soil/projects/makefile/alternate_Makefile.txt
--- soil.org/projects/makefile/alternate_Makefile.txt 2008-07-07 18:13:28.000000000 +0200
+++ soil/projects/makefile/alternate_Makefile.txt 2015-11-07 11:15:04.140106336 +0100
@@ -1,8 +1,8 @@
MAKE = make
-CC = gcc
-INSTALL_FILE = install -p -o root -g root -m 644
-INSTALL_DIR = install -p -o root -g root -d
-LN = ln -s
+CC = $(GCC)
+INSTALL_FILE = $(INSTALL) -m 644
+INSTALL_DIR = $(INSTALL) -d
+LN = ln -sf
RM = rm -fv
CFLAGS += -c -O2 -Wall
LDFLAGS +=
@@ -23,13 +23,13 @@
all: $(OFILES) lib
%.o: %.c
- $(CC) $(CFLAGS) $< -o $@
+ $(CC) $(CFLAGS) -c -fPIC $< -o $@
lib: $(OFILES)
# create static library
- ar -cvq $(LIBNAME).a $(OFILES)
+ $(AR) -cvq $(LIBNAME).a $(OFILES)
# create shared library
- gcc -shared -Wl,-soname,$(LIBNAME).so.$(MAJOR) -o $(LIBNAME).so.$(VERSION) $(OFILES)
+ $(CC) -shared -Wl,-soname,$(LIBNAME).so.$(MAJOR) -o $(LIBNAME).so.$(VERSION) $(OFILES) -lGL -lm
install:
$(INSTALL_DIR) $(DESTDIR)/$(INCLUDEDIR)

View File

@@ -0,0 +1,12 @@
config BR2_PACKAGE_LIBSOIL
bool "libsoil"
depends on BR2_PACKAGE_HAS_LIBGL
depends on !BR2_STATIC_LIBS
help
SOIL is a tiny C library used primarily for uploading
textures into OpenGL.
http://www.lonesock.net/soil.html
comment "libsoil needs an OpenGL backend and a toolchain w/ dynamic library"
depends on !BR2_PACKAGE_HAS_LIBGL || BR2_STATIC_LIBS

View File

@@ -0,0 +1,2 @@
# Locally calculated
sha256 a2305b8d64f6d636e36d669bbdb0ca5445d1345c754b3d61d3f037dad2e5f701 soil.zip

View File

@@ -0,0 +1,50 @@
################################################################################
#
# libsoil
#
################################################################################
LIBSOIL_VERSION = 20080707
LIBSOIL_SOURCE = soil.zip
LIBSOIL_SITE = http://www.lonesock.net/files
LIBSOIL_INSTALL_STAGING = YES
LIBSOIL_DEPENDENCIES = libgl
LIBSOIL_LICENSE = Public Domain, MIT
LIBSOIL_LICENSE_FILES = src/stb_image_aug.c src/image_helper.c
LIBSOIL_MAKEFILE = ../projects/makefile/alternate_Makefile.txt
define LIBSOIL_EXTRACT_CMDS
$(UNZIP) -d $(@D) $(DL_DIR)/$(LIBSOIL_SOURCE)
mv $(@D)/Simple\ OpenGL\ Image\ Library/* $(@D)
endef
# gnu patch < v2.5.9 doesn't correctly handle spaces in file names,
# and we want to patch the 'alternate Makefile.txt' file, so rename
# the file (and patch the renamed file) for compatibility with older
# distributions
define REMOVE_SPACE_FROM_FILENAME
cd $(@D)/projects/makefile/ && \
mv "alternate Makefile.txt" alternate_Makefile.txt
endef
LIBSOIL_POST_EXTRACT_HOOKS += REMOVE_SPACE_FROM_FILENAME
define LIBSOIL_BUILD_CMDS
$(MAKE) $(TARGET_CONFIGURE_OPTS) -f $(LIBSOIL_MAKEFILE) \
-C $(@D)/src
endef
define LIBSOIL_INSTALL_STAGING_CMDS
$(MAKE) $(TARGET_CONFIGURE_OPTS) -f $(LIBSOIL_MAKEFILE) \
DESTDIR=$(STAGING_DIR) install \
INSTALL=$(INSTALL) \
-C $(@D)/src
endef
define LIBSOIL_INSTALL_TARGET_CMDS
$(MAKE) $(TARGET_CONFIGURE_OPTS) -f $(LIBSOIL_MAKEFILE) \
DESTDIR=$(TARGET_DIR) install \
INSTALL=$(INSTALL) \
-C $(@D)/src
endef
$(eval $(generic-package))