]> git.proxmox.com Git - mirror_zfs-debian.git/blob - config/deb.am
New upstream version 0.7.6
[mirror_zfs-debian.git] / config / deb.am
1 deb-local:
2 @(if test "${HAVE_DPKGBUILD}" = "no"; then \
3 echo -e "\n" \
4 "*** Required util ${DPKGBUILD} missing. Please install the\n" \
5 "*** package for your distribution which provides ${DPKGBUILD},\n" \
6 "*** re-run configure, and try again.\n"; \
7 exit 1; \
8 fi; \
9 if test "${HAVE_ALIEN}" = "no"; then \
10 echo -e "\n" \
11 "*** Required util ${ALIEN} missing. Please install the\n" \
12 "*** package for your distribution which provides ${ALIEN},\n" \
13 "*** re-run configure, and try again.\n"; \
14 exit 1; \
15 fi)
16
17 deb-kmod: deb-local rpm-kmod
18 name=${PACKAGE}; \
19 version=${VERSION}-${RELEASE}; \
20 arch=`$(RPM) -qp $${name}-kmod-$${version}.src.rpm --qf %{arch} | tail -1`; \
21 debarch=`$(DPKG) --print-architecture`; \
22 pkg1=kmod-$${name}*$${version}.$${arch}.rpm; \
23 fakeroot $(ALIEN) --bump=0 --scripts --to-deb --target=$$debarch $$pkg1; \
24 $(RM) $$pkg1
25
26
27 deb-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`; \
31 debarch=`$(DPKG) --print-architecture`; \
32 pkg1=$${name}-dkms-$${version}.$${arch}.rpm; \
33 fakeroot $(ALIEN) --bump=0 --scripts --to-deb --target=$$debarch $$pkg1; \
34 $(RM) $$pkg1
35
36 deb-utils: deb-local rpm-utils
37 name=${PACKAGE}; \
38 version=${VERSION}-${RELEASE}; \
39 arch=`$(RPM) -qp $${name}-$${version}.src.rpm --qf %{arch} | tail -1`; \
40 debarch=`$(DPKG) --print-architecture`; \
41 pkg1=$${name}-$${version}.$${arch}.rpm; \
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; \
49 pkg9=$${name}-initramfs-$${version}.$${arch}.rpm; \
50 ## Arguments need to be passed to dh_shlibdeps. Alien provides no mechanism
51 ## to do this, so we install a shim onto the path which calls the real
52 ## dh_shlibdeps with the required arguments.
53 path_prepend=`mktemp -d /tmp/intercept.XXX`; \
54 echo "#$(SHELL)" > $${path_prepend}/dh_shlibdeps; \
55 echo "`which dh_shlibdeps` -- \
56 -xlibuutil1linux -xlibnvpair1linux -xlibzfs2linux -xlibzpool2linux" \
57 >> $${path_prepend}/dh_shlibdeps; \
58 ## These -x arguments are passed to dpkg-shlibdeps, which exclude the
59 ## Debianized packages from the auto-generated dependencies of the new debs,
60 ## which should NOT be mixed with the alien-generated debs created here
61 chmod +x $${path_prepend}/dh_shlibdeps; \
62 env PATH=$${path_prepend}:$${PATH} \
63 fakeroot $(ALIEN) --bump=0 --scripts --to-deb --target=$$debarch \
64 $$pkg1 $$pkg2 $$pkg3 $$pkg4 $$pkg5 $$pkg6 $$pkg7 \
65 $$pkg8 $$pkg9; \
66 $(RM) $${path_prepend}/dh_shlibdeps; \
67 rmdir $${path_prepend}; \
68 $(RM) $$pkg1 $$pkg2 $$pkg3 $$pkg4 $$pkg5 $$pkg6 $$pkg7 \
69 $$pkg8 $$pkg9;
70
71 deb: deb-kmod deb-dkms deb-utils