From 5dcac5cccdd165e45dbff66e64fd30fa03d93c69 Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Sun, 9 Nov 2008 18:03:57 +0000 Subject: [PATCH] Fix endianness, install configuration file #3441 SVN-Revision: 13161 --- net/psybnc/Makefile | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/net/psybnc/Makefile b/net/psybnc/Makefile index edf145a7c2..ecd3b0e27c 100644 --- a/net/psybnc/Makefile +++ b/net/psybnc/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=psybnc PKG_VERSION:=2.3.2-7 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=psyBNC-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.psybnc.info/download/beta/ @@ -24,7 +24,6 @@ define Package/psybnc SUBMENU:=Instant Messaging SECTION:=net CATEGORY:=Network - DEPENDS:= TITLE:=An IRC-Bouncer with many features URL:=http://www.psybnc.info/ endef @@ -37,6 +36,12 @@ define Package/psybnc/description functions are included. endef +ifneq ($(SDK)$(CONFIG_BIG_ENDIAN),) + ENDIANESS:=1 +else + ENDIANESS:=0 +endif + define Build/Compile $(call Build/Compile/Default, \ CFLAGS="$(TARGET_CFLAGS)" \ @@ -45,6 +50,10 @@ define Build/Compile ) endef +define Package/psybnc/conffiles +/etc/psybnc.conf +endef + define Package/psybnc/install $(INSTALL_DIR) $(1)/usr/sbin $(INSTALL_BIN) $(PKG_BUILD_DIR)/psybnc.sh $(1)/usr/sbin/psybnc @@ -53,6 +62,8 @@ define Package/psybnc/install $(INSTALL_CONF) $(PKG_BUILD_DIR)/psybnc.conf $(1)/usr/share/psybnc/ $(INSTALL_DIR) $(1)/usr/share/psybnc/lang $(INSTALL_DATA) $(PKG_BUILD_DIR)/lang/english.lng $(1)/usr/share/psybnc/lang/ + $(INSTALL_DIR) $(1)/etc/ + $(INSTALL_CONF) $(PKG_BUILD_DIR)/psybnc.conf $(1)/etc endef $(eval $(call BuildPackage,psybnc)) -- 2.30.2