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 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190
  
     | 
    
      DC-Build-Header: xtide 2.10-2 / Fri Jan 08 18:47:47 +0100 2010
sbuild (Debian sbuild) 0.59.0 (02 Aug 2009) on griffon-46.nancy.grid5000.fr
╔══════════════════════════════════════════════════════════════════════════════╗
║ xtide 2.10-2 (amd64)                                       08 Jan 2010 18:47 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Package: xtide
Version: 2.10-2
Architecture: amd64
Start Time: 20100108-1847
┌──────────────────────────────────────────────────────────────────────────────┐
│ Fetch source files                                                           │
└──────────────────────────────────────────────────────────────────────────────┘
Check APT
─────────
Checking available source versions...
Download source files with APT
──────────────────────────────
Reading package lists...
Building dependency tree...
Reading state information...
Need to get 762kB of source archives.
Get:1 http://localhost sid/main xtide 2.10-2 (dsc) [1138B]
Get:2 http://localhost sid/main xtide 2.10-2 (tar) [483kB]
Get:3 http://localhost sid/main xtide 2.10-2 (diff) [279kB]
Fetched 762kB in 0s (1131kB/s)
Download complete and in download only mode
Check arch
──────────
** Using build dependencies supplied by package:
Build-Depends: debhelper (>= 7), libxaw7-dev, libpng12-dev, libtcd-dev, tcd-utils, sharutils
┌──────────────────────────────────────────────────────────────────────────────┐
│ Install build dependencies                                                   │
└──────────────────────────────────────────────────────────────────────────────┘
Checking for already installed source dependencies...
debhelper: missing
Using default version 7.4.11
libxaw7-dev: missing
libpng12-dev: missing
libtcd-dev: missing
tcd-utils: missing
sharutils: missing
Checking for source dependency conflicts...
Installing positive dependencies: debhelper libxaw7-dev libpng12-dev libtcd-dev tcd-utils sharutils
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  bsdmainutils file gettext gettext-base groff-base html2text intltool-debian
  libcroco3 libglib2.0-0 libice-dev libice6 libmagic1 libpcre3 libpng12-0
  libpthread-stubs0 libpthread-stubs0-dev libsm-dev libsm6 libtcd0 libx11-6
  libx11-data libx11-dev libxau-dev libxau6 libxaw7 libxcb1 libxcb1-dev
  libxdmcp-dev libxdmcp6 libxext-dev libxext6 libxml2 libxmu-dev
  libxmu-headers libxmu6 libxpm-dev libxpm4 libxt-dev libxt6 man-db po-debconf
  x11-common x11proto-core-dev x11proto-input-dev x11proto-kb-dev
  x11proto-xext-dev xtrans-dev zlib1g-dev
Suggested packages:
  wamerican wordlist whois vacation dh-make gettext-doc groff www-browser
  libmail-box-perl mailx
Recommended packages:
  curl wget lynx cvs libglib2.0-data shared-mime-info xml-core
  libmail-sendmail-perl
The following NEW packages will be installed:
  bsdmainutils debhelper file gettext gettext-base groff-base html2text
  intltool-debian libcroco3 libglib2.0-0 libice-dev libice6 libmagic1 libpcre3
  libpng12-0 libpng12-dev libpthread-stubs0 libpthread-stubs0-dev libsm-dev
  libsm6 libtcd-dev libtcd0 libx11-6 libx11-data libx11-dev libxau-dev libxau6
  libxaw7 libxaw7-dev libxcb1 libxcb1-dev libxdmcp-dev libxdmcp6 libxext-dev
  libxext6 libxml2 libxmu-dev libxmu-headers libxmu6 libxpm-dev libxpm4
  libxt-dev libxt6 man-db po-debconf sharutils tcd-utils x11-common
  x11proto-core-dev x11proto-input-dev x11proto-kb-dev x11proto-xext-dev
  xtrans-dev zlib1g-dev
0 upgraded, 54 newly installed, 0 to remove and 0 not upgraded.
Need to get 17.5MB of archives.
After this operation, 50.7MB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
  x11-common libice6 x11proto-core-dev libice-dev libxau6 libxdmcp6 libxcb1
  libx11-data libx11-6 libxau-dev libxdmcp-dev x11proto-input-dev
  x11proto-kb-dev xtrans-dev libpthread-stubs0 libpthread-stubs0-dev
  libxcb1-dev libx11-dev libxext6 libsm6 libxt6 libxmu6 libxpm4 libxaw7
  x11proto-xext-dev libxext-dev libsm-dev libxt-dev libxmu-headers libxmu-dev
  libxpm-dev libxaw7-dev bsdmainutils groff-base man-db libmagic1 file
  gettext-base libpcre3 libxml2 html2text libglib2.0-0 libcroco3 gettext
  intltool-debian po-debconf debhelper libpng12-0 zlib1g-dev libpng12-dev
  sharutils libtcd0 libtcd-dev tcd-utils
