Enlightenment CVS committal

Author  : shadoi
Project : e17
Module  : libs/ewl

Dir     : e17/libs/ewl/debian


Modified Files:
        control rules 
Added Files:
        ewl0-bin.install libewl0-dev.install 
        libewl0-engine-evas-fb.install 
        libewl0-engine-evas-software-x11.install 
        libewl0-engine-x11.install libewl0-engines-all.install 
        libewl0.install 
Removed Files:
        ewl0-bin.files libewl0-dev.files libewl0.files 


Log Message:
- New style debian files, remove the old ones.
- Add packages for the new engines.

===================================================================
RCS file: /cvs/e/e17/libs/ewl/debian/control,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- control     14 Apr 2006 00:24:37 -0000      1.10
+++ control     23 Jun 2006 02:36:48 -0000      1.11
@@ -2,26 +2,50 @@
 Section: libs
 Priority: optional
 Maintainer: Sytse Wielinga <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>> 4.0.0), libedb-dev, libevas-dev, libecore-dev, 
libedje-dev, libemotion-dev, automake1.7 | automaken, libtool
-Standards-Version: 3.6.1.0
+Build-Depends: debhelper (>> 4.0.0), cdbs, automake1.9, libtool, libevas0-dev, 
libevas0-all, libecore0-dev, libedje0-dev, libemotion0-dev, edje0-bin, 
embryo0-bin, libepsilon0-dev
+Standards-Version: 3.6.2.2
 
 Package: libewl0
 Section: libs
 Architecture: any
 Depends: ${shlibs:Depends}
 Provides: libewl
-Suggests: ewl0-test (= ${Source-Version})
+Suggests: ewl0-bin, libewl0-engines-all  
 Description: The Enlightened Widget Library (EWL)
  EWL is a widget library based on the Enlightenment Foundation Libraries
 
 Package: libewl0-dev
 Architecture: any
-Section: libdevel
-Depends: libewl0 (= ${Source-Version}), libedb-dev, libevas-dev, libecore-dev, 
libemotion-dev
+Section: devel
+Depends: libewl0 (= ${Source-Version}), libc6-dev | libc-dev, libevas-dev, 
libecore-dev, libemotion-dev
 Provides: libewl-dev
 Conflicts: libewl-dev
 Description: Development files for EWL
  EWL is a widget library based on the Enlightenment Foundation Libraries
+
+Package: libewl0-engines-all
+Section: libs
+Architecture: any
+Depends: libewl0-engine-evas-fb, libewl0-engine-evas-software-x11, 
libewl0-engine-x11
+Description: virtual package providing all available EWL engines
+
+Package: libewl0-engine-evas-fb
+Section: libs
+Architecture: any
+Depends: libewl0
+Description: The framebuffer engine for EWL provided by EVAS 
+
+Package: libewl0-engine-evas-software-x11
+Section: libs
+Architecture: any
+Depends: libewl0
+Description: The software x11 engine for EWL provided by EVAS 
+
+Package: libewl0-engine-x11
+Section: libs
+Architecture: any
+Depends: libewl0
+Description: The X11 engine for EWL 
 
 Package: ewl0-bin
 Section: graphics
===================================================================
RCS file: /cvs/e/e17/libs/ewl/debian/rules,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- rules       2 Apr 2006 07:38:06 -0000       1.7
+++ rules       23 Jun 2006 02:36:48 -0000      1.8
@@ -1,87 +1,10 @@
 #!/usr/bin/make -f
-# Sample debian/rules that uses debhelper.
-# GNU copyright 1997 to 1999 by Joey Hess.
 
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
+DEB_TAR_SRCDIR                  := ewl-0.0.4.007
+DEB_AUTO_CLEANUP_RCS            := yes
 
-
-# This is the debhelper compatability version to use.
-export DH_COMPAT=4
-
-
-CFLAGS ?= -Wall -g
-
-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 --build=$(DEB_BUILD_GNU_TYPE) 
--host=$(DEB_HOST_GNU_TYPE)
-package=libewl0
-
-configure: configure-stamp
-configure-stamp:
-       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
-
-clean:
-       dh_testdir
-       rm -f build-stamp configure-stamp
-
-       -mv debian/changelog debian/changelog.saved
-       -$(MAKE) distclean
-       -mv debian/changelog.saved debian/changelog
-
-       dh_clean
-
-install: build
-       dh_testdir
-       dh_testroot
-       dh_clean -k
-       dh_installdirs
-
-       $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
-
-binary-indep: build install
-
-binary-arch: build install
-       dh_testdir
-       dh_testroot
-       dh_installdocs AUTHORS README 
$(CURDIR)/debian/tmp/usr/share/ewl/examples
-       dh_installchangelogs
-       dh_movefiles
-       dh_link
-       dh_strip
-       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 configure
+include /usr/share/cdbs/1/class/autotools.mk
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/rules/tarball.mk
+include /usr/share/cdbs/1/rules/simple-patchsys.mk
+include /usr/share/cdbs/1/rules/utils.mk 



Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to