mxe/src/gd.mk

47 lines
1.7 KiB
Makefile
Raw Normal View History

2012-03-28 14:46:58 +01:00
# This file is part of MXE.
2012-03-29 11:14:15 +01:00
# See index.html for further information.
2008-11-08 21:39:10 +00:00
PKG := gd
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.0.35
$(PKG)_CHECKSUM := ccf34a610abff2dbf133a20c4d2a4aa94939018a
$(PKG)_SUBDIR := gd-$($(PKG)_VERSION)
$(PKG)_FILE := gd-$($(PKG)_VERSION).tar.bz2
$(PKG)_URL := http://www.libgd.org/releases/$($(PKG)_FILE)
$(PKG)_DEPS := gcc freetype libpng jpeg libxml2 pthreads
2008-11-08 21:39:10 +00:00
define $(PKG)_UPDATE
2011-05-18 13:03:44 +01:00
echo 'Warning: Updates are temporarily disabled for package gd.' >&2;
echo $(gd_VERSION)
endef
define $(PKG)_UPDATE_orig
$(WGET) -q -O- 'http://www.libgd.org/releases/' | \
2008-11-08 21:39:10 +00:00
$(SED) -n 's,.*gd-\([0-9][^>]*\)\.tar.*,\1,p' | \
head -1
endef
define $(PKG)_BUILD
touch '$(1)/aclocal.m4'
touch '$(1)/config.hin'
touch '$(1)/Makefile.in'
$(SED) -i 's,-I@includedir@,-I@includedir@ -DNONDLL,' '$(1)/config/gdlib-config.in'
$(SED) -i 's,-lX11 ,,g' '$(1)/configure'
2013-04-14 09:23:24 +01:00
$(SED) -i 's,png12,png16,g' '$(1)/configure'
2008-11-08 21:39:10 +00:00
cd '$(1)' && ./configure \
--host='$(TARGET)' \
--disable-shared \
--prefix='$(PREFIX)/$(TARGET)' \
--with-freetype='$(PREFIX)/$(TARGET)' \
--without-x \
LIBPNG_CONFIG='$(PREFIX)/$(TARGET)/bin/libpng-config' \
CFLAGS='-DNONDLL -DXMD_H -L$(PREFIX)/$(TARGET)/lib' \
LIBS="`$(PREFIX)/$(TARGET)/bin/xml2-config --libs`"
$(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
'$(TARGET)-gcc' \
-W -Wall -Werror -ansi -pedantic \
'$(2).c' -o '$(PREFIX)/$(TARGET)/bin/test-gd.exe' \
`'$(PREFIX)/$(TARGET)/bin/gdlib-config' --cflags` \
-lgd `'$(PREFIX)/$(TARGET)/bin/gdlib-config' --libs`
2008-11-08 21:39:10 +00:00
endef