more preliminary assimilation

SVN revision: 1687
This commit is contained in:
Laurence J. Lane 1999-12-19 21:08:32 +00:00
parent 0143114f4d
commit 31bcbe6b2c
5 changed files with 137 additions and 0 deletions

10
debian/changelog vendored Normal file
View File

@ -0,0 +1,10 @@
imlib2 (0.0.0-1) unstable; urgency=low
* A CVS Release
-- Laurence J. Lane <ljlane@debian.org> Sun, 10 Oct 1999 23:15:37 -0400
Local variables:
mode: debian-changelog
add-log-mailing-address: "ljlane@debian.org"
End:

17
debian/control vendored Normal file
View File

@ -0,0 +1,17 @@
Source: imlib2
Section: libs
Priority: optional
Maintainer: Laurence J. Lane <ljlane@debian.org>
Standards-Version: 3.0.1.1
Package: libimlib2
Architecture: any
Depends: ${shlibs:Depends}
Description: imlib2
imlib2 is the second incarnation of the rasterman's superb imaging
library
Package: libimlib2-dev
Architecture: all
Description: imlib2 development files
C header file for compiling programs with imlib2 support.

7
debian/libimlib2.postinst vendored Normal file
View File

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

102
debian/rules vendored Normal file
View File

@ -0,0 +1,102 @@
#!/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
build: build-stamp
build-stamp:
dh_testdir
# Add here commands to compile the package.
#$(MAKE)
./autogen.sh --prefix=/usr || ./configure --prefix=/usr
$(MAKE)
touch build-stamp
clean:
dh_testdir
dh_testroot
rm -f build-stamp
# Add here commands to clean up after the build process.
#-$(MAKE) clean
#-$(MAKE) distclean
dh_clean
install: DH_OPTIONS=
install: build
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
# Add here commands to install the package into debian/tmp.
#$(MAKE) prefix=`pwd`/debian/tmp/usr install
$(MAKE) install DESTDIR=$(shell pwd)/debian/imlib2/
rm -rf debian/libimlib2
mv debian/imlib2 debian/libimlib2
mkdir -p $(shell pwd)/debian/libimlib2-dev/usr/include
mv debian/libimlib2/usr/include/Imlib2.h debian/libimlib2-dev/usr/include/
# dh_movefiles
# Build architecture-independent files here.
# Pass -i to all debhelper commands in this target to reduce clutter.
binary-indep: DH_OPTIONS=-i
binary-indep: build install
# Need this version of debhelper for DH_OPTIONS to work.
dh_testversion 2
dh_testdir
dh_testroot
dh_installdocs
dh_installexamples
dh_installmenu
dh_installchangelogs
dh_link
dh_compress
dh_fixperms
dh_suidregister
dh_installdeb
dh_gencontrol
dh_md5sums
dh_builddeb
# 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
dh_installexamples
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

1
debian/shlibs.local vendored Normal file
View File

@ -0,0 +1 @@
libimlib2 0