sync
authorJinkun Jang <jinkun.jang@samsung.com>
Thu, 14 Mar 2013 05:29:26 +0000 (14:29 +0900)
committerJinkun Jang <jinkun.jang@samsung.com>
Thu, 14 Mar 2013 05:29:26 +0000 (14:29 +0900)
COPYING [deleted file]
debian/compat [deleted file]
debian/control [deleted file]
debian/copyright [deleted file]
debian/dirs [deleted file]
debian/docs [deleted file]
debian/libstt-dev.install.in [deleted file]
debian/libstt.install.in [deleted file]
debian/rules [deleted file]

diff --git a/COPYING b/COPYING
deleted file mode 100644 (file)
index 1c166a2..0000000
--- a/COPYING
+++ /dev/null
@@ -1,10 +0,0 @@
-Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved 
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
-       http://www.apache.org/licenses/LICENSE-2.0
-   Unless required by applicable law or agreed to in writing, software
-   distributed under the License is distributed on an "AS IS" BASIS,
-   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-   See the License for the specific language governing permissions and
-   limitations under the License.
diff --git a/debian/compat b/debian/compat
deleted file mode 100644 (file)
index 7ed6ff8..0000000
+++ /dev/null
@@ -1 +0,0 @@
-5
diff --git a/debian/control b/debian/control
deleted file mode 100644 (file)
index 0277c5e..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-Source: stt
-Section: libs
-Priority: standard
-Maintainer: Dongyeol Lee <dy3.lee@samsung.com>, Sehwan Park <sehwan@samsung.com>
-Build-Depends: debhelper (>= 5), libglib2.0-dev, libdbus-1-dev, 
- libmm-player-dev, libmm-common-dev, libmm-camcorder-dev, dlog-dev, libecore-dev
-Standards-Version: 3.7.2
-
-Package: libstt-dev
-Section: libdevel
-Architecture: any
-Depends: libstt (= ${Source-Version})
-Description: Speech To Text header files for STT development
-
-Package: libstt
-Section: libs
-Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}
-Description: Speech To Text client library and daemon
-
-Package: libstt-dbg
-Section: debug
-Architecture: any
-Depends: libstt (= ${Source-Version})
-Description: Speech To Text library (unstripped)
diff --git a/debian/copyright b/debian/copyright
deleted file mode 100644 (file)
index 1c166a2..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved 
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
-       http://www.apache.org/licenses/LICENSE-2.0
-   Unless required by applicable law or agreed to in writing, software
-   distributed under the License is distributed on an "AS IS" BASIS,
-   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-   See the License for the specific language governing permissions and
-   limitations under the License.
diff --git a/debian/dirs b/debian/dirs
deleted file mode 100644 (file)
index ca882bb..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-usr/bin
-usr/sbin
diff --git a/debian/docs b/debian/docs
deleted file mode 100644 (file)
index 93e3f6a..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-CMakeCache.txt
-CMakeLists.txt
-
diff --git a/debian/libstt-dev.install.in b/debian/libstt-dev.install.in
deleted file mode 100644 (file)
index 823ea70..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-@PREFIX@/lib/pkgconfig/stt.pc
-@PREFIX@/lib/pkgconfig/stt-setting.pc
-@PREFIX@/include/stt.h
-@PREFIX@/include/stt_setting.h
-@PREFIX@/include/sttp.h
diff --git a/debian/libstt.install.in b/debian/libstt.install.in
deleted file mode 100644 (file)
index 31b3d80..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-@PREFIX@/lib/libstt.so*
-@PREFIX@/lib/libstt_setting.so*
-@PREFIX@/bin/stt-daemon
diff --git a/debian/rules b/debian/rules
deleted file mode 100755 (executable)
index 4e0ba03..0000000
+++ /dev/null
@@ -1,140 +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
-endif
-
-#CFLASGS += -fpie -shared
-#CFLAGS += -fPIC -shared
-#CXXFLAGS += -fpie
-#LDFLAGS += -Wl,--rpath=$(PREFIX)/lib -Wl,--as-needed -pie
-#LDFLAGS += -Wl,--rpath=$(PREFIX)/lib  -pie
-
-CFLASGS += -fpie
-CXXFLAGS += -fpie
-#LDFLAGS += -Wl,--rpath=$(PREFIX)/lib -Wl,--as-needed -pie
-LDFLAGS += -Wl,--rpath=$(PREFIX)/lib  -pie
-
-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
-
-       # Add here commands to compile the package.
-       $(MAKE)
-       #docbook-to-man debian/client.sgml > client.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 client/CMakeCache.txt
-       rm -rf client/CMakeFiles
-       rm -rf client/cmake_install.cmake
-       rm -rf client/Makefile
-       rm -rf client/install_manifest.txt
-       rm -rf client/*.pc
-       rm -rf server/CMakeCache.txt
-       rm -rf server/CMakeFiles
-       rm -rf server/cmake_install.cmake
-       rm -rf server/Makefile
-       rm -rf server/install_manifest.txt              
-       rm -rf server/*.pc
-       rm -rf *.pc
-       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/client.
-       $(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_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=libstt-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