Authentication warning overridden.
Get:1 http://localhost sid/main x11-common 1:7.5+1 [279kB]
Get:2 http://localhost sid/main libice6 2:1.0.6-1 [53.8kB]
Get:3 http://localhost sid/main x11proto-core-dev 7.0.16-1 [92.2kB]
Get:4 http://localhost sid/main libice-dev 2:1.0.6-1 [66.7kB]
Get:5 http://localhost sid/main libxau6 1:1.0.5-1 [14.2kB]
Get:6 http://localhost sid/main libxdmcp6 1:1.0.3-1 [18.9kB]
Get:7 http://localhost sid/main libxcb1 1.5-2 [43.4kB]
Get:8 http://localhost sid/main libx11-data 2:1.3.2-1 [219kB]
Get:9 http://localhost sid/main libx11-6 2:1.3.2-1 [844kB]
Get:10 http://localhost sid/main libxau-dev 1:1.0.5-1 [18.3kB]
Get:11 http://localhost sid/main libxdmcp-dev 1:1.0.3-1 [22.3kB]
Get:12 http://localhost sid/main x11proto-input-dev 2.0-2 [63.1kB]
Get:13 http://localhost sid/main x11proto-kb-dev 1.0.4-1 [27.3kB]
Get:14 http://localhost sid/main xtrans-dev 1.2.5-1 [68.4kB]
Get:15 http://localhost sid/main libpthread-stubs0 0.3-2 [3172B]
Get:16 http://localhost sid/main libpthread-stubs0-dev 0.3-2 [3504B]
Get:17 http://localhost sid/main libxcb1-dev 1.5-2 [80.2kB]
Get:18 http://localhost sid/main libx11-dev 2:1.3.2-1 [3560kB]
Get:19 http://localhost sid/main libxext6 2:1.1.1-2 [43.3kB]
Get:20 http://localhost sid/main libsm6 2:1.1.1-1 [25.0kB]
Get:21 http://localhost sid/main libxt6 1:1.0.7-1 [192kB]
Get:22 http://localhost sid/main libxmu6 2:1.0.5-1 [57.6kB]
Get:23 http://localhost sid/main libxpm4 1:3.5.8-1 [44.2kB]
Get:24 http://localhost sid/main libxaw7 2:1.0.7-1 [211kB]
Get:25 http://localhost sid/main x11proto-xext-dev 7.1.1-2 [27.4kB]
Get:26 http://localhost sid/main libxext-dev 2:1.1.1-2 [108kB]
Get:27 http://localhost sid/main libsm-dev 2:1.1.1-1 [27.9kB]
Get:28 http://localhost sid/main libxt-dev 1:1.0.7-1 [519kB]
Get:29 http://localhost sid/main libxmu-headers 2:1.0.5-1 [22.7kB]
Get:30 http://localhost sid/main libxmu-dev 2:1.0.5-1 [65.3kB]
Get:31 http://localhost sid/main libxpm-dev 1:3.5.8-1 [101kB]
Get:32 http://localhost sid/main libxaw7-dev 2:1.0.7-1 [609kB]
Get:33 http://localhost sid/main bsdmainutils 8.0.5 [200kB]
Get:34 http://localhost sid/main groff-base 1.20.1-6 [1156kB]
Get:35 http://localhost sid/main man-db 2.5.6-5 [1492kB]
Get:36 http://localhost sid/main libmagic1 5.03-5 [393kB]
Get:37 http://localhost sid/main file 5.03-5 [47.6kB]
Get:38 http://localhost sid/main gettext-base 0.17-8 [133kB]
Get:39 http://localhost sid/main libpcre3 7.8-3 [215kB]
Get:40 http://localhost sid/main libxml2 2.7.6.dfsg-1 [876kB]
Get:41 http://localhost sid/main html2text 1.3.2a-14 [103kB]
Get:42 http://localhost sid/main libglib2.0-0 2.22.3-2 [999kB]
Get:43 http://localhost sid/main libcroco3 0.6.2-1 [125kB]
Get:44 http://localhost sid/main gettext 0.17-8 [2503kB]
Get:45 http://localhost sid/main intltool-debian 0.35.0+20060710.1 [30.8kB]
Get:46 http://localhost sid/main po-debconf 1.0.16 [224kB]
Get:47 http://localhost sid/main debhelper 7.4.11 [459kB]
Get:48 http://localhost sid/main libpng12-0 1.2.41-1 [178kB]
Get:49 http://localhost sid/main zlib1g-dev 1:1.2.3.4.dfsg-3 [192kB]
Get:50 http://localhost sid/main libpng12-dev 1.2.41-1 [269kB]
Get:51 http://localhost sid/main sharutils 1:4.6.3-4 [204kB]
Get:52 http://localhost sid/main libtcd0 2.2.2-1 [41.2kB]
Get:53 http://localhost sid/main libtcd-dev 2.2.2-1 [65.7kB]
Get:54 http://localhost sid/main tcd-utils 20061127-2 [63.2kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 17.5MB in 1s (11.5MB/s)
Selecting previously deselected package x11-common.
(Reading database ... 10080 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.5+1_all.deb) ...
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.6-1_amd64.deb) ...
Selecting previously deselected package x11proto-core-dev.
Unpacking x11proto-core-dev (from .../x11proto-core-dev_7.0.16-1_all.deb) ...
Setting up x11-common (1:7.5+1) ...
Selecting previously deselected package libice-dev.
(Reading database ... 10147 files and directories currently installed.)
Unpacking libice-dev (from .../libice-dev_2%3a1.0.6-1_amd64.deb) ...
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.5-1_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.3-1_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.5-2_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.3.2-1_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.3.2-1_amd64.deb) ...
Selecting previously deselected package libxau-dev.
Unpacking libxau-dev (from .../libxau-dev_1%3a1.0.5-1_amd64.deb) ...
Selecting previously deselected package libxdmcp-dev.
Unpacking libxdmcp-dev (from .../libxdmcp-dev_1%3a1.0.3-1_amd64.deb) ...
Selecting previously deselected package x11proto-input-dev.
Unpacking x11proto-input-dev (from .../x11proto-input-dev_2.0-2_all.deb) ...
Selecting previously deselected package x11proto-kb-dev.
Unpacking x11proto-kb-dev (from .../x11proto-kb-dev_1.0.4-1_all.deb) ...
Selecting previously deselected package xtrans-dev.
Unpacking xtrans-dev (from .../xtrans-dev_1.2.5-1_all.deb) ...
Selecting previously deselected package libpthread-stubs0.
Unpacking libpthread-stubs0 (from .../libpthread-stubs0_0.3-2_amd64.deb) ...
Selecting previously deselected package libpthread-stubs0-dev.
Unpacking libpthread-stubs0-dev (from .../libpthread-stubs0-dev_0.3-2_amd64.deb) ...
Selecting previously deselected package libxcb1-dev.
Unpacking libxcb1-dev (from .../libxcb1-dev_1.5-2_amd64.deb) ...
Selecting previously deselected package libx11-dev.
Unpacking libx11-dev (from .../libx11-dev_2%3a1.3.2-1_amd64.deb) ...
Selecting previously deselected package libxext6.
Unpacking libxext6 (from .../libxext6_2%3a1.1.1-2_amd64.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_2%3a1.1.1-1_amd64.deb) ...
Selecting previously deselected package libxt6.
Unpacking libxt6 (from .../libxt6_1%3a1.0.7-1_amd64.deb) ...
Selecting previously deselected package libxmu6.
Unpacking libxmu6 (from .../libxmu6_2%3a1.0.5-1_amd64.deb) ...
Selecting previously deselected package libxpm4.
Unpacking libxpm4 (from .../libxpm4_1%3a3.5.8-1_amd64.deb) ...
Selecting previously deselected package libxaw7.
Unpacking libxaw7 (from .../libxaw7_2%3a1.0.7-1_amd64.deb) ...
Selecting previously deselected package x11proto-xext-dev.
Unpacking x11proto-xext-dev (from .../x11proto-xext-dev_7.1.1-2_all.deb) ...
Selecting previously deselected package libxext-dev.
Unpacking libxext-dev (from .../libxext-dev_2%3a1.1.1-2_amd64.deb) ...
Selecting previously deselected package libsm-dev.
Unpacking libsm-dev (from .../libsm-dev_2%3a1.1.1-1_amd64.deb) ...
Selecting previously deselected package libxt-dev.
Unpacking libxt-dev (from .../libxt-dev_1%3a1.0.7-1_amd64.deb) ...
Selecting previously deselected package libxmu-headers.
Unpacking libxmu-headers (from .../libxmu-headers_2%3a1.0.5-1_all.deb) ...
Selecting previously deselected package libxmu-dev.
Unpacking libxmu-dev (from .../libxmu-dev_2%3a1.0.5-1_amd64.deb) ...
Selecting previously deselected package libxpm-dev.
Unpacking libxpm-dev (from .../libxpm-dev_1%3a3.5.8-1_amd64.deb) ...
Selecting previously deselected package libxaw7-dev.
Unpacking libxaw7-dev (from .../libxaw7-dev_2%3a1.0.7-1_amd64.deb) ...
Selecting previously deselected package bsdmainutils.
Unpacking bsdmainutils (from .../bsdmainutils_8.0.5_amd64.deb) ...
Selecting previously deselected package groff-base.
Unpacking groff-base (from .../groff-base_1.20.1-6_amd64.deb) ...
Selecting previously deselected package man-db.
Unpacking man-db (from .../man-db_2.5.6-5_amd64.deb) ...
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_5.03-5_amd64.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../archives/file_5.03-5_amd64.deb) ...
Selecting previously deselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.17-8_amd64.deb) ...
Selecting previously deselected package libpcre3.
Unpacking libpcre3 (from .../libpcre3_7.8-3_amd64.deb) ...
Selecting previously deselected package libxml2.
Unpacking libxml2 (from .../libxml2_2.7.6.dfsg-1_amd64.deb) ...
Selecting previously deselected package html2text.
Unpacking html2text (from .../html2text_1.3.2a-14_amd64.deb) ...
Selecting previously deselected package libglib2.0-0.
Unpacking libglib2.0-0 (from .../libglib2.0-0_2.22.3-2_amd64.deb) ...
Selecting previously deselected package libcroco3.
Unpacking libcroco3 (from .../libcroco3_0.6.2-1_amd64.deb) ...
Selecting previously deselected package gettext.
Unpacking gettext (from .../gettext_0.17-8_amd64.deb) ...
Selecting previously deselected package intltool-debian.
Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ...
Selecting previously deselected package po-debconf.
Unpacking po-debconf (from .../po-debconf_1.0.16_all.deb) ...
Selecting previously deselected package debhelper.
Unpacking debhelper (from .../debhelper_7.4.11_all.deb) ...
Selecting previously deselected package libpng12-0.
Unpacking libpng12-0 (from .../libpng12-0_1.2.41-1_amd64.deb) ...
Selecting previously deselected package zlib1g-dev.
Unpacking zlib1g-dev (from .../zlib1g-dev_1%3a1.2.3.4.dfsg-3_amd64.deb) ...
Selecting previously deselected package libpng12-dev.
Unpacking libpng12-dev (from .../libpng12-dev_1.2.41-1_amd64.deb) ...
Selecting previously deselected package sharutils.
Unpacking sharutils (from .../sharutils_1%3a4.6.3-4_amd64.deb) ...
Selecting previously deselected package libtcd0.
Unpacking libtcd0 (from .../libtcd0_2.2.2-1_amd64.deb) ...
Selecting previously deselected package libtcd-dev.
Unpacking libtcd-dev (from .../libtcd-dev_2.2.2-1_amd64.deb) ...
Selecting previously deselected package tcd-utils.
Unpacking tcd-utils (from .../tcd-utils_20061127-2_amd64.deb) ...
Setting up libice6 (2:1.0.6-1) ...
Setting up x11proto-core-dev (7.0.16-1) ...
Setting up libice-dev (2:1.0.6-1) ...
Setting up libxau6 (1:1.0.5-1) ...
Setting up libxdmcp6 (1:1.0.3-1) ...
Setting up libxcb1 (1.5-2) ...
Setting up libx11-data (2:1.3.2-1) ...
Setting up libx11-6 (2:1.3.2-1) ...
Setting up libxau-dev (1:1.0.5-1) ...
Setting up libxdmcp-dev (1:1.0.3-1) ...
Setting up x11proto-input-dev (2.0-2) ...
Setting up x11proto-kb-dev (1.0.4-1) ...
Setting up xtrans-dev (1.2.5-1) ...
Setting up libpthread-stubs0 (0.3-2) ...
Setting up libpthread-stubs0-dev (0.3-2) ...
Setting up libxcb1-dev (1.5-2) ...
Setting up libx11-dev (2:1.3.2-1) ...
Setting up libxext6 (2:1.1.1-2) ...
Setting up libsm6 (2:1.1.1-1) ...
Setting up libxt6 (1:1.0.7-1) ...
Setting up libxmu6 (2:1.0.5-1) ...
Setting up libxpm4 (1:3.5.8-1) ...
Setting up libxaw7 (2:1.0.7-1) ...
Setting up x11proto-xext-dev (7.1.1-2) ...
Setting up libxext-dev (2:1.1.1-2) ...
Setting up libsm-dev (2:1.1.1-1) ...
Setting up libxt-dev (1:1.0.7-1) ...
Setting up libxmu-headers (2:1.0.5-1) ...
Setting up libxmu-dev (2:1.0.5-1) ...
Setting up libxpm-dev (1:3.5.8-1) ...
Setting up libxaw7-dev (2:1.0.7-1) ...
Setting up bsdmainutils (8.0.5) ...
update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode.
Setting up groff-base (1.20.1-6) ...
Setting up man-db (2.5.6-5) ...
Building database of manual pages ...
Setting up libmagic1 (5.03-5) ...
Setting up file (5.03-5) ...
Setting up gettext-base (0.17-8) ...
Setting up libpcre3 (7.8-3) ...
Setting up libxml2 (2.7.6.dfsg-1) ...
Setting up html2text (1.3.2a-14) ...
Setting up libglib2.0-0 (2.22.3-2) ...
Setting up libcroco3 (0.6.2-1) ...
Setting up gettext (0.17-8) ...
Setting up intltool-debian (0.35.0+20060710.1) ...
Setting up po-debconf (1.0.16) ...
Setting up debhelper (7.4.11) ...
Setting up libpng12-0 (1.2.41-1) ...
Setting up zlib1g-dev (1:1.2.3.4.dfsg-3) ...
Setting up libpng12-dev (1.2.41-1) ...
Setting up sharutils (1:4.6.3-4) ...
Setting up libtcd0 (2.2.2-1) ...
Setting up libtcd-dev (2.2.2-1) ...
Setting up tcd-utils (20061127-2) ...
Removing negative dependencies: 
Checking correctness of source dependencies...
Kernel: Linux 2.6.26-2-amd64 amd64 (x86_64)
Toolchain package versions: libc6-dev_2.10.2-5 linux-libc-dev_2.6.32-4 g++-4.5_4.5-20100107-1 gcc-4.5_4.5-20100107-1 binutils_2.20-4 libstdc++6_4.5-20100107-1 libstdc++6-4.5-dev_4.5-20100107-1
┌──────────────────────────────────────────────────────────────────────────────┐
│ Build                                                                        │
└──────────────────────────────────────────────────────────────────────────────┘
Unpack source
─────────────
gpgv: keyblock resource `/home/user/.gnupg/trustedkeys.gpg': file open error
gpgv: Signature made Fri Nov 27 04:06:27 2009 CET using RSA key ID D2A913A1
gpgv: Can't check signature: public key not found
dpkg-source: warning: failed to verify signature on ./xtide_2.10-2.dsc
dpkg-source: info: extracting xtide in xtide-2.10
dpkg-source: info: unpacking xtide_2.10.orig.tar.gz
dpkg-source: info: applying xtide_2.10-2.diff.gz
dpkg-source: info: upstream files that have been modified: 
 xtide-2.10/tide.1
 xtide-2.10/xtide.1
 xtide-2.10/xttpd.8
Check disc space
────────────────
dpkg-buildpackage
─────────────────
dpkg-buildpackage: set CFLAGS to default value: -g -O2
dpkg-buildpackage: set CPPFLAGS to default value: 
dpkg-buildpackage: set LDFLAGS to default value: 
dpkg-buildpackage: set FFLAGS to default value: -g -O2
dpkg-buildpackage: set CXXFLAGS to default value: -g -O2
dpkg-buildpackage: source package xtide
dpkg-buildpackage: source version 2.10-2
dpkg-buildpackage: source changed by Peter S Galbraith <psg@debian.org>
dpkg-buildpackage: host architecture amd64
 /usr/bin/fakeroot debian/rules clean
test -f debian/rules
rm -f build
[ ! -f Makefile ] || /usr/bin/make distclean
rm -f Makefile Makefile.bak
rm -f config.log config.status config.cache
rm -f harmonics.tcd harmonics-initial.tcd
rm -fR .deps
rm -f icons.tar
dh_clean
 dpkg-source -b xtide-2.10
dpkg-source: info: using source format `1.0'
dpkg-source: info: building xtide using existing xtide_2.10.orig.tar.gz
dpkg-source: info: building xtide in xtide_2.10-2.diff.gz
dpkg-source: warning: the diff modifies the following upstream files: 
 tide.1
 xtide.1
 xttpd.8
dpkg-source: info: use the '3.0 (quilt)' format to have separate and documented changes to upstream files, see dpkg-source(1)
 debian/rules build
