source: freewrt/package/libgd/Makefile

freewrt_2_0
Last change on this file was 9f572e3, checked in by Dirk Nehring <dnehring@…>, 19 years ago

drop --enable-largefile from makefiles. 2GB should be enough in most cases

git-svn-id: svn://www.freewrt.org/branches/freewrt_1_0@975 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 2.6 KB
Line 
1# $FreeWRT$
2#-
3# This file is part of the FreeWRT project. FreeWRT is copyrighted
4# material, please see the LICENCE file in the top-level directory
5# or at http://www.freewrt.org/licence for details.
6
7include $(TOPDIR)/rules.mk
8
9PKG_NAME:= gd
10PKG_VERSION:= 2.0.33
11PKG_RELEASE:= 2
12PKG_MD5SUM:= be0a6d326cd8567e736fbc75df0a5c45
13
14PKG_SOURCE_URL:=http://www.boutell.com/gd/http
15PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16
17include $(TOPDIR)/mk/package.mk
18
19$(eval $(call PKG_template,LIBGD,libgd,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
20
21$(WRKBUILD)/.configured:
22 (cd $(WRKBUILD); rm -rf config.{cache,status} ; \
23 $(TARGET_CONFIGURE_OPTS) \
24 CFLAGS="$(TARGET_CFLAGS)" \
25 CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
26 LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
27 LIBPNG12_CONFIG="$(STAGING_DIR)/usr/bin/libpng12-config" \
28 ./configure \
29 --target=$(GNU_TARGET_NAME) \
30 --host=$(GNU_TARGET_NAME) \
31 --build=$(GNU_HOST_NAME) \
32 --program-prefix="" \
33 --program-suffix="" \
34 --prefix=/usr \
35 --exec-prefix=/usr \
36 --bindir=/usr/bin \
37 --datadir=/usr/share \
38 --includedir=/usr/include \
39 --infodir=/usr/share/info \
40 --libdir=/usr/lib \
41 --libexecdir=/usr/lib \
42 --localstatedir=/var \
43 --mandir=/usr/share/man \
44 --sbindir=/usr/sbin \
45 --sysconfdir=/etc \
46 --disable-nls \
47 --enable-shared \
48 --enable-static \
49 --disable-rpath \
50 --with-gnu-ld \
51 --without-x \
52 --without-freetype \
53 --with-jpeg=$(STAGING_DIR)/usr \
54 --with-png=$(STAGING_DIR)/usr \
55 --without-xpm \
56 )
57 touch $@
58
59$(WRKBUILD)/.built:
60 rm -rf $(WRKINST)
61 mkdir -p $(WRKINST)
62 $(MAKE) -C $(WRKBUILD) \
63 DESTDIR="$(WRKINST)" \
64 all install
65 touch $@
66
67$(IPKG_LIBGD):
68 install -d -m0755 $(IDIR_LIBGD)/usr/lib
69 $(CP) $(WRKINST)/usr/lib/libgd.so.* $(IDIR_LIBGD)/usr/lib/
70 $(RSTRIP) $(IDIR_LIBGD)
71 $(IPKG_BUILD) $(IDIR_LIBGD) $(PACKAGE_DIR)
72
73$(STAGING_DIR)/usr/lib/libgd.so: $(WRKBUILD)/.built
74 mkdir -p $(STAGING_DIR)/usr/bin
75 $(CP) $(WRKINST)/usr/bin/gdlib-config $(STAGING_DIR)/usr/bin/
76 mkdir -p $(STAGING_DIR)/usr/include
77 $(CP) $(WRKINST)/usr/include/entities.h $(STAGING_DIR)/usr/include/
78 $(CP) $(WRKINST)/usr/include/gd*.h $(STAGING_DIR)/usr/include/
79 mkdir -p $(STAGING_DIR)/usr/lib
80 $(CP) $(WRKINST)/usr/lib/libgd.{a,so*} $(STAGING_DIR)/usr/lib/
81 touch $@
82
83install-dev: $(STAGING_DIR)/usr/lib/libgd.so
84
85uninstall-dev:
86 rm -rf \
87 $(STAGING_DIR)/usr/bin/gdlib-config \
88 $(STAGING_DIR)/usr/include/entities.h \
89 $(STAGING_DIR)/usr/include/gd*.h \
90 $(STAGING_DIR)/usr/lib/libgd.{a,so*} \
91
92compile-targets: install-dev
93clean-targets: uninstall-dev
Note: See TracBrowser for help on using the repository browser.