Added epeg to repository
authoretrunko <eblima@gmail.com>
Sun, 9 Dec 2007 01:26:36 +0000 (01:26 +0000)
committeretrunko <eblima@gmail.com>
Sun, 9 Dec 2007 01:26:36 +0000 (01:26 +0000)
19 files changed:
trunk/epeg/debian/changelog [new file with mode: 0644]
trunk/epeg/debian/control [new file with mode: 0644]
trunk/epeg/debian/copyright [new file with mode: 0644]
trunk/epeg/debian/epeg0-bin.install [new file with mode: 0644]
trunk/epeg/debian/libepeg0-dev.install [new file with mode: 0644]
trunk/epeg/debian/libepeg0.install [new file with mode: 0644]
trunk/epeg/debian/patches/01_dont_overwrite_changelog [new file with mode: 0644]
trunk/epeg/debian/patches/series [new file with mode: 0644]
trunk/epeg/debian/rules [new file with mode: 0755]
trunk/epeg/debian_gregale/.cvsignore [new file with mode: 0644]
trunk/epeg/debian_gregale/changelog [new file with mode: 0644]
trunk/epeg/debian_gregale/control [new file with mode: 0644]
trunk/epeg/debian_gregale/copyright [new file with mode: 0644]
trunk/epeg/debian_gregale/epeg0-bin.install [new file with mode: 0644]
trunk/epeg/debian_gregale/libepeg0-dev.install [new file with mode: 0644]
trunk/epeg/debian_gregale/libepeg0.install [new file with mode: 0644]
trunk/epeg/debian_gregale/patches/01_dont_overwrite_changelog [new file with mode: 0644]
trunk/epeg/debian_gregale/patches/series [new file with mode: 0644]
trunk/epeg/debian_gregale/rules [new file with mode: 0755]

