From: Jihoon Kim Date: Mon, 28 Jun 2010 08:13:11 +0000 (+0900) Subject: upload elm-misc-0.1-4 X-Git-Tag: 2.0_alpha~51 X-Git-Url: http://review.tizen.org/git/?p=framework%2Fuifw%2Felm-misc.git;a=commitdiff_plain;h=71c22379f2aa92988c1e2778211b70f3b210d0f7 upload elm-misc-0.1-4 --- diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..a70d791 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,29 @@ +elm-misc (0.1-4) unstable; urgency=low + + * add ELM_INPUT_PANEL variable + * Git: 165.213.180.234:/git/slp2.0/slp2.0-pkgs/EFL-pkgs/elm-misc + * Tag: elm-misc_0.1-4 + + -- Jihoon Kim Mon, 28 Jun 2010 17:12:07 +0900 + +elm-misc (0.1-3) unstable; urgency=low + + * change permission elm.sh + * Git: 165.213.180.234:/git/slp2.0/slp2.0-pkgs/EFL + * Tag: elm-misc_0.1-3 + + -- Jaehwan Kim Tue, 27 Apr 2010 13:47:47 +0900 + +elm-misc (0.1-2) unstable; urgency=low + + * move script from rc.local + * Git: 165.213.180.234:/git/slp2.0/slp2.0-pkgs/EFL + * Tag: elm-misc_0.1-2 + + -- Jaehwan Kim Thu, 08 Apr 2010 11:47:28 +0900 + +elm-misc (0.1-1) unstable; urgency=low + + * Initial release. + + -- Jihoon Kim Thu, 25 Mar 2010 19:07:44 +0900 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +5 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..6d2a953 --- /dev/null +++ b/debian/control @@ -0,0 +1,15 @@ +Source: elm-misc +Section: devel +Priority: optional +Maintainer: Jaehwan Kim +Build-Depends: debhelper (>= 5) +Standards-Version: 3.8.3 + +Package: elm-misc +Section: extra +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +#Depends: ${shlibs:Depends}, ${misc:Depends}, +Description: elementary configuration files. + + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..610c1a8 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,16 @@ +This is elm-misc and maintained by Jihoon Kim +on Thu, 25 Mar 2010 16:36:00 +0900. + +Copyright Holder: Samsung Electronics + +License: + + (c) 2010 Samsung Electronics, Inc. + All rights reserved. + + This software is the confidential and proprietary information + of Samsung Electronics, Inc. ("Confidential Information"). You + shall not disclose such Confidential Information and shall use + it only in accordance with the terms of the license agreement + you entered into with Samsung Electronics. + diff --git a/debian/dirs b/debian/dirs new file mode 100644 index 0000000..2e9c505 --- /dev/null +++ b/debian/dirs @@ -0,0 +1,2 @@ +etc +etc/profile.d diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..e69de29 diff --git a/debian/elm-misc.install b/debian/elm-misc.install new file mode 100644 index 0000000..ee19d5d --- /dev/null +++ b/debian/elm-misc.install @@ -0,0 +1 @@ +etc diff --git a/debian/elm-misc.postinst b/debian/elm-misc.postinst new file mode 100755 index 0000000..8f3bf01 --- /dev/null +++ b/debian/elm-misc.postinst @@ -0,0 +1,6 @@ +#!/bin/sh +if [ ${USER} == "root" ] +then + chown root:root /etc/profile.d/elm.sh +fi +chmod 700 /etc/profile.d/elm.sh diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..12c492a --- /dev/null +++ b/debian/rules @@ -0,0 +1,99 @@ +#!/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 + + +PREFIX ?= /etc +DESTDIR=$(CURDIR)/debian/tmp/$(PREFIX) +VERSION=0.1 + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + # Add here commands to compile the package. + #$(MAKE) + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + #-$(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + mkdir -p $(DESTDIR) + cp -af etc/* $(DESTDIR)/ + +# 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 diff --git a/etc/profile.d/elm.sh b/etc/profile.d/elm.sh new file mode 100644 index 0000000..32a049c --- /dev/null +++ b/etc/profile.d/elm.sh @@ -0,0 +1,5 @@ +export ELM_FONT_PATH=/usr/share/SLP/fonts +export ELM_PAGE_SCROLL_FRICTION=0.5 +export ELM_BRING_IN_SCROLL_FRICTION=0.5 +export ELM_FPS=100 +export ELM_INPUT_PANEL=1