dpkg-source: info: building xtide in xtide_2.10-2.dsc
test -f debian/rules
./configure --with-xttpd-group=nogroup
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for g++... g++
checking for C++ compiler default output file name... a.out
checking whether the C++ compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking for style of include used by make... GNU
checking dependency style of g++... gcc3
checking for flex... no
checking for lex... no
checking for bison... no
checking for byacc... no
checking whether C++ compiler is worthy... yes
checking how to run the C++ preprocessor... g++ -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking map usability... yes
checking map presence... yes
checking for map... yes
checking for X... libraries , headers 
checking for gethostbyname... yes
checking for connect... yes
checking for remove... yes
checking for shmat... yes
checking for IceConnectionNumber in -lICE... yes
checking type of third argument to accept()... socklen_t
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
checking for zlibVersion in -lz... yes
checking png.h usability... yes
checking png.h presence... yes
checking for png.h... yes
checking for png_check_sig in -lpng... yes
checking tcd.h usability... yes
checking tcd.h presence... yes
checking for tcd.h... yes
checking for get_tide_db_header in -ltcd... yes
checking Dstr usability... no
checking Dstr presence... no
checking for Dstr... no
checking for int8_t... yes
checking for int16_t... yes
checking for int32_t... yes
checking for int64_t... yes
checking for uint8_t... yes
checking for uint16_t... yes
checking for uint32_t... yes
checking for uint64_t... yes
checking syslog.h usability... yes
checking syslog.h presence... yes
checking for syslog.h... yes
checking langinfo.h usability... yes
checking langinfo.h presence... yes
checking for langinfo.h... yes
checking dirent.h usability... yes
checking dirent.h presence... yes
checking for dirent.h... yes
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking io.h usability... no
checking io.h presence... no
checking for io.h... no
checking process.h usability... no
checking process.h presence... no
checking for process.h... no
checking if #warning works... yes
checking for either dirent or _finddata_t... yes
checking for llround... yes
checking for strftime %l format... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: executing depfiles commands
make
make[1]: Entering directory `/build/user-xtide_2.10-2-amd64-AjGhN2/xtide-2.10'
make  all-am
make[2]: Entering directory `/build/user-xtide_2.10-2-amd64-AjGhN2/xtide-2.10'
if g++ -DPACKAGE_NAME=\"XTide\" -DPACKAGE_TARNAME=\"xtide\" -DPACKAGE_VERSION=\"2.10\" -DPACKAGE_STRING=\"XTide\ 2.10\" -DPACKAGE_BUGREPORT=\"dave@flaterco.com\" -DPACKAGE=\"xtide\" -DVERSION=\"2.10\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -Dxttpd_user=\"nobody\" -Dxttpd_group=\"nogroup\" -Dacceptarg3_t=socklen_t -DHAVE_LIBZ=1 -DHAVE_LIBPNG=1 -DHAVE_LIBTCD=1 -DHAVE_SYSLOG_H=1 -DHAVE_LANGINFO_H=1 -DHAVE_DIRENT_H=1 -DHAVE_SYS_RESOURCE_H=1 -DHAVE_LLROUND=1 -DHAVE_GOOD_STRFTIME=1 -I. -I.     -g -O2 -MT Amplitude.o -MD -MP -MF ".deps/Amplitude.Tpo" -c -o Amplitude.o Amplitude.cc; \
	then mv -f ".deps/Amplitude.Tpo" ".deps/Amplitude.Po"; else rm -f ".deps/Amplitude.Tpo"; exit 1; fi
if g++ -DPACKAGE_NAME=\"XTide\" -DPACKAGE_TARNAME=\"xtide\" -DPACKAGE_VERSION=\"2.10\" -DPACKAGE_STRING=\"XTide\ 2.10\" -DPACKAGE_BUGREPORT=\"dave@flaterco.com\" -DPACKAGE=\"xtide\" -DVERSION=\"2.10\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -Dxttpd_user=\"nobody\" -Dxttpd_group=\"nogroup\" -Dacceptarg3_t=socklen_t -DHAVE_LIBZ=1 -DHAVE_LIBPNG=1 -DHAVE_LIBTCD=1 -DHAVE_SYSLOG_H=1 -DHAVE_LANGINFO_H=1 -DHAVE_DIRENT_H=1 -DHAVE_SYS_RESOURCE_H=1 -DHAVE_LLROUND=1 -DHAVE_GOOD_STRFTIME=1 -I. -I.     -g -O2 -MT Angle.o -MD -MP -MF ".deps/Angle.Tpo" -c -o Angle.o Angle.cc; \
	then mv -f ".deps/Angle.Tpo" ".deps/Angle.Po"; else rm -f ".deps/Angle.Tpo"; exit 1; fi
if g++ -DPACKAGE_NAME=\"XTide\" -DPACKAGE_TARNAME=\"xtide\" -DPACKAGE_VERSION=\"2.10\" -DPACKAGE_STRING=\"XTide\ 2.10\" -DPACKAGE_BUGREPORT=\"dave@flaterco.com\" -DPACKAGE=\"xtide\" -DVERSION=\"2.10\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -Dxttpd_user=\"nobody\" -Dxttpd_group=\"nogroup\" -Dacceptarg3_t=socklen_t -DHAVE_LIBZ=1 -DHAVE_LIBPNG=1 -DHAVE_LIBTCD=1 -DHAVE_SYSLOG_H=1 -DHAVE_LANGINFO_H=1 -DHAVE_DIRENT_H=1 -DHAVE_SYS_RESOURCE_H=1 -DHAVE_LLROUND=1 -DHAVE_GOOD_STRFTIME=1 -I. -I.     -g -O2 -MT Banner.o -MD -MP -MF ".deps/Banner.Tpo" -c -o Banner.o Banner.cc; \
	then mv -f ".deps/Banner.Tpo" ".deps/Banner.Po"; else rm -f ".deps/Banner.Tpo"; exit 1; fi
if g++ -DPACKAGE_NAME=\"XTide\" -DPACKAGE_TARNAME=\"xtide\" -DPACKAGE_VERSION=\"2.10\" -DPACKAGE_STRING=\"XTide\ 2.10\" -DPACKAGE_BUGREPORT=\"dave@flaterco.com\" -DPACKAGE=\"xtide\" -DVERSION=\"2.10\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -Dxttpd_user=\"nobody\" -Dxttpd_group=\"nogroup\" -Dacceptarg3_t=socklen_t -DHAVE_LIBZ=1 -DHAVE_LIBPNG=1 -DHAVE_LIBTCD=1 -DHAVE_SYSLOG_H=1 -DHAVE_LANGINFO_H=1 -DHAVE_DIRENT_H=1 -DHAVE_SYS_RESOURCE_H=1 -DHAVE_LLROUND=1 -DHAVE_GOOD_STRFTIME=1 -I. -I.     -g -O2 -MT Calendar.o -MD -MP -MF ".deps/Calendar.Tpo" -c -o Calendar.o Calendar.cc; \
	then mv -f ".deps/Calendar.Tpo" ".deps/Calendar.Po"; else rm -f ".deps/Calendar.Tpo"; exit 1; fi
if g++ -DPACKAGE_NAME=\"XTide\" -DPACKAGE_TARNAME=\"xtide\" -DPACKAGE_VERSION=\"2.10\" -DPACKAGE_STRING=\"XTide\ 2.10\" -DPACKAGE_BUGREPORT=\"dave@flaterco.com\" -DPACKAGE=\"xtide\" -DVERSION=\"2.10\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -Dxttpd_user=\"nobody\" -Dxttpd_group=\"nogroup\" -Dacceptarg3_t=socklen_t -DHAVE_LIBZ=1 -DHAVE_LIBPNG=1 -DHAVE_LIBTCD=1 -DHAVE_SYSLOG_H=1 -DHAVE_LANGINFO_H=1 -DHAVE_DIRENT_H=1 -DHAVE_SYS_RESOURCE_H=1 -DHAVE_LLROUND=1 -DHAVE_GOOD_STRFTIME=1 -I. -I.     -g -O2 -MT CalendarFormC.o -MD -MP -MF ".deps/CalendarFormC.Tpo" -c -o CalendarFormC.o CalendarFormC.cc; \
	then mv -f ".deps/CalendarFormC.Tpo" ".deps/CalendarFormC.Po"; else rm -f ".deps/CalendarFormC.Tpo"; exit 1; fi
if g++ -DPACKAGE_NAME=\"XTide\" -DPACKAGE_TARNAME=\"xtide\" -DPACKAGE_VERSION=\"2.10\" -DPACKAGE_STRING=\"XTide\ 2.10\" -DPACKAGE_BUGREPORT=\"dave@flaterco.com\" -DPACKAGE=\"xtide\" -DVERSION=\"2.10\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -Dxttpd_user=\"nobody\" -Dxttpd_group=\"nogroup\" -Dacceptarg3_t=socklen_t -DHAVE_LIBZ=1 -DHAVE_LIBPNG=1 -DHAVE_LIBTCD=1 -DHAVE_SYSLOG_H=1 -DHAVE_LANGINFO_H=1 -DHAVE_DIRENT_H=1 -DHAVE_SYS_RESOURCE_H=1 -DHAVE_LLROUND=1 -DHAVE_GOOD_STRFTIME=1 -I. -I.     -g -O2 -MT CalendarFormH.o -MD -MP -MF ".deps/CalendarFormH.Tpo" -c -o CalendarFormH.o CalendarFormH.cc; \
	then mv -f ".deps/CalendarFormH.Tpo" ".deps/CalendarFormH.Po"; else rm -f ".deps/CalendarFormH.Tpo"; exit 1; fi
if g++ -DPACKAGE_NAME=\"XTide\" -DPACKAGE_TARNAME=\"xtide\" -DPACKAGE_VERSION=\"2.10\" -DPACKAGE_STRING=\"XTide\ 2.10\" -DPACKAGE_BUGREPORT=\"dave@flaterco.com\" -DPACKAGE=\"xtide\" -DVERSION=\"2.10\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -Dxttpd_user=\"nobody\" -Dxttpd_group=\"nogroup\" -Dacceptarg3_t=socklen_t -DHAVE_LIBZ=1 -DHAVE_LIBPNG=1 -DHAVE_LIBTCD=1 -DHAVE_SYSLOG_H=1 -DHAVE_LANGINFO_H=1 -DHAVE_DIRENT_H=1 -DHAVE_SYS_RESOURCE_H=1 -DHAVE_LLROUND=1 -DHAVE_GOOD_STRFTIME=1 -I. -I.     -g -O2 -MT CalendarFormL.o -MD -MP -MF ".deps/CalendarFormL.Tpo" -c -o CalendarFormL.o CalendarFormL.cc; \
	then mv -f ".deps/CalendarFormL.Tpo" ".deps/CalendarFormL.Po"; else rm -f ".deps/CalendarFormL.Tpo"; exit 1; fi
if g++ -DPACKAGE_NAME=\"XTide\" -DPACKAGE_TARNAME=\"xtide\" -DPACKAGE_VERSION=\"2.10\" -DPACKAGE_STRING=\"XTide\ 2.10\" -DPACKAGE_BUGREPORT=\"dave@flaterco.com\" -DPACKAGE=\"xtide\" -DVERSION=\"2.10\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -Dxttpd_user=\"nobody\" -Dxttpd_group=\"nogroup\" -Dacceptarg3_t=socklen_t -DHAVE_LIBZ=1 -DHAVE_LIBPNG=1 -DHAVE_LIBTCD=1 -DHAVE_SYSLOG_H=1 -DHAVE_LANGINFO_H=1 -DHAVE_DIRENT_H=1 -DHAVE_SYS_RESOURCE_H=1 -DHAVE_LLROUND=1 -DHAVE_GOOD_STRFTIME=1 -I. -I.     -g -O2 -MT CalendarFormNotC.o -MD -MP -MF ".deps/CalendarFormNotC.Tpo" -c -o CalendarFormNotC.o CalendarFormNotC.cc; \
	then mv -f ".deps/CalendarFormNotC.Tpo" ".deps/CalendarFormNotC.Po"; else rm -f ".deps/CalendarFormNotC.Tpo"; exit 1; fi
if g++ -DPACKAGE_NAME=\"XTide\" -DPACKAGE_TARNAME=\"xtide\" -DPACKAGE_VERSION=\"2.10\" -DPACKAGE_STRING=\"XTide\ 2.10\" -DPACKAGE_BUGREPORT=\"dave@flaterco.com\" -DPACKAGE=\"xtide\" -DVERSION=\"2.10\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -Dxttpd_user=\"nobody\" -Dxttpd_group=\"nogroup\" -Dacceptarg3_t=socklen_t -DHAVE_LIBZ=1 -DHAVE_LIBPNG=1 -DHAVE_LIBTCD=1 -DHAVE_SYSLOG_H=1 -DHAVE_LANGINFO_H=1 -DHAVE_DIRENT_H=1 -DHAVE_SYS_RESOURCE_H=1 -DHAVE_LLROUND=1 -DHAVE_GOOD_STRFTIME=1 -I. -I.     -g -O2 -MT CalendarFormT.o -MD -MP -MF ".deps/CalendarFormT.Tpo" -c -o CalendarFormT.o CalendarFormT.cc; \
	then mv -f ".deps/CalendarFormT.Tpo" ".deps/CalendarFormT.Po"; else rm -f ".deps/CalendarFormT.Tpo"; exit 1; fi