diff --git a/trunk/epeg/debian/changelog b/trunk/epeg/debian/changelog
new file mode 100644 (file)
index 0000000..897268a
--- /dev/null
@@ -0,0 +1,6 @@
+epeg (0.9.0.011-maemo.1) unstable; urgency=low
+
+  * Maemo build
+
+ -- Eduardo Lima (Etruko) <eduardo.lima@indt.org.br>  Sat, 08 Dec 2007 18:58:42 -0300
+
diff --git a/trunk/epeg/debian/control b/trunk/epeg/debian/control
new file mode 100644 (file)
index 0000000..6024b73
--- /dev/null
@@ -0,0 +1,38 @@
+Source: epeg
+Section: libs
+Priority: optional
+Maintainer: Maemo-EFL Team <maemo-efl-devel@garage.maemo.org>
+Build-Depends: cdbs, debhelper (>= 4), libjpeg62-dev
+Standards-Version: 3.7.2
+
+Package: libepeg0-dev
+Section: libdevel
+Architecture: any
+Depends: libepeg0 (= ${Source-Version}), libjpeg62-dev
+Provides: libepeg-dev
+Description: Enlightenment jpeg thumbnailer library development files
+ This package contains headers and static libraries for development with
+ libepeg.
+
+Package: libepeg0
+Section: libs
+Architecture: any
+Suggests: epeg-bin
+Depends: ${shlibs:Depends}
+Provides: libepeg
+Description: Enlightenment jpeg thumbnailer library API
+ It's a convenience library API to using libjpeg to load JPEG images
+ destined to be turned into thumbnails of the original, saving
+ information with these thumbnails, retreiving it and managing to load
+ the image ready for scaling with the minimum of fuss and CPU overhead.
+
+Package: epeg0-bin
+Section: libs
+Architecture: any
+Depends: ${shlibs:Depends}
+Provides: epeg-bin
+Description: Enlightenment jpeg thumbnailer programs
+ It's a convenience library API to using libjpeg to load JPEG images
+ destined to be turned into thumbnails of the original, saving
+ information with these thumbnails, retreiving it and managing to load
+ the image ready for scaling with the minimum of fuss and CPU overhead.
diff --git a/trunk/epeg/debian/copyright b/trunk/epeg/debian/copyright
new file mode 100644 (file)
index 0000000..403c746
--- /dev/null
@@ -0,0 +1,40 @@
+This package was debianized by Sytse Wielinga <s.b.wielinga@student.utwente.nl> on
+Thu,  4 Mar 2004 22:07:34 +0100.
+
+The source is downloaded from the e17/libs/epeg module of the enlightenment CVS 
+tree. For more information, see:
+
+  http://www.enlightenment.org/cvs.html
+
+Upstream Authors: Enlightenment team <enlightenment-devel@lists.sourceforge.net>
+
+Copyright:
+
+Copyright (C) 2000 Carsten Haitzler and various contributors (see AUTHORS)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to
+deal in the Software without restriction, including without limitation the
+rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+sell copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies of the Software and its Copyright notices. In addition publicly
+documented acknowledgment must be given that this software has been used if no
+source code of this software is made available publicly. This includes
+acknowledgments in either Copyright notices, Manuals, Publicity and Marketing
+documents or any documentation provided with any product containing this
+software. This License does not apply to any software that links to the
+libraries provided by this software (statically or dynamically), but only to
+the software provided.
+
+Please see the COPYING.PLAIN for a plain-english explanation of this notice
+and it's intent.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/trunk/epeg/debian/epeg0-bin.install b/trunk/epeg/debian/epeg0-bin.install
new file mode 100644 (file)
index 0000000..03934e9
--- /dev/null
@@ -0,0 +1 @@
+debian/tmp/usr/bin/epeg
diff --git a/trunk/epeg/debian/libepeg0-dev.install b/trunk/epeg/debian/libepeg0-dev.install
new file mode 100644 (file)
index 0000000..d33fb9b
--- /dev/null
@@ -0,0 +1,5 @@
+debian/tmp/usr/lib/pkgconfig/*
+debian/tmp/usr/include/*
+debian/tmp/usr/lib/lib*.a
+debian/tmp/usr/lib/lib*.so
+debian/tmp/usr/lib/lib*.la
diff --git a/trunk/epeg/debian/libepeg0.install b/trunk/epeg/debian/libepeg0.install
new file mode 100644 (file)
index 0000000..c45ebcf
--- /dev/null
@@ -0,0 +1 @@
+debian/tmp/usr/lib/lib*.so.*
diff --git a/trunk/epeg/debian/patches/01_dont_overwrite_changelog b/trunk/epeg/debian/patches/01_dont_overwrite_changelog
new file mode 100644 (file)
index 0000000..4d8c639
--- /dev/null
@@ -0,0 +1,31 @@
+diff --git epeg.orig/Makefile.am epeg/Makefile.am
+index c1be1e9..0706d4d 100644
+--- epeg.orig/Makefile.am
++++ epeg/Makefile.am
+@@ -6,13 +6,12 @@ MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess \
+                        config.h.in config.sub configure install-sh \
+                      ltconfig ltmain.sh missing mkinstalldirs \
+                      stamp-h.in epeg.c depcomp \
+-                     epeg.spec debian/changelog
++                     epeg.spec
+ EXTRA_DIST = README AUTHORS COPYING COPYING-PLAIN \
+            epeg.spec epeg.spec.in epeg.c.in gendoc \
+            Doxyfile \
+              debian/changelog \
+-             debian/changelog.in \
+              debian/control \
+              debian/copyright \
+              debian/libepeg0-dev.install \
+diff --git epeg.orig/configure.in epeg/configure.in
+index c0d99e2..e31f924 100644
+--- epeg.orig/configure.in
++++ epeg/configure.in
+@@ -44,7 +44,6 @@ epeg.spec
+ src/Makefile
+ src/lib/Makefile
+ src/bin/Makefile
+-debian/changelog
+ ])
diff --git a/trunk/epeg/debian/patches/series b/trunk/epeg/debian/patches/series
new file mode 100644 (file)
index 0000000..9f2346c
--- /dev/null
@@ -0,0 +1 @@
+01_dont_overwrite_changelog
diff --git a/trunk/epeg/debian/rules b/trunk/epeg/debian/rules
new file mode 100755 (executable)
index 0000000..e584029
--- /dev/null
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/autotools.mk
+
+DEB_BUILD_ARCH  ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
+
+ifneq (,$(findstring armel,$(DEB_BUILD_ARCH)))
+       CFLAGS += -DNDEBUG=1 -fomit-frame-pointer -O2 -mfpu=vfp -mfloat-abi=softfp -mcpu=arm1136jf-s -ffast-math -funsafe-math-optimizations -fno-math-errno -fsingle-precision-constant
+endif
diff --git a/trunk/epeg/debian_gregale/.cvsignore b/trunk/epeg/debian_gregale/.cvsignore
new file mode 100644 (file)
index 0000000..6d10dce
--- /dev/null
@@ -0,0 +1 @@
+changelog
diff --git a/trunk/epeg/debian_gregale/changelog b/trunk/epeg/debian_gregale/changelog
new file mode 100644 (file)
index 0000000..897268a
--- /dev/null
@@ -0,0 +1,6 @@
+epeg (0.9.0.011-maemo.1) unstable; urgency=low
+
+  * Maemo build
+
+ -- Eduardo Lima (Etruko) <eduardo.lima@indt.org.br>  Sat, 08 Dec 2007 18:58:42 -0300
+
diff --git a/trunk/epeg/debian_gregale/control b/trunk/epeg/debian_gregale/control
new file mode 100644 (file)
index 0000000..6024b73
--- /dev/null
@@ -0,0 +1,38 @@
+Source: epeg
+Section: libs
+Priority: optional
+Maintainer: Maemo-EFL Team <maemo-efl-devel@garage.maemo.org>
+Build-Depends: cdbs, debhelper (>= 4), libjpeg62-dev
+Standards-Version: 3.7.2
+
+Package: libepeg0-dev
+Section: libdevel
+Architecture: any
+Depends: libepeg0 (= ${Source-Version}), libjpeg62-dev
+Provides: libepeg-dev
+Description: Enlightenment jpeg thumbnailer library development files
+ This package contains headers and static libraries for development with
+ libepeg.
+
+Package: libepeg0
+Section: libs
+Architecture: any
+Suggests: epeg-bin
+Depends: ${shlibs:Depends}
+Provides: libepeg
+Description: Enlightenment jpeg thumbnailer library API
+ It's a convenience library API to using libjpeg to load JPEG images
+ destined to be turned into thumbnails of the original, saving
+ information with these thumbnails, retreiving it and managing to load
+ the image ready for scaling with the minimum of fuss and CPU overhead.
+
+Package: epeg0-bin
+Section: libs
+Architecture: any
+Depends: ${shlibs:Depends}
+Provides: epeg-bin
+Description: Enlightenment jpeg thumbnailer programs
+ It's a convenience library API to using libjpeg to load JPEG images
+ destined to be turned into thumbnails of the original, saving
+ information with these thumbnails, retreiving it and managing to load
+ the image ready for scaling with the minimum of fuss and CPU overhead.
diff --git a/trunk/epeg/debian_gregale/copyright b/trunk/epeg/debian_gregale/copyright
new file mode 100644 (file)
index 0000000..403c746
--- /dev/null
@@ -0,0 +1,40 @@
+This package was debianized by Sytse Wielinga <s.b.wielinga@student.utwente.nl> on
+Thu,  4 Mar 2004 22:07:34 +0100.
+
+The source is downloaded from the e17/libs/epeg module of the enlightenment CVS 
+tree. For more information, see:
+
+  http://www.enlightenment.org/cvs.html
+
+Upstream Authors: Enlightenment team <enlightenment-devel@lists.sourceforge.net>
+
+Copyright:
+
+Copyright (C) 2000 Carsten Haitzler and various contributors (see AUTHORS)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to
+deal in the Software without restriction, including without limitation the
+rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+sell copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies of the Software and its Copyright notices. In addition publicly
+documented acknowledgment must be given that this software has been used if no
+source code of this software is made available publicly. This includes
+acknowledgments in either Copyright notices, Manuals, Publicity and Marketing
+documents or any documentation provided with any product containing this
+software. This License does not apply to any software that links to the
+libraries provided by this software (statically or dynamically), but only to
+the software provided.
+
+Please see the COPYING.PLAIN for a plain-english explanation of this notice
+and it's intent.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/trunk/epeg/debian_gregale/epeg0-bin.install b/trunk/epeg/debian_gregale/epeg0-bin.install
new file mode 100644 (file)
index 0000000..03934e9
--- /dev/null
@@ -0,0 +1 @@
+debian/tmp/usr/bin/epeg
diff --git a/trunk/epeg/debian_gregale/libepeg0-dev.install b/trunk/epeg/debian_gregale/libepeg0-dev.install
new file mode 100644 (file)
index 0000000..d33fb9b
--- /dev/null
@@ -0,0 +1,5 @@
+debian/tmp/usr/lib/pkgconfig/*
+debian/tmp/usr/include/*
+debian/tmp/usr/lib/lib*.a
+debian/tmp/usr/lib/lib*.so
+debian/tmp/usr/lib/lib*.la
diff --git a/trunk/epeg/debian_gregale/libepeg0.install b/trunk/epeg/debian_gregale/libepeg0.install
new file mode 100644 (file)
index 0000000..c45ebcf
--- /dev/null
@@ -0,0 +1 @@
+debian/tmp/usr/lib/lib*.so.*
diff --git a/trunk/epeg/debian_gregale/patches/01_dont_overwrite_changelog b/trunk/epeg/debian_gregale/patches/01_dont_overwrite_changelog
new file mode 100644 (file)
index 0000000..4d8c639
--- /dev/null
@@ -0,0 +1,31 @@
+diff --git epeg.orig/Makefile.am epeg/Makefile.am
+index c1be1e9..0706d4d 100644
+--- epeg.orig/Makefile.am
++++ epeg/Makefile.am
+@@ -6,13 +6,12 @@ MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess \
+                        config.h.in config.sub configure install-sh \
+                      ltconfig ltmain.sh missing mkinstalldirs \
+                      stamp-h.in epeg.c depcomp \
+-                     epeg.spec debian/changelog
++                     epeg.spec
+ EXTRA_DIST = README AUTHORS COPYING COPYING-PLAIN \
+            epeg.spec epeg.spec.in epeg.c.in gendoc \
+            Doxyfile \
+              debian/changelog \
+-             debian/changelog.in \
+              debian/control \
+              debian/copyright \
+              debian/libepeg0-dev.install \
+diff --git epeg.orig/configure.in epeg/configure.in
+index c0d99e2..e31f924 100644
+--- epeg.orig/configure.in
++++ epeg/configure.in
+@@ -44,7 +44,6 @@ epeg.spec
+ src/Makefile
+ src/lib/Makefile
+ src/bin/Makefile
+-debian/changelog
+ ])
diff --git a/trunk/epeg/debian_gregale/patches/series b/trunk/epeg/debian_gregale/patches/series
new file mode 100644 (file)
index 0000000..9f2346c
--- /dev/null
@@ -0,0 +1 @@
+01_dont_overwrite_changelog
diff --git a/trunk/epeg/debian_gregale/rules b/trunk/epeg/debian_gregale/rules
new file mode 100755 (executable)
index 0000000..e97d0be
--- /dev/null
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/autotools.mk
+
+DEB_BUILD_ARCH  ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
+
+ifneq (,$(findstring armel,$(DEB_BUILD_ARCH)))
+       CFLAGS += -DNDEBUG=1 -fomit-frame-pointer -O2 -mcpu=arm926ej-s -ffast-math -funsafe-math-optimizations -fno-math-errno -fsingle-precision-constant
+endif