From 4f6e75dcf56f872428553dec1a8e7d2a3499b82f Mon Sep 17 00:00:00 2001 From: Mirko Vogt Date: Sat, 20 Feb 2010 10:35:44 +0100 Subject: [PATCH] remove X11-dependency and therefore need for GL --- libsdl-ttf/Makefile | 31 ++++++++++++++----------------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/libsdl-ttf/Makefile b/libsdl-ttf/Makefile index 78308b8..24095b7 100644 --- a/libsdl-ttf/Makefile +++ b/libsdl-ttf/Makefile @@ -16,6 +16,8 @@ PKG_SOURCE_URL:=http://www.libsdl.org/projects/SDL_ttf/release/ PKG_MD5SUM:=6dd5a85e4924689a35a5fb1cb3336156 PKG_BUILD_DIR:=$(BUILD_DIR)/SDL_ttf-$(PKG_VERSION) +PKG_INSTALL:=1 + include $(INCLUDE_DIR)/package.mk define Package/libsdl-ttf @@ -30,34 +32,29 @@ define Package/libsdl-ttf/description SDL_ttf is a TrueType font rendering library that is used with the SDL library, and almost as portable. It depends on freetype2 to handle the TrueType font data. It allows a programmer to use multiple TrueType fonts without having to code a font rendering routine themselves. With the power of outline fonts and antialiasing, high quality text output can be obtained without much effort. endef -TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include/SDL - -CONFIGURE_ARGS += \ - --with-sdl-exec-prefix=$(STAGING_DIR) - -CONFIGURE_VARS += \ - LIBS="-lSDL -ldirect -ldirectfb -lfusion" - -define Build/Compile - rm -rf $(PKG_INSTALL_DIR) - $(MAKE) -C $(PKG_BUILD_DIR) \ - DESTDIR="$(PKG_INSTALL_DIR)" \ - all install -endef +CONFIGURE_ARGS += --without-x define Build/InstallDev - $(INSTALL_DIR) $(1)/usr/include/SDL $(1)/usr/lib + $(INSTALL_DIR) \ + $(1)/usr/include/SDL \ + $(1)/usr/lib + $(CP) \ $(PKG_INSTALL_DIR)/usr/include/SDL/SDL_ttf.h \ $(1)/usr/include/SDL/ + $(CP) \ $(PKG_INSTALL_DIR)/usr/lib/libSDL_ttf*.{a,so*} \ $(1)/usr/lib/ endef define Package/libsdl-ttf/install - $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libSDL_ttf*.so* $(1)/usr/lib/ + $(INSTALL_DIR) \ + $(1)/usr/lib + + $(CP) \ + $(PKG_INSTALL_DIR)/usr/lib/libSDL_ttf*.so* \ + $(1)/usr/lib/ endef $(eval $(call BuildPackage,libsdl-ttf))