diff options
author | Jinkun Jang <jinkun.jang@samsung.com> | 2013-03-14 12:32:26 +0900 |
---|---|---|
committer | Jinkun Jang <jinkun.jang@samsung.com> | 2013-03-14 12:32:26 +0900 |
commit | 32c4d186f7881c52bdfb3bae7887567a5f25743a (patch) | |
tree | c6681244b23fa48c08b1cf3d81db74c3a6fbd8ad | |
parent | 54698bcabdfea3de6e261ff574c22af856245f33 (diff) | |
download | sensor-framework-32c4d186f7881c52bdfb3bae7887567a5f25743a.tar.gz sensor-framework-32c4d186f7881c52bdfb3bae7887567a5f25743a.tar.bz2 sensor-framework-32c4d186f7881c52bdfb3bae7887567a5f25743a.zip |
sync
-rw-r--r-- | debian/changelog | 15 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 21 | ||||
-rw-r--r-- | debian/dirs | 2 | ||||
-rw-r--r-- | debian/docs | 1 | ||||
-rwxr-xr-x | debian/rules | 132 | ||||
-rw-r--r-- | debian/sensor-framework.install.in | 3 | ||||
-rw-r--r-- | debian/sensor-framework.postinst.in | 45 |
8 files changed, 0 insertions, 220 deletions
diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index 212c4fa..0000000 --- a/debian/changelog +++ /dev/null @@ -1,15 +0,0 @@ -sensor-framework (0.2.5-37) unstable; urgency=low - - * version sync - * Git: 165.213.180.114:/pkgs/s/sensor-framework - * Tag: sensor-framework_0.2.5-37 - - -- JuHyun Kim <jh8212.kim@samsung.com> Thu, 15 Dec 2011 10:54:03 +0900 - -sensor-framework (0.1.1-1) unstable; urgency=low - - * Initial Release. - * Git: 165.213.180.114:/pkgs/s/sensor-framework - * Tag: sensor-framework_0.1.1-1 - - -- JuHyun Kim <jh8212.kim@samsung.com> Wed, 07 Dec 2011 12:50:05 +0900 diff --git a/debian/compat b/debian/compat deleted file mode 100644 index 7ed6ff8..0000000 --- a/debian/compat +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/debian/control b/debian/control deleted file mode 100644 index 559c3f9..0000000 --- a/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: sensor-framework -Section: misc -Priority: extra -Maintainer: Jonghoon Han <jonghoon.han@samsung.com>, Juhyun Kim <jh8212.kim@samsung.com>, Taesoo Jun <steve.jun@samsung.com> -Build-Depends: libsf-common-dev, libslp-setting-dev -Standards-Version: 0.1.0 -Homepage: N/A - -Package: sensor-framework -Section: misc -Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, libsf-common-0 -Description: Sensor framework - Sensor framework - -Package: sensor-framework-dbg -Section: debug -Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, sensor-framework(= ${Source-Version}) -Description:Sensor server debug for sensor framework(unstripped) - Easy Sensor server for SLP(not recommended) diff --git a/debian/dirs b/debian/dirs deleted file mode 100644 index ca882bb..0000000 --- a/debian/dirs +++ /dev/null @@ -1,2 +0,0 @@ -usr/bin -usr/sbin diff --git a/debian/docs b/debian/docs deleted file mode 100644 index a0f0008..0000000 --- a/debian/docs +++ /dev/null @@ -1 +0,0 @@ -CMakeLists.txt diff --git a/debian/rules b/debian/rules deleted file mode 100755 index 5547b4d..0000000 --- a/debian/rules +++ /dev/null @@ -1,132 +0,0 @@ -#!/usr/bin/make -f -# -*- makefile -*- -# Sample debian/rules that uses debhelper. -# This file was originally written by Joey Hess and Craig Small. -# As a special exception, when this file is copied by dh-make into a -# dh-make output file, you may use that output file without restriction. -# This special exception was added by Craig Small in version 0.37 of dh-make. - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -CFLAGS ?= -Wall -g -CXXFLAGS ?= -Wall -g -LDFLAGS ?= -PREFIX ?= /usr -DATADIR ?= /opt - -ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - CFLAGS += -O0 - CXXFLAGS += -O0 -else - CFLAGS += -O2 - CXXFLAGS += -O2 -std=c++0x -endif - -LDFLAGS += -Wl,--rpath=$(PREFIX)/lib -Wl,--as-needed - -configure: configure-stamp -configure-stamp: - dh_testdir - # Add here commands to configure the package. - CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" LDFLAGS="$(LDFLAGS)" cmake . -DCMAKE_INSTALL_PREFIX=$(PREFIX) - - touch configure-stamp - -build: build-stamp - -build-stamp: configure-stamp - dh_testdir - dh_buildinfo generate cat - - # Add here commands to compile the package. - $(MAKE) - #docbook-to-man debian/wavplayer.sgml > wavplayer.1 - - for f in `find $(CURDIR)/debian/ -name "*.in"`; do \ - cat $$f > $${f%.in}; \ - sed -i -e "s#@PREFIX@#$(PREFIX)#g" $${f%.in}; \ - sed -i -e "s#@DATADIR@#$(DATADIR)#g" $${f%.in}; \ - done - - - touch $@ - -clean: - dh_testdir - dh_testroot - rm -f build-stamp configure-stamp - - # Add here commands to clean up after the build process. - -$(MAKE) clean - rm -rf CMakeCache.txt - rm -rf CMakeFiles - rm -rf cmake_install.cmake - rm -rf Makefile - rm -rf install_manifest.txt - rm -rf *.so - rm -rf sf_*.conf - - rm -rf server/CMakeFiles - rm -rf server/cmake_install.cmake - rm -rf server/Makefile - - - for f in `find $(CURDIR)/debian/ -name "*.in"`; do \ - rm -f $${f%.in}; \ - done - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/wavplayer. - $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install - mkdir -p $(CURDIR)/debian/tmp/etc/rc.d/rc3.d/ - mkdir -p $(CURDIR)/debian/tmp/etc/rc.d/rc4.d/ - ln -s ../init.d/sfsvc $(CURDIR)/debian/tmp/etc/rc.d/rc3.d/S40sfsvc - ln -s ../init.d/sfsvc $(CURDIR)/debian/tmp/etc/rc.d/rc4.d/S40sfsvc - - -# Build architecture-independent files here. -binary-indep: build install -# We have nothing to do by default. - -# Build architecture-dependent files here. -binary-arch: build install - dh_testdir - dh_testroot - dh_installchangelogs - dh_installdocs - dh_buildinfo install - dh_installexamples - dh_install --sourcedir=debian/tmp -# dh_installmenu -# dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installpam -# dh_installmime -# dh_python -# dh_installinit -# dh_installcron -# dh_installinfo - dh_installman - dh_link - dh_strip --dbg-package=sensor-framework-dbg - dh_compress - dh_fixperms -# dh_perl - dh_makeshlibs - dh_installdeb - dh_shlibdeps - dh_gencontrol - dh_md5sums - dh_builddeb - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install configure diff --git a/debian/sensor-framework.install.in b/debian/sensor-framework.install.in deleted file mode 100644 index c5f4e40..0000000 --- a/debian/sensor-framework.install.in +++ /dev/null @@ -1,3 +0,0 @@ -@PREFIX@/bin/* -@PREFIX@/etc/* -/etc/rc.d/* diff --git a/debian/sensor-framework.postinst.in b/debian/sensor-framework.postinst.in deleted file mode 100644 index 8587080..0000000 --- a/debian/sensor-framework.postinst.in +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/sh -if [ ${USER} = "root" ];then - # change file owner - # 1.libraries - # 2.executables - #chown root:root /usr/bin/sf_server - #chown root:root /etc/rc.d/init.d/sfsvc - #chown root:root /etc/rc.d/rc3.d/S72sfsvc - # 3.configurations - chown root:root /usr/etc/sf_sensor* - chown root:root /usr/etc/sf_filter* - chown root:root /usr/etc/sf_processor* - chown root:root /usr/etc/sf_data_stream* - #4. vconf key generation - vconftool set -t int memory/sensor/10001 0 -i - vconftool set -t int memory/sensor/10002 0 -i - vconftool set -t int memory/sensor/10004 0 -i - vconftool set -t int memory/sensor/10008 0 -i - vconftool set -t int memory/sensor/20001 0 -i - vconftool set -t int memory/sensor/20002 0 -i - vconftool set -t int memory/sensor/20004 0 -i - vconftool set -t int memory/sensor/200001 0 -i - vconftool set -t int memory/sensor/40001 0 -i - vconftool set -t int memory/sensor/40002 0 -i - vconftool set -t int memory/sensor/800001 0 -i - vconftool set -t int memory/sensor/800002 0 -i - vconftool set -t int memory/sensor/800004 0 -i - vconftool set -t int memory/sensor/800008 0 -i - vconftool set -t int memory/sensor/800010 0 -i - vconftool set -t int memory/sensor/800020 0 -i - vconftool set -t int memory/sensor/800040 0 -i - vconftool set -t int memory/sensor/80001 0 -i - vconftool set -t int memory/sensor/80002 0 -i -fi -# change file permissions -# 1.libraries -# 2.executables -#chmod 700 /usr/bin/sf_server -#chmod 700 /etc/rc.d/init.d/sfsvc -#chmod 700 /etc/rc.d/rc3.d/S72sfsvc -# 3.configurations -chmod 644 /usr/etc/sf_sensor* -chmod 644 /usr/etc/sf_filter* -chmod 644 /usr/etc/sf_processor* -chmod 644 /usr/etc/sf_data_stream* |