massive Makefile cleanup, add missing 'svn:keywords' property
[packages.git] / net / cups / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=cups
12 PKG_VERSION:=1.1.23
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-source.tar.bz2
16 PKG_SOURCE_URL:= \
17         http://ftp.rz.tu-bs.de/pub/mirror/ftp.easysw.com/ftp/pub/cups/$(PKG_VERSION) \
18         ftp://ftp.easysw.com/pub/cups/$(PKG_VERSION) \
19         ftp://ftp3.easysw.com/pub/cups/$(PKG_VERSION)
20 PKG_MD5SUM:=4ce09b1dce09b6b9398af0daae9adf63
21 PKG_CAT:=bzcat
22
23 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
24 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
25
26 PKG_BUILDDEP:=zlib
27
28 include $(INCLUDE_DIR)/package.mk
29
30 define Package/cups
31   SECTION:=net
32   CATEGORY:=Network
33   DEPENDS:=+zlib
34   TITLE:=Common UNIX Printing System
35   DESCRIPTION:=\
36         A printer spooling system for devices with USB or LP support.
37   URL:=http://www.cups.org/
38 endef
39
40 define Package/cups/conffiles
41 /etc/cups/classes.conf
42 /etc/cups/client.conf
43 /etc/cups/cupsd.conf
44 /etc/cups/printers.conf
45 endef
46
47 define Build/Configure
48         $(call Build/Configure/Default, \
49                 --libexecdir=/usr/lib \
50                 --with-cups-user=root \
51                 --with-cups-group=root \
52                 --without-perl \
53                 --without-python \
54                 --without-php \
55                 --enable-shared \
56                 --disable-slp \
57                 --disable-gnutls \
58                 --disable-openssl \
59                 --disable-cdsassl \
60                 --disable-ssl \
61                 --disable-slp, \
62                 UNAME="Linux" \
63         )
64 endef
65
66 define Build/Compile
67         rm -rf $(PKG_INSTALL_DIR)
68         mkdir -p $(PKG_INSTALL_DIR)
69         $(MAKE) -C $(PKG_BUILD_DIR) \
70                 DSTROOT="$(PKG_INSTALL_DIR)" \
71                 STRIP="/bin/true" \
72                 all install
73 endef
74
75 define Package/cups/install
76         rm -rf $(1)/etc/cups
77         install -d -m0755 $(1)/etc/cups
78         $(CP) $(PKG_INSTALL_DIR)/etc/cups/* $(1)/etc/cups/
79         rm -rf $(1)/etc/cups/certs
80         ln -sf /tmp $(1)/etc/cups/certs
81         install -d -m0755 $(1)/usr/bin
82         $(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
83         rm -f $(1)/usr/bin/cups-config
84         install -d -m0755 $(1)/usr/lib
85         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libcups.so.* $(1)/usr/lib/
86         $(CP) $(PKG_INSTALL_DIR)/usr/lib/cups $(1)/usr/lib/
87         install -d -m0755 $(1)/usr/share/cups/templates
88         $(CP) $(PKG_INSTALL_DIR)/usr/share/cups/templates/*.tmpl $(1)/usr/share/cups/templates/
89         install -d -m0755 $(1)/usr/share/doc/cups
90         $(CP) $(PKG_INSTALL_DIR)/usr/share/doc/cups/index.html $(1)/usr/share/doc/cups/
91         $(CP) $(PKG_INSTALL_DIR)/usr/share/doc/cups/images $(1)/usr/share/doc/cups/
92         install -d -m0755 $(1)/usr/sbin
93         $(CP) $(PKG_INSTALL_DIR)/usr/sbin/* $(1)/usr/sbin/
94         # overwrite default config with our own
95         $(CP) ./files/etc/cups/* $(1)/etc/cups/
96         # install initscript with priority 60
97         install -d -m0755 $(1)/etc/init.d
98         install -m0755 ./files/cupsd.init $(1)/etc/init.d/cupsd
99 endef
100
101 define Build/InstallDev
102         mkdir -p $(STAGING_DIR)/usr/bin
103         $(CP) $(PKG_INSTALL_DIR)/usr/bin/cups-config $(STAGING_DIR)/usr/bin/
104         mkdir -p $(STAGING_DIR)/usr/include
105         $(CP) $(PKG_INSTALL_DIR)/usr/include/cups $(STAGING_DIR)/usr/include/
106         mkdir -p $(STAGING_DIR)/usr/lib
107         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libcups.{a,so*} $(STAGING_DIR)/usr/lib/
108 endef
109
110 define Build/UninstallDev
111         rm -rf \
112                 $(STAGING_DIR)/usr/bin/cups-config \
113                 $(STAGING_DIR)/usr/include/cups \
114                 $(STAGING_DIR)/usr/lib/libcups.{a,so*}
115 endef
116
117 $(eval $(call BuildPackage,cups))