summaryrefslogtreecommitdiff
path: root/meta-tizen/meta-tizen-common-base/recipes-multimedia/tiff/tiff.inc
blob: dcf78e8bccdd6b6a8fc6712b82879678dedd90e5 (plain)
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
DESCRIPTION = "Tools for Converting from and to the Tiff Format"
HOMEPAGE = "http://www.remotesensing.org/libtiff"
SECTION = "Productivity/Graphics/Convertors"
LICENSE = "HPND"
PV = "4.0.3"

SRC_URI = ""

S = "${WORKDIR}/git"

inherit manifest autotools-brokensep

BBCLASSEXTEND = ""
PROVIDES = ""

#PROVIDES by libtiff
PROVIDES += "libtiff"


#PROVIDES by tiff


#PROVIDES by tiff-docs
PROVIDES += "tiff-docs "


#PROVIDES by libtiff-dev
PROVIDES += "libtiff-dev"


RDEPENDS = ""
#RDEPENDS of libtiff-dev (lib${PN}-dev)
RDEPENDS_lib${PN}-dev += "glibc"
RDEPENDS_lib${PN}-dev += "libtiff"
RDEPENDS_lib${PN}-dev += "libstdc++-dev"


DEPENDS = ""
#DEPENDS of tiff
DEPENDS += "libjpeg-turbo"
DEPENDS += "zlib"
inherit pkgconfig
DEPENDS += "xz"
DEPENDS_append_class-native = " libtool"
DEPENDS_append_class-target = " libtool-cross"

do_prep() {
 cd ${S}
 chmod -Rf a+rX,u+w,g-w,o-w ${S}
 #setup -q
 cp ${S}/packaging/tiff.manifest .
 
 
}
do_patch_append() {
    bb.build.exec_func('do_prep', d)
}

do_configure() {
}

do_compile() {
 cd ${S}
  LANG=C
  export LANG
  unset DISPLAY
  LD_AS_NEEDED=1; export LD_AS_NEEDED ;
  
  local list="html html/images html/man"
  for dir in $list ; do
	touch "${dir}/all"
	touch "${dir}/install"
  done
  
  autotools_do_configure
  oe_runmake
  
  
  
}
EXTRA_OECONF += " --disable-static --with-pic"

do_install() {
 export RPM_BUILD_ROOT=${D}
 cd ${S}
 LANG=C
 export LANG
 unset DISPLAY
 rm -rf ${D}
 
 install -d ${D}/${mandir}/man1
 install -d ${D}/${mandir}/man3
 install -d ${D}/usr/bin
 install -d ${D}/usr/include
 install -d ${D}/usr/lib
 
   oe_runmake \
         DESTDIR=${D} \
         INSTALL_ROOT=${D} \
         BINDIR=${prefix}/bin \
   install  
   rm -f ${D}${infodir}/dir 
   find ${D} -regex ".*\.la$" | xargs rm -f -- 
   find ${D} -regex ".*\.a$" | xargs rm -f --
 for f in `find ${D}/${mandir} -type f -print ` ; do
   if [ `wc -l <$f` -eq 1 ] && grep -q "^\.so " $f ; then
     linkto=`sed -e "s|^\.so ||" $f`
     [ -f "`dirname $f`/$linkto" ] && ln -sf "$linkto" $f
   fi
 done
 
 rm -rf ${D}${prefix}/share/doc/tiff*
 rm -f ${D}${prefix}/lib/*.la
 
 
 
 
}

pkg_postinst_libtiff() {
    #!/bin/sh -e

    [ "x$D" == "x" ] && ldconfig
}

pkg_postrm_libtiff() {
    #!/bin/sh -e

    [ "x$D" == "x" ] && ldconfig
}

PACKAGES = "${PN}-dbg ${PN}-doc ${PN}-locale"
PACKAGES += " tiff "
PACKAGES += " tiff-docs "
PACKAGES += " libtiff "
PACKAGES += " libtiff-dev "

tiff_files = ""
tiff_files += "${prefix}/bin/*"
MANIFESTFILES_${PN} = "tiff.manifest"

tiff-docs_files = ""

libtiff_files = ""
libtiff_files += "${prefix}/lib/*.so.*"
MANIFESTFILES_lib${PN} = "tiff.manifest"

libtiff-dev_files = ""
libtiff-dev_files += "${prefix}/include/*"
libtiff-dev_files += "${prefix}/lib/*.so"
libtiff-dev_files += "${prefix}/lib/pkgconfig/*.pc"
MANIFESTFILES_lib${PN}-dev = "tiff.manifest"

FILES_${PN} = "${tiff_files}"
FILES_${PN}-docs = "${tiff-docs_files}"
FILES_lib${PN} = "${libtiff_files}"
FILES_lib${PN}-dev = "${libtiff-dev_files}"

PKG_tiff= "tiff"
PKG_tiff-docs= "tiff-docs"
PKG_libtiff= "libtiff"
PKG_libtiff-dev= "libtiff-dev"

require tiff-extraconf.inc