packages/openvpn: fix pid-file arg passed in service command-line
[packages.git] / net / nzbget / Makefile
1 #
2 # Copyright (C) 2009-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=nzbget
11 PKG_VERSION:=0.7.0
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/nzbget
16 PKG_MD5SUM:=27971846aba75f5e312d80dce7edbc5d
17
18 PKG_FIXUP:=libtool
19
20 include $(INCLUDE_DIR)/package.mk
21
22 TARGET_LDFLAGS+=-Wl,-rpath-link="$(STAGING_DIR)/usr/lib"
23 TARGET_CFLAGS += $(FPIC)
24
25 define Package/nzbget
26   SUBMENU:=NNTP
27   SECTION:=net
28   CATEGORY:=Network
29   DEPENDS:=+libxml2 +libpar2 +libopenssl +libpthread +libncurses
30   URL:=http://nzbget.sourceforge.net/
31   TITLE:=Binary newsgrabber for nzb-files
32   MAINTAINER:=Artur Wronowski <arteqw@gmail.com>
33 endef
34
35 define Package/nzbget/description
36 A command-line client/server based binary newsgrabber for nzb-files.
37 endef
38
39 CONFIGURE_ARGS += \
40         --disable-static \
41         --disable-nls \
42         --with-tlslib=OpenSSL \
43         --with-libpar2-includes=$(STAGING_DIR)/usr/include/libpar2 \
44         --with-libpar2-libraries=$(STAGING_DIR)/usr/lib \
45         --with-libsigc-includes=$(STAGING_DIR)/usr/include/sigc++-2.0 \
46         --with-libsigc-libraries=$(STAGING_DIR)/usr/lib \
47         --with-openssl-includes=$(STAGING_DIR)/usr/include \
48         --with-openssl-libraries=$(STAGING_DIR)/usr/lib \
49         --with-libcurses-includes=$(STAGING_DIR)/usr/include \
50         --with-libcurses-libraries=$(STAGING_DIR)/usr/lib \
51         , \
52         PKG_CONFIG_PATH="$(STAGING_DIR)/usr/lib/pkgconfig"
53
54 CONFIGURE_VARS += \
55         ac_cv_header_regex_h=no \
56         CPPFLAGS="-I$(STAGING_DIR)/usr/include/libxml2 $$$$CPPFLAGS" 
57         
58 define Build/Compile
59         $(MAKE) -C $(PKG_BUILD_DIR) \
60         $(TARGET_CONFIGURE_OPTS) \
61         DESTDIR="$(PKG_INSTALL_DIR)" \
62         install all
63 endef
64
65 define Package/nzbget/install
66         $(INSTALL_DIR) $(1)/usr/sbin
67         $(INSTALL_BIN) $(PKG_BUILD_DIR)/nzbget $(1)/usr/sbin/
68         $(INSTALL_DIR) $(1)/etc
69         $(INSTALL_DATA) $(PKG_BUILD_DIR)/nzbget.conf.example $(1)/etc/nzbget.conf
70 endef
71
72 $(eval $(call BuildPackage,nzbget))