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 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449
|
#!/usr/bin/make -f
# -*- makefile -*-
include /usr/share/dpatch/dpatch.make
soversion = 5
libversion = $(soversion).2
# architecture dependent variables
DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
distribution := $(shell lsb_release -is)
ifneq (,$(findstring /$(DEB_HOST_ARCH)/,/i386/powerpc/sparc/s390/))
build64 = yes
CC64 = gcc -m64
gencontrol_flags = -- \
'-Vdevxx:Depends=libc6-dev-$(ARCH64)'
ifeq ($(DEB_HOST_ARCH),i386)
ARCH64 = amd64
HOST64 = x86_64-linux-gnu
endif
ifeq ($(DEB_HOST_ARCH),powerpc)
ARCH64 = ppc64
HOST64 = ppc64-linux-gnu
endif
ifeq ($(DEB_HOST_ARCH),sparc)
ARCH64 = sparc64
HOST64 = sparc64-linux-gnu
endif
ifeq ($(DEB_HOST_ARCH),s390)
ARCH64 = s390x
HOST64 = s390x-linux-gnu
endif
endif
ifneq (,$(findstring /$(DEB_HOST_ARCH)/,/amd64/ppc64/))
build32 = yes
CC32 = gcc -m32
lib32dir = lib32
lib32devdir = usr/lib32
gencontrol_flags = -- \
'-Vdevxx:Depends=libc6-dev-$(ARCH32)'
ifeq ($(DEB_HOST_ARCH),amd64)
ARCH32 = i386
HOST32 = i486-linux-gnu
ifeq ($(distribution),Debian)
gencontrol_flags += '-Vlib32:Predep=libc6-i386 (>= 2.9-18)'
endif
endif
ifeq ($(DEB_HOST_ARCH),ppc64)
ARCH32 = powerpc
HOST32 = powerpc-linux-gnu
endif
endif
ifeq ($(DEB_HOST_ARCH_OS),netbsd)
CC_LINK_FLAGS =
else
CC_LINK_FLAGS = -Wl,
endif
CC = gcc
SHELL = bash
PWD := $(shell pwd)
p_rl = libreadline$(soversion)
p_rl32 = lib32readline$(soversion)
p_rl64 = lib64readline$(soversion)
p_comm = readline-common
p_rld = $(p_rl)-dev
p_rld32 = $(p_rl32)-dev
p_rld64 = $(p_rl64)-dev
p_rlg = $(p_rl)-dbg
p_doc = $(p_rl)-doc
p_rlfe = rlfe
d = debian/tmp
d32 = debian/tmp32
d64 = debian/tmp64
d_rl = debian/$(p_rl)
d_rl32 = debian/$(p_rl32)
d_rl64 = debian/$(p_rl64)
d_comm = debian/$(p_comm)
d_rld = debian/$(p_rld)
d_rld32 = debian/$(p_rld32)
d_rld64 = debian/$(p_rld64)
d_rlg = debian/$(p_rlg)
d_doc = debian/$(p_doc)
d_rlfe = debian/$(p_rlfe)
srcdir = $(PWD)
builddir = $(PWD)/build
builddir32 = $(PWD)/build32
builddir64 = $(PWD)/build64
default: build
configure: dpatch configure-stamp
configure-stamp: patch-stamp
dh_testdir
cp -p /usr/share/misc/config.* ./support/
rm -rf $(builddir)
mkdir $(builddir)
find . -type d | xargs chmod g-s
cd $(builddir) && \
CC=$(CC) $(srcdir)/configure \
--with-curses --prefix=/usr\
--host=$(DEB_HOST_GNU_TYPE)
ifneq ($(build32),)
rm -rf $(builddir32)
mkdir $(builddir32)
cd $(builddir32) && \
CC="$(CC32)" $(srcdir)/configure \
--host=$(HOST32) --with-curses --prefix=/usr
endif
ifneq ($(build64),)
rm -rf $(builddir64)
mkdir $(builddir64)
cd $(builddir64) && \
CC="$(CC64)" $(srcdir)/configure \
--host=$(HOST64) --with-curses --prefix=/usr
endif
touch configure-stamp
#ifeq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE))
#build: build-stamp build-rlfe-stamp
#else
build: build-stamp
#endif
build-stamp: configure-stamp
dh_testdir
$(MAKE) -C $(builddir) \
CFLAGS="-g -O2" \
SHOBJ_CFLAGS="-fPIC -D_REENTRANT" \
SHLIB_LIBS="-lncurses"
ifneq ($(build32),)
$(MAKE) -C $(builddir32) \
CC="$(CC32)" \
CFLAGS="-g -O2" \
SHOBJ_CFLAGS="-fPIC -D_REENTRANT" \
SHOBJ_LDFLAGS='-shared' \
SHLIB_LIBS="-lncurses" \
SHLIB_XLDFLAGS='$(CC_LINK_FLAGS)-soname,`echo $$@ | sed s/\\..$$$$//`'
endif
ifneq ($(build64),)
$(MAKE) -C $(builddir64) \
CC="$(CC64)" \
CFLAGS="-g -O2" \
SHOBJ_CFLAGS="-fPIC -D_REENTRANT" \
SHOBJ_LDFLAGS='-shared' \
SHLIB_LIBS="-lncurses" \
SHLIB_XLDFLAGS='$(CC_LINK_FLAGS)-soname,`echo $$@ | sed s/\\..$$$$//`'
endif
$(MAKE) -C $(builddir)/doc info
touch build-stamp
build-rlfe-stamp: configure-stamp
dh_testdir
ln -sf libhistory.so.$(libversion) \
$(builddir)/shlib/libhistory.so.$(soversion)
ln -sf libhistory.so.$(soversion) $(builddir)/shlib/libhistory.so
ln -sf libreadline.so.$(libversion) \
$(builddir)/shlib/libreadline.so.$(soversion)
ln -sf libreadline.so.$(soversion) $(builddir)/shlib/libreadline.so
rm -rf $(builddir)/examples/rlfe
cp -a examples/rlfe $(builddir)/examples/
ln -sf ../../.. $(builddir)/examples/rlfe/readline
cd $(builddir)/examples/rlfe \
&& ./configure --prefix=/usr --host=$(DEB_HOST_GNU_TYPE)
$(MAKE) -C $(builddir)/examples/rlfe \
CFLAGS="-g -O2" LDFLAGS="-g -L$(builddir)/shlib" rlfe
touch build-rlfe-stamp
clean: unpatch
dh_testdir
dh_testroot
rm -f configure*-stamp build*-stamp install-stamp
rm -rf autom4te.cache
rm -rf $(builddir)
ifneq ($(build64),)
rm -rf $(builddir64) $(d64)
endif
ifneq ($(build32),)
rm -rf $(builddir32) $(d32)
endif
rm -f doc/*.dvi
rm -f debian/shlibs.local
$(MAKE) -f debian/rules unpatch
rm -f patch-stamp*
find . -type d | xargs chmod g-s
rm -f support/config.guess support/config.sub
dh_clean
install: install-stamp
install-stamp:
dh_testdir
dh_testroot
dh_clean -k
rm -rf $(d)
mkdir -p $(d)/usr/bin
$(MAKE) -C $(builddir) install \
CFLAGS="-g -O2 -D_REENTRANT" \
DESTDIR=$(PWD)/$(d) \
mandir=/usr/share/man \
infodir=/usr/share/info
: # move $(p_rl)
dh_installdirs -p$(p_rl) \
etc \
lib \
usr/share/doc
cp -a $(d)/usr/lib/lib{history,readline}.so.* $(d_rl)/lib/
# cp -a $(d)/usr/lib/lib{history,readline}.so.$(libversion) $(d_rl)/lib/
# ln -s libhistory.so.$(libversion) \
# $(d_rl)/lib/libhistory.so.$(soversion)
# ln -s libreadline.so.$(libversion) \
# $(d_rl)/lib/libreadline.so.$(soversion)
: # move $(p_comm)
dh_installdirs -p$(p_comm) \
etc \
usr/share/readline \
usr/share/info \
usr/share/doc
mv $(d)/usr/share/man $(d_comm)/usr/share/.
mv $(d_comm)/usr/share/man/man3/history.3 \
$(d_comm)/usr/share/man/man3/history.3readline
mv $(d_comm)/usr/share/man/man3/readline.3 \
$(d_comm)/usr/share/man/man3/readline.3readline
mv $(d)/usr/share/info/rluserman.info $(d_comm)/usr/share/info/.
install -m 644 debian/inputrc $(d_comm)/usr/share/readline/
: # move $(p_rlg)
dh_installdirs -p$(p_rlg) \
usr/lib/debug \
usr/share/doc
mv $(d)/usr/lib/lib{history,readline}.so.$(libversion) \
$(d_rlg)/usr/lib/debug/.
ln -s libhistory.so.$(libversion) \
$(d_rlg)/usr/lib/debug/libhistory.so.$(soversion)
ln -s libreadline.so.$(libversion) \
$(d_rlg)/usr/lib/debug/libreadline.so.$(soversion)
: # move $(p_rld)
dh_installdirs -p$(p_rld) \
usr/lib \
usr/share/doc \
usr/share/info
ln -s /lib/libhistory.so.$(soversion) $(d_rld)/usr/lib/libhistory.so
ln -s /lib/libreadline.so.$(soversion) $(d_rld)/usr/lib/libreadline.so
mv $(d)/usr/lib/lib{history,readline}.a $(d_rld)/usr/lib/.
mv $(d)/usr/include $(d_rld)/usr/.
mv $(d)/usr/share/info/{readline.info,history.info} \
$(d_rld)/usr/share/info/.
: # remove HAVE_CONFIG_H from installed headers
awk '/^#if defined \(HAVE_CONFIG_H\)/, /^#endif/ \
{if ($$0 == "#else") print "#include <string.h>"; next} {print}' \
$(d_rld)/usr/include/readline/chardefs.h \
> $(d_rld)/usr/include/readline/chardefs.h.new
if diff -u $(d_rld)/usr/include/readline/chardefs.h \
$(d_rld)/usr/include/readline/chardefs.h.new; \
then \
rm -f $(d_rld)/usr/include/readline/chardefs.h.new; \
else \
mv -f $(d_rld)/usr/include/readline/chardefs.h.new \
$(d_rld)/usr/include/readline/chardefs.h; \
fi
ifeq (0,1)
: # install $(p_rlfe)
ifeq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE))
dh_installdirs -p$(p_rlfe) \
usr/bin usr/share/man/man1 \
usr/share/doc/$(p_rlfe)
cp -p $(builddir)/examples/rlfe/rlfe $(d_rlfe)/usr/bin/.
cp -p debian/rlfe.1 $(d_rlfe)/usr/share/man/man1/.
endif
endif
ifneq ($(build32),)
rm -rf $(d32)
mkdir -p $(d32)/usr/bin
$(MAKE) -C $(builddir32) install \
CC="$(CC32)" \
CFLAGS="-g -O2 -D_REENTRANT" \
SHOBJ_LDFLAGS='-shared' \
SHLIB_XLDFLAGS='$(CC_LINK_FLAGS)-soname,`echo $$@ | sed s/\\..$$$$//`' \
SHLIB_LIBS=-lncurses \
DESTDIR=$(PWD)/$(d32) \
mandir=/usr/share/man \
infodir=/usr/share/info
dh_installdirs -p$(p_rl32) \
$(lib32dir) \
usr/share/doc
cp -p $(d32)/usr/lib/lib{history,readline}.so.$(libversion) \
$(d_rl32)/$(lib32dir)/
ln -s libhistory.so.$(libversion) \
$(d_rl32)/$(lib32dir)/libhistory.so.$(soversion)
ln -s libreadline.so.$(libversion) \
$(d_rl32)/$(lib32dir)/libreadline.so.$(soversion)
dh_installdirs -p$(p_rld32) \
$(lib32devdir) \
usr/share/doc
ln -s /$(lib32dir)/libhistory.so.$(soversion) \
$(d_rld32)/$(lib32devdir)/libhistory.so
ln -s /$(lib32dir)/libreadline.so.$(soversion) \
$(d_rld32)/$(lib32devdir)/libreadline.so
mv $(d32)/usr/lib/lib{history,readline}.a $(d_rld32)/$(lib32devdir)/.
endif
ifneq ($(build64),)
rm -rf $(d64)
mkdir -p $(d64)/usr/bin
$(MAKE) -C $(builddir64) install \
CC="$(CC64)" \
CFLAGS="-g -O2 -D_REENTRANT" \
SHOBJ_LDFLAGS='-shared' \
SHLIB_XLDFLAGS='$(CC_LINK_FLAGS)-soname,`echo $$@ | sed s/\\..$$$$//`' \
SHLIB_LIBS=-lncurses \
DESTDIR=$(PWD)/$(d64) \
mandir=/usr/share/man \
infodir=/usr/share/info
dh_installdirs -p$(p_rl64) \
lib64 \
usr/share/doc
dh_installdirs -p$(p_rld64) \
usr/share/doc
cp -p $(d64)/usr/lib/lib{history,readline}.so.$(libversion) \
$(d_rl64)/lib64/
ln -s libhistory.so.$(libversion) \
$(d_rl64)/lib64/libhistory.so.$(soversion)
ln -s libreadline.so.$(libversion) \
$(d_rl64)/lib64/libreadline.so.$(soversion)
dh_installdirs -p$(p_rld64) \
usr/lib64 \
usr/share/doc
ln -s /lib64/libhistory.so.$(soversion) \
$(d_rld64)/usr/lib64/libhistory.so
ln -s /lib64/libreadline.so.$(soversion) \
$(d_rld64)/usr/lib64/libreadline.so
mv $(d64)/usr/lib/lib{history,readline}.a $(d_rld64)/usr/lib64/.
endif
touch install-stamp
binary-indep: build install
ifeq (0,1)
dh_testdir
dh_testroot
mkdir -p $(d_comm)/usr/share/lintian/overrides
cp -p debian/readline-common.overrides \
$(d_comm)/usr/share/lintian/overrides/readline-common
dh_installdocs -p$(p_comm) debian/inputrc.arrows
dh_installchangelogs -p$(p_comm)
dh_installdocs -p$(p_comm)
dh_installchangelogs -p$(p_comm)
dh_compress -i
dh_installdeb -i
dh_gencontrol -i
dh_md5sums -i
dh_builddeb -i
endif
binary-arch: build install
dh_testdir
dh_testroot
dh_installdocs -p$(p_rl) \
USAGE debian/inputrc.arrows
dh_installchangelogs -p$(p_rl) CHANGES
dh_installexamples -p$(p_rl) \
examples/Inputrc
mkdir -p $(d_rld)/usr/share/doc/$(p_rl)/examples
cp -p $(builddir)/examples/Makefile examples/*.c \
$(d_rld)/usr/share/doc/$(p_rl)/examples/
ln -sf $(p_rl) $(d_rld)/usr/share/doc/$(p_rld)
ln -sf $(p_rl) $(d_rlg)/usr/share/doc/$(p_rlg)
ifeq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE))
dh_installdocs -p$(p_rlfe) examples/rlfe/README
dh_installchangelogs -p$(p_rlfe) examples/rlfe/ChangeLog
dh_fixperms -p$(p_rl) -p$(p_rld) -p$(p_rlg) -p$(p_rlfe)
dh_strip -p$(p_rl) -p$(p_rld) -p$(p_rlg) -p$(p_rlfe)
dh_compress -p$(p_rl) -p$(p_rld) -p$(p_rlg) -p$(p_rlfe) \
-X.c
dh_makeshlibs -p$(p_rl) -V '$(p_rl) (>= 5.2)'
cp -p debian/$(p_rl).shlibs debian/shlibs.local
dh_shlibdeps -p$(p_rl) -p$(p_rld) -p$(p_rlg) -p$(p_rlfe) \
-L $(p_rl) -l $(d_rl)/lib
endif
ifneq ($(build32),)
-ls -l $(d_rld)/usr/share/doc/$(p_rl)
dh_installdocs -p$(p_rl32) \
USAGE debian/inputrc.arrows
dh_installchangelogs -p$(p_rl32) CHANGES
ln -sf $(p_rl32) $(d_rld32)/usr/share/doc/$(p_rld32)
dh_compress -p$(p_rl32) -p$(p_rld32)
dh_fixperms -p$(p_rl32) -p$(p_rld32)
dh_strip -p$(p_rl32) -p$(p_rld32)
dh_makeshlibs -p$(p_rl32) -V '$(p_rl32) (>= 5.2)'
-dh_shlibdeps -p$(p_rl32) -p$(p_rld32) \
-L $(p_rl32) -l $(d_rl32)/lib
-ls -l $(d_rld)/usr/share/doc/$(p_rl)
endif
ifneq ($(build64),)
-ls -l $(d_rld)/usr/share/doc/$(p_rl)
dh_installdocs -p$(p_rl64) \
USAGE debian/inputrc.arrows
dh_installchangelogs -p$(p_rl64) CHANGES
ln -sf $(p_rl64) $(d_rld64)/usr/share/doc/$(p_rld64)
dh_compress -p$(p_rl64) -p$(p_rld64)
dh_fixperms -p$(p_rl64) -p$(p_rld64)
dh_strip -p$(p_rl64) -p$(p_rld64)
dh_makeshlibs -p$(p_rl64) -V '$(p_rl64) (>= 5.2)'
-dh_shlibdeps -p$(p_rl64) -p$(p_rld64) \
-L $(p_rl64) -l $(d_rl64)/lib
-ls -l $(d_rld)/usr/share/doc/$(p_rl)
endif
dh_installdeb -s
dh_gencontrol -s $(gencontrol_flags)
dh_md5sums -s
dh_builddeb -s
binary: binary-indep binary-arch
.PHONY: binary binary-arch binary-indep clean
# Local Variables:
# mode: makefile
# end:
|