mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-10 14:21:51 +02:00
add palantir
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1956 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
7c99aef9c6
commit
07db98a032
@ -178,6 +178,7 @@ comment "Multimedia ---"
|
||||
source "package/gmediaserver/Config.in"
|
||||
source "package/mt-daapd/Config.in"
|
||||
source "package/mpd/Config.in"
|
||||
source "package/palantir/Config.in"
|
||||
source "package/setpwc/Config.in"
|
||||
|
||||
comment "Serial communications & terminal emulation ---"
|
||||
|
@ -121,6 +121,7 @@ package-$(BR2_PACKAGE_OPENSSL) += openssl
|
||||
package-$(BR2_PACKAGE_OPENSWAN) += openswan
|
||||
package-$(BR2_PACKAGE_OPENVPN) += openvpn
|
||||
package-$(BR2_PACKAGE_OSIRIS) += osiris
|
||||
package-$(BR2_PACKAGE_PALANTIR) += palantir
|
||||
package-$(BR2_PACKAGE_PARPROUTED) += parprouted
|
||||
package-$(BR2_PACKAGE_PCRE) += pcre
|
||||
package-$(BR2_COMPILE_PHP4) += php4
|
||||
@ -238,6 +239,7 @@ openssh-compile: zlib-compile openssl-compile
|
||||
openssl-compile: zlib-compile
|
||||
openswan-compile: gmp-compile
|
||||
osiris-compile: openssl-compile
|
||||
palantir-compile: jpeg-compile
|
||||
portmap-compile: tcp_wrappers-compile
|
||||
postgresql-compile: zlib-compile
|
||||
ppp-compile: linux-atm-compile
|
||||
|
11
openwrt/package/palantir/Config.in
Normal file
11
openwrt/package/palantir/Config.in
Normal file
@ -0,0 +1,11 @@
|
||||
config BR2_PACKAGE_PALANTIR
|
||||
tristate "palantir - a multichannel interactive streaming solution"
|
||||
default m if CONFIG_DEVEL
|
||||
select LIBJPEG
|
||||
help
|
||||
Palantir is a Linux-based streaming system designed to transmit live
|
||||
video, audio and data over a TCP/IP network, as well as to control
|
||||
remote devices.
|
||||
|
||||
http://www.fastpath.it/products/palantir/
|
||||
|
46
openwrt/package/palantir/Makefile
Normal file
46
openwrt/package/palantir/Makefile
Normal file
@ -0,0 +1,46 @@
|
||||
# $Id$
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=palantir
|
||||
PKG_VERSION:=2.6
|
||||
PKG_RELEASE:=1
|
||||
PKG_MD5SUM:=8e4d20e7f7fad26d7447483c68894ace
|
||||
|
||||
PKG_SOURCE_URL:=http://www.fastpath.it/products/palantir/pub/
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
|
||||
PKG_CAT:=zcat
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||
|
||||
export CPPFLAGS=-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include
|
||||
export LDFLAGS=-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib
|
||||
|
||||
include $(TOPDIR)/package/rules.mk
|
||||
|
||||
$(eval $(call PKG_template,PALANTIR,palantir,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||
|
||||
$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
|
||||
touch $@
|
||||
|
||||
$(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.configured
|
||||
rm -rf $(PKG_INSTALL_DIR)
|
||||
mkdir -p $(PKG_INSTALL_DIR)/usr
|
||||
$(MAKE) -C $(PKG_BUILD_DIR)/server/libgsm \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
CCINC="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
|
||||
lib/libgsm.a
|
||||
$(MAKE) -C $(PKG_BUILD_DIR)/server \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
CFLAGS="-Wall -D_REENTRANT $(TARGET_CFLAGS)" \
|
||||
palantir
|
||||
touch $@
|
||||
|
||||
$(IPKG_PALANTIR):
|
||||
install -d -m0755 $(IDIR_PALANTIR)/etc
|
||||
install -m0644 $(PKG_BUILD_DIR)/server/palantir-mips.conf.sample $(IDIR_PALANTIR)/etc/palantir.conf
|
||||
install -d -m0755 $(IDIR_PALANTIR)/usr/sbin
|
||||
install -m0755 $(PKG_BUILD_DIR)/server/palantir $(IDIR_PALANTIR)/usr/sbin/
|
||||
$(RSTRIP) $(IDIR_PALANTIR)
|
||||
$(IPKG_BUILD) $(IDIR_PALANTIR) $(PACKAGE_DIR)
|
1
openwrt/package/palantir/ipkg/palantir.conffiles
Normal file
1
openwrt/package/palantir/ipkg/palantir.conffiles
Normal file
@ -0,0 +1 @@
|
||||
/etc/palantir.conf
|
7
openwrt/package/palantir/ipkg/palantir.control
Normal file
7
openwrt/package/palantir/ipkg/palantir.control
Normal file
@ -0,0 +1,7 @@
|
||||
Package: palantir
|
||||
Priority: optional
|
||||
Section: net
|
||||
Maintainer: OpenWrt Developer Team <openwrt-devel@openwrt.org>
|
||||
Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/palantir/
|
||||
Depends: libjpeg, libpthread
|
||||
Description: A multichannel interactive streaming solution
|
Loading…
Reference in New Issue
Block a user