diff options
| author | David Kühling <dvdkhlng@gmx.de> | 2010-09-18 20:47:21 +0200 |
|---|---|---|
| committer | David Kühling <dvdkhlng@gmx.de> | 2010-09-18 20:47:21 +0200 |
| commit | 4bfce3b6e2ea095ea3d9f5d2d1018cc0a1e5ce09 (patch) | |
| tree | 58590463ada82a27eca0889312c32450358249a8 /centerim/Makefile | |
| download | qipackages-fork-4bfce3b6e2ea095ea3d9f5d2d1018cc0a1e5ce09.tar.gz | |
Major overhaul and cleanup. Support for .ubi image file installations.grafted
Only compile&install a minimum host Gforth for bootstrapping the target
Gforth, removing strange emacs-dependencies that cropped up earlier.
Image file can now be built on the nanonote using 'gforth-update-image'
command. Also, Gforth is now run through a wrapper that calls
'gforth-update-image' automatically, if necessary.
Also first attempts at supporting libcc C-interface libraries pre-compiled on
the host.
Tested to compile on amd64 and i386.
Diffstat (limited to 'centerim/Makefile')
| -rw-r--r-- | centerim/Makefile | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/centerim/Makefile b/centerim/Makefile new file mode 100644 index 0000000..e75b550 --- /dev/null +++ b/centerim/Makefile @@ -0,0 +1,53 @@ +include $(TOPDIR)/rules.mk + +PKG_NAME:=centerim +PKG_VERSION:=4.22.9 +PKG_RELEASE:=4 + +PKG_SOURCE:=centerim-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://www.centerim.org/download/releases +PKG_MD5SUM:=c43911508205e0277529230c8316a298 + +PKG_BUILD_DIR:=$(BUILD_DIR)/centerim-$(PKG_VERSION) + +include $(INCLUDE_DIR)/package.mk + +define Package/centerim + SECTION:=net + CATEGORY:=Network + SUBMENU:=Instant Messaging + DEPENDS:=+libncurses +libreadline +gpgme +libopenssl +libcurl + TITLE:=Universal IM client + URL:=http://www.centerim.org +endef + +define Package/centerim/description + Centerim is a multi-protocol messaging client. + Works in a character terminal. +endef + +CONFIGURE_VARS+=ac_cv_lib_ncurses_initscr=yes + +define Build/Configure + $(call Build/Configure/Default, \ + --prefix=/usr \ + --with-openssl=$(STAGING_DIR)/usr/lib \ + ) +endef + + +define Package/centerim/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/centerim $(1)/usr/bin/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/misc/cimconv $(1)/usr/bin/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/misc/CenterIMLog2HTML.py $(1)/usr/bin/ + $(INSTALL_DIR) $(1)/usr/share + $(INSTALL_BIN) $(PKG_BUILD_DIR)/share/email.wav $(1)/usr/share/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/share/msg.wav $(1)/usr/share/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/share/offline.wav $(1)/usr/share/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/share/online.wav $(1)/usr/share/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/share/sms.wav $(1)/usr/share/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/share/url.wav $(1)/usr/share/ +endef + +$(eval $(call BuildPackage,centerim)) |