if g++ -DPACKAGE_NAME=\"XTide\" -DPACKAGE_TARNAME=\"xtide\" -DPACKAGE_VERSION=\"2.10\" -DPACKAGE_STRING=\"XTide\ 2.10\" -DPACKAGE_BUGREPORT=\"dave@flaterco.com\" -DPACKAGE=\"xtide\" -DVERSION=\"2.10\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -Dxttpd_user=\"nobody\" -Dxttpd_group=\"nogroup\" -Dacceptarg3_t=socklen_t -DHAVE_LIBZ=1 -DHAVE_LIBPNG=1 -DHAVE_LIBTCD=1 -DHAVE_SYSLOG_H=1 -DHAVE_LANGINFO_H=1 -DHAVE_DIRENT_H=1 -DHAVE_SYS_RESOURCE_H=1 -DHAVE_LLROUND=1 -DHAVE_GOOD_STRFTIME=1 -I. -I.     -g -O2 -MT Colors.o -MD -MP -MF ".deps/Colors.Tpo" -c -o Colors.o Colors.cc; \
	then mv -f ".deps/Colors.Tpo" ".deps/Colors.Po"; else rm -f ".deps/Colors.Tpo"; exit 1; fi
if g++ -DPACKAGE_NAME=\"XTide\" -DPACKAGE_TARNAME=\"xtide\" -DPACKAGE_VERSION=\"2.10\" -DPACKAGE_STRING=\"XTide\ 2.10\" -DPACKAGE_BUGREPORT=\"dave@flaterco.com\" -DPACKAGE=\"xtide\" -DVERSION=\"2.10\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -Dxttpd_user=\"nobody\" -Dxttpd_group=\"nogroup\" -Dacceptarg3_t=socklen_t -DHAVE_LIBZ=1 -DHAVE_LIBPNG=1 -DHAVE_LIBTCD=1 -DHAVE_SYSLOG_H=1 -DHAVE_LANGINFO_H=1 -DHAVE_DIRENT_H=1 -DHAVE_SYS_RESOURCE_H=1 -DHAVE_LLROUND=1 -DHAVE_GOOD_STRFTIME=1 -I. -I.     -g -O2 -MT Constituent.o -MD -MP -MF ".deps/Constituent.Tpo" -c -o Constituent.o Constituent.cc; \
	then mv -f ".deps/Constituent.Tpo" ".deps/Constituent.Po"; else rm -f ".deps/Constituent.Tpo"; exit 1; fi
