Updated most of the debian packaging. Everything I have missed is out of date,

not important or not working.


SVN revision: 7380
This commit is contained in:
swielinga 2003-08-26 13:59:06 +00:00 committed by swielinga
parent 1c58c1210d
commit 9043dd3635
11 changed files with 95 additions and 50 deletions

View File

@ -2,5 +2,8 @@ EXTRA_DIST = \
changelog \
control \
copyright \
libedje0.postinst \
edje0-bin.files \
edje0-tools.files \
libedje0.files \
libedje0-dev.files \
rules

View File

@ -1,5 +1,5 @@
edje (0.0.1-0cvs20030820) unstable; urgency=low
edje (0.0.1-0cvs20030826) unstable; urgency=low
* a CVS release
-- Sytse Wielinga <s.b.wielinga@student.utwente.nl> Wed, 20 Aug 2003 16:51:21 +0200
-- Sytse Wielinga <s.b.wielinga@student.utwente.nl> Tue, 26 Aug 2003 14:59:45 +0200

View File

@ -1,21 +1,52 @@
Source: edje
Section: libs
Priority: optional
Maintainer: Laurence J. Lane <ljlane@debian.org>
Build-Depends: debhelper (>= 3.0), libimlib2-dev, libeet0-dev, libecore1-dev
Maintainer: Sytse Wielinga <s.b.wielinga@student.utwente.nl>
Build-Depends: libimlib2-dev, libeet0-dev, libecore1-dev, libevas2-dev, debhelper (>> 4.0.0)
Standards-Version: 3.6.1.0
Package: edje0-bin
Architecture: any
Section: graphics
Depends: ${shlibs:Depends}
Description: Edje compiler
This package contains the binary edje_cc, for compiling edje files.
.
Edje is a graphical layout and animation library for animated resizable,
compressed and scalable themes. It is the theming engine behind
Enlightenment DR 0.17.
Package: edje0-test
Architecture: any
Section: graphics
Depends: ${shlibs:Depends}
Description: Edje binaries
This package contains the binaries edje, for viewing edje files.
.
Edje is a graphical layout and animation library for animated resizable,
compressed and scalable themes. It is the theming engine behind
Enlightenment DR 0.17.
Package: libedje0
Architecture: any
Section: libs
Depends: ${shlibs:Depends}
Description: libedje0 description
libedje0 extended description
Suggests: edje0-bin (= ${Source-Version}), edje0-test (= ${Source-Version})
Description: Graphical layout and animation library
Edje is a graphical layout and animation library for animated resizable,
compressed and scalable themes. It is the theming engine behind
Enlightenment DR 0.17.
Package: libedje0-dev
Architecture: any
Section: devel
Architecture: any
Depends: libedje0 (= ${Source-Version}), libc6-dev
Depends: libedje0 (= ${Source-Version}), libc6-dev | libc-dev, libeet0-dev, libecore1-dev, libevas2-dev
Provides: libedje-dev
Conflicts: libedje-dev
Description: libedje0 headers, static libraries and documentation
Headers, shared libraries and documentation for Edje.
This package provides headers, shared libraries and documentation for Edje.
.
Edje is a graphical layout and animation library for animated resizable,
compressed and scalable themes. It is the theming engine behind
Enlightenment DR 0.17.

View File

@ -0,0 +1,4 @@
usr/bin/edje_cc
usr/share/edje/data/src/*.edc
usr/share/edje/data/images/*.png
usr/share/edje/data/*.sh

View File

@ -0,0 +1,5 @@
usr/bin/edje
usr/share/edje/data/test/fonts/*.alias
usr/share/edje/data/test/fonts/*.ttf
usr/share/edje/data/test/fonts/*.dir
usr/share/edje/data/test/images/*.png

View File

@ -0,0 +1,6 @@
usr/include/*
usr/lib/lib*.a
usr/lib/lib*.so
usr/lib/*.la
usr/share/aclocal/*
usr/bin/*-config

View File

@ -0,0 +1 @@
usr/lib/lib*.so.*

View File

@ -1,7 +0,0 @@
#!/bin/sh -e
if test "$1" = "configure"; then
ldconfig
fi
#DEBHELPER#

View File

@ -1,34 +1,48 @@
#!/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
INSTALL=/usr/bin/install
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=libedje0
configure: configure-stamp
configure-stamp:
./autogen.sh --prefix=/usr || ./configure --prefix=/usr
dh_testdir
test -x autogen.sh && ./autogen.sh $(CONFIGUREOPTS) || ./configure $(CONFIGUREOPTS)
touch configure-stamp
build: configure build-stamp
build-stamp:
dh_testdir
$(MAKE)
$(MAKE)
touch build-stamp
@ -37,47 +51,35 @@ clean:
rm -f build-stamp configure-stamp
-$(MAKE) distclean
-rm -f configure-stamp build-stamp
dh_clean
install: DH_OPTIONS=
install: build
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
$(MAKE) install DESTDIR=$(CURDIR)/debian/$(package)/
find $(CURDIR)/debian/$(package) -name CVS -a -type d -print0 |xargs -0 rm -rf
$(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:
binary-indep: build install
# 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_link
dh_strip
dh_compress
dh_fixperms
dh_installdeb
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
.PHONY: build clean binary-indep binary-arch binary install configure

View File

@ -8,7 +8,7 @@ Standards-Version: 3.5.7.0
Package: libeet0-dev
Section: devel
Architecture: any
Depends: libeet0 (= ${Source-Version})
Depends: libeet0 (= ${Source-Version}), libc6-dev | libc-dev
Provides: libeet-dev
Conflicts: libeet-dev
Description: Enlightenment file chunk reading/writing library development files

View File

@ -16,7 +16,7 @@ DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
cfg:=--prefix=/usr --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE)
CFLAGS = -Wall -g
CFLAGS ?= -Wall -g
CFLAGS += -I/usr/include/freetype2 -include /usr/include/png.h -include /usr/include/freetype2/freetype/freetype.h -include /usr/include/freetype2/freetype/internal/ftobjs.h
ifeq (opengl,$(EVAS_TARGET))
cfg += --enable-gl-x11 --enable-image-loader-png --enable-image-loader-jpeg --enable-image-loader-edb --enable-image-loader-eet --enable-cpu-p2-only --enable-cpu-mmx --enable-cpu-sse --enable-cpu-c --enable-scale-smooth --enable-scale-sample