assimilation and.. what was that?

SVN revision: 4030
This commit is contained in:
Laurence J. Lane 2000-12-24 15:40:05 +00:00
parent 8d0d1e95f2
commit deb3a7cc06
11 changed files with 75 additions and 90 deletions

View File

@ -1,10 +1,10 @@
evas (0.0.1-1) unstable; urgency=low libevas0 (0.0.2-0.2000122401) unstable; urgency=low
* A CVS release. * a cvs release
-- Horms <horms@vergenet.net> Sat, 26 Nov 2000 17:00:00 -0500 -- Laurence J. Lane <ljlane@debian.org> Sun, 24 Dec 2000 01:31:57 +0000
Local variables: Local variables:
mode: debian-changelog mode: debian-changelog
add-log-mailing-address: "ljlane@debian.org"
End: End:
eoch

View File

@ -1,24 +1,26 @@
Source: evas Source: libevas0
Section: devel Section: libs
Priority: optional Priority: optional
Maintainer: Horms <horms@vergenet.net> Maintainer: Horms <horms@vergenet.net>
Standards-Version: 3.1.1 Standards-Version: 3.2.1.0
Package: libevas-dev
Architecture: any
Depends: libevas0 (= ${Source-Version}), libc6-dev
Description:
Headers and static libraries required to develop against evas.
Package: libevas0 Package: libevas0
Section: libs
Architecture: any Architecture: any
Depends: ${shlibs:Depends} Depends: ${shlibs:Depends}
Description: Description: evas description
Evas is an advanced canvas library, providing three backends for Evas is an advanced canvas library, providing three backends for
rendering: X11 (without some features like alpha-blending), imlib2, or rendering: X11 (without some features like alpha-blending), imlib2, or
OpenGL (hardware accelerated). Due to its simple API, evas can be OpenGL (hardware accelerated). Due to its simple API, evas can be
developed with rapidly, and cleanly. developed with rapidly, and cleanly.
Install evas if you want to develop applications against the only Install evas if you want to develop applications against the only
hardware-accelerated canvas library, or if you want to try out the hardware-accelerated canvas library, or if you want to try out the
applications under development. applications under development.
Package: libevas0-dev
Section: devel
Architecture: any
Depends: libevas0 (= ${Source-Version}), libc6-dev
Description: libevas0-dev description
Headers and static libraries required to develop against evas.

View File

@ -1,3 +1,10 @@
This package was debianized by Laurence J. Lane <ljlane@debian.org> on
Sat, 28 Oct 2000 17:56:46 -0400.
The source code is from the e17/libs/evas module of the enlightenment CVS
tree. For more information, see:
http://www.enlightenment.org/cvs.html
Copyright (C) 2000 Carsten Haitzler and various contributors (see AUTHORS) Copyright (C) 2000 Carsten Haitzler and various contributors (see AUTHORS)

View File

@ -1,3 +0,0 @@
usr/include/
usr/lib/
usr/share/doc/libevas-dev/

View File

@ -1,3 +0,0 @@
usr/include/Evas.h
usr/lib/libevas.a
usr/lib/libevas.la

View File

@ -1,47 +1,8 @@
#! /bin/sh #!/bin/sh -e
# postinst script for edb
#
# see: dh_installdeb(1)
set -e if test "$1" = "configure"; then
ldconfig
# summary of how this script can be called: fi
# * <postinst> `configure' <most-recently-configured-version>
# * <old-postinst> `abort-upgrade' <new version>
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
# <new-version>
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
# <failed-install-package> <version> `removing'
# <conflicting-package> <version>
# for details, see /usr/doc/packaging-manual/
#
# quoting from the policy:
# Any necessary prompting should almost always be confined to the
# post-installation script, and should be protected with a conditional
# so that unnecessary prompting doesn't happen if a package's
# installation fails and the `postinst' is called with `abort-upgrade',
# `abort-remove' or `abort-deconfigure'.
case "$1" in
configure)
ldconfig
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 0
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER# #DEBHELPER#
exit 0

View File

@ -1,56 +1,77 @@
#!/usr/bin/make -f #!/usr/bin/make -f
# Sample debian/rules that uses debhelper. # Sample debian/rules that uses debhelper.
# GNU copyright 1997 to 1999 by Joey Hess. # 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.
# 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=2
pwd:=$(shell pwd) # This has to be exported to make some magic below work.
cfg:=--prefix=/usr export DH_OPTIONS
build: build-stamp INSTALL=/usr/bin/install
package=libevas0
configure: configure-stamp
configure-stamp:
./autogen.sh --prefix=/usr || ./configure --prefix=/usr
touch configure-stamp
build: configure build-stamp
build-stamp: build-stamp:
dh_testdir dh_testdir
test -x autogen.sh && ./autogen.sh $(cfg) || ./configure $(cfg)
$(MAKE)
$(MAKE)
touch build-stamp touch build-stamp
clean: clean:
dh_testdir dh_testdir
dh_testroot rm -f build-stamp configure-stamp
rm -f build-stamp
-$(MAKE) distclean -$(MAKE) distclean
-rm -f configure-stamp build-stamp
dh_clean dh_clean
install: build install: DH_OPTIONS=
install: build
dh_testdir dh_testdir
dh_testroot dh_testroot
dh_clean -k dh_clean -k
dh_installdirs dh_installdirs
$(MAKE) install DESTDIR=$(pwd)/debian/libevas0 $(MAKE) install DESTDIR=$(shell pwd)/debian/$(package)/
$(INSTALL) -d debian/$(package)-dev/usr/{lib,bin}
mv debian/$(package)/usr/include debian/$(package)-dev/usr
mv debian/$(package)/usr/lib/*.{so,la,a} debian/$(package)-dev/usr/lib/
mv debian/$(package)/usr/bin/evas-config debian/$(package)-dev/usr/bin/
dh_movefiles --source=debian/libevas0 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 binary-arch: build install
dh_testversion 2.0 # Need this version of debhelper for DH_OPTIONS to work.
dh_testversion 2
dh_testdir dh_testdir
dh_testroot dh_testroot
dh_installdocs dh_installdocs AUTHORS README
dh_installchangelogs dh_installchangelogs
dh_link
dh_strip dh_strip
dh_compress dh_compress
dh_fixperms dh_fixperms
dh_suidregister
dh_makeshlibs
dh_installdeb dh_installdeb
dh_makeshlibs
dh_shlibdeps dh_shlibdeps
dh_gencontrol dh_gencontrol
dh_md5sums dh_md5sums