Add Debian files.

SVN revision: 36927
This commit is contained in:
kaethorn 2008-10-21 12:07:40 +00:00 committed by kaethorn
parent 1950725606
commit ac8b1a4cf9
7 changed files with 129 additions and 0 deletions

View File

@ -0,0 +1,5 @@
eina (@VERSION@-0cvs20081020) unstable; urgency=low
* a CVS snapshot release.
-- Falko Schmidt <falko@alphagemini.org> Tue, 21 Oct 2008 11:44:05 +0000

View File

@ -0,0 +1 @@
6

View File

@ -0,0 +1,70 @@
Source: eina
Section: libs
Priority: optional
Maintainer: Falko Schmidt <falko@alphagemini.org>
Build-Depends: debhelper (>= 6), cdbs, automake1.7 | automaken, libtool, pkg-config
Standards-Version: 3.7.3
Homepage: http://www.enlightenment.org
Package: libeina-dev
Section: libdevel
Architecture: any
Depends: libeina0 (= ${Source-Version})
Description: Enlightenment DR17 file chunk reading/writing library development files
Eina is a multi-platform library that provides optimized data types and a few
tools. It supports the following data types:
Containers:
o Array: an array
o Hash Table: a hash table
o Inlined List: an list with functions inlined
o List: a single-linked list
o Red-Black Tree: a tree
o Access Content types
+ Accessor: can access items of a container randomly
+ Iterator: can access items of a container sequentially
Stringshare.
.
This package contains headers and static libraries for development with
libeina.
Package: libeina0
Architecture: any
Depends: ${shlibs:Depends}
Provides: libeina
Description: Enlightenment DR17 file chunk reading/writing library
Eina is a multi-platform library that provides optimized data types and a few
tools. It supports the following data types:
Containers:
o Array: an array
o Hash Table: a hash table
o Inlined List: an list with functions inlined
o List: a single-linked list
o Red-Black Tree: a tree
o Access Content types
+ Accessor: can access items of a container randomly
+ Iterator: can access items of a container sequentially
Stringshare.
Package: libeina-dbg
Architecture: any
Section: libdevel
Priority: extra
Depends: libeina0 (= ${binary:Version})
Description: Enlightenment DR17 file chunk reading/writing library - debug symbols
Eina is a multi-platform library that provides optimized data types and a few
tools. It supports the following data types:
Containers:
o Array: an array
o Hash Table: a hash table
o Inlined List: an list with functions inlined
o List: a single-linked list
o Red-Black Tree: a tree
o Access Content types
+ Accessor: can access items of a container randomly
+ Iterator: can access items of a container sequentially
Stringshare.
.
This package contains unstripped shared libraries. It is provided primarily
to provide a backtrace with names in a debugger, this makes it somewhat easier
to interpret core dumps. The libraries are installed in /usr/lib/debug and
are automatically used by gdb.

View File

@ -0,0 +1,36 @@
This package was debianized by Falko Schmidt <falko@alphagemini.org> on
Tue, 21 Oct 2008 11:11:01 +0000.
The source is downloaded from the trunk/eina module of the enlightenment SVN
tree. For more information, see:
http://www.enlightenment.org
Upstream Authors: Enlightenment team <enlightenment-devel@lists.sourceforge.net>
Copyright:
Copyright (C) 2008 Jorge Luis Zapata and various contributors (see AUTHORS)
License:
This package is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 dated June, 1991.
This package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this package; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
On Debian systems, the complete text of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL'.
The Debian packaging is:
(C) 2006 2007,Debian Pkg-e Team <pkg-e-devel@lists.alioth.debian.org>
and is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

View File

@ -0,0 +1,4 @@
debian/tmp/usr/lib/pkgconfig/*
debian/tmp/usr/include/*
debian/tmp/usr/lib/lib*.a
debian/tmp/usr/lib/lib*.so

View File

@ -0,0 +1,2 @@
debian/tmp/usr/lib/lib*.so.*
debian/tmp/usr/lib/eina/*/*.so

11
legacy/eina/debian/rules Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/make -f
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/autotools.mk
DEB_CONFIGURE_EXTRA_FLAGS := --disable-rpath
DEB_MAKE_CLEAN_TARGET := clean
DEB_DH_STRIP_ARGS := --dbg-package=libeina-dbg
clean::
./autogen.sh --prefix=/usr $(DEB_CONFIGURE_EXTRA_FLAGS)