From: Hyunseok Lee Date: Thu, 23 Aug 2012 08:44:34 +0000 (+0900) Subject: Update tizen 2.0 beta source X-Git-Tag: 2.0_alpha^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fheads%2F2.0alpha;p=external%2Fliboil.git Update tizen 2.0 beta source --- diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index f64fd61..0000000 --- a/debian/changelog +++ /dev/null @@ -1,7 +0,0 @@ -liboil (0.3.17-1slp4) unstable; urgency=low - - * Initial Release - * Git : unmodified/liboil - * Tag : liboil_0.3.17-1slp4 - - -- Sangchul Lee Wed, 07 Dec 2011 11:56:13 +0900 diff --git a/debian/compat b/debian/compat deleted file mode 100644 index b8626c4..0000000 --- a/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/debian/control b/debian/control deleted file mode 100644 index a63312b..0000000 --- a/debian/control +++ /dev/null @@ -1,52 +0,0 @@ -Source: liboil -Section: devel -Priority: optional -Maintainer: Seungbae Shin -Build-Depends: debhelper (>= 5), - autotools-dev, - gtk-doc-tools, execstack -Standards-Version: 3.7.3 - -Package: liboil0.3 -Section: libs -Architecture: any -Depends: ${shlibs:Depends}, - ${misc:Depends} -Description: Library of Optimized Inner Loops - Liboil is a collection of functions that often benefit from having - special implementations on various architectures or CPUs. Each function - in liboil has several implementations which may perform faster or - slower on a given CPU. Some implementations use alternate algorithms, - some use hand-crafted assembly, and some use special instructions that - are only available on certain CPUs, such as MMX, SSE, or Altivec. - The fastest implementation is automatically chosen at runtime. - . - This package contains the liboil shared libraries. It is typically - installed automatically when an application or library requires it. - -Package: liboil0.3-dev -Section: libdevel -Architecture: any -Depends: liboil0.3 (= ${binary:Version}), - ${shlibs:Depends}, - ${misc:Depends} -Provides: liboil-dev -Suggests: liboil0.3-doc -Description: Library of Optimized Inner Loops (development headers) - Liboil is a collection of functions that often benefit from having - special implementations on various architectures or CPUs. Each function - in liboil has several implementations which may perform faster or - slower on a given CPU. Some implementations use alternate algorithms, - some use hand-crafted assembly, and some use special instructions that - are only available on certain CPUs, such as MMX, SSE, or Altivec. - The fastest implementation is automatically chosen at runtime. - . - This package contains the development headers and libraries, and should - be installed to compile software that uses liboil. - -Package: liboil0.3-dbg -Section: debug -Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, liboil0.3 (= ${Source-Version}) -Description: Library of Optimized Inner Loops (unstripped) - diff --git a/debian/copyright b/debian/copyright deleted file mode 100644 index bbbe009..0000000 --- a/debian/copyright +++ /dev/null @@ -1,13 +0,0 @@ -This package was debianized by Seungbae Shin on -Tue, 06 Dec 2011 10:09:18 +0900. - -The Debian packaging is: - -Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. -Copyright (c) 2011 Seungbae Shin - -and is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License version 2.1. - -The full text of the LGPL 2.1 can be found in -/usr/share/common-licenses. diff --git a/debian/liboil0.3-dev.install b/debian/liboil0.3-dev.install deleted file mode 100644 index 33bc0b6..0000000 --- a/debian/liboil0.3-dev.install +++ /dev/null @@ -1,3 +0,0 @@ -usr/lib/*.{a,la} -usr/include/liboil-0.3 -usr/lib/pkgconfig/liboil-0.3.pc diff --git a/debian/liboil0.3.install b/debian/liboil0.3.install deleted file mode 100644 index 8ef7423..0000000 --- a/debian/liboil0.3.install +++ /dev/null @@ -1,2 +0,0 @@ -usr/lib/liboil-0.3.so* -usr/bin/* diff --git a/debian/rules b/debian/rules deleted file mode 100755 index 4175368..0000000 --- a/debian/rules +++ /dev/null @@ -1,86 +0,0 @@ -#!/usr/bin/make -f - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -# These are used for cross-compiling and for saving the configure script -# from having to guess our platform (since we know it already) -DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) -DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) - - -CFLAGS = -Wall -g -fPIC - -ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - CFLAGS += -O0 -else - CFLAGS += -O2 -endif - -# shared library versions, option 1 -version=0.3.14 -major=0 - -LDFLAGS += -Wl,--hash-style=both -Wl,--as-needed - -build: build-stamp -build-stamp: - dh_testdir - - ./configure --prefix=/usr \ - CFLAGS="$(CFLAGS)" \ - LDFLAGS="$(LDFLAGS)" - - $(MAKE) - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - -$(MAKE) clean - rm -f config.log config.status config.h *.pc - rm -f libtool Makefile stamp-h1 - rm -f liboil/liboil-stdint.h - - -find * -name .deps -exec rm -rf {} \; - -find * -name Makefile -exec rm -rf {} \; - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/tmp - $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install - execstack -c $(CURDIR)/debian/tmp/usr/lib/liboil-0.3.so.0.3.0 - -# 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 --list-missing - dh_link - dh_strip --dbg-package=liboil0.3-dbg - dh_compress - dh_fixperms - 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 clean diff --git a/packaging/liboil.spec b/packaging/liboil.spec index 31e1e00..ca1f21e 100644 --- a/packaging/liboil.spec +++ b/packaging/liboil.spec @@ -1,7 +1,7 @@ Name: liboil Summary: Library of Optimized Inner Loops, CPU optimized functions Version: 0.3.17 -Release: 2.12 +Release: 2.13 Group: System/Libraries License: BSD and Motorola License URL: http://liboil.freedesktop.org/