| 1 | # $Id: Makefile 3112 2006-02-01 23:53:19Z mbm $
|
|---|
| 2 |
|
|---|
| 3 | include $(TOPDIR)/rules.mk
|
|---|
| 4 |
|
|---|
| 5 | PKG_NAME:=sane-backends
|
|---|
| 6 | PKG_VERSION:=1.0.17
|
|---|
| 7 | PKG_RELEASE:=1
|
|---|
| 8 | PKG_MD5SUM:=b51c10da8a81a04e1bae88c9e6556df2
|
|---|
| 9 |
|
|---|
| 10 | PKG_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)/
|
|---|
| 14 | PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 | include $(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)
|
|---|