/tmp/ccbobyT9.s: Assembler messages:
/tmp/ccbobyT9.s:1106: Error: symbol `_ZZN10SafeVectorIdEixEPdS1_jE19__PRETTY_FUNCTION__' is already defined
/tmp/ccbobyT9.s:1111: Error: symbol `_ZZN10SafeVectorI5AngleEixEPS0_S2_jE19__PRETTY_FUNCTION__' is already defined
make[2]: *** [Constituent.o] Error 1
make[2]: Leaving directory `/build/user-xtide_2.10-2-amd64-AjGhN2/xtide-2.10'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/build/user-xtide_2.10-2-amd64-AjGhN2/xtide-2.10'
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
────────────────────────────────────────────────────────────────────────────────
Build finished at 20100108-1852
FAILED [dpkg-buildpackage died]
Purging /var/lib/schroot/mount/lsid64b-5b3711dc-c57f-4017-8b33-6cc8d70a750e/build/user-xtide_2.10-2-amd64-AjGhN2
────────────────────────────────────────────────────────────────────────────────
Not removing build depends: cloned chroot in use
────────────────────────────────────────────────────────────────────────────────
Finished at 20100108-1852
Build needed 00:04:24, 5216k disc space
DC-Message: Failed, but took only 277.075192. Retrying, you never know.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
sbuild (Debian sbuild) 0.59.0 (02 Aug 2009) on griffon-46.nancy.grid5000.fr
╔══════════════════════════════════════════════════════════════════════════════╗
║ xtide 2.10-2 (amd64)                                       08 Jan 2010 18:55 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Package: xtide
Version: 2.10-2
Architecture: amd64
Start Time: 20100108-1855
┌──────────────────────────────────────────────────────────────────────────────┐
│ Fetch source files                                                           │
└──────────────────────────────────────────────────────────────────────────────┘
Check APT
─────────
Checking available source versions...
Download source files with APT
──────────────────────────────
Reading package lists...
Building dependency tree...
Reading state information...
Need to get 762kB of source archives.
Get:1 http://localhost sid/main xtide 2.10-2 (dsc) [1138B]
Get:2 http://localhost sid/main xtide 2.10-2 (tar) [483kB]
Get:3 http://localhost sid/main xtide 2.10-2 (diff) [279kB]
Fetched 762kB in 0s (47.1MB/s)
Download complete and in download only mode
Check arch
──────────
** Using build dependencies supplied by package:
Build-Depends: debhelper (>= 7), libxaw7-dev, libpng12-dev, libtcd-dev, tcd-utils, sharutils
┌──────────────────────────────────────────────────────────────────────────────┐
│ Install build dependencies                                                   │
└──────────────────────────────────────────────────────────────────────────────┘
Checking for already installed source dependencies...
debhelper: missing
Using default version 7.4.11
libxaw7-dev: missing
libpng12-dev: missing
libtcd-dev: missing
tcd-utils: missing
sharutils: missing
Checking for source dependency conflicts...
Installing positive dependencies: debhelper libxaw7-dev libpng12-dev libtcd-dev tcd-utils sharutils
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  bsdmainutils file gettext gettext-base groff-base html2text intltool-debian
  libcroco3 libglib2.0-0 libice-dev libice6 libmagic1 libpcre3 libpng12-0
  libpthread-stubs0 libpthread-stubs0-dev libsm-dev libsm6 libtcd0 libx11-6
  libx11-data libx11-dev libxau-dev libxau6 libxaw7 libxcb1 libxcb1-dev
  libxdmcp-dev libxdmcp6 libxext-dev libxext6 libxml2 libxmu-dev
  libxmu-headers libxmu6 libxpm-dev libxpm4 libxt-dev libxt6 man-db po-debconf
  x11-common x11proto-core-dev x11proto-input-dev x11proto-kb-dev
  x11proto-xext-dev xtrans-dev zlib1g-dev
Suggested packages:
  wamerican wordlist whois vacation dh-make gettext-doc groff www-browser
  libmail-box-perl mailx
Recommended packages:
  curl wget lynx cvs libglib2.0-data shared-mime-info xml-core
  libmail-sendmail-perl
The following NEW packages will be installed:
  bsdmainutils debhelper file gettext gettext-base groff-base html2text
  intltool-debian libcroco3 libglib2.0-0 libice-dev libice6 libmagic1 libpcre3
  libpng12-0 libpng12-dev libpthread-stubs0 libpthread-stubs0-dev libsm-dev
  libsm6 libtcd-dev libtcd0 libx11-6 libx11-data libx11-dev libxau-dev libxau6
  libxaw7 libxaw7-dev libxcb1 libxcb1-dev libxdmcp-dev libxdmcp6 libxext-dev
  libxext6 libxml2 libxmu-dev libxmu-headers libxmu6 libxpm-dev libxpm4
  libxt-dev libxt6 man-db po-debconf sharutils tcd-utils x11-common
  x11proto-core-dev x11proto-input-dev x11proto-kb-dev x11proto-xext-dev
  xtrans-dev zlib1g-dev
0 upgraded, 54 newly installed, 0 to remove and 0 not upgraded.
Need to get 17.5MB of archives.
After this operation, 50.7MB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
  x11-common libice6 x11proto-core-dev libice-dev libxau6 libxdmcp6 libxcb1
  libx11-data libx11-6 libxau-dev libxdmcp-dev x11proto-input-dev
  x11proto-kb-dev xtrans-dev libpthread-stubs0 libpthread-stubs0-dev
  libxcb1-dev libx11-dev libxext6 libsm6 libxt6 libxmu6 libxpm4 libxaw7
  x11proto-xext-dev libxext-dev libsm-dev libxt-dev libxmu-headers libxmu-dev
  libxpm-dev libxaw7-dev bsdmainutils groff-base man-db libmagic1 file
  gettext-base libpcre3 libxml2 html2text libglib2.0-0 libcroco3 gettext
  intltool-debian po-debconf debhelper libpng12-0 zlib1g-dev libpng12-dev
  sharutils libtcd0 libtcd-dev tcd-utils
Authentication warning overridden.
Get:1 http://localhost sid/main x11-common 1:7.5+1 [279kB]
Get:2 http://localhost sid/main libice6 2:1.0.6-1 [53.8kB]
Get:3 http://localhost sid/main x11proto-core-dev 7.0.16-1 [92.2kB]
Get:4 http://localhost sid/main libice-dev 2:1.0.6-1 [66.7kB]
Get:5 http://localhost sid/main libxau6 1:1.0.5-1 [14.2kB]
Get:6 http://localhost sid/main libxdmcp6 1:1.0.3-1 [18.9kB]
Get:7 http://localhost sid/main libxcb1 1.5-2 [43.4kB]
Get:8 http://localhost sid/main libx11-data 2:1.3.2-1 [219kB]
Get:9 http://localhost sid/main libx11-6 2:1.3.2-1 [844kB]
Get:10 http://localhost sid/main libxau-dev 1:1.0.5-1 [18.3kB]
Get:11 http://localhost sid/main libxdmcp-dev 1:1.0.3-1 [22.3kB]
Get:12 http://localhost sid/main x11proto-input-dev 2.0-2 [63.1kB]
Get:13 http://localhost sid/main x11proto-kb-dev 1.0.4-1 [27.3kB]
Get:14 http://localhost sid/main xtrans-dev 1.2.5-1 [68.4kB]
Get:15 http://localhost sid/main libpthread-stubs0 0.3-2 [3172B]
Get:16 http://localhost sid/main libpthread-stubs0-dev 0.3-2 [3504B]
Get:17 http://localhost sid/main libxcb1-dev 1.5-2 [80.2kB]
Get:18 http://localhost sid/main libx11-dev 2:1.3.2-1 [3560kB]
Get:19 http://localhost sid/main libxext6 2:1.1.1-2 [43.3kB]
Get:20 http://localhost sid/main libsm6 2:1.1.1-1 [25.0kB]
Get:21 http://localhost sid/main libxt6 1:1.0.7-1 [192kB]
Get:22 http://localhost sid/main libxmu6 2:1.0.5-1 [57.6kB]
Get:23 http://localhost sid/main libxpm4 1:3.5.8-1 [44.2kB]
Get:24 http://localhost sid/main libxaw7 2:1.0.7-1 [211kB]
Get:25 http://localhost sid/main x11proto-xext-dev 7.1.1-2 [27.4kB]
Get:26 http://localhost sid/main libxext-dev 2:1.1.1-2 [108kB]
Get:27 http://localhost sid/main libsm-dev 2:1.1.1-1 [27.9kB]
Get:28 http://localhost sid/main libxt-dev 1:1.0.7-1 [519kB]
Get:29 http://localhost sid/main libxmu-headers 2:1.0.5-1 [22.7kB]
Get:30 http://localhost sid/main libxmu-dev 2:1.0.5-1 [65.3kB]
Get:31 http://localhost sid/main libxpm-dev 1:3.5.8-1 [101kB]
Get:32 http://localhost sid/main libxaw7-dev 2:1.0.7-1 [609kB]
Get:33 http://localhost sid/main bsdmainutils 8.0.5 [200kB]
Get:34 http://localhost sid/main groff-base 1.20.1-6 [1156kB]
Get:35 http://localhost sid/main man-db 2.5.6-5 [1492kB]
Get:36 http://localhost sid/main libmagic1 5.03-5 [393kB]
Get:37 http://localhost sid/main file 5.03-5 [47.6kB]
Get:38 http://localhost sid/main gettext-base 0.17-8 [133kB]
Get:39 http://localhost sid/main libpcre3 7.8-3 [215kB]
Get:40 http://localhost sid/main libxml2 2.7.6.dfsg-1 [876kB]
Get:41 http://localhost sid/main html2text 1.3.2a-14 [103kB]
Get:42 http://localhost sid/main libglib2.0-0 2.22.3-2 [999kB]
Get:43 http://localhost sid/main libcroco3 0.6.2-1 [125kB]
Get:44 http://localhost sid/main gettext 0.17-8 [2503kB]
Get:45 http://localhost sid/main intltool-debian 0.35.0+20060710.1 [30.8kB]
Get:46 http://localhost sid/main po-debconf 1.0.16 [224kB]
Get:47 http://localhost sid/main debhelper 7.4.11 [459kB]
Get:48 http://localhost sid/main libpng12-0 1.2.41-1 [178kB]
Get:49 http://localhost sid/main zlib1g-dev 1:1.2.3.4.dfsg-3 [192kB]
Get:50 http://localhost sid/main libpng12-dev 1.2.41-1 [269kB]
Get:51 http://localhost sid/main sharutils 1:4.6.3-4 [204kB]
Get:52 http://localhost sid/main libtcd0 2.2.2-1 [41.2kB]
Get:53 http://localhost sid/main libtcd-dev 2.2.2-1 [65.7kB]
Get:54 http://localhost sid/main tcd-utils 20061127-2 [63.2kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 17.5MB in 0s (59.2MB/s)
Selecting previously deselected package x11-common.
(Reading database ... 10080 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.5+1_all.deb) ...
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.6-1_amd64.deb) ...
Selecting previously deselected package x11proto-core-dev.
Unpacking x11proto-core-dev (from .../x11proto-core-dev_7.0.16-1_all.deb) ...
Setting up x11-common (1:7.5+1) ...
Selecting previously deselected package libice-dev.
(Reading database ... 10147 files and directories currently installed.)
Unpacking libice-dev (from .../libice-dev_2%3a1.0.6-1_amd64.deb) ...
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.5-1_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.3-1_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.5-2_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.3.2-1_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.3.2-1_amd64.deb) ...
Selecting previously deselected package libxau-dev.
Unpacking libxau-dev (from .../libxau-dev_1%3a1.0.5-1_amd64.deb) ...
Selecting previously deselected package libxdmcp-dev.
Unpacking libxdmcp-dev (from .../libxdmcp-dev_1%3a1.0.3-1_amd64.deb) ...
Selecting previously deselected package x11proto-input-dev.
Unpacking x11proto-input-dev (from .../x11proto-input-dev_2.0-2_all.deb) ...
Selecting previously deselected package x11proto-kb-dev.
Unpacking x11proto-kb-dev (from .../x11proto-kb-dev_1.0.4-1_all.deb) ...
Selecting previously deselected package xtrans-dev.
Unpacking xtrans-dev (from .../xtrans-dev_1.2.5-1_all.deb) ...
Selecting previously deselected package libpthread-stubs0.
Unpacking libpthread-stubs0 (from .../libpthread-stubs0_0.3-2_amd64.deb) ...
Selecting previously deselected package libpthread-stubs0-dev.
Unpacking libpthread-stubs0-dev (from .../libpthread-stubs0-dev_0.3-2_amd64.deb) ...
Selecting previously deselected package libxcb1-dev.
Unpacking libxcb1-dev (from .../libxcb1-dev_1.5-2_amd64.deb) ...
Selecting previously deselected package libx11-dev.
Unpacking libx11-dev (from .../libx11-dev_2%3a1.3.2-1_amd64.deb) ...
Selecting previously deselected package libxext6.
Unpacking libxext6 (from .../libxext6_2%3a1.1.1-2_amd64.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_2%3a1.1.1-1_amd64.deb) ...
Selecting previously deselected package libxt6.
Unpacking libxt6 (from .../libxt6_1%3a1.0.7-1_amd64.deb) ...
Selecting previously deselected package libxmu6.
Unpacking libxmu6 (from .../libxmu6_2%3a1.0.5-1_amd64.deb) ...
Selecting previously deselected package libxpm4.
Unpacking libxpm4 (from .../libxpm4_1%3a3.5.8-1_amd64.deb) ...
Selecting previously deselected package libxaw7.
Unpacking libxaw7 (from .../libxaw7_2%3a1.0.7-1_amd64.deb) ...
Selecting previously deselected package x11proto-xext-dev.
Unpacking x11proto-xext-dev (from .../x11proto-xext-dev_7.1.1-2_all.deb) ...
Selecting previously deselected package libxext-dev.
Unpacking libxext-dev (from .../libxext-dev_2%3a1.1.1-2_amd64.deb) ...
Selecting previously deselected package libsm-dev.
Unpacking libsm-dev (from .../libsm-dev_2%3a1.1.1-1_amd64.deb) ...
Selecting previously deselected package libxt-dev.
Unpacking libxt-dev (from .../libxt-dev_1%3a1.0.7-1_amd64.deb) ...
Selecting previously deselected package libxmu-headers.
Unpacking libxmu-headers (from .../libxmu-headers_2%3a1.0.5-1_all.deb) ...
Selecting previously deselected package libxmu-dev.
Unpacking libxmu-dev (from .../libxmu-dev_2%3a1.0.5-1_amd64.deb) ...
Selecting previously deselected package libxpm-dev.
Unpacking libxpm-dev (from .../libxpm-dev_1%3a3.5.8-1_amd64.deb) ...
Selecting previously deselected package libxaw7-dev.
Unpacking libxaw7-dev (from .../libxaw7-dev_2%3a1.0.7-1_amd64.deb) ...
Selecting previously deselected package bsdmainutils.
Unpacking bsdmainutils (from .../bsdmainutils_8.0.5_amd64.deb) ...
Selecting previously deselected package groff-base.
Unpacking groff-base (from .../groff-base_1.20.1-6_amd64.deb) ...
Selecting previously deselected package man-db.
Unpacking man-db (from .../man-db_2.5.6-5_amd64.deb) ...
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_5.03-5_amd64.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../archives/file_5.03-5_amd64.deb) ...
Selecting previously deselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.17-8_amd64.deb) ...
Selecting previously deselected package libpcre3.
Unpacking libpcre3 (from .../libpcre3_7.8-3_amd64.deb) ...
Selecting previously deselected package libxml2.
Unpacking libxml2 (from .../libxml2_2.7.6.dfsg-1_amd64.deb) ...
Selecting previously deselected package html2text.
Unpacking html2text (from .../html2text_1.3.2a-14_amd64.deb) ...
Selecting previously deselected package libglib2.0-0.
Unpacking libglib2.0-0 (from .../libglib2.0-0_2.22.3-2_amd64.deb) ...
Selecting previously deselected package libcroco3.
Unpacking libcroco3 (from .../libcroco3_0.6.2-1_amd64.deb) ...
Selecting previously deselected package gettext.
Unpacking gettext (from .../gettext_0.17-8_amd64.deb) ...
Selecting previously deselected package intltool-debian.
Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ...
Selecting previously deselected package po-debconf.
Unpacking po-debconf (from .../po-debconf_1.0.16_all.deb) ...
Selecting previously deselected package debhelper.
Unpacking debhelper (from .../debhelper_7.4.11_all.deb) ...
Selecting previously deselected package libpng12-0.
Unpacking libpng12-0 (from .../libpng12-0_1.2.41-1_amd64.deb) ...
Selecting previously deselected package zlib1g-dev.
Unpacking zlib1g-dev (from .../zlib1g-dev_1%3a1.2.3.4.dfsg-3_amd64.deb) ...
Selecting previously deselected package libpng12-dev.
Unpacking libpng12-dev (from .../libpng12-dev_1.2.41-1_amd64.deb) ...
Selecting previously deselected package sharutils.
Unpacking sharutils (from .../sharutils_1%3a4.6.3-4_amd64.deb) ...
Selecting previously deselected package libtcd0.
Unpacking libtcd0 (from .../libtcd0_2.2.2-1_amd64.deb) ...
Selecting previously deselected package libtcd-dev.
Unpacking libtcd-dev (from .../libtcd-dev_2.2.2-1_amd64.deb) ...
Selecting previously deselected package tcd-utils.
Unpacking tcd-utils (from .../tcd-utils_20061127-2_amd64.deb) ...
Setting up libice6 (2:1.0.6-1) ...
Setting up x11proto-core-dev (7.0.16-1) ...
Setting up libice-dev (2:1.0.6-1) ...
Setting up libxau6 (1:1.0.5-1) ...
Setting up libxdmcp6 (1:1.0.3-1) ...
Setting up libxcb1 (1.5-2) ...
Setting up libx11-data (2:1.3.2-1) ...
Setting up libx11-6 (2:1.3.2-1) ...
Setting up libxau-dev (1:1.0.5-1) ...
Setting up libxdmcp-dev (1:1.0.3-1) ...
Setting up x11proto-input-dev (2.0-2) ...
Setting up x11proto-kb-dev (1.0.4-1) ...
Setting up xtrans-dev (1.2.5-1) ...
Setting up libpthread-stubs0 (0.3-2) ...
Setting up libpthread-stubs0-dev (0.3-2) ...
Setting up libxcb1-dev (1.5-2) ...
Setting up libx11-dev (2:1.3.2-1) ...
Setting up libxext6 (2:1.1.1-2) ...
Setting up libsm6 (2:1.1.1-1) ...
Setting up libxt6 (1:1.0.7-1) ...
Setting up libxmu6 (2:1.0.5-1) ...
Setting up libxpm4 (1:3.5.8-1) ...
Setting up libxaw7 (2:1.0.7-1) ...
Setting up x11proto-xext-dev (7.1.1-2) ...
Setting up libxext-dev (2:1.1.1-2) ...
Setting up libsm-dev (2:1.1.1-1) ...
Setting up libxt-dev (1:1.0.7-1) ...
Setting up libxmu-headers (2:1.0.5-1) ...
Setting up libxmu-dev (2:1.0.5-1) ...
Setting up libxpm-dev (1:3.5.8-1) ...
Setting up libxaw7-dev (2:1.0.7-1) ...
Setting up bsdmainutils (8.0.5) ...
update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode.
Setting up groff-base (1.20.1-6) ...
Setting up man-db (2.5.6-5) ...
Building database of manual pages ...
Setting up libmagic1 (5.03-5) ...
Setting up file (5.03-5) ...
Setting up gettext-base (0.17-8) ...
Setting up libpcre3 (7.8-3) ...
Setting up libxml2 (2.7.6.dfsg-1) ...
Setting up html2text (1.3.2a-14) ...
Setting up libglib2.0-0 (2.22.3-2) ...
Setting up libcroco3 (0.6.2-1) ...
Setting up gettext (0.17-8) ...
Setting up intltool-debian (0.35.0+20060710.1) ...
Setting up po-debconf (1.0.16) ...
Setting up debhelper (7.4.11) ...
Setting up libpng12-0 (1.2.41-1) ...
Setting up zlib1g-dev (1:1.2.3.4.dfsg-3) ...
Setting up libpng12-dev (1.2.41-1) ...
Setting up sharutils (1:4.6.3-4) ...
Setting up libtcd0 (2.2.2-1) ...
Setting up libtcd-dev (2.2.2-1) ...
Setting up tcd-utils (20061127-2) ...
Removing negative dependencies: 
Checking correctness of source dependencies...
Kernel: Linux 2.6.26-2-amd64 amd64 (x86_64)
Toolchain package versions: libc6-dev_2.10.2-5 linux-libc-dev_2.6.32-4 g++-4.5_4.5-20100107-1 gcc-4.5_4.5-20100107-1 binutils_2.20-4 libstdc++6_4.5-20100107-1 libstdc++6-4.5-dev_4.5-20100107-1
┌──────────────────────────────────────────────────────────────────────────────┐
│ Build                                                                        │
└──────────────────────────────────────────────────────────────────────────────┘
Unpack source
─────────────
gpgv: keyblock resource `/home/user/.gnupg/trustedkeys.gpg': file open error
gpgv: Signature made Fri Nov 27 04:06:27 2009 CET using RSA key ID D2A913A1
gpgv: Can't check signature: public key not found
dpkg-source: warning: failed to verify signature on ./xtide_2.10-2.dsc
dpkg-source: info: extracting xtide in xtide-2.10
dpkg-source: info: unpacking xtide_2.10.orig.tar.gz
dpkg-source: info: applying xtide_2.10-2.diff.gz
dpkg-source: info: upstream files that have been modified: 
 xtide-2.10/tide.1
 xtide-2.10/xtide.1
 xtide-2.10/xttpd.8
