Enlightenment CVS committal

Author  : swielinga
Project : e17
Module  : libs/ecore

Dir     : e17/libs/ecore/debian


Modified Files:
      Tag: SPLIT
        changelog control rules 
Added Files:
      Tag: SPLIT
        ecore1-test.files libecore1-dev.files libecore1.files 


Log Message:
Updated debian packaging for ecore 1

===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/debian/changelog,v
retrieving revision 1.3.2.1
retrieving revision 1.3.2.2
diff -u -3 -r1.3.2.1 -r1.3.2.2
--- changelog   9 Jul 2003 19:45:52 -0000       1.3.2.1
+++ changelog   21 Aug 2003 16:11:14 -0000      1.3.2.2
@@ -1,5 +1,5 @@
-ecore (1.0.0_pre2-0cvs2003070901) unstable; urgency=low
+ecore (1.0.0-pre3-0cvs20030821) unstable; urgency=low
 
   * a CVS release
   
- -- Laurence J. Lane <[EMAIL PROTECTED]>  Tue, 30 Oct 2001 13:22:53 +0000
+ -- Sytse Wielinga <[EMAIL PROTECTED]>  Thu, 21 Aug 2003 16:29:37 +0200
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/debian/control,v
retrieving revision 1.3
retrieving revision 1.3.2.1
diff -u -3 -r1.3 -r1.3.2.1
--- control     13 Dec 2001 05:40:58 -0000      1.3
+++ control     21 Aug 2003 16:11:15 -0000      1.3.2.1
@@ -1,21 +1,35 @@
 Source: ecore
 Section: libs
 Priority: optional
-Maintainer: Laurence J. Lane <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>= 3.0)
-Standards-Version: 3.2.1.0
+Maintainer: Sytse Wielinga <[EMAIL PROTECTED]>
+Build-Depends: debhelper (>> 4.0.0)
+Standards-Version: 3.6.1.0
 
-Package: libecore0
+Package: libecore1
 Architecture: any
 Section: libs
 Depends: ${shlibs:Depends}
-Description: libecore0 description
- libecore0 extended description
+Description: Core abstraction layer for enlightenment DR 0.17
+ This is the core event abstraction layer and X abstraction layer that makes
+ doing selections, Xdnd, general X stuff, and event loops, timeouts and idle
+ handlers fast, optimized, and convenient. It's a separate library so anyone
+ can make use of the work put into Ecore to make this job easy for
+ applications.
  
-Package: libecore0-dev
+Package: libecore1-dev
 Architecture: any
 Section: devel
 Architecture: any
-Depends: libecore0 (= ${Source-Version}), libc6-dev
-Description: libecore0 headers, static libraries and documentation
- Headers, static libraries and documentation for Imlib2.
+Depends: libecore1 (= ${Source-Version}), libc6-dev | libc-dev
+Provides: libecore-dev, libecore0-dev
+Conflicts: libecore-dev, libecore0-dev
+Description: libecore1 headers, static libraries and documentation
+ Headers, static libraries and documentation for the Ecore library.
+
+Package: ecore1-test
+Architecture: any
+Section: libs
+Depends: ${shlibs:Depends}
+Description: Test programs for libecore1
+ Programs for testing Ecore and demonstrating what it can do.
+
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/debian/rules,v
retrieving revision 1.3.2.1
retrieving revision 1.3.2.2
diff -u -3 -r1.3.2.1 -r1.3.2.2
--- rules       28 Jun 2003 16:34:16 -0000      1.3.2.1
+++ rules       21 Aug 2003 16:11:15 -0000      1.3.2.2
@@ -1,37 +1,47 @@
 #!/usr/bin/make -f
-# Sample debian/rules that uses debhelper. 
-# GNU copyright 1997 by Joey Hess.
-#
-# This version is for a hypothetical package that builds an
-# architecture-dependant package, as well as an architecture-independent
-# package.
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
 
-# Uncomment this to turn on verbose mode. 
+# Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
+
 # This is the debhelper compatability version to use.
-export DH_COMPAT=2
+export DH_COMPAT=4
+
 
-# This has to be exported to make some magic below work.
-export DH_OPTIONS
+CFLAGS = -Wall -g
 
-INSTALL=/usr/bin/install
-package=libecore0
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+       CFLAGS += -O0
+else
+       CFLAGS += -O2
+endif
+ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
+       INSTALL_PROGRAM += -s
+endif
+
+# 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)
+
+INSTALL=/usr/bin/install -p
+CONFIGUREOPTS = --prefix=/usr --enable-ecore-x --enable-ecore-job --enable-ecore-evas 
--enable-ecore-con --enable-ecore-ipc --build=$(DEB_BUILD_GNU_TYPE) 
--host=$(DEB_HOST_GNU_TYPE)
+package=libecore1
 
 configure: configure-stamp
 configure-stamp:
-       ./autogen.sh --prefix=/usr --enable-ecore-x --enable-ecore-job \
-       --enable-ecore-evas --enable-ecore-con \
-       --enable-ecore-ipc || ./configure --prefix=/usr --enable-ecore-x \
-       --enable-ecore-job --enable-ecore-evas \
-       --enable-ecore-con --enable-ecore-ipc 
+       dh_testdir
+
+       test -x autogen.sh && ./autogen.sh $(CONFIGUREOPTS) || ./configure 
$(CONFIGUREOPTS)
+
        touch configure-stamp
 
 build: configure build-stamp
 build-stamp:
        dh_testdir
 
-
        $(MAKE) 
 
        touch build-stamp
@@ -45,32 +55,25 @@
 
        dh_clean
 
-install: DH_OPTIONS=
 install: build 
        dh_testdir
        dh_testroot
        dh_clean -k
        dh_installdirs
 
-       $(MAKE) install DESTDIR=$(CURDIR)/debian/$(package)/
-       
-       $(INSTALL) -d debian/$(package)-dev/usr/lib
-       mv debian/$(package)/usr/include debian/$(package)/usr/bin \
-          debian/$(package)-dev/usr
-       mv debian/$(package)/usr/lib/*.so debian/$(package)/usr/lib/*.la \
-          debian/$(package)/usr/lib/*.a debian/$(package)-dev/usr/lib/
+       $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp/
 
-binary-indep:
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
 
 # Build architecture-dependent files here.
-# Pass -a to all debhelper commands in this target to reduce clutter.
-binary-arch: DH_OPTIONS=-a
 binary-arch: build install
-       # Need this version of debhelper for DH_OPTIONS to work.
        dh_testdir
        dh_testroot
        dh_installdocs AUTHORS README
        dh_installchangelogs
+       dh_movefiles
        dh_strip
        dh_compress
        dh_fixperms
@@ -82,5 +85,4 @@
        dh_builddeb
 
 binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install
-
+.PHONY: build clean binary-indep binary-arch binary install configure




-------------------------------------------------------
This SF.net email is sponsored by: VM Ware
With VMware you can run multiple operating systems on a single machine.
WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines
at the same time. Free trial click here:http://www.vmware.com/wl/offer/358/0
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to