source: freewrt/package/jpeg/Makefile@ 9f572e3

freewrt_1_0 freewrt_2_0
Last change on this file since 9f572e3 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.4 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:= jpeg
10PKG_VERSION:= 6b
11PKG_RELEASE:= 1
12PKG_MD5SUM:= dbd5f3b47ed13132f04c685d608a7547
13
14PKG_SOURCE_URL:= http://www.ijg.org/files/ \
15 ftp://ftp.uu.net/graphics/jpeg/
16PKG_SOURCE:= $(PKG_NAME)src.v$(PKG_VERSION).tar.gz
17
18include $(TOPDIR)/mk/package.mk
19
20$(eval $(call PKG_template,LIBJPEG,libjpeg,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
21
22$(WRKBUILD)/.configured:
23 (cd $(WRKBUILD); rm -rf config.{cache,status} ; \
24 $(TARGET_CONFIGURE_OPTS) \
25 CFLAGS="$(TARGET_CFLAGS)" \
26 CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
27 LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
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 )
50 touch $@
51
52$(WRKBUILD)/.built:
53 rm -rf $(WRKINST)
54 mkdir -p $(WRKINST)/usr/{include,lib}
55 $(MAKE) -C $(WRKBUILD) \
56 all
57 $(MAKE) -C $(WRKBUILD) \
58 prefix="$(WRKINST)/usr" \
59 exec_prefix="$(WRKINST)/usr" \
60 install-headers install-lib
61 touch $@
62
63$(IPKG_LIBJPEG):
64 install -d -m0755 $(IDIR_LIBJPEG)/usr/lib
65 $(CP) $(WRKINST)/usr/lib/libjpeg.so.* $(IDIR_LIBJPEG)/usr/lib/
66 $(RSTRIP) $(IDIR_LIBJPEG)
67 $(IPKG_BUILD) $(IDIR_LIBJPEG) $(PACKAGE_DIR)
68
69$(STAGING_DIR)/usr/lib/libjpeg.so: $(WRKBUILD)/.built
70 mkdir -p $(STAGING_DIR)/usr/include
71 $(CP) $(WRKINST)/usr/include/jpeglib.h $(STAGING_DIR)/usr/include/
72 $(CP) $(WRKINST)/usr/include/j{config,error,morecfg}.h $(STAGING_DIR)/usr/include/
73 mkdir -p $(STAGING_DIR)/usr/lib
74 $(CP) $(WRKINST)/usr/lib/libjpeg.{a,so*} $(STAGING_DIR)/usr/lib/
75
76install-dev: $(STAGING_DIR)/usr/lib/libjpeg.so
77
78uninstall-dev:
79 rm -rf \
80 $(STAGING_DIR)/usr/include/jpeglib.h \
81 $(STAGING_DIR)/usr/include/j{config,error,morecfg}.h \
82 $(STAGING_DIR)/usr/lib/libjpeg.{a,so*} \
83
84compile-targets: install-dev
85clean-targets: uninstall-dev
Note: See TracBrowser for help on using the repository browser.