From 8d0d1e95f2ada7aad9bb8853f4a0c4ac44e105e7 Mon Sep 17 00:00:00 2001 From: "Laurence J. Lane" Date: Sun, 24 Dec 2000 15:37:19 +0000 Subject: [PATCH] more assimilation SVN revision: 4029 --- legacy/ecore/debian/changelog | 10 ++++ legacy/ecore/debian/control | 21 +++++++ legacy/ecore/debian/copyright | 32 ++++++++++ legacy/ecore/debian/libecore0.postinst | 7 +++ legacy/ecore/debian/rules | 81 ++++++++++++++++++++++++++ 5 files changed, 151 insertions(+) create mode 100644 legacy/ecore/debian/changelog create mode 100644 legacy/ecore/debian/control create mode 100644 legacy/ecore/debian/copyright create mode 100644 legacy/ecore/debian/libecore0.postinst create mode 100644 legacy/ecore/debian/rules diff --git a/legacy/ecore/debian/changelog b/legacy/ecore/debian/changelog new file mode 100644 index 0000000000..15c59d5111 --- /dev/null +++ b/legacy/ecore/debian/changelog @@ -0,0 +1,10 @@ +libecore0 (0.0.0-0.2000122401) unstable; urgency=low + + * a cvs release + + -- Laurence J. Lane Sun, 24 Dec 2000 01:31:57 +0000 + +Local variables: +mode: debian-changelog +add-log-mailing-address: "ljlane@debian.org" +End: diff --git a/legacy/ecore/debian/control b/legacy/ecore/debian/control new file mode 100644 index 0000000000..31c443db22 --- /dev/null +++ b/legacy/ecore/debian/control @@ -0,0 +1,21 @@ +Source: libecore0 +Section: libs +Priority: optional +Maintainer: Laurence J. Lane +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. diff --git a/legacy/ecore/debian/copyright b/legacy/ecore/debian/copyright new file mode 100644 index 0000000000..f134b11a11 --- /dev/null +++ b/legacy/ecore/debian/copyright @@ -0,0 +1,32 @@ +This package was debianized by Laurence J. Lane 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 + +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. diff --git a/legacy/ecore/debian/libecore0.postinst b/legacy/ecore/debian/libecore0.postinst new file mode 100644 index 0000000000..bab464e2db --- /dev/null +++ b/legacy/ecore/debian/libecore0.postinst @@ -0,0 +1,7 @@ +#!/bin/sh -e + +if test "$1" = "configure"; then + ldconfig +fi + +#DEBHELPER# diff --git a/legacy/ecore/debian/rules b/legacy/ecore/debian/rules new file mode 100644 index 0000000000..ca9e0ec8b1 --- /dev/null +++ b/legacy/ecore/debian/rules @@ -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 +