more assimilation

SVN revision: 4029
This commit is contained in:
Laurence J. Lane 2000-12-24 15:37:19 +00:00
parent 25a9c709bd
commit 8d0d1e95f2
5 changed files with 151 additions and 0 deletions

View File

@ -0,0 +1,10 @@
libecore0 (0.0.0-0.2000122401) unstable; urgency=low
* a cvs release
-- Laurence J. Lane <ljlane@debian.org> Sun, 24 Dec 2000 01:31:57 +0000
Local variables:
mode: debian-changelog
add-log-mailing-address: "ljlane@debian.org"
End:

View File

@ -0,0 +1,21 @@
Source: libecore0
Section: libs
Priority: optional
Maintainer: Laurence J. Lane <ljlane@debian.org>
Build-Depends: debhelper (>= 2.0)
Standards-Version: 3.2.1.0
Package: libecore0
Architecture: any
Section: libs
Depends: ${shlibs:Depends}
Description: libecore0 description
libecore0 extended description
Package: libecore0-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.

View File

@ -0,0 +1,32 @@
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/ecore module of the enlightenment CVS
tree. For more information, see:
http://www.enlightenment.org/cvs.html
Upstream Author(s): Carsten Haitzler <raster@rasterman.com>
Copyright:
Copyright (C) 2000 Carsten Haitzler and various contributors (see AUTHORS)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies of the Software, its documentation and marketing & publicity
materials, and acknowledgment shall be given in the documentation, materials
and software packages that this Software was used.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

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

81
legacy/ecore/debian/rules Normal file
View File

@ -0,0 +1,81 @@
#!/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.
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# This is the debhelper compatability version to use.
export DH_COMPAT=2
# This has to be exported to make some magic below work.
export DH_OPTIONS
INSTALL=/usr/bin/install
package=libecore0
configure: configure-stamp
configure-stamp:
./autogen.sh --prefix=/usr || ./configure --prefix=/usr
touch configure-stamp
build: configure build-stamp
build-stamp:
dh_testdir
$(MAKE)
touch build-stamp
clean:
dh_testdir
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=$(shell pwd)/debian/$(package)/
$(INSTALL) -d debian/$(package)-dev/usr/lib
mv debian/$(package)/usr/{include,bin} debian/$(package)-dev/usr
mv debian/$(package)/usr/lib/*.{so,la,a} debian/$(package)-dev/usr/lib/
binary-indep:
# 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_testversion 2
dh_testdir
dh_testroot
dh_installdocs AUTHORS README
dh_installchangelogs
dh_strip
dh_compress
dh_fixperms
dh_installdeb
dh_makeshlibs
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install