Recreated debian/, based on cdbs

SVN revision: 21270
This commit is contained in:
xstasi 2006-03-13 19:51:44 +00:00 committed by xstasi
parent 3eff00791a
commit a3ac6dd0a8
9 changed files with 24 additions and 97 deletions

View File

@ -1,6 +1,6 @@
evas (@VERSION@-1) unstable; urgency=low
evas (@VERSION@) unstable; urgency=low
* a CVS release
* a CVS snapshot release.
-- Sytse Wielinga <s.b.wielinga@student.utwente.nl> Sun, 4 Jul 2004 13:27:15 +0200
-- E17 Debian Team <debian@edevelop.org> Tue, 7 Mar 2006 13:30:15 +0000

View File

@ -0,0 +1 @@
4

View File

@ -1,9 +1,9 @@
Source: evas
Section: libs
Priority: optional
Maintainer: Alessandro Grassi <xstasi@gmail.com>
Build-Depends: debhelper (>> 3.0.0), libedb1-dev, libeet0-dev, libfreetype6-dev, libpng12-0-dev | libpng-dev, xlibs-dev | libx11-dev, zlib1g-dev | libz-dev, libjpeg62-dev, automaken, libtool
Standards-Version: 3.5.7.0
Maintainer: E17 Debian Team <debian@edevelop.org>
Build-Depends: debhelper (>= 4.2.0), cdbs (>= 0.4.3-1.1), libedb1-dev, libeet0-dev, libfreetype6-dev, libpng12-0-dev | libpng-dev, xlibs-dev | libx11-dev, zlib1g-dev | libz-dev, libjpeg62-dev, autotools-dev
Standards-Version: 3.6.2.2
Package: libevas0-dev
Section: devel

View File

@ -1,5 +1,5 @@
This package was debianized by Sytse Wielinga <s.b.wielinga@student.utwente.nl> on
Sat, 5 Oct 2002 14:19:01 +0200.
This package was debianized by E17 Debian Team <debian@edevelop.org> on
Mon, 13 Mar 2006 14:32:33 +0000.
The source code is from the e17/libs/ebits module of the enlightenment CVS
tree. For more information, see:

2
legacy/evas/debian/dirs Normal file
View File

@ -0,0 +1,2 @@
usr/bin
usr/sbin

View File

@ -0,0 +1,2 @@
debian/tmp/usr/bin/*
debian/tmp/usr/share/evas/*

View File

@ -0,0 +1,6 @@
debian/tmp/usr/bin/evas-config
debian/tmp/usr/include/*
debian/tmp/usr/lib/lib*.a
debian/tmp/usr/lib/lib*.so
debian/tmp/usr/lib/lib*.la
debian/tmp/usr/lib/pkgconfig/*

View File

@ -0,0 +1,2 @@
debian/tmp/usr/lib/lib*.so.*
debian/tmp/usr/lib/evas/modules/*

View File

@ -1,92 +1,6 @@
#!/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
# This is the debhelper compatibility version to use.
export DH_COMPAT=3
# 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)
cfg:=--prefix=/usr --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE)
# Simple debian/rules rewrote for cdbs
CFLAGS ?= -Wall -g
CFLAGS += -I/usr/include/freetype2 -include /usr/include/png.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-scale-smooth --enable-scale-sample
else
cfg += --enable-software-x11 --enable-image-loader-png --enable-image-loader-jpeg --enable-image-loader-eet --enable-image-loader-edb --enable-fmemopen --enable-scale-smooth --enable-scale-sample --enable-convert-8-rgb-332 --enable-convert-8-rgb-666 --enable-convert-8-rgb-232 --enable-convert-8-rgb-222 --enable-convert-8-rgb-221 --enable-convert-8-rgb-121 --enable-convert-8-rgb-111 --enable-convert-16-rgb-565 --enable-convert-16-rgb-555 --enable-convert-16-rgb-rot-0 --enable-convert-32-rgb-8888 --enable-convert-32-rgbx-8888 --enable-convert-32-bgr-8888 --enable-convert-32-bgrx-8888 --enable-convert-32-rgb-rot-0 --disable-directfb
endif
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
CFLAGS += -O0
else
ifneq (,$(EVAS_ARCH))
CFLAGS += -O3 -mtune=$(EVAS_ARCH)
endif
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
INSTALL_PROGRAM += -s
endif
export CFLAGS
configure: configure-stamp
configure-stamp:
dh_testdir
test -x autogen.sh && ./autogen.sh $(cfg) || ./configure $(cfg)
touch configure-stamp
build: configure build-stamp
build-stamp:
dh_testdir
$(MAKE)
touch build-stamp
clean:
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
-$(MAKE) distclean
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_movefiles
dh_installdocs README
dh_installman
dh_installchangelogs
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/rules/debhelper.mk
include /usr/share/cdbs/1/class/autotools.mk