summaryrefslogtreecommitdiffstats
path: root/package/cups/Makefile
blob: 9b84234bf7206d0180e8b1144e01225d0e850abe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# $Id$

include $(TOPDIR)/rules.mk

PKG_NAME:=cups
PKG_VERSION:=1.1.23
PKG_RELEASE:=1
PKG_MD5SUM:=4ce09b1dce09b6b9398af0daae9adf63

PKG_SOURCE_URL:=ftp://ftp3.easysw.com/pub/cups/1.1.23/
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-source.tar.bz2
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_CAT:=bzcat
PKG_IPK:=$(PACKAGE_DIR)/$(PKG_NAME)_$(PKG_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk
PKG_IPK_DIR:=$(PKG_BUILD_DIR)/ipkg

$(DL_DIR)/$(PKG_SOURCE):
	 $(SCRIPT_DIR)/download.pl $(DL_DIR) $(PKG_SOURCE) $(PKG_MD5SUM) $(PKG_SOURCE_URL)

$(PKG_BUILD_DIR)/.patched: $(DL_DIR)/$(PKG_SOURCE)
	$(PKG_CAT) $(DL_DIR)/$(PKG_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
	$(PATCH) $(PKG_BUILD_DIR) ./patches
	touch $(PKG_BUILD_DIR)/.patched

$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.patched
	(cd $(PKG_BUILD_DIR); rm -rf config.cache; \
		ac_cv_path_STRIP="$(STRIP)" \
		$(TARGET_CONFIGURE_OPTS) \
		CFLAGS="$(TARGET_CFLAGS)" \
		./configure \
		--target=$(GNU_TARGET_NAME) \
		--host=$(GNU_TARGET_NAME) \
		--build=$(GNU_HOST_NAME) \
		--prefix=$(CUPS_IPK_DIR)/usr \
		--exec-prefix=/usr \
		--bindir=/usr/bin \
		--sbindir=/usr/sbin \
		--libexecdir=/usr/lib \
		--sysconfdir=/etc \
		--datadir=/usr/share \
		--localstatedir=/var \
		--mandir=/usr/man \
		--infodir=/usr/info \
		--program-prefix="" \
		--with-gnu-ld \
		--with-cups-user=root \
		--with-cups-group=root \
		--without-perl \
		--without-python \
		--without-php \
		--disable-slp \
		--disable-gnutls \
		--disable-openssl \
		--disable-cdsassl \
		--disable-ssl \
		--disable-slp \
	);
	touch  $(PKG_BUILD_DIR)/.configured


$(PKG_IPK_DIR)/usr/sbin/cupsd: $(PKG_BUILD_DIR)/.configured
	$(MAKE) -C $(PKG_BUILD_DIR)
	$(MAKE) STRIP=$(STRIP) DSTROOT=$(PKG_IPK_DIR) -C $(PKG_BUILD_DIR) install
	cp -a $(PKG_IPK_DIR)/usr/lib/* $(STAGING_DIR)/lib/
	cp -a $(PKG_IPK_DIR)/usr/include/* $(STAGING_DIR)/include/

$(PKG_IPK): $(PKG_IPK_DIR)/usr/sbin/cupsd
	$(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_IPK_DIR) $(PKG_NAME).control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH)
	rm -f $(PKG_IPK_DIR)/usr/bin/cups-config
	rm -f $(PKG_IPK_DIR)/usr/lib/*.a
	rm -f $(PKG_IPK_DIR)/usr/share/doc/cups/* || true
	rm -rf $(PKG_IPK_DIR)/usr/share/doc/cups/??
	rm -rf $(PKG_IPK_DIR)/usr/share/locale
	rm -rf $(PKG_IPK_DIR)/usr/share/cups/banners
	rm -rf $(PKG_IPK_DIR)/usr/share/cups/charsets
	rm -rf $(PKG_IPK_DIR)/usr/share/cups/fonts
	rm -rf $(PKG_IPK_DIR)/usr/share/cups/model
	rm -rf $(PKG_IPK_DIR)/usr/share/cups/data
	rm -rf $(PKG_IPK_DIR)/usr/share/cups/templates/??
	rm -rf $(PKG_IPK_DIR)/usr/include
	rm -rf $(PKG_IPK_DIR)/var
	rm -rf $(PKG_IPK_DIR)/etc/*.d
	$(STRIP) $(PKG_IPK_DIR)/usr/bin/*
	$(STRIP) $(PKG_IPK_DIR)/usr/lib/cups/backend/*
	$(STRIP) $(PKG_IPK_DIR)/usr/lib/cups/cgi-bin/*
	$(STRIP) $(PKG_IPK_DIR)/usr/lib/cups/daemon/*
	cp -a ./files/* $(PKG_IPK_DIR)/
	$(IPKG_BUILD) $(PKG_IPK_DIR) $(PACKAGE_DIR)

source: $(DL_DIR)/$(PKG_SOURCE)
prepare: $(PKG_BUILD_DIR)/.patched
compile: $(PKG_IPK)
install:
	$(IPKG) install $(PKG_IPK)
clean:
	rm -rf $(PKG_BUILD_DIR)