]> git.proxmox.com Git - mirror_zfs.git/blame - config/deb.am
Drop unused ZNODE_STATS and ZNODE_STAT_ADD()
[mirror_zfs.git] / config / deb.am
CommitLineData
c9c0d073
BB
1deb-local:
2 @(if test "${HAVE_DPKGBUILD}" = "no"; then \
3 echo -e "\n" \
4 "*** Required util ${DPKGBUILD} missing. Please install the\n" \
e921f650 5 "*** package for your distribution which provides ${DPKGBUILD},\n" \
c9c0d073 6 "*** re-run configure, and try again.\n"; \
e921f650 7 exit 1; \
c9c0d073
BB
8 fi; \
9 if test "${HAVE_ALIEN}" = "no"; then \
10 echo -e "\n" \
11 "*** Required util ${ALIEN} missing. Please install the\n" \
e921f650 12 "*** package for your distribution which provides ${ALIEN},\n" \
c9c0d073 13 "*** re-run configure, and try again.\n"; \
e921f650 14 exit 1; \
c9c0d073
BB
15 fi)
16
f3757573 17deb-kmod: deb-local rpm-kmod
f3757573
BB
18 name=${PACKAGE}; \
19 version=${VERSION}-${RELEASE}; \
20 arch=`$(RPM) -qp $${name}-kmod-$${version}.src.rpm --qf %{arch} | tail -1`; \
79c32704 21 debarch=`$(DPKG) --print-architecture`; \
f3757573 22 pkg1=kmod-$${name}*$${version}.$${arch}.rpm; \
79c32704 23 fakeroot $(ALIEN) --bump=0 --scripts --to-deb --target=$$debarch $$pkg1; \
f3757573 24 $(RM) $$pkg1
7670f721
NG
25
26
27deb-dkms: deb-local rpm-dkms
28 name=${PACKAGE}; \
29 version=${VERSION}-${RELEASE}; \
30 arch=`$(RPM) -qp $${name}-dkms-$${version}.src.rpm --qf %{arch} | tail -1`; \
79c32704 31 debarch=`$(DPKG) --print-architecture`; \
7670f721 32 pkg1=$${name}-dkms-$${version}.$${arch}.rpm; \
79c32704 33 fakeroot $(ALIEN) --bump=0 --scripts --to-deb --target=$$debarch $$pkg1; \
7670f721 34 $(RM) $$pkg1
c9c0d073
BB
35
36deb-utils: deb-local rpm-utils
37 name=${PACKAGE}; \
f3757573 38 version=${VERSION}-${RELEASE}; \
bd2f5ac9 39 arch=`$(RPM) -qp $${name}-$${version}.src.rpm --qf %{arch} | tail -1`; \
79c32704 40 debarch=`$(DPKG) --print-architecture`; \
c9c0d073 41 pkg1=$${name}-$${version}.$${arch}.rpm; \
c9b5cc8c
TF
42 pkg2=libnvpair1-$${version}.$${arch}.rpm; \
43 pkg3=libuutil1-$${version}.$${arch}.rpm; \
44 pkg4=libzfs2-$${version}.$${arch}.rpm; \
45 pkg5=libzpool2-$${version}.$${arch}.rpm; \
46 pkg6=libzfs2-devel-$${version}.$${arch}.rpm; \
47 pkg7=$${name}-test-$${version}.$${arch}.rpm; \
48 pkg8=$${name}-dracut-$${version}.$${arch}.rpm; \
48511ea6 49 pkg9=$${name}-initramfs-$${version}.$${arch}.rpm; \
6e72a5b9 50 pkg10=`ls python*-pyzfs-$${version}* | tail -1`; \
c34efbeb
AR
51## Arguments need to be passed to dh_shlibdeps. Alien provides no mechanism
52## to do this, so we install a shim onto the path which calls the real
53## dh_shlibdeps with the required arguments.
54 path_prepend=`mktemp -d /tmp/intercept.XXX`; \
55 echo "#$(SHELL)" > $${path_prepend}/dh_shlibdeps; \
56 echo "`which dh_shlibdeps` -- \
57 -xlibuutil1linux -xlibnvpair1linux -xlibzfs2linux -xlibzpool2linux" \
58 >> $${path_prepend}/dh_shlibdeps; \
59## These -x arguments are passed to dpkg-shlibdeps, which exclude the
60## Debianized packages from the auto-generated dependencies of the new debs,
61## which should NOT be mixed with the alien-generated debs created here
62 chmod +x $${path_prepend}/dh_shlibdeps; \
63 env PATH=$${path_prepend}:$${PATH} \
79c32704 64 fakeroot $(ALIEN) --bump=0 --scripts --to-deb --target=$$debarch \
48511ea6 65 $$pkg1 $$pkg2 $$pkg3 $$pkg4 $$pkg5 $$pkg6 $$pkg7 \
85ce3f4f 66 $$pkg8 $$pkg9 $$pkg10; \
c34efbeb
AR
67 $(RM) $${path_prepend}/dh_shlibdeps; \
68 rmdir $${path_prepend}; \
48511ea6 69 $(RM) $$pkg1 $$pkg2 $$pkg3 $$pkg4 $$pkg5 $$pkg6 $$pkg7 \
85ce3f4f 70 $$pkg8 $$pkg9 $$pkg10;
c9c0d073 71
7670f721 72deb: deb-kmod deb-dkms deb-utils