remove unnecessary debian folder
authorByungsoo Kim <bs1770.kim@samsung.com>
Tue, 7 May 2013 14:24:25 +0000 (23:24 +0900)
committerByungsoo Kim <bs1770.kim@samsung.com>
Tue, 7 May 2013 14:24:25 +0000 (23:24 +0900)
Change-Id: I0db6ab13a060102d6aa03b3824a4299fcd75de6f
Signed-off-by: Byungsoo Kim <bs1770.kim@samsung.com>
debian/boot-animation.install.in [deleted file]
debian/boot-animation.postinst [deleted file]
debian/changelog [deleted file]
debian/compat [deleted file]
debian/control [deleted file]
debian/copyright [deleted file]
debian/rules [deleted file]

diff --git a/debian/boot-animation.install.in b/debian/boot-animation.install.in
deleted file mode 100644 (file)
index cc61105..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-@PREFIX@/bin/*
-@PREFIX@/share/*
-/etc/init.d/*
diff --git a/debian/boot-animation.postinst b/debian/boot-animation.postinst
deleted file mode 100755 (executable)
index 9784082..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/sh
-
-ln -s /etc/init.d/boot-ani /etc/rc.d/rc3.d/S41boot-ani
-
-vconftool $GOPTION -i set -t string memory/boot-animation/restart start:start
-
-sync
diff --git a/debian/changelog b/debian/changelog
deleted file mode 100755 (executable)
index 52b0063..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-boot-animation (0.3.1-1) unstable; urgency=low
-
-  * apply exclusive in power off with msg
-  * Git: pkgs/b/boot-animation
-  * Tag: boot-animation_0.3.1-1
-
- -- Seungtaek Chung <seungtaek.chung@samsung.com>  Mon, 16 Apr 2012 15:22:20 +0900
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 100755 (executable)
index 701b26c..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-Source: boot-animation
-Section: devel
-Priority: extra
-Maintainer: Seungtaek Chung <seungtaek.chung@samsung.com>, Mi-Ju Lee <miju52.lee@samsung.com>, Xi Zhichan <zhichan.xi@samsung.com>
-Build-Depends: debhelper (>= 5), libelm-dev, libavsystem-dev, libslp-utilx-dev, libvconf-dev, libaudiosessionmgr-dev
-Standards-Version: 3.7.2
-
-Package: boot-animation
-Section: devel
-Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, libelm, libavsystem-0, libslp-utilx-0, libvconf-0, libaudiosessionmgr-0
-Description: booting animation
diff --git a/debian/copyright b/debian/copyright
deleted file mode 100755 (executable)
index ca59eee..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-This is boot-animation, written and maintained by Byungsoo Kim <bs1770.kim@samsung.com>\r
-on Tue Jun 15 14:21:44 2010 +0900.\r
-\r
-Copyright Holder:  unknown\r
-\r
-License:\r
-\r
-Copyright 2012  Samsung Electronics Co., Ltd\r
-\r
-Licensed under the Flora License, Version 1.0 (the License);\r
-you may not use this file except in compliance with the License.\r
-You may obtain a copy of the License at\r
-\r
-       http://floralicense.org/license\r
-\r
-Unless required by applicable law or agreed to in writing, software\r
-distributed under the License is distributed on an AS IS BASIS,\r
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
-See the License for the specific language governing permissions and\r
-limitations under the License.\r
diff --git a/debian/rules b/debian/rules
deleted file mode 100755 (executable)
index 6bc2d5c..0000000
+++ /dev/null
@@ -1,116 +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 -Werror
-CXXFLAGS ?=  -Wall -g
-LDFLAGS ?=
-PREFIX ?= /usr
-DATADIR ?= /usr/share
-
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
-       CFLAGS += -O0
-       CXXFLAGS += -O0
-else
-       CFLAGS += -O2
-       CXXFLAGS += -O2
-endif
-
-LDFLAGS += -Wl,--rpath=$(PREFIX)/lib -Wl,--as-needed
-
-CMAKE_BUILD_DIR ?= $(CURDIR)/cmake_build_tmp
-
-configure: configure-stamp
-configure-stamp:
-       dh_testdir
-       # Add here commands to configure the package.
-       mkdir -p $(CMAKE_BUILD_DIR) && cd $(CMAKE_BUILD_DIR) && \
-       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.
-       cd $(CMAKE_BUILD_DIR) && $(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.
-       rm -rf $(CMAKE_BUILD_DIR)
-
-       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.
-       cd $(CMAKE_BUILD_DIR) && $(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
-       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