]> git.proxmox.com Git - mirror_smartmontools-debian.git/blob - debian/rules
Enhance dh_clean to clean up better
[mirror_smartmontools-debian.git] / debian / rules
1 #!/usr/bin/make -f
2 # Sample debian/rules that uses debhelper.
3 # GNU copyright 1997 to 1999 by Joey Hess.
4
5 # Uncomment this to turn on verbose mode.
6 #export DH_VERBOSE=1
7
8 export DEB_BUILD_MAINT_OPTIONS = hardening=+all
9 DPKG_EXPORT_BUILDFLAGS = 1
10 include /usr/share/dpkg/buildflags.mk
11
12 DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
13 DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
14
15 ifeq ($(DEB_HOST_ARCH_OS),linux)
16 CONFIGURE_ARGS += --with-selinux
17 endif
18
19 ifeq ($(DEB_HOST_ARCH_OS),kfreebsd)
20 CFLAGS += -I/usr/include/freebsd
21 endif
22
23 CFLAGS += -fsigned-char -Wall
24 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
25 CFLAGS += -O0
26 else
27 CFLAGS += -O2
28 endif
29 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
30 INSTALL_PROGRAM = install -s
31 else
32 INSTALL_PROGRAM = install
33 endif
34
35 PACKAGE = smartmontools
36 SRC_VERSION := $(shell dpkg-parsechangelog | sed -ne 's/^Version: \(.*\)-.*/\1/p'| cut -d':' -f2)
37 SVN_REVISION := $(shell echo $(SRC_VERSION) | awk -F"+" '{ print $$2 }' | sed 's/svn//' )
38 TARBALL = $(PACKAGE)_$(SRC_VERSION).orig.tar.gz
39 SVN_ROOT := 'https://svn.code.sf.net/p/smartmontools/code/trunk/smartmontools'
40
41 get-orig-source:
42 rm -rf get-orig-source $(TARBALL)
43 mkdir get-orig-source
44 svn export -r $(SVN_REVISION) $(SVN_ROOT) \
45 get-orig-source/$(PACKAGE)-$(SRC_VERSION).orig
46 rm -rf get-orig-source/$(PACKAGE)-$(SRC_VERSION).orig/os_solaris_ata.s
47 GZIP=--best tar czf $(TARBALL) -C get-orig-source $(PACKAGE)-$(SRC_VERSION).orig
48 rm -rf get-orig-source
49 echo " "$(TARBALL)" created; move it to the right destination to build the package"
50
51 configure: configure-stamp
52 configure-stamp:
53 dh_testdir
54 ./autogen.sh
55 CFLAGS="${CFLAGS}" CXXFLAGS="${CFLAGS}" ./configure --prefix=/usr \
56 --build=$(DEB_BUILD_GNU_TYPE) \
57 --host=$(DEB_HOST_GNU_TYPE) \
58 --sysconfdir=/etc \
59 --mandir=/usr/share/man \
60 --with-initscriptdir=no \
61 --with-docdir=/usr/share/doc/smartmontools \
62 --enable-savestates \
63 --enable-attributelog \
64 --with-savestates=/var/lib/smartmontools/smartd. \
65 --with-attributelog=/var/lib/smartmontools/attrlog. \
66 --with-exampledir=/usr/share/doc/smartmontools/examples/ \
67 --with-systemdsystemunitdir=/lib/systemd/system \
68 --with-smartdscriptdir=/usr/share/smartmontools \
69 --with-smartdplugindir=/etc/smartmontools/smartd_warning.d \
70 --with-systemdenvfile=/etc/default/smartmontools \
71 ${CONFIGURE_ARGS}
72 touch configure-stamp
73
74 build: build-arch build-indep
75 build-arch: build-stamp
76 build-indep: build-stamp
77 build-stamp: configure-stamp
78 dh_testdir
79 # Add here commands to compile the package.
80 $(MAKE)
81 touch build-stamp
82
83 clean:
84 dh_testdir
85 dh_testroot
86 # rm -f debian/logcheck.logcheck.ignore.*
87 # Add here commands to clean up after the build process.
88 [ ! -f Makefile ] || $(MAKE) distclean
89 rm -f build-stamp configure-stamp \
90 Makefile.in examplescripts/Makefile.in aclocal.m4 configure \
91 config.guess config.h.in config.sub depcomp install-sh \
92 m4/pkg.m4 missing
93 dh_clean
94
95 install: build
96 dh_testdir
97 dh_testroot
98 dh_prep
99 dh_installdirs
100 $(MAKE) DESTDIR=$(CURDIR)/debian/smartmontools install
101 rm -f debian/smartmontools/usr/sbin/update-smart-drivedb
102
103 # Build architecture-independent files here.
104 binary-indep:
105 # We have nothing to do by default.
106
107 # Build architecture-dependent files here.
108 binary-arch: build install
109 dh_testdir
110 dh_testroot
111 dh_installdocs
112 dh_installexamples
113 dh_installmenu
114 dh_installlogrotate
115 dh_install
116 dh_link
117 dh_systemd_enable
118 dh_installinit -- start 20 2 3 4 5 . stop 20 1 .
119 dh_systemd_enable
120 dh_installcron
121 dh_installinfo
122 dh_lintian
123 dh_installchangelogs ChangeLog
124 dh_strip
125 dh_compress
126 dh_fixperms
127 chmod 755 $(CURDIR)/debian/smartmontools/etc/smartmontools/run.d/10mail \
128 $(CURDIR)/debian/smartmontools/etc/smartmontools/run.d/10powersave-notify \
129 $(CURDIR)/debian/smartmontools/usr/share/smartmontools/smartd-runner
130 dh_makeshlibs
131 dh_installdeb
132 dh_shlibdeps
133 dh_gencontrol
134 dh_md5sums
135 dh_builddeb
136
137 binary: binary-indep binary-arch
138 .PHONY: build clean binary-indep binary-arch binary install configure get-orig-source