Check disc space
────────────────
dpkg-buildpackage
─────────────────
dpkg-buildpackage: set CFLAGS to default value: -g -O2
dpkg-buildpackage: set CPPFLAGS to default value: 
dpkg-buildpackage: set LDFLAGS to default value: 
dpkg-buildpackage: set FFLAGS to default value: -g -O2
dpkg-buildpackage: set CXXFLAGS to default value: -g -O2
dpkg-buildpackage: source package xtide
dpkg-buildpackage: source version 2.10-2
dpkg-buildpackage: source changed by Peter S Galbraith <psg@debian.org>
dpkg-buildpackage: host architecture amd64
 /usr/bin/fakeroot debian/rules clean
test -f debian/rules
rm -f build
[ ! -f Makefile ] || /usr/bin/make distclean
rm -f Makefile Makefile.bak
rm -f config.log config.status config.cache
rm -f harmonics.tcd harmonics-initial.tcd
rm -fR .deps
rm -f icons.tar
dh_clean
 dpkg-source -b xtide-2.10
dpkg-source: info: using source format `1.0'
dpkg-source: info: building xtide using existing xtide_2.10.orig.tar.gz
dpkg-source: info: building xtide in xtide_2.10-2.diff.gz
dpkg-source: warning: the diff modifies the following upstream files: 
 tide.1
 xtide.1
 xttpd.8
dpkg-source: info: use the '3.0 (quilt)' format to have separate and documented changes to upstream files, see dpkg-source(1)
dpkg-source: info: building xtide in xtide_2.10-2.dsc
 debian/rules build
test -f debian/rules
./configure --with-xttpd-group=nogroup
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for g++... g++
checking for C++ compiler default output file name... a.out
checking whether the C++ compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking for style of include used by make... GNU
checking dependency style of g++... gcc3
checking for flex... no
checking for lex... no
checking for bison... no
checking for byacc... no
checking whether C++ compiler is worthy... yes
checking how to run the C++ preprocessor... g++ -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking map usability... yes
checking map presence... yes
checking for map... yes
checking for X... libraries , headers 
checking for gethostbyname... yes
checking for connect... yes
checking for remove... yes
checking for shmat... yes
checking for IceConnectionNumber in -lICE... yes
checking type of third argument to accept()... socklen_t
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
checking for zlibVersion in -lz... yes
checking png.h usability... yes
checking png.h presence... yes
checking for png.h... yes
checking for png_check_sig in -lpng... yes
checking tcd.h usability... yes
checking tcd.h presence... yes
checking for tcd.h... yes
checking for get_tide_db_header in -ltcd... yes
checking Dstr usability... no
checking Dstr presence... no
checking for Dstr... no
checking for int8_t... yes
checking for int16_t... yes
checking for int32_t... yes
checking for int64_t... yes
checking for uint8_t... yes
checking for uint16_t... yes
checking for uint32_t... yes
checking for uint64_t... yes
checking syslog.h usability... yes
checking syslog.h presence... yes
checking for syslog.h... yes
checking langinfo.h usability... yes
checking langinfo.h presence... yes
checking for langinfo.h... yes
checking dirent.h usability... yes
checking dirent.h presence... yes
checking for dirent.h... yes
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking io.h usability... no
checking io.h presence... no
checking for io.h... no
checking process.h usability... no
checking process.h presence... no
checking for process.h... no
checking if #warning works... yes
checking for either dirent or _finddata_t... yes
checking for llround... yes
checking for strftime %l format... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: executing depfiles commands
make
make[1]: Entering directory `/build/user-xtide_2.10-2-amd64-WpuUdb/xtide-2.10'
make  all-am
make[2]: Entering directory `/build/user-xtide_2.10-2-amd64-WpuUdb/xtide-2.10'
if g++ -DPACKAGE_NAME=\"XTide\" -DPACKAGE_TARNAME=\"xtide\" -DPACKAGE_VERSION=\"2.10\" -DPACKAGE_STRING=\"XTide\ 2.10\" -DPACKAGE_BUGREPORT=\"dave@flaterco.com\" -DPACKAGE=\"xtide\" -DVERSION=\"2.10\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -Dxttpd_user=\"nobody\" -Dxttpd_group=\"nogroup\" -Dacceptarg3_t=socklen_t -DHAVE_LIBZ=1 -DHAVE_LIBPNG=1 -DHAVE_LIBTCD=1 -DHAVE_SYSLOG_H=1 -DHAVE_LANGINFO_H=1 -DHAVE_DIRENT_H=1 -DHAVE_SYS_RESOURCE_H=1 -DHAVE_LLROUND=1 -DHAVE_GOOD_STRFTIME=1 -I. -I.     -g -O2 -MT Amplitude.o -MD -MP -MF ".deps/Amplitude.Tpo" -c -o Amplitude.o Amplitude.cc; \
	then mv -f ".deps/Amplitude.Tpo" ".deps/Amplitude.Po"; else rm -f ".deps/Amplitude.Tpo"; exit 1; fi
if g++ -DPACKAGE_NAME=\"XTide\" -DPACKAGE_TARNAME=\"xtide\" -DPACKAGE_VERSION=\"2.10\" -DPACKAGE_STRING=\"XTide\ 2.10\" -DPACKAGE_BUGREPORT=\"dave@flaterco.com\" -DPACKAGE=\"xtide\" -DVERSION=\"2.10\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -Dxttpd_user=\"nobody\" -Dxttpd_group=\"nogroup\" -Dacceptarg3_t=socklen_t -DHAVE_LIBZ=1 -DHAVE_LIBPNG=1 -DHAVE_LIBTCD=1 -DHAVE_SYSLOG_H=1 -DHAVE_LANGINFO_H=1 -DHAVE_DIRENT_H=1 -DHAVE_SYS_RESOURCE_H=1 -DHAVE_LLROUND=1 -DHAVE_GOOD_STRFTIME=1 -I. -I.     -g -O2 -MT Angle.o -MD -MP -MF ".deps/Angle.Tpo" -c -o Angle.o Angle.cc; \
	then mv -f ".deps/Angle.Tpo" ".deps/Angle.Po"; else rm -f ".deps/Angle.Tpo"; exit 1; fi
if g++ -DPACKAGE_NAME=\"XTide\" -DPACKAGE_TARNAME=\"xtide\" -DPACKAGE_VERSION=\"2.10\" -DPACKAGE_STRING=\"XTide\ 2.10\" -DPACKAGE_BUGREPORT=\"dave@flaterco.com\" -DPACKAGE=\"xtide\" -DVERSION=\"2.10\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -Dxttpd_user=\"nobody\" -Dxttpd_group=\"nogroup\" -Dacceptarg3_t=socklen_t -DHAVE_LIBZ=1 -DHAVE_LIBPNG=1 -DHAVE_LIBTCD=1 -DHAVE_SYSLOG_H=1 -DHAVE_LANGINFO_H=1 -DHAVE_DIRENT_H=1 -DHAVE_SYS_RESOURCE_H=1 -DHAVE_LLROUND=1 -DHAVE_GOOD_STRFTIME=1 -I. -I.     -g -O2 -MT Banner.o -MD -MP -MF ".deps/Banner.Tpo" -c -o Banner.o Banner.cc; \
	then mv -f ".deps/Banner.Tpo" ".deps/Banner.Po"; else rm -f ".deps/Banner.Tpo"; exit 1; fi
if g++ -DPACKAGE_NAME=\"XTide\" -DPACKAGE_TARNAME=\"xtide\" -DPACKAGE_VERSION=\"2.10\" -DPACKAGE_STRING=\"XTide\ 2.10\" -DPACKAGE_BUGREPORT=\"dave@flaterco.com\" -DPACKAGE=\"xtide\" -DVERSION=\"2.10\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -Dxttpd_user=\"nobody\" -Dxttpd_group=\"nogroup\" -Dacceptarg3_t=socklen_t -DHAVE_LIBZ=1 -DHAVE_LIBPNG=1 -DHAVE_LIBTCD=1 -DHAVE_SYSLOG_H=1 -DHAVE_LANGINFO_H=1 -DHAVE_DIRENT_H=1 -DHAVE_SYS_RESOURCE_H=1 -DHAVE_LLROUND=1 -DHAVE_GOOD_STRFTIME=1 -I. -I.     -g -O2 -MT Calendar.o -MD -MP -MF ".deps/Calendar.Tpo" -c -o Calendar.o Calendar.cc; \
	then mv -f ".deps/Calendar.Tpo" ".deps/Calendar.Po"; else rm -f ".deps/Calendar.Tpo"; exit 1; fi
if g++ -DPACKAGE_NAME=\"XTide\" -DPACKAGE_TARNAME=\"xtide\" -DPACKAGE_VERSION=\"2.10\" -DPACKAGE_STRING=\"XTide\ 2.10\" -DPACKAGE_BUGREPORT=\"dave@flaterco.com\" -DPACKAGE=\"xtide\" -DVERSION=\"2.10\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -Dxttpd_user=\"nobody\" -Dxttpd_group=\"nogroup\" -Dacceptarg3_t=socklen_t -DHAVE_LIBZ=1 -DHAVE_LIBPNG=1 -DHAVE_LIBTCD=1 -DHAVE_SYSLOG_H=1 -DHAVE_LANGINFO_H=1 -DHAVE_DIRENT_H=1 -DHAVE_SYS_RESOURCE_H=1 -DHAVE_LLROUND=1 -DHAVE_GOOD_STRFTIME=1 -I. -I.     -g -O2 -MT CalendarFormC.o -MD -MP -MF ".deps/CalendarFormC.Tpo" -c -o CalendarFormC.o CalendarFormC.cc; \
	then mv -f ".deps/CalendarFormC.Tpo" ".deps/CalendarFormC.Po"; else rm -f ".deps/CalendarFormC.Tpo"; exit 1; fi
if g++ -DPACKAGE_NAME=\"XTide\" -DPACKAGE_TARNAME=\"xtide\" -DPACKAGE_VERSION=\"2.10\" -DPACKAGE_STRING=\"XTide\ 2.10\" -DPACKAGE_BUGREPORT=\"dave@flaterco.com\" -DPACKAGE=\"xtide\" -DVERSION=\"2.10\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -Dxttpd_user=\"nobody\" -Dxttpd_group=\"nogroup\" -Dacceptarg3_t=socklen_t -DHAVE_LIBZ=1 -DHAVE_LIBPNG=1 -DHAVE_LIBTCD=1 -DHAVE_SYSLOG_H=1 -DHAVE_LANGINFO_H=1 -DHAVE_DIRENT_H=1 -DHAVE_SYS_RESOURCE_H=1 -DHAVE_LLROUND=1 -DHAVE_GOOD_STRFTIME=1 -I. -I.     -g -O2 -MT CalendarFormH.o -MD -MP -MF ".deps/CalendarFormH.Tpo" -c -o CalendarFormH.o CalendarFormH.cc; \
	then mv -f ".deps/CalendarFormH.Tpo" ".deps/CalendarFormH.Po"; else rm -f ".deps/CalendarFormH.Tpo"; exit 1; fi
if g++ -DPACKAGE_NAME=\"XTide\" -DPACKAGE_TARNAME=\"xtide\" -DPACKAGE_VERSION=\"2.10\" -DPACKAGE_STRING=\"XTide\ 2.10\" -DPACKAGE_BUGREPORT=\"dave@flaterco.com\" -DPACKAGE=\"xtide\" -DVERSION=\"2.10\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -Dxttpd_user=\"nobody\" -Dxttpd_group=\"nogroup\" -Dacceptarg3_t=socklen_t -DHAVE_LIBZ=1 -DHAVE_LIBPNG=1 -DHAVE_LIBTCD=1 -DHAVE_SYSLOG_H=1 -DHAVE_LANGINFO_H=1 -DHAVE_DIRENT_H=1 -DHAVE_SYS_RESOURCE_H=1 -DHAVE_LLROUND=1 -DHAVE_GOOD_STRFTIME=1 -I. -I.     -g -O2 -MT CalendarFormL.o -MD -MP -MF ".deps/CalendarFormL.Tpo" -c -o CalendarFormL.o CalendarFormL.cc; \
	then mv -f ".deps/CalendarFormL.Tpo" ".deps/CalendarFormL.Po"; else rm -f ".deps/CalendarFormL.Tpo"; exit 1; fi
if g++ -DPACKAGE_NAME=\"XTide\" -DPACKAGE_TARNAME=\"xtide\" -DPACKAGE_VERSION=\"2.10\" -DPACKAGE_STRING=\"XTide\ 2.10\" -DPACKAGE_BUGREPORT=\"dave@flaterco.com\" -DPACKAGE=\"xtide\" -DVERSION=\"2.10\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -Dxttpd_user=\"nobody\" -Dxttpd_group=\"nogroup\" -Dacceptarg3_t=socklen_t -DHAVE_LIBZ=1 -DHAVE_LIBPNG=1 -DHAVE_LIBTCD=1 -DHAVE_SYSLOG_H=1 -DHAVE_LANGINFO_H=1 -DHAVE_DIRENT_H=1 -DHAVE_SYS_RESOURCE_H=1 -DHAVE_LLROUND=1 -DHAVE_GOOD_STRFTIME=1 -I. -I.     -g -O2 -MT CalendarFormNotC.o -MD -MP -MF ".deps/CalendarFormNotC.Tpo" -c -o CalendarFormNotC.o CalendarFormNotC.cc; \
	then mv -f ".deps/CalendarFormNotC.Tpo" ".deps/CalendarFormNotC.Po"; else rm -f ".deps/CalendarFormNotC.Tpo"; exit 1; fi
if g++ -DPACKAGE_NAME=\"XTide\" -DPACKAGE_TARNAME=\"xtide\" -DPACKAGE_VERSION=\"2.10\" -DPACKAGE_STRING=\"XTide\ 2.10\" -DPACKAGE_BUGREPORT=\"dave@flaterco.com\" -DPACKAGE=\"xtide\" -DVERSION=\"2.10\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -Dxttpd_user=\"nobody\" -Dxttpd_group=\"nogroup\" -Dacceptarg3_t=socklen_t -DHAVE_LIBZ=1 -DHAVE_LIBPNG=1 -DHAVE_LIBTCD=1 -DHAVE_SYSLOG_H=1 -DHAVE_LANGINFO_H=1 -DHAVE_DIRENT_H=1 -DHAVE_SYS_RESOURCE_H=1 -DHAVE_LLROUND=1 -DHAVE_GOOD_STRFTIME=1 -I. -I.     -g -O2 -MT CalendarFormT.o -MD -MP -MF ".deps/CalendarFormT.Tpo" -c -o CalendarFormT.o CalendarFormT.cc; \
	then mv -f ".deps/CalendarFormT.Tpo" ".deps/CalendarFormT.Po"; else rm -f ".deps/CalendarFormT.Tpo"; exit 1; fi
if g++ -DPACKAGE_NAME=\"XTide\" -DPACKAGE_TARNAME=\"xtide\" -DPACKAGE_VERSION=\"2.10\" -DPACKAGE_STRING=\"XTide\ 2.10\" -DPACKAGE_BUGREPORT=\"dave@flaterco.com\" -DPACKAGE=\"xtide\" -DVERSION=\"2.10\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -Dxttpd_user=\"nobody\" -Dxttpd_group=\"nogroup\" -Dacceptarg3_t=socklen_t -DHAVE_LIBZ=1 -DHAVE_LIBPNG=1 -DHAVE_LIBTCD=1 -DHAVE_SYSLOG_H=1 -DHAVE_LANGINFO_H=1 -DHAVE_DIRENT_H=1 -DHAVE_SYS_RESOURCE_H=1 -DHAVE_LLROUND=1 -DHAVE_GOOD_STRFTIME=1 -I. -I.     -g -O2 -MT Colors.o -MD -MP -MF ".deps/Colors.Tpo" -c -o Colors.o Colors.cc; \
	then mv -f ".deps/Colors.Tpo" ".deps/Colors.Po"; else rm -f ".deps/Colors.Tpo"; exit 1; fi
if g++ -DPACKAGE_NAME=\"XTide\" -DPACKAGE_TARNAME=\"xtide\" -DPACKAGE_VERSION=\"2.10\" -DPACKAGE_STRING=\"XTide\ 2.10\" -DPACKAGE_BUGREPORT=\"dave@flaterco.com\" -DPACKAGE=\"xtide\" -DVERSION=\"2.10\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -Dxttpd_user=\"nobody\" -Dxttpd_group=\"nogroup\" -Dacceptarg3_t=socklen_t -DHAVE_LIBZ=1 -DHAVE_LIBPNG=1 -DHAVE_LIBTCD=1 -DHAVE_SYSLOG_H=1 -DHAVE_LANGINFO_H=1 -DHAVE_DIRENT_H=1 -DHAVE_SYS_RESOURCE_H=1 -DHAVE_LLROUND=1 -DHAVE_GOOD_STRFTIME=1 -I. -I.     -g -O2 -MT Constituent.o -MD -MP -MF ".deps/Constituent.Tpo" -c -o Constituent.o Constituent.cc; \
	then mv -f ".deps/Constituent.Tpo" ".deps/Constituent.Po"; else rm -f ".deps/Constituent.Tpo"; exit 1; fi
/tmp/cc9m7AXf.s: Assembler messages:
/tmp/cc9m7AXf.s:1106: Error: symbol `_ZZN10SafeVectorIdEixEPdS1_jE19__PRETTY_FUNCTION__' is already defined
/tmp/cc9m7AXf.s:1111: Error: symbol `_ZZN10SafeVectorI5AngleEixEPS0_S2_jE19__PRETTY_FUNCTION__' is already defined
make[2]: *** [Constituent.o] Error 1
make[2]: Leaving directory `/build/user-xtide_2.10-2-amd64-WpuUdb/xtide-2.10'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/build/user-xtide_2.10-2-amd64-WpuUdb/xtide-2.10'
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
────────────────────────────────────────────────────────────────────────────────
Build finished at 20100108-1855
FAILED [dpkg-buildpackage died]
Purging /var/lib/schroot/mount/lsid64b-5d77939b-fcda-4579-a805-0d138a6087b2/build/user-xtide_2.10-2-amd64-WpuUdb
────────────────────────────────────────────────────────────────────────────────
Not removing build depends: cloned chroot in use
────────────────────────────────────────────────────────────────────────────────
Finished at 20100108-1855
Build needed 00:00:23, 5216k disc space
DC-Build-Status: Failed 479.947187s
### Content of /var/log/daemon.log ###
Jan  8 15:35:44 griffon-46 approx: Concurrent download of debian/pool/main/m/mp3diags/mp3diags_1.0.01.046-1.dsc is taking too long 
Jan  8 15:35:44 griffon-46 approx: Concurrent download of debian/pool/main/d/dpm-postgres/dpm-postgres_1.7.4.1.orig.tar.gz is taking too long 
Jan  8 15:35:55 griffon-46 approx: Concurrent download of debian/pool/main/o/openjdk-6/openjdk-6-jdk_6b17~pre3-1_amd64.deb is taking too long 
Jan  8 15:36:06 griffon-46 approx: Concurrent download of debian/pool/main/j/jabberbot/jabberbot_0.8-1.diff.gz is taking too long 
Jan  8 15:36:09 griffon-46 approx: Concurrent download of debian/pool/main/m/mp3diags/mp3diags_1.0.01.046.orig.tar.gz is taking too long 
Jan  8 15:36:13 griffon-46 approx: Concurrent download of debian/pool/main/b/beanstalkd/beanstalkd_1.4.3-1.dsc is taking too long 
Jan  8 15:36:13 griffon-46 approx: Concurrent download of debian/pool/main/libu/libuniversal-isa-perl/libuniversal-isa-perl_1.02-1_all.deb is taking too long 
Jan  8 15:36:20 griffon-46 approx: Concurrent download of debian/pool/main/o/openjdk-6/openjdk-6-jdk_6b17~pre3-1_amd64.deb is taking too long 
Jan  8 15:36:29 griffon-46 approx: Concurrent download of debian/pool/main/libu/libuniversal-can-perl/libuniversal-can-perl_1.15-1_all.deb is taking too long 
Jan  8 15:36:31 griffon-46 approx: Concurrent download of debian/pool/main/b/beanstalkd/beanstalkd_1.4.3.orig.tar.gz is taking too long 
Jan  8 15:36:53 griffon-46 approx: Concurrent download of debian/pool/main/b/beanstalkd/beanstalkd_1.4.3-1.debian.tar.gz is taking too long 
Jan  8 15:36:57 griffon-46 approx: Concurrent download of debian/pool/main/libt/libtest-mockobject-perl/libtest-mockobject-perl_1.09-1_all.deb is taking too long 
Jan  8 15:37:01 griffon-46 approx: Concurrent download of debian/pool/main/m/mp3diags/mp3diags_1.0.01.046-1.diff.gz is taking too long 
Jan  8 15:37:27 griffon-46 approx: Concurrent download of debian/pool/main/libt/libtie-toobject-perl/libtie-toobject-perl_0.03-2_all.deb is taking too long 
Jan  8 15:37:31 griffon-46 approx: Concurrent download of debian/pool/main/o/openjdk-6/openjdk-6-jdk_6b17~pre3-1_amd64.deb is taking too long 
Jan  8 15:37:31 griffon-46 approx: Concurrent download of debian/pool/main/x/xdg-utils/xdg-utils_1.0.2-6.1_all.deb is taking too long 
Jan  8 15:37:40 griffon-46 approx: Concurrent download of debian/pool/main/libm/libmng/libmng-dev_1.0.9-1_amd64.deb is taking too long 
Jan  8 15:37:42 griffon-46 approx: Concurrent download of debian/pool/main/k/kde4libs/kdelibs5_4.3.4-1_amd64.deb is taking too long 
Jan  8 15:37:44 griffon-46 approx: Concurrent download of debian/pool/main/q/qt4-x11/qt4-qmake_4.5.3-4_amd64.deb is taking too long 
Jan  8 15:37:44 griffon-46 approx: Concurrent download of debian/pool/main/libd/libdata-visitor-perl/libdata-visitor-perl_0.26-1_all.deb is taking too long 
Jan  8 15:37:54 griffon-46 approx: Nethttpd: Broken pipe 
Jan  8 15:37:55 griffon-46 approx: Concurrent download of debian/pool/main/q/qt4-x11/libqt4-dev_4.5.3-4_amd64.deb is taking too long 
Jan  8 15:38:05 griffon-46 approx: Nethttpd: Broken pipe 
Jan  8 15:38:44 griffon-46 approx: Nethttpd: Broken pipe 
Jan  8 15:39:33 griffon-46 approx: Concurrent download of debian/pool/main/f/ffmpeg/libavcodec52_0.5+svn20090706-2+b1_amd64.deb is taking too long 
Jan  8 15:40:15 griffon-46 approx: Concurrent download of debian/pool/main/g/gts/libgts-0.7-5_0.7.6+darcs090508-1_amd64.deb is taking too long 
Jan  8 15:40:19 griffon-46 approx: Concurrent download of debian/pool/main/libe/libevent/libevent-dev_1.4.13-stable-1_amd64.deb is taking too long 
Jan  8 15:40:20 griffon-46 approx: Concurrent download of debian/pool/main/g/gcj-4.4/gcj-4.4-jdk_4.4.2-7_amd64.deb is taking too long 
Jan  8 15:40:22 griffon-46 approx: Concurrent download of debian/pool/main/l/lxml/python-lxml_2.2.4-1_amd64.deb is taking too long 
Jan  8 15:40:30 griffon-46 approx: Nethttpd: Broken pipe 
Jan  8 15:42:39 griffon-46 approx: Nethttpd: Broken pipe 
Jan  8 15:42:42 griffon-46 approx: Nethttpd: Broken pipe 
### End of content of /var/log/daemon.log ###
DC-Time-Estimation: 479.947187 versus expected 153 (r/m: 2.13690971895425 ; m: 153.0)
DC-Build-Network: USED. See /tmp/rulesafter.wofCDU !
************************************************************
# Generated by iptables-save v1.4.2 on Fri Jan  8 18:55:47 2010
*filter
:INPUT ACCEPT [2842429:12497660241]
:FORWARD ACCEPT [0:0]
:OUTPUT DROP [0:0]
:LD - [0:0]
[820915:9633716264] -A OUTPUT -o lo -j ACCEPT 
[0:0] -A OUTPUT -d 129.88.0.0/16 -j ACCEPT 
[0:0] -A OUTPUT -d 10.0.0.0/8 -j ACCEPT 
[0:0] -A OUTPUT -d 192.168.133.0/24 -j ACCEPT 
[0:0] -A OUTPUT -d 192.168.159.0/24 -j ACCEPT 
[0:0] -A OUTPUT -d 192.168.160.0/24 -j ACCEPT 
[0:0] -A OUTPUT -d 10.69.0.0/17 -j ACCEPT 
[532485:33246606] -A OUTPUT -d 172.28.52.0/22 -j ACCEPT 
[0:0] -A OUTPUT -d 172.24.0.0/16 -j ACCEPT 
[0:0] -A OUTPUT -d 131.254.202.0/23 -j ACCEPT 
[0:0] -A OUTPUT -d 138.96.20.0/22 -j ACCEPT 
[0:0] -A OUTPUT -d 192.168.22.0/24 -j ACCEPT 
[136822:88319674] -A OUTPUT -d 172.16.0.0/16 -j ACCEPT 
[131:21939] -A OUTPUT -j LD 
[131:21939] -A LD -j LOG 
[131:21939] -A LD -j REJECT --reject-with icmp-port-unreachable 
COMMIT
# Completed on Fri Jan  8 18:55:47 2010
************************************************************
--- /tmp/rulesbefore.PVccUE	2010-01-08 18:47:47.687224536 +0100
+++ /tmp/rulesafter.wofCDU	2010-01-08 18:55:47.647725321 +0100
@@ -1,24 +1,24 @@
-# Generated by iptables-save v1.4.2 on Fri Jan  8 18:47:47 2010
+# Generated by iptables-save v1.4.2 on Fri Jan  8 18:55:47 2010
 *filter
