source: freewrt/package/sane-backends/Makefile@ d419478

freewrt_1_0 freewrt_2_0
Last change on this file since d419478 was d419478, checked in by Thorsten Glaser <tg@…>, 19 years ago
  • whitespace cleanup, while here
  • move WRKDIR and DISTFILES definition into PKG_template
  • define WRKDIR via parent BUILD_DIR instead of going up from WRKSRC
  • use a sub-directory as WRKDIR, like BSD
  • rename PKG_BUILD_DIR into WRKBUILD
  • define WRKBUILD relative via WRKDIR
  • rename PKG_INSTALL_DIR into WRKINST
  • fix a few dependencies
  • make use of common cases in the definition of WRKBUILD and WRKINST, removing many redundant lines
  • use WRKDIR instead of BUILD_DIR in places where the latter was used previously
  • while here, remove PKG_CAT stuff

this only affects packages, for now

git-svn-id: svn://www.freewrt.org/trunk/freewrt@303 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 2.1 KB
Line 
1# $Id: Makefile 3112 2006-02-01 23:53:19Z mbm $
2
3include $(TOPDIR)/rules.mk
4
5PKG_NAME:=sane-backends
6PKG_VERSION:=1.0.17
7PKG_RELEASE:=1
8PKG_MD5SUM:=b51c10da8a81a04e1bae88c9e6556df2
9
10PKG_SOURCE_URL:=ftp://ftp2.sane-project.org/pub/sane/$(PKG_NAME)-$(PKG_VERSION)/ \
11 ftp://ftp3.sane-project.org/pub/sane/$(PKG_NAME)-$(PKG_VERSION)/ \
12 ftp://ftp4.sane-project.org/pub/sane/$(PKG_NAME)-$(PKG_VERSION)/ \
13 ftp://ftp5.sane-project.org/pub/sane/$(PKG_NAME)-$(PKG_VERSION)/
14PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15
16
17include $(TOPDIR)/package/rules.mk
18
19$(eval $(call PKG_template,SANE_BACKENDS,sane-backends,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
20
21$(WRKBUILD)/.configured:
22 (cd $(WRKBUILD); rm -rf config.{cache,status} ; \
23 $(TARGET_CONFIGURE_OPTS) \
24 CFLAGS="$(strip $(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 ./configure \
28 --target=$(GNU_TARGET_NAME) \
29 --host=$(GNU_TARGET_NAME) \
30 --build=$(GNU_HOST_NAME) \
31 --program-prefix="" \
32 --program-suffix="" \
33 --prefix=/usr \
34 --exec-prefix=/usr \
35 --bindir=/usr/bin \
36 --datadir=/usr/share \
37 --includedir=/usr/include \
38 --infodir=/usr/share/info \
39 --libdir=/usr/lib \
40 --libexecdir=/usr/lib \
41 --localstatedir=/var \
42 --mandir=/usr/share/man \
43 --sbindir=/usr/sbin \
44 --sysconfdir=/etc \
45 --enable-largefile \
46 --disable-nls \
47 --enable-shared \
48 --disable-static \
49 --disable-ipv6 \
50 --disable-translations \
51 --without-gphoto2 \
52 --disable-debug \
53 );
54 touch $(WRKBUILD)/.configured
55
56$(WRKBUILD)/.built:
57 $(MAKE) -C $(WRKBUILD)
58 mkdir -p $(WRKINST)
59 $(MAKE) -C $(WRKBUILD) \
60 DESTDIR="$(WRKINST)" \
61 install
62 touch $(WRKBUILD)/.built
63
64$(IPKG_SANE_BACKENDS):
65 install -d -m0755 $(IDIR_SANE_BACKENDS)/etc/sane.d
66 $(CP) $(WRKINST)/etc/sane.d/*.conf $(IDIR_SANE_BACKENDS)/etc/sane.d/
67 install -d -m0755 $(IDIR_SANE_BACKENDS)/usr/sbin
68 $(CP) $(WRKINST)/usr/sbin/saned $(IDIR_SANE_BACKENDS)/usr/sbin/
69 $(RSTRIP) $(IDIR_SANE_BACKENDS)
70 $(IPKG_BUILD) $(IDIR_SANE_BACKENDS) $(PACKAGE_DIR)
Note: See TracBrowser for help on using the repository browser.