~ubuntu-branches/ubuntu/edgy/libcdk5/edgy

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): John Goerzen
  • Date: 2005-08-13 18:01:16 UTC
  • Revision ID: james.westby@ubuntu.com-20050813180116-7ocmcybv3cyrrc2x
Tags: 5.0.20050424-2
Call ./configure properly even if not executable.  Closes: #322977.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
# -*- makefile -*-
 
3
# Sample debian/rules that uses debhelper.
 
4
# This file was originally written by Joey Hess and Craig Small.
 
5
# As a special exception, when this file is copied by dh-make into a
 
6
# dh-make output file, you may use that output file without restriction.
 
7
# This special exception was added by Craig Small in version 0.37 of dh-make.
 
8
 
 
9
# Uncomment this to turn on verbose mode.
 
10
#export DH_VERBOSE=1
 
11
 
 
12
 
 
13
# These are used for cross-compiling and for saving the configure script
 
14
# from having to guess our platform (since we know it already)
 
15
DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
 
16
DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
 
17
SHELL=/bin/bash
 
18
 
 
19
CFLAGS = -Wall -g
 
20
 
 
21
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
 
22
        CFLAGS += -O0
 
23
else
 
24
        CFLAGS += -O2
 
25
endif
 
26
 
 
27
# shared library versions, option 1
 
28
version=2.0.5
 
29
major=2
 
30
# option 2, assuming the library is created as src/.libs/libfoo.so.2.0.5 or so
 
31
#version=`ls src/.libs/lib*.so.* | \
 
32
# awk '{if (match($$0,/[0-9]+\.[0-9]+\.[0-9]+$$/)) print substr($$0,RSTART)}'`
 
33
#major=`ls src/.libs/lib*.so.* | \
 
34
# awk '{if (match($$0,/\.so\.[0-9]+$$/)) print substr($$0,RSTART+4)}'`
 
35
 
 
36
config.status: configure
 
37
        dh_testdir
 
38
        # Add here commands to configure the package.
 
39
        CFLAGS="$(CFLAGS)" $(SHELL) ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
 
40
 
 
41
 
 
42
build: build-stamp
 
43
build-stamp:  config.status
 
44
        dh_testdir
 
45
 
 
46
        # Add here commands to compile the package.
 
47
        $(MAKE)
 
48
        $(MAKE) cdkshlib
 
49
 
 
50
        touch build-stamp
 
51
 
 
52
clean:
 
53
        dh_testdir
 
54
        dh_testroot
 
55
        rm -f build-stamp 
 
56
        rm -rf debian/tmp
 
57
 
 
58
        # Add here commands to clean up after the build process.
 
59
        -$(MAKE) distclean
 
60
ifneq "$(wildcard /usr/share/misc/config.sub)" ""
 
61
        cp -f /usr/share/misc/config.sub config.sub
 
62
endif
 
63
ifneq "$(wildcard /usr/share/misc/config.guess)" ""
 
64
        cp -f /usr/share/misc/config.guess config.guess
 
65
endif
 
66
 
 
67
 
 
68
        dh_clean 
 
69
 
 
70
install: build
 
71
        dh_testdir
 
72
        dh_testroot
 
73
        dh_clean -k 
 
74
        -mkdir -p debian/tmp/usr{/doc/cdk,/share/man/man3,/include/cdk,/share/doc,/lib}
 
75
        dh_installdirs
 
76
 
 
77
        # Add here commands to install the package into debian/tmp
 
78
        $(MAKE) install prefix=$(CURDIR)/debian/tmp/usr
 
79
        $(MAKE) installCDKSHLibrary prefix=$(CURDIR)/debian/tmp/usr
 
80
        mv debian/tmp/usr/doc/cdk debian/tmp/usr/share/doc/libcdk5-dev
 
81
        ln -s libcdk.so.5.0 debian/tmp/usr/lib/libcdk.so.5
 
82
        rm debian/tmp/usr/share/doc/libcdk5-dev/{COPYING,INSTALL}
 
83
 
 
84
 
 
85
# Build architecture-independent files here.
 
86
binary-indep: build install
 
87
# We have nothing to do by default.
 
88
 
 
89
# Build architecture-dependent files here.
 
90
binary-arch: build install
 
91
        dh_testdir
 
92
        dh_testroot
 
93
        dh_installchangelogs CHANGES
 
94
        dh_installdocs
 
95
        dh_installexamples
 
96
        dh_install --sourcedir=debian/tmp
 
97
#       dh_installmenu
 
98
#       dh_installdebconf       
 
99
#       dh_installlogrotate
 
100
#       dh_installemacsen
 
101
#       dh_installpam
 
102
#       dh_installmime
 
103
#       dh_installinit
 
104
#       dh_installcron
 
105
#       dh_installinfo
 
106
        dh_installman
 
107
        dh_link
 
108
        dh_strip
 
109
        dh_compress
 
110
        dh_fixperms
 
111
#       dh_perl
 
112
#       dh_python
 
113
        dh_makeshlibs
 
114
        dh_installdeb
 
115
        dh_shlibdeps
 
116
        dh_gencontrol
 
117
        dh_md5sums
 
118
        dh_builddeb
 
119
 
 
120
binary: binary-indep binary-arch
 
121
.PHONY: build clean binary-indep binary-arch binary install