Eina: Update package metadata
authorEduardo Lima (Etrunko) <eblima@gmail.com>
Wed, 18 Aug 2010 20:47:05 +0000 (17:47 -0300)
committerEduardo Lima (Etrunko) <eblima@gmail.com>
Wed, 18 Aug 2010 20:53:46 +0000 (17:53 -0300)
Signed-off-by: Eduardo Lima (Etrunko) <eblima@gmail.com>

trunk/eina/debian/control
trunk/eina/debian/rules

index 0d2abc2..634831f 100644 (file)
@@ -2,24 +2,25 @@ Source: eina
 Section: libs
 Priority: optional
 Maintainer: Maemo-EFL Team <maemo-efl-devel@garage.maemo.org>
-Uploaders: Eduardo Lima (Etrunko) <eduardo.lima@indt.org.br>
-Build-Depends: debhelper (>= 4), cdbs, maemo-cflags-cdbs-rules (>= 0.0.4), automake1.7 | automaken, libtool, pkg-config
+Uploaders: Eduardo Lima (Etrunko) <eblima@gmail.com>
+Build-Depends: debhelper (>= 4),
+    cdbs, maemo-cflags-cdbs-rules (>= 0.0.4),
+    automake1.7 | automaken, libtool, pkg-config
 Standards-Version: 3.7.2
 Homepage: http://www.enlightenment.org
 
 Package: libeina0
 Architecture: any
-Depends: ${shlibs:Depends}
+Depends: ${shlibs:Depends}, ${misc:Depends}
 Provides: libeina
-Description: Enlightenment DR17 file chunk reading/writing library
+Description: Enlightenment Foundation Library providing optimized data types
  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 Array
+  o Hash Table
+  o Double-linked list
+  o Red-black tree
+  o Shared string
   o Access Content types
     + Accessor: can access items of a container randomly
     + Iterator: can access items of a container sequentially
@@ -28,8 +29,7 @@ Package: libeina0-dev
 Section: libdevel
 Architecture: any
 Depends: ${misc:Depends}, libeina0 (= ${Source-Version}), pkg-config
-Provides: libeina0-dev
-#Recommends: libeina-doc
+Provides: libeina-dev
 Description: Development files for libeina
  Eina is a multi-platform library that provides optimized data types and a few
  tools. It supports the following data types:
@@ -44,45 +44,3 @@ Description: Development files for libeina
  .
  This package contains headers and static libraries for development with
  libeina.
-
-#Package: libeina-doc
-#Architecture: all
-#Depends: ${misc:Depends}
-#Enhances: libeina0-dev
-#Section: doc
-#Description: Documentation for use with libeina
-# Eina is a multi-platform library that provides optimized data types and a few
-# tools. It supports the following data types:
-#  o Array
-#  o Hash Table
-#  o Double-linked list
-#  o Red-black tree
-#  o Shared string
-#  o Access Content types
-#    + Accessor: can access items of a container randomly
-#    + Iterator: can access items of a container sequentially
-# .
-# This package contains documentation for libeina.
-#
-#
-#Package: libeina-dbg
-#Architecture: any
-#Section: debug
-#Depends: ${misc:Depends}, libeina0 (= ${Source-Version})
-#Priority: extra
-#Description: debugging symbols for use with libeina
-# Eina is a multi-platform library that provides optimized data types and a few
-# tools. It supports the following data types:
-#  o Array
-#  o Hash Table
-#  o Double-linked list
-#  o Red-black tree
-#  o Shared string
-#  o Access Content types
-#    + Accessor: can access items of a container randomly
-#    + Iterator: can access items of a container sequentially
-# .
-# 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.
index 19b9d4f..beea977 100755 (executable)
@@ -5,4 +5,10 @@ include /usr/share/cdbs/1/class/autotools.mk
 include /usr/share/cdbs/1/rules/maemo-cflags.mk
 
 DEB_CONFIGURE_SCRIPT := ./autogen.sh
-DEB_CONFIGURE_EXTRA_FLAGS := --disable-magic-debug
+
+# Disable magic debug if building for armel
+ifeq ($(DEB_BUILD_ARCH),armel)
+    DEB_CONFIGURE_EXTRA_FLAGS := --disable-magic-debug \
+                                 --disable-safety-checks
+endif
+