1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
$(lib_binaries) += libvtv
ifeq ($(with_lib64vtv),yes)
$(lib_binaries) += lib64vtv
endif
ifeq ($(with_lib32vtv),yes)
$(lib_binaries) += lib32vtv
endif
ifeq ($(with_libn32vtv),yes)
$(lib_binaries) += libn32vtv
endif
ifeq ($(with_libx32vtv),yes)
$(lib_binaries) += libx32vtv
endif
define __do_vtv
dh_testdir
dh_testroot
mv $(install_stamp) $(install_stamp)-tmp
rm -rf $(d_l) $(d_d)
dh_installdirs -p$(p_l) $(usr_lib$(2))
$(dh_compat2) dh_movefiles -p$(p_l) $(usr_lib$(2))/libvtv.so.*
debian/dh_doclink -p$(p_l) $(p_lbase)
$(if $(with_dbg),debian/dh_doclink -p$(p_d) $(p_lbase))
if [ -f debian/$(p_l).overrides ]; then \
mkdir -p debian/$(p_l)/usr/share/lintian/overrides; \
cp debian/$(p_l).overrides debian/$(p_l)/usr/share/lintian/overrides/$(p_l); \
fi
$(call do_strip_lib_dbg, $(p_l), $(p_d), $(v_dbg),,)
$(cross_makeshlibs) dh_makeshlibs $(ldconfig_arg) -p$(p_l)
$(call cross_mangle_shlibs,$(p_l))
$(ignshld)DIRNAME=$(subst n,,$(2)) $(cross_shlibdeps) dh_shlibdeps -p$(p_l) \
$(call shlibdirs_to_search, \
$(subst vtv$(VTV_SONAME),gcc-s$(GCC_SONAME),$(p_l)) \
$(subst vtv$(VTV_SONAME),stdc++$(CXX_SONAME),$(p_l)) \
,$(2)) \
$(if $(filter yes, $(with_common_libs)),,-- -Ldebian/shlibs.common$(2))
$(call cross_mangle_substvars,$(p_l))
echo $(p_l) $(if $(with_dbg), $(p_d)) >> debian/$(lib_binaries)
trap '' 1 2 3 15; touch $@; mv $(install_stamp)-tmp $(install_stamp)
endef
# ----------------------------------------------------------------------
do_vtv = $(call __do_vtv,lib$(1)vtv$(VTV_SONAME),$(1))
$(binary_stamp)-libvtv: $(install_stamp)
$(call do_vtv,)
$(binary_stamp)-lib64vtv: $(install_stamp)
$(call do_vtv,64)
$(binary_stamp)-lib32vtv: $(install_stamp)
$(call do_vtv,32)
$(binary_stamp)-libn32vtv: $(install_stamp)
$(call do_vtv,n32)
$(binary_stamp)-libx32vtv: $(install_stamp)
$(call do_vtv,x32)
|