source: freewrt/package/libpng/Makefile@ 621d5d2

freewrt_2_0
Last change on this file since 621d5d2 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.7 KB
RevLine 
[c8b93bd]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.
[475ad56]6
7include $(TOPDIR)/rules.mk
8
[c8b93bd]9PKG_NAME:= libpng
10PKG_VERSION:= 1.2.8
11PKG_RELEASE:= 1
12PKG_MD5SUM:= e5a39003eed16103cbbd3b6a8bc6b1f9
[475ad56]13
[c8b93bd]14PKG_SOURCE_URL:= @SF/libpng
15PKG_SOURCE:= $(PKG_NAME)-$(PKG_VERSION)-config.tar.gz
[475ad56]16
[e04401b]17WRKSRC= ${WRKDIR}/${PKG_NAME}-${PKG_VERSION}-config
[475ad56]18
[c8b93bd]19include $(TOPDIR)/mk/package.mk
[475ad56]20
21$(eval $(call PKG_template,LIBPNG,libpng,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
22
[d419478]23$(WRKBUILD)/.configured:
24 (cd $(WRKBUILD); rm -rf config.{cache,status} ; \
[475ad56]25 $(TARGET_CONFIGURE_OPTS) \
26 CFLAGS="$(TARGET_CFLAGS)" \
27 CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
28 LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
29 ./configure \
30 --target=$(GNU_TARGET_NAME) \
31 --host=$(GNU_TARGET_NAME) \
32 --build=$(GNU_HOST_NAME) \
33 --program-prefix="" \
34 --program-suffix="" \
35 --prefix=/usr \
36 --exec-prefix=/usr \
37 --bindir=/usr/bin \
38 --datadir=/usr/share \
39 --includedir=/usr/include \
40 --infodir=/usr/share/info \
41 --libdir=/usr/lib \
42 --libexecdir=/usr/lib \
43 --localstatedir=/var \
44 --mandir=/usr/share/man \
45 --sbindir=/usr/sbin \
46 --sysconfdir=/etc \
[c57fbc9]47 --disable-nls \
[475ad56]48 --enable-shared \
49 --enable-static \
50 --with-zlib=$(STAGING_DIR)/usr/ \
51 )
52 touch $@
53
[d419478]54$(WRKBUILD)/.built:
55 rm -rf $(WRKINST)
56 mkdir -p $(WRKINST)
57 $(MAKE) -C $(WRKBUILD) \
58 DESTDIR="$(WRKINST)" \
[475ad56]59 all install
60 touch $@
61
62$(IPKG_LIBPNG):
63 install -d -m0755 $(IDIR_LIBPNG)/usr/lib
[d419478]64 $(CP) $(WRKINST)/usr/lib/libpng{,12}.so.* $(IDIR_LIBPNG)/usr/lib/
[475ad56]65 $(RSTRIP) $(IDIR_LIBPNG)
66 $(IPKG_BUILD) $(IDIR_LIBPNG) $(PACKAGE_DIR)
67
[d419478]68$(STAGING_DIR)/usr/lib/libpng.so: $(WRKBUILD)/.built
[475ad56]69 mkdir -p $(STAGING_DIR)/usr/bin
[d419478]70 $(CP) $(WRKINST)/usr/bin/libpng{,12}-config $(STAGING_DIR)/usr/bin/
[475ad56]71 mkdir -p $(STAGING_DIR)/usr/include
[d419478]72 $(CP) $(WRKINST)/usr/include/png{,conf}.h $(STAGING_DIR)/usr/include/
73 $(CP) $(WRKINST)/usr/include/libpng $(STAGING_DIR)/usr/include/
[475ad56]74 mkdir -p $(STAGING_DIR)/usr/lib
[d419478]75 $(CP) $(WRKINST)/usr/lib/libpng{,12}.{a,so*} $(STAGING_DIR)/usr/lib/
[475ad56]76 mkdir -p $(STAGING_DIR)/usr/lib/pkgconfig
[d419478]77 $(CP) $(WRKINST)/usr/lib/pkgconfig/libpng{,12}.pc $(STAGING_DIR)/usr/lib/pkgconfig/
[475ad56]78 $(SED) 's,^[ILR]_opts=".\+",,g' $(STAGING_DIR)/usr/bin/libpng*-config
79 touch $@
80
81install-dev: $(STAGING_DIR)/usr/lib/libpng.so
82
83uninstall-dev:
84 rm -rf \
85 $(STAGING_DIR)/usr/bin/libpng{,12}-config \
86 $(STAGING_DIR)/usr/include/png{,conf}.h \
87 $(STAGING_DIR)/usr/include/libpng \
88 $(STAGING_DIR)/usr/lib/libpng{,12}.{a,so*} \
89 $(STAGING_DIR)/usr/lib/pkgconfig/libpng{,12}.pc
90
91compile-targets: install-dev
92clean-targets: uninstall-dev
Note: See TracBrowser for help on using the repository browser.