p910nd:
[packages.git] / net / p910nd / Makefile
1
2 # Copyright (C) 2007 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:=p910nd
12 PKG_VERSION:=0.7
13 PKG_RELEASE:=3
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:=http://www.etherboot.org/p910nd
17 PKG_MD5SUM:=7bf752532d26c9106f8039db95df3a6b
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/p910nd
22   SECTION:=net
23   CATEGORY:=Network
24   TITLE:=A small non-spooling printer server
25   DESCRIPTION:=\
26         p910nd is a small daemon that copies any data received on \\\
27         the port it is listening on to the  corresponding printer \\\
28         port. It  is primarily intended for diskless Linux hosts \\\
29         running as printer drivers but there is no reason why it \\\
30         could  not  be used on diskful hosts. Port 9100 is copied \\\
31         to /dev/lp0, 9101 to /dev/lp1 and 9102 to /dev/lp2. The \\\
32         default is port 9100 to /dev/lp0.
33   URL:=http://www.etherboot.org/p910nd/
34 endef
35
36 MAKE_FLAGS += \
37         CFLAGS="$(TARGET_CFLAGS) -DLOCKFILE_DIR=\"\\\"/tmp\"\\\""
38
39 define Package/p910nd/install
40         $(INSTALL_DIR) $(1)/usr/sbin
41         $(INSTALL_BIN) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/sbin/
42         $(INSTALL_DIR) $(1)/etc/config
43         $(INSTALL_DATA) ./files/$(PKG_NAME).conf $(1)/etc/config/$(PKG_NAME)
44         $(INSTALL_DIR) $(1)/etc/init.d
45         $(INSTALL_BIN) ./files/$(PKG_NAME).init $(1)/etc/init.d/$(PKG_NAME)
46 endef
47
48 $(eval $(call BuildPackage,p910nd))