-:INPUT ACCEPT [2754787:11823154942]
+:INPUT ACCEPT [2842429:12497660241]
 :FORWARD ACCEPT [0:0]
 :OUTPUT DROP [0:0]
 :LD - [0:0]
-[774311:9012275781] -A OUTPUT -o lo -j ACCEPT 
+[820915:9633716264] -A OUTPUT -o lo -j ACCEPT 
 [0:0] -A OUTPUT -d 129.88.0.0/16 -j ACCEPT 
 [0:0] -A OUTPUT -d 10.0.0.0/8 -j ACCEPT 
 [0:0] -A OUTPUT -d 192.168.133.0/24 -j ACCEPT 
 [0:0] -A OUTPUT -d 192.168.159.0/24 -j ACCEPT 
 [0:0] -A OUTPUT -d 192.168.160.0/24 -j ACCEPT 
 [0:0] -A OUTPUT -d 10.69.0.0/17 -j ACCEPT 
-[522588:32297132] -A OUTPUT -d 172.28.52.0/22 -j ACCEPT 
+[532485:33246606] -A OUTPUT -d 172.28.52.0/22 -j ACCEPT 
 [0:0] -A OUTPUT -d 172.24.0.0/16 -j ACCEPT 
 [0:0] -A OUTPUT -d 131.254.202.0/23 -j ACCEPT 
 [0:0] -A OUTPUT -d 138.96.20.0/22 -j ACCEPT 
 [0:0] -A OUTPUT -d 192.168.22.0/24 -j ACCEPT 
