diff options
author | Jinkun Jang <jinkun.jang@samsung.com> | 2013-03-13 12:29:03 +0900 |
---|---|---|
committer | Jinkun Jang <jinkun.jang@samsung.com> | 2013-03-13 12:29:03 +0900 |
commit | d98b9c6c95634053ab05eb8a32e249651000fbfb (patch) | |
tree | 63ea85312c8addb56d593859c36c09ad82968e81 | |
parent | f01c3d64d586a3d19517384c15a81f10348dd004 (diff) | |
download | libsf-common-d98b9c6c95634053ab05eb8a32e249651000fbfb.tar.gz libsf-common-d98b9c6c95634053ab05eb8a32e249651000fbfb.tar.bz2 libsf-common-d98b9c6c95634053ab05eb8a32e249651000fbfb.zip |
sync
-rw-r--r-- | debian/changelog | 15 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 28 | ||||
-rw-r--r-- | debian/dirs | 2 | ||||
-rw-r--r-- | debian/docs | 1 | ||||
-rw-r--r-- | debian/libsf-common-0.install.in | 1 | ||||
-rw-r--r-- | debian/libsf-common-0.postinst.in | 10 | ||||
-rw-r--r-- | debian/libsf-common-dev.install.in | 3 | ||||
-rwxr-xr-x | debian/rules | 122 |
9 files changed, 0 insertions, 183 deletions
diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index 5dba6da..0000000 --- a/debian/changelog +++ /dev/null @@ -1,15 +0,0 @@ -libsf-common (0.3.6-26) unstable; urgency=low - - * version sync - * Git:165.213.180.114:/pkgs/l/libsf-common - * Tag:libsf-common_0.3.6-26 - - -- JuHyun <jh8212.kim@samsung.com> Thu, 15 Dec 2011 10:51:58 +0900 - -libsf-common (0.0.1-1) unstable; urgency=low - - * Initial Release. - * Git:165.213.180.114:/pkgs/l/libsf-common - * Tag:libsf-common_0.0.1-1 - - -- JuHyun Kim <jh8212.kim@samsung.com> Wed, 07 Dec 2011 14:20:52 +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 ffa2d96..0000000 --- a/debian/control +++ /dev/null @@ -1,28 +0,0 @@ -Source: libsf-common -Section: libs -Priority: extra -Maintainer: Jonghoon Han <jonghoon.han@samsung.com>, JuHyun Kim <jh8212.kim@samsung.com>, Taesoo Jun <steve.jun@samsung.com> -Build-Depends: debhelper (>= 5), autotools-dev , dlog-dev, libattr1-dev -Standards-Version: 0.0.1 -Homepage: N/A - -Package: libsf-common-dev -XB-Public-Package: no -Section: libs -Architecture: any -Depends: libsf-common-0 (= ${Source-Version}) -Description: Sensor framework common library - -Package: libsf-common-0 -Section: libs -Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends} -Description: Sensor framework common library - Common library, only used for the sensor framework server & client - -Package: libsf-common-dbg -Section: debug -Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, libsf-common-0(= ${Source-Version}) -Description:Sensor framework common library(unstripped) - Easy Sensor framework common library 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/libsf-common-0.install.in b/debian/libsf-common-0.install.in deleted file mode 100644 index bf766f0..0000000 --- a/debian/libsf-common-0.install.in +++ /dev/null @@ -1 +0,0 @@ -@PREFIX@/lib/*.so* diff --git a/debian/libsf-common-0.postinst.in b/debian/libsf-common-0.postinst.in deleted file mode 100644 index 9a46c70..0000000 --- a/debian/libsf-common-0.postinst.in +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh -#if [ ${USER} == "root" ];then - # change file owner - # 1.libraries - #chown root:root /usr/lib/libsf_common.so -#fi -# change file permissions -# 1.libraries -#chmod 644 /usr/lib/libsf_common.so - diff --git a/debian/libsf-common-dev.install.in b/debian/libsf-common-dev.install.in deleted file mode 100644 index 2a4ce74..0000000 --- a/debian/libsf-common-dev.install.in +++ /dev/null @@ -1,3 +0,0 @@ -@PREFIX@/include/* -@PREFIX@/lib/pkgconfig/*.pc - diff --git a/debian/rules b/debian/rules deleted file mode 100755 index 4a73e7b..0000000 --- a/debian/rules +++ /dev/null @@ -1,122 +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 - - 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 - - -# 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=libsf-common-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 |