From: Kévin THIERRY Date: Mon, 19 May 2014 11:58:55 +0000 (+0200) Subject: Remove debian directory X-Git-Tag: submit/tizen_common/20140618.103325~1 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fappfw%2Fxdgmime.git;a=commitdiff_plain;h=dde026fc81c7442d970f85619267a750ec7f1f71 Remove debian directory Change-Id: I49b6231c11830938cf9c0fe8a7cb7b198e650f30 Signed-off-by: Kévin THIERRY --- diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index f78afc9..0000000 --- a/debian/changelog +++ /dev/null @@ -1,7 +0,0 @@ -xdgmime (0.0.12-1) unstable; urgency=low - - * Initial release. - * Git: pkgs/x/xdgmime - * Tag: xdgmime_0.0.12-1 - - -- Sangil Yoon Wed, 07 Dec 2011 13:09:13 +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 72068e6..0000000 --- a/debian/control +++ /dev/null @@ -1,24 +0,0 @@ -Source: xdgmime -Section: devel -Priority: extra -Maintainer: Jayoun Lee , Seokkyu Jang , Sangil Yoon -Build-Depends: debhelper (>= 5) -Standards-Version: 0.1.0 - -Package: libxdgmime -Section: libs -Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends} -Description: libxdgmime package - -Package: libxdgmime-dev -Section: libs -Architecture: any -Depends: libxdgmime (= ${Source-Version}) -Description: libxdgmime dev package - -Package: libxdgmime-dbg -Section: debug -Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, libxdgmime (= ${Source-Version}) -Description: libxdgmime dbg package diff --git a/debian/copyright b/debian/copyright deleted file mode 100644 index ae7f1fc..0000000 --- a/debian/copyright +++ /dev/null @@ -1 +0,0 @@ -GNU LGPL 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 e69de29..0000000 diff --git a/debian/libxdgmime-dev.install.in b/debian/libxdgmime-dev.install.in deleted file mode 100644 index 0f2a4da..0000000 --- a/debian/libxdgmime-dev.install.in +++ /dev/null @@ -1,2 +0,0 @@ -@PREFIX@/include/* -@PREFIX@/lib/pkgconfig/*.pc diff --git a/debian/libxdgmime.install.in b/debian/libxdgmime.install.in deleted file mode 100644 index 5633fdf..0000000 --- a/debian/libxdgmime.install.in +++ /dev/null @@ -1 +0,0 @@ -@PREFIX@/lib/libxdgmime.* diff --git a/debian/libxdgmime.postinst b/debian/libxdgmime.postinst deleted file mode 100644 index 413b031..0000000 --- a/debian/libxdgmime.postinst +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh -if [ ${USER} == "root" ] -then - chown root:root /usr/lib/libxdgmime.so.1.1.0 -fi - -chmod 644 /usr/lib/libxdgmime.so.1.1.0 diff --git a/debian/rules b/debian/rules deleted file mode 100755 index 166a693..0000000 --- a/debian/rules +++ /dev/null @@ -1,118 +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 -LDFLAGS ?= -PREFIX ?= /usr -DATADIR ?= /opt - -ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - CFLAGS += -O0 -else - CFLAGS += -O2 -endif - -CFLAGS += -fvisibility=hidden -LDFLAGS += -Wl,--rpath=$(PREFIX)/lib -Wl,--as-needed - -CMAKE_TMP_DIR = $(CURDIR)/cmake_tmp - -configure: configure-stamp -configure-stamp: - dh_testdir - # Add here commands to configure the package. - mkdir -p $(CMAKE_TMP_DIR); - cd $(CMAKE_TMP_DIR); CFLAGS="$(CFLAGS)" 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_TMP_DIR) && $(MAKE) all test - - 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_TMP_DIR) - - for f in `find $(CURDIR)/debian/ -name "*.in"`; do \ - rm -f $${f%.in}; \ - done - - rm -rf GRTAGS - rm -rf GTAGS - rm -rf GPATH - rm -rf GSYMS - rm -rf doc - - 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_TMP_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 --dbg-package=libxdgmime-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