-[134619:85503324] -A OUTPUT -d 172.16.0.0/16 -j ACCEPT 
+[136822:88319674] -A OUTPUT -d 172.16.0.0/16 -j ACCEPT 
 [131:21939] -A OUTPUT -j LD 
 [131:21939] -A LD -j LOG 
 [131:21939] -A LD -j REJECT --reject-with icmp-port-unreachable 
 COMMIT
-# Completed on Fri Jan  8 18:47:47 2010
+# Completed on Fri Jan  8 18:55:47 2010
************************************************************
[ 9929.575939] CPU    6: hi:    0, btch:   1 usd:   0
[ 9929.575939] CPU    7: hi:    0, btch:   1 usd:   0
[ 9929.575939] Node 0 DMA32 per-cpu:
[ 9929.575939] CPU    0: hi:  186, btch:  31 usd: 126
[ 9929.575939] CPU    1: hi:  186, btch:  31 usd: 153
[ 9929.575939] CPU    2: hi:  186, btch:  31 usd:  89
[ 9929.575939] CPU    3: hi:  186, btch:  31 usd:  34
[ 9929.575939] CPU    4: hi:  186, btch:  31 usd:   0
[ 9929.575939] CPU    5: hi:  186, btch:  31 usd: 182
[ 9929.575939] CPU    6: hi:  186, btch:  31 usd:   0
[ 9929.575939] CPU    7: hi:  186, btch:  31 usd:   0
[ 9929.575939] Node 0 Normal per-cpu:
[ 9929.575939] CPU    0: hi:  186, btch:  31 usd: 109
[ 9929.575939] CPU    1: hi:  186, btch:  31 usd: 143
[ 9929.575939] CPU    2: hi:  186, btch:  31 usd: 162
[ 9929.575939] CPU    3: hi:  186, btch:  31 usd: 153
[ 9929.575939] CPU    4: hi:  186, btch:  31 usd:   9
[ 9929.575939] CPU    5: hi:  186, btch:  31 usd: 184
[ 9929.575939] CPU    6: hi:  186, btch:  31 usd:   0
[ 9929.575939] CPU    7: hi:  186, btch:  31 usd:   3
[ 9929.575939] Active:2140236 inactive:1760919 dirty:5 writeback:15305 unstable:0
[ 9929.575939]  free:18242 slab:87151 mapped:2761 pagetables:33957 bounce:0
[ 9930.868192] Node 0 DMA free:11656kB min:8kB low:8kB high:12kB active:0kB inactive:0kB present:10724kB pages_scanned:0 all_unreclaimable? yes
[ 9930.868192] lowmem_reserve[]: 0 2999 16129 16129
[ 9930.868192] Node 0 DMA32 free:54048kB min:3020kB low:3772kB high:4528kB active:1564664kB inactive:1141828kB present:3071072kB pages_scanned:128 all_unreclaimable? no
[ 9931.060203] lowmem_reserve[]: 0 0 13130 13130
[ 9931.060203] Node 0 Normal free:7264kB min:13224kB low:16528kB high:19836kB active:6996280kB inactive:5901848kB present:13445120kB pages_scanned:1591 all_unreclaimable? no
[ 9931.176206] lowmem_reserve[]: 0 0 0 0
[ 9931.176206] Node 0 DMA: 4*4kB 1*8kB 5*16kB 3*32kB 3*64kB 0*128kB 2*256kB 1*512kB 2*1024kB 0*2048kB 2*4096kB = 11656kB
[ 9931.176206] Node 0 DMA32: 13*4kB 28*8kB 30*16kB 23*32kB 724*64kB 0*128kB 0*256kB 0*512kB 0*1024kB 1*2048kB 1*4096kB = 53972kB
[ 9931.176206] Node 0 Normal: 525*4kB 32*8kB 1*16kB 0*32kB 0*64kB 0*128kB 1*256kB 1*512kB 0*1024kB 0*2048kB 1*4096kB = 7236kB
[ 9931.176206] 40667 total pagecache pages
[ 9931.176206] Swap cache: add 17843648, delete 17812595, find 1011300/1065299
[ 9931.176206] Free swap  = 245709848kB
[ 9931.176206] Total swap = 300841140kB
[ 9931.592149] 4194304 pages of RAM
[ 9931.592149] 75443 reserved pages
[ 9931.592149] 59721 pages shared
[ 9931.592149] 31053 pages swap cached
[10176.480510] 12-1.test[14182]: segfault at 2713 ip 2b8a7c905507 sp 7fff2e7ebd80 error 4 in librt-2.10.2.so[2b8a7c901000+7000]
[10558.592177] 3-2.test[31387]: segfault at 2b3ab7005ff0 ip 2b3ab78d25e0 sp 2b3ab7006008 error 6 in libc-2.10.2.so[2b3ab7834000+14a000]
[10558.862633] 3-2.test[31388]: segfault at 8 ip 2b3ab6fede77 sp 7ffff3ac22c0 error 4 in ld-2.10.2.so[2b3ab6fe5000+1d000]
[10559.186896] 3-2.test[31391]: segfault at 2b3ab7005ff0 ip 2b3ab78d25e0 sp 2b3ab7006008 error 6 in libc-2.10.2.so[2b3ab7834000+14a000]
[10559.259221] 3-2.test[31392]: segfault at 8 ip 2b3ab6fede77 sp 7ffff3ac22c0 error 4 in ld-2.10.2.so[2b3ab6fe5000+1d000]
[10560.260850] 3-2.test[31395]: segfault at 2b3ab7005ff0 ip 2b3ab78d25e0 sp 2b3ab7006008 error 6 in libc-2.10.2.so[2b3ab7834000+14a000]
[10582.102993] 1-5.test[31575]: segfault at 2aceb7f5aff0 ip 2aceb88275e0 sp 2aceb7f5b008 error 6 in libc-2.10.2.so[2aceb8789000+14a000]
[10582.230999] 1-5.test[31580]: segfault at 2aceb7f5aff0 ip 2aceb88275e0 sp 2aceb7f5b008 error 6 in libc-2.10.2.so[2aceb8789000+14a000]
[10764.733794] 5-1.test[18457]: segfault at 186a3 ip 2ace44baf35d sp 7fff66541b00 error 4 in librt-2.10.2.so[2ace44bab000+7000]
[11109.433863] 6-1.test[22957]: segfault at 2713 ip 2b5ccf75f449 sp 7fffdb993f40 error 4 in librt-2.10.2.so[2b5ccf75b000+7000]
[11477.633170] 5-1.test[27232]: segfault at 601000 ip 2b87f5c59b4b sp 7fffb5284848 error 6 in libpthread-2.10.2.so[2b87f5c4e000+16000]
************************************************************
 
     |