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 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777
|
DC-Build-Header: synce-kde 0.9.1-1 / Wed Feb 13 02:26:17 +0100 2008
Automatic build of synce-kde_0.9.1-1 on bordereau-28.bordeaux.grid5000.fr by sbuild/amd64 0.57.0
Build started at 20080213-0226
******************************************************************************
Failed to open ./synce-kde_0.9.1-1.dsc
Checking available source versions...
Fetching source files...
Reading package lists...
Building dependency tree...
Reading state information...
Need to get 907kB of source archives.
Get:1 http://idpot.grenoble.grid5000.fr sid/main synce-kde 0.9.1-1 (dsc) [897B]
Get:2 http://idpot.grenoble.grid5000.fr sid/main synce-kde 0.9.1-1 (tar) [901kB]
Get:3 http://idpot.grenoble.grid5000.fr sid/main synce-kde 0.9.1-1 (diff) [5565B]
Fetched 907kB in 0s (2013kB/s)
Download complete and in download only mode
** Using build dependencies supplied by package:
Build-Depends: debhelper (>> 4.0.0), xutils, agsync-dev (>= 0.2-pre), librra0-dev (>= 0.9.0), librapi2-dev (>= 0.9.0), libsynce0-dev (>= 0.9.0), libmimedir-dev (>= 0.3), qt3-dev-tools (>= 3.3.3), libqt3-mt-dev (>= 3.3.3), libqt3-headers (>= 3.3.3), kdelibs4-dev (>= 3.3.3), liborange-dev (>= 0.2), libunshield-dev (>= 0.4), libdynamite-dev (>= 0.1)
Checking for already installed source dependencies...
debhelper: missing
Using default version 6.0.5
xutils: missing
agsync-dev: missing
Using default version 0.2-pre-9
librra0-dev: missing
Using default version 0.11-1
librapi2-dev: missing
Using default version 0.11-1
libsynce0-dev: missing
Using default version 0.11-1
libmimedir-dev: missing
Using default version 0.4-4
qt3-dev-tools: missing
Using default version 3:3.3.8b-1
libqt3-mt-dev: missing
Using default version 3:3.3.8b-1
libqt3-headers: missing
Using default version 3:3.3.8b-1
kdelibs4-dev: missing
Using default version 4:3.5.8.dfsg.1-7
liborange-dev: missing
Using default version 0.3-2
libunshield-dev: missing
Using default version 0.5-3
libdynamite-dev: missing
Using default version 0.1-4.1
Checking for source dependency conflicts...
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
agsync bsdmainutils comerr-dev defoma esound-common file fontconfig
fontconfig-config gettext gettext-base groff-base hicolor-icon-theme hspell
html2text intltool-debian kdelibs-data kdelibs4c2a libacl1-dev libart-2.0-2
libart-2.0-dev libarts1-dev libarts1c2a libartsc0 libartsc0-dev libasound2
libasound2-dev libaspell-dev libaspell15 libattr1-dev libaudio-dev libaudio2
libaudiofile-dev libaudiofile0 libavahi-client-dev libavahi-client3
libavahi-common-data libavahi-common-dev libavahi-common3 libavahi-qt3-1
libavahi-qt3-dev libavc1394-0 libbz2-dev libcupsys2 libcupsys2-dev
libdbus-1-3 libdbus-1-dev libdbus-glib-1-2 libdmx1 libdrm2 libdynamite0
libesd0 libesd0-dev libexpat1 libexpat1-dev libfam-dev libfam0
libfontconfig1 libfontconfig1-dev libfontenc1 libfreebob0 libfreetype6
libfreetype6-dev libfs6 libgcrypt11-dev libgl1-mesa-dev libgl1-mesa-glx
libglib2.0-0 libglib2.0-dev libglu1-mesa libglu1-mesa-dev libgnutls-dev
libgomp1 libgpg-error-dev libice-dev libice6 libidn11 libidn11-dev
libiec61883-0 libjack-dev libjack0 libjack0.100.0-dev libjasper-dev
libjasper1 libjpeg62 libjpeg62-dev libkadm55 libkeyutils1 libkrb5-dev
libkrb53 liblcms1 liblcms1-dev liblua50 liblua50-dev liblualib50
liblualib50-dev libmad0 libmad0-dev libmagic1 libmimedir0 libmng-dev libmng1
libnewt0.52 libogg-dev libogg0 libopencdk10-dev libopenexr-dev
libopenexr2ldbl liborange0 libpcre3 libpcre3-dev libpcrecpp0 libpng12-0
libpng12-dev libpopt0 libqt3-mt librapi2 libraw1394-8 librra0 libsasl2-dev
libsasl2-modules libsm-dev libsm6 libssl-dev libssl0.9.8 libsynce0
libtasn1-3-dev libtiff4 libtiff4-dev libtiffxx0c2 libunshield0 libvorbis-dev
libvorbis0a libvorbisenc2 libvorbisfile3 libx11-6 libx11-data libx11-dev
libxau-dev libxau6 libxaw7 libxcursor-dev libxcursor1 libxdamage1
libxdmcp-dev libxdmcp6 libxext-dev libxext6 libxfixes-dev libxfixes3
libxfont1 libxft-dev libxft2 libxi-dev libxi6 libxinerama-dev libxinerama1
libxml2 libxml2-dev libxml2-utils libxmu-dev libxmu-headers libxmu6 libxmuu1
libxpm4 libxrandr-dev libxrandr2 libxrender-dev libxrender1 libxslt1-dev
libxslt1.1 libxt-dev libxt6 libxtrap6 libxtst6 libxv1 libxxf86dga1
libxxf86misc1 libxxf86vm1 lua50 man-db menu-xdg mesa-common-dev pkg-config
po-debconf ttf-dejavu ttf-dejavu-core ttf-dejavu-extra ucf whiptail
x11-common x11-session-utils x11-utils x11-xfs-utils x11-xserver-utils
x11proto-core-dev x11proto-fixes-dev x11proto-input-dev x11proto-kb-dev
x11proto-randr-dev x11proto-render-dev x11proto-xext-dev
x11proto-xinerama-dev xauth xfonts-encodings xfonts-utils xtrans-dev
xutils-dev zlib1g-dev
Suggested packages:
wamerican wordlist whois vacation doc-base dh-make defoma-doc dfontmgr
psfontmgr x-ttcidfont-conf cvs gettext-doc groff fam perl-suid
libasound2-plugins libasound2-doc aspell-doc aspell nas cupsys-common esound
libgcrypt11-doc libglib2.0-doc gnutls-bin gnutls-doc guile-gnutls jackd
libjasper-runtime krb5-doc krb5-user liblcms-utils unzip cabextract
libqt3-mt-mysql libqt3-mt-odbc libqt3-mt-psql libqt3-i18n qt3-doc
libraw1394-doc libsasl2-modules-gssapi-mit libsasl2-modules-gssapi-heimdal
libsasl2-modules-ldap libsasl2-modules-otp libsasl2-modules-sql www-browser
mesa-utils pdksh
Recommended packages:
libft-perl curl wget lynx libarts1-akode aspell-en aspell-dictionary
aspell6a-dictionary dbus esound-clients libglib2.0-data libfribidi0
libqt3-compat-headers xml-core menu libcompress-zlib-perl libmail-box-perl
libmail-sendmail-perl debconf-utils
The following NEW packages will be installed:
agsync agsync-dev bsdmainutils comerr-dev debhelper defoma esound-common
file fontconfig fontconfig-config gettext gettext-base groff-base
hicolor-icon-theme hspell html2text intltool-debian kdelibs-data
kdelibs4-dev kdelibs4c2a libacl1-dev libart-2.0-2 libart-2.0-dev
libarts1-dev libarts1c2a libartsc0 libartsc0-dev libasound2 libasound2-dev
libaspell-dev libaspell15 libattr1-dev libaudio-dev libaudio2
libaudiofile-dev libaudiofile0 libavahi-client-dev libavahi-client3
libavahi-common-data libavahi-common-dev libavahi-common3 libavahi-qt3-1
libavahi-qt3-dev libavc1394-0 libbz2-dev libcupsys2 libcupsys2-dev
libdbus-1-3 libdbus-1-dev libdbus-glib-1-2 libdmx1 libdrm2 libdynamite-dev
libdynamite0 libesd0 libesd0-dev libexpat1 libexpat1-dev libfam-dev libfam0
libfontconfig1 libfontconfig1-dev libfontenc1 libfreebob0 libfreetype6
libfreetype6-dev libfs6 libgcrypt11-dev libgl1-mesa-dev libgl1-mesa-glx
libglib2.0-0 libglib2.0-dev libglu1-mesa libglu1-mesa-dev libgnutls-dev
libgomp1 libgpg-error-dev libice-dev libice6 libidn11 libidn11-dev
libiec61883-0 libjack-dev libjack0 libjack0.100.0-dev libjasper-dev
libjasper1 libjpeg62 libjpeg62-dev libkadm55 libkeyutils1 libkrb5-dev
libkrb53 liblcms1 liblcms1-dev liblua50 liblua50-dev liblualib50
liblualib50-dev libmad0 libmad0-dev libmagic1 libmimedir-dev libmimedir0
libmng-dev libmng1 libnewt0.52 libogg-dev libogg0 libopencdk10-dev
libopenexr-dev libopenexr2ldbl liborange-dev liborange0 libpcre3
libpcre3-dev libpcrecpp0 libpng12-0 libpng12-dev libpopt0 libqt3-headers
libqt3-mt libqt3-mt-dev librapi2 librapi2-dev libraw1394-8 librra0
librra0-dev libsasl2-dev libsasl2-modules libsm-dev libsm6 libssl-dev
libssl0.9.8 libsynce0 libsynce0-dev libtasn1-3-dev libtiff4 libtiff4-dev
libtiffxx0c2 libunshield-dev libunshield0 libvorbis-dev libvorbis0a
libvorbisenc2 libvorbisfile3 libx11-6 libx11-data libx11-dev libxau-dev
libxau6 libxaw7 libxcursor-dev libxcursor1 libxdamage1 libxdmcp-dev
libxdmcp6 libxext-dev libxext6 libxfixes-dev libxfixes3 libxfont1 libxft-dev
libxft2 libxi-dev libxi6 libxinerama-dev libxinerama1 libxml2 libxml2-dev
libxml2-utils libxmu-dev libxmu-headers libxmu6 libxmuu1 libxpm4
libxrandr-dev libxrandr2 libxrender-dev libxrender1 libxslt1-dev libxslt1.1
libxt-dev libxt6 libxtrap6 libxtst6 libxv1 libxxf86dga1 libxxf86misc1
libxxf86vm1 lua50 man-db menu-xdg mesa-common-dev pkg-config po-debconf
qt3-dev-tools ttf-dejavu ttf-dejavu-core ttf-dejavu-extra ucf whiptail
x11-common x11-session-utils x11-utils x11-xfs-utils x11-xserver-utils
x11proto-core-dev x11proto-fixes-dev x11proto-input-dev x11proto-kb-dev
x11proto-randr-dev x11proto-render-dev x11proto-xext-dev
x11proto-xinerama-dev xauth xfonts-encodings xfonts-utils xtrans-dev xutils
xutils-dev zlib1g-dev
0 upgraded, 222 newly installed, 0 to remove and 0 not upgraded.
Need to get 70.4MB of archives.
After this operation, 222MB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
x11-common libxau6 libxdmcp6 libx11-data libx11-6 libxext6 libdmx1 libice6
x11proto-core-dev libice-dev libsm6 libsm-dev libxau-dev libxdmcp-dev
x11proto-input-dev x11proto-xext-dev libxext-dev x11proto-kb-dev xtrans-dev
libx11-dev libxfixes3 libxrender1 libxcursor1 x11proto-render-dev
libxrender-dev x11proto-fixes-dev libxfixes-dev libxcursor-dev libexpat1
libfreetype6 ucf libmagic1 file libnewt0.52 libpopt0 whiptail defoma
ttf-dejavu-core ttf-dejavu-extra ttf-dejavu fontconfig-config libfontconfig1
libxft2 libexpat1-dev zlib1g-dev libfreetype6-dev libpcre3 libglib2.0-0
pkg-config libfontconfig1-dev libxft-dev libxi6 libxi-dev libxinerama1
x11proto-xinerama-dev libxinerama-dev libxmu-headers libxrandr2
x11proto-randr-dev libxrandr-dev libxt6 libxt-dev libxmu6 libxpm4 libxaw7
x11-session-utils libfontenc1 libdrm2 libxdamage1 libxxf86vm1
libgl1-mesa-glx libxmuu1 libxtst6 libxv1 libxxf86dga1 x11-utils libfs6
x11-xfs-utils libxtrap6 libxxf86misc1 x11-xserver-utils xauth xutils-dev
bsdmainutils groff-base libssl0.9.8 man-db gettext-base libidn11
libkeyutils1 libkrb53 libdbus-1-3 libdbus-glib-1-2 libsynce0 librapi2 agsync
agsync-dev html2text libgomp1 gettext intltool-debian po-debconf debhelper
esound-common fontconfig hicolor-icon-theme hspell kdelibs-data libart-2.0-2
libartsc0 libasound2 libaudio2 libaudiofile0 libesd0 libraw1394-8
libavc1394-0 libiec61883-0 libxml2 libfreebob0 libjack0 libmad0 libogg0
libpng12-0 libjpeg62 liblcms1 libmng1 libqt3-mt libvorbis0a libvorbisenc2
libvorbisfile3 libarts1c2a libaspell15 libavahi-common-data libavahi-common3
libavahi-client3 libavahi-qt3-1 libcupsys2 libfam0 libjasper1 liblua50
liblualib50 libopenexr2ldbl libtiff4 libxslt1.1 menu-xdg kdelibs4c2a
libattr1-dev libacl1-dev libart-2.0-dev libglib2.0-dev libartsc0-dev
libasound2-dev libaudio-dev libaudiofile-dev libesd0-dev libjack-dev
libjack0.100.0-dev libmad0-dev libogg-dev libgpg-error-dev libgcrypt11-dev
libopencdk10-dev libtasn1-3-dev libgnutls-dev libkadm55 comerr-dev
libkrb5-dev libcupsys2-dev mesa-common-dev libgl1-mesa-dev libglu1-mesa
libglu1-mesa-dev libjpeg62-dev liblcms1-dev libmng-dev libpng12-dev
libqt3-headers libxmu-dev qt3-dev-tools libqt3-mt-dev libvorbis-dev
libarts1-dev libaspell-dev libavahi-common-dev libdbus-1-dev
libavahi-client-dev libavahi-qt3-dev libbz2-dev libfam-dev libidn11-dev
libjasper-dev lua50 liblua50-dev liblualib50-dev libopenexr-dev libpcrecpp0
libpcre3-dev libsasl2-modules libsasl2-dev libssl-dev libtiffxx0c2
libtiff4-dev libxml2-dev libxml2-utils libxslt1-dev kdelibs4-dev
libdynamite0 libdynamite-dev libmimedir0 libmimedir-dev libunshield0
liborange0 liborange-dev librapi2-dev librra0 libsynce0-dev librra0-dev
libunshield-dev libxfont1 xfonts-encodings xfonts-utils xutils
Authentication warning overridden.
Get:1 http://idpot.grenoble.grid5000.fr sid/main x11-common 1:7.3+10 [345kB]
Get:2 http://idpot.grenoble.grid5000.fr sid/main libxau6 1:1.0.3-2 [11.7kB]
Get:3 http://idpot.grenoble.grid5000.fr sid/main libxdmcp6 1:1.0.2-2 [16.7kB]
Get:4 http://idpot.grenoble.grid5000.fr sid/main libx11-data 2:1.0.3-7 [157kB]
Get:5 http://idpot.grenoble.grid5000.fr sid/main libx11-6 2:1.0.3-7 [567kB]
Get:6 http://idpot.grenoble.grid5000.fr sid/main libxext6 1:1.0.3-2 [30.1kB]
Get:7 http://idpot.grenoble.grid5000.fr sid/main libdmx1 1:1.0.2-2 [8762B]
Get:8 http://idpot.grenoble.grid5000.fr sid/main libice6 2:1.0.4-1 [46.6kB]
Get:9 http://idpot.grenoble.grid5000.fr sid/main x11proto-core-dev 7.0.11-1 [88.9kB]
Get:10 http://idpot.grenoble.grid5000.fr sid/main libice-dev 2:1.0.4-1 [55.1kB]
Get:11 http://idpot.grenoble.grid5000.fr sid/main libsm6 2:1.0.3-1+b1 [21.8kB]
Get:12 http://idpot.grenoble.grid5000.fr sid/main libsm-dev 2:1.0.3-1+b1 [24.3kB]
Get:13 http://idpot.grenoble.grid5000.fr sid/main libxau-dev 1:1.0.3-2 [15.4kB]
Get:14 http://idpot.grenoble.grid5000.fr sid/main libxdmcp-dev 1:1.0.2-2 [19.8kB]
Get:15 http://idpot.grenoble.grid5000.fr sid/main x11proto-input-dev 1.4.2-1 [15.6kB]
Get:16 http://idpot.grenoble.grid5000.fr sid/main x11proto-xext-dev 7.0.2-5 [41.7kB]
Get:17 http://idpot.grenoble.grid5000.fr sid/main libxext-dev 1:1.0.3-2 [81.5kB]
Get:18 http://idpot.grenoble.grid5000.fr sid/main x11proto-kb-dev 1.0.3-2 [26.8kB]
Get:19 http://idpot.grenoble.grid5000.fr sid/main xtrans-dev 1.0.4-1 [70.4kB]
Get:20 http://idpot.grenoble.grid5000.fr sid/main libx11-dev 2:1.0.3-7 [1269kB]
Get:21 http://idpot.grenoble.grid5000.fr sid/main libxfixes3 1:4.0.3-2 [9572B]
Get:22 http://idpot.grenoble.grid5000.fr sid/main libxrender1 1:0.9.4-1 [25.4kB]
Get:23 http://idpot.grenoble.grid5000.fr sid/main libxcursor1 1:1.1.9-1 [24.0kB]
Get:24 http://idpot.grenoble.grid5000.fr sid/main x11proto-render-dev 2:0.9.3-2 [7062B]
Get:25 http://idpot.grenoble.grid5000.fr sid/main libxrender-dev 1:0.9.4-1 [28.5kB]
Get:26 http://idpot.grenoble.grid5000.fr sid/main x11proto-fixes-dev 4.0-2 [5640B]
Get:27 http://idpot.grenoble.grid5000.fr sid/main libxfixes-dev 1:4.0.3-2 [12.1kB]
Get:28 http://idpot.grenoble.grid5000.fr sid/main libxcursor-dev 1:1.1.9-1 [30.8kB]
Get:29 http://idpot.grenoble.grid5000.fr sid/main libexpat1 1.95.8-4 [63.9kB]
Get:30 http://idpot.grenoble.grid5000.fr sid/main libfreetype6 2.3.5-1+b1 [347kB]
Get:31 http://idpot.grenoble.grid5000.fr sid/main ucf 3.004 [62.9kB]
Get:32 http://idpot.grenoble.grid5000.fr sid/main libmagic1 4.23-2 [342kB]
Get:33 http://idpot.grenoble.grid5000.fr sid/main file 4.23-2 [41.0kB]
Get:34 http://idpot.grenoble.grid5000.fr sid/main libnewt0.52 0.52.2-11.1 [66.2kB]
Get:35 http://idpot.grenoble.grid5000.fr sid/main libpopt0 1.10-3 [33.1kB]
Get:36 http://idpot.grenoble.grid5000.fr sid/main whiptail 0.52.2-11.1 [34.7kB]
Get:37 http://idpot.grenoble.grid5000.fr sid/main defoma 0.11.10-0.2 [101kB]
Get:38 http://idpot.grenoble.grid5000.fr sid/main ttf-dejavu-core 2.23-1 [1347kB]
Get:39 http://idpot.grenoble.grid5000.fr sid/main ttf-dejavu-extra 2.23-1 [2949kB]
Get:40 http://idpot.grenoble.grid5000.fr sid/main ttf-dejavu 2.23-1 [24.3kB]
Get:41 http://idpot.grenoble.grid5000.fr sid/main fontconfig-config 2.5.0-2 [179kB]
Get:42 http://idpot.grenoble.grid5000.fr sid/main libfontconfig1 2.5.0-2 [110kB]
Get:43 http://idpot.grenoble.grid5000.fr sid/main libxft2 2.1.12-2 [47.6kB]
Get:44 http://idpot.grenoble.grid5000.fr sid/main libexpat1-dev 1.95.8-4 [129kB]
Get:45 http://idpot.grenoble.grid5000.fr sid/main zlib1g-dev 1:1.2.3.3.dfsg-11 [157kB]
Get:46 http://idpot.grenoble.grid5000.fr sid/main libfreetype6-dev 2.3.5-1+b1 [662kB]
Get:47 http://idpot.grenoble.grid5000.fr sid/main libpcre3 7.6-1 [208kB]
Get:48 http://idpot.grenoble.grid5000.fr sid/main libglib2.0-0 2.14.6-1 [561kB]
Get:49 http://idpot.grenoble.grid5000.fr sid/main pkg-config 0.22-1 [52.2kB]
Get:50 http://idpot.grenoble.grid5000.fr sid/main libfontconfig1-dev 2.5.0-2 [595kB]
Get:51 http://idpot.grenoble.grid5000.fr sid/main libxft-dev 2.1.12-2 [61.3kB]
Get:52 http://idpot.grenoble.grid5000.fr sid/main libxi6 2:1.1.3-1 [24.6kB]
Get:53 http://idpot.grenoble.grid5000.fr sid/main libxi-dev 2:1.1.3-1 [69.0kB]
Get:54 http://idpot.grenoble.grid5000.fr sid/main libxinerama1 1:1.0.2-1 [9256B]
Get:55 http://idpot.grenoble.grid5000.fr sid/main x11proto-xinerama-dev 1.1.2-4 [5074B]
Get:56 http://idpot.grenoble.grid5000.fr sid/main libxinerama-dev 1:1.0.2-1 [10.8kB]
Get:57 http://idpot.grenoble.grid5000.fr sid/main libxmu-headers 2:1.0.4-1 [21.0kB]
Get:58 http://idpot.grenoble.grid5000.fr sid/main libxrandr2 2:1.2.2-1 [20.4kB]
Get:59 http://idpot.grenoble.grid5000.fr sid/main x11proto-randr-dev 1.2.1-2 [28.6kB]
Get:60 http://idpot.grenoble.grid5000.fr sid/main libxrandr-dev 2:1.2.2-1 [27.8kB]
Get:61 http://idpot.grenoble.grid5000.fr sid/main libxt6 1:1.0.5-3 [166kB]
Get:62 http://idpot.grenoble.grid5000.fr sid/main libxt-dev 1:1.0.5-3 [480kB]
Get:63 http://idpot.grenoble.grid5000.fr sid/main libxmu6 2:1.0.4-1 [51.1kB]
Get:64 http://idpot.grenoble.grid5000.fr sid/main libxpm4 1:3.5.7-1 [40.3kB]
Get:65 http://idpot.grenoble.grid5000.fr sid/main libxaw7 2:1.0.4-1 [186kB]
Get:66 http://idpot.grenoble.grid5000.fr sid/main x11-session-utils 7.3+1 [71.0kB]
Get:67 http://idpot.grenoble.grid5000.fr sid/main libfontenc1 1:1.0.4-2 [17.7kB]
Get:68 http://idpot.grenoble.grid5000.fr sid/main libdrm2 2.3.0-4 [20.7kB]
Get:69 http://idpot.grenoble.grid5000.fr sid/main libxdamage1 1:1.1.1-3 [9804B]
Get:70 http://idpot.grenoble.grid5000.fr sid/main libxxf86vm1 1:1.0.1-2 [9778B]
Get:71 http://idpot.grenoble.grid5000.fr sid/main libgl1-mesa-glx 7.0.2-4 [148kB]
Get:72 http://idpot.grenoble.grid5000.fr sid/main libxmuu1 2:1.0.4-1 [13.2kB]
Get:73 http://idpot.grenoble.grid5000.fr sid/main libxtst6 2:1.0.3-1 [12.3kB]
Get:74 http://idpot.grenoble.grid5000.fr sid/main libxv1 1:1.0.3-1 [15.1kB]
Get:75 http://idpot.grenoble.grid5000.fr sid/main libxxf86dga1 2:1.0.2-1 [15.7kB]
Get:76 http://idpot.grenoble.grid5000.fr sid/main x11-utils 7.3+1 [198kB]
Get:77 http://idpot.grenoble.grid5000.fr sid/main libfs6 2:1.0.0-4 [24.1kB]
Get:78 http://idpot.grenoble.grid5000.fr sid/main x11-xfs-utils 7.3+1 [24.3kB]
Get:79 http://idpot.grenoble.grid5000.fr sid/main libxtrap6 1:1.0.0-4 [16.6kB]
Get:80 http://idpot.grenoble.grid5000.fr sid/main libxxf86misc1 1:1.0.1-2 [7674B]
Get:81 http://idpot.grenoble.grid5000.fr sid/main x11-xserver-utils 7.3+2 [171kB]
Get:82 http://idpot.grenoble.grid5000.fr sid/main xauth 1:1.0.2-2 [29.7kB]
Get:83 http://idpot.grenoble.grid5000.fr sid/main xutils-dev 1:7.2.ds2-1 [300kB]
Get:84 http://idpot.grenoble.grid5000.fr sid/main bsdmainutils 6.1.10 [172kB]
Get:85 http://idpot.grenoble.grid5000.fr sid/main groff-base 1.18.1.1-16 [844kB]
Get:86 http://idpot.grenoble.grid5000.fr sid/main libssl0.9.8 0.9.8g-4 [2883kB]
Get:87 http://idpot.grenoble.grid5000.fr sid/main man-db 2.5.1-2 [997kB]
Get:88 http://idpot.grenoble.grid5000.fr sid/main gettext-base 0.17-2 [123kB]
Get:89 http://idpot.grenoble.grid5000.fr sid/main libidn11 1.4-1 [138kB]
Get:90 http://idpot.grenoble.grid5000.fr sid/main libkeyutils1 1.2-6 [5206B]
Get:91 http://idpot.grenoble.grid5000.fr sid/main libkrb53 1.6.dfsg.3~beta1-2 [462kB]
Get:92 http://idpot.grenoble.grid5000.fr sid/main libdbus-1-3 1.1.2-1 [134kB]
Get:93 http://idpot.grenoble.grid5000.fr sid/main libdbus-glib-1-2 0.74-1 [135kB]
Get:94 http://idpot.grenoble.grid5000.fr sid/main libsynce0 0.11-1 [21.9kB]
Get:95 http://idpot.grenoble.grid5000.fr sid/main librapi2 0.11-1 [30.6kB]
Get:96 http://idpot.grenoble.grid5000.fr sid/main agsync 0.2-pre-9 [67.2kB]
Get:97 http://idpot.grenoble.grid5000.fr sid/main agsync-dev 0.2-pre-9 [76.8kB]
Get:98 http://idpot.grenoble.grid5000.fr sid/main html2text 1.3.2a-3 [98.9kB]
Get:99 http://idpot.grenoble.grid5000.fr sid/main libgomp1 4.3-20080202-1 [13.3kB]
Get:100 http://idpot.grenoble.grid5000.fr sid/main gettext 0.17-2 [2683kB]
Get:101 http://idpot.grenoble.grid5000.fr sid/main intltool-debian 0.35.0+20060710.1 [30.8kB]
Get:102 http://idpot.grenoble.grid5000.fr sid/main po-debconf 1.0.11 [231kB]
Get:103 http://idpot.grenoble.grid5000.fr sid/main debhelper 6.0.5 [519kB]
Get:104 http://idpot.grenoble.grid5000.fr sid/main esound-common 0.2.36-3 [38.2kB]
Get:105 http://idpot.grenoble.grid5000.fr sid/main fontconfig 2.5.0-2 [43.0kB]
Get:106 http://idpot.grenoble.grid5000.fr sid/main hicolor-icon-theme 0.10-1 [10.1kB]
Get:107 http://idpot.grenoble.grid5000.fr sid/main hspell 1.0-4 [568kB]
Get:108 http://idpot.grenoble.grid5000.fr sid/main kdelibs-data 4:3.5.8.dfsg.1-7 [8688kB]
Get:109 http://idpot.grenoble.grid5000.fr sid/main libart-2.0-2 2.3.20-1 [64.7kB]
Get:110 http://idpot.grenoble.grid5000.fr sid/main libartsc0 1.5.8-1 [14.7kB]
Get:111 http://idpot.grenoble.grid5000.fr sid/main libasound2 1.0.15-3 [362kB]
Get:112 http://idpot.grenoble.grid5000.fr sid/main libaudio2 1.9.1-1 [78.8kB]
Get:113 http://idpot.grenoble.grid5000.fr sid/main libaudiofile0 0.2.6-7 [76.4kB]
Get:114 http://idpot.grenoble.grid5000.fr sid/main libesd0 0.2.36-3 [18.9kB]
Get:115 http://idpot.grenoble.grid5000.fr sid/main libraw1394-8 1.3.0-2 [26.8kB]
Get:116 http://idpot.grenoble.grid5000.fr sid/main libavc1394-0 0.5.3-1+b1 [20.7kB]
Get:117 http://idpot.grenoble.grid5000.fr sid/main libiec61883-0 1.1.0-2 [31.5kB]
Get:118 http://idpot.grenoble.grid5000.fr sid/main libxml2 2.6.31.dfsg-1 [782kB]
Get:119 http://idpot.grenoble.grid5000.fr sid/main libfreebob0 1.0.7-1 [158kB]
Get:120 http://idpot.grenoble.grid5000.fr sid/main libjack0 0.109.2-1 [116kB]
Get:121 http://idpot.grenoble.grid5000.fr sid/main libmad0 0.15.1b-2.1 [74.8kB]
Get:122 http://idpot.grenoble.grid5000.fr sid/main libogg0 1.1.3-3 [14.1kB]
Get:123 http://idpot.grenoble.grid5000.fr sid/main libpng12-0 1.2.15~beta5-3 [187kB]
Get:124 http://idpot.grenoble.grid5000.fr sid/main libjpeg62 6b-14 [86.0kB]
Get:125 http://idpot.grenoble.grid5000.fr sid/main liblcms1 1.16-8 [97.2kB]
Get:126 http://idpot.grenoble.grid5000.fr sid/main libmng1 1.0.9-1 [189kB]
Get:127 http://idpot.grenoble.grid5000.fr sid/main libqt3-mt 3:3.3.8b-1 [3299kB]
Get:128 http://idpot.grenoble.grid5000.fr sid/main libvorbis0a 1.2.0.dfsg-3 [99.9kB]
Get:129 http://idpot.grenoble.grid5000.fr sid/main libvorbisenc2 1.2.0.dfsg-3 [76.8kB]
Get:130 http://idpot.grenoble.grid5000.fr sid/main libvorbisfile3 1.2.0.dfsg-3 [20.5kB]
Get:131 http://idpot.grenoble.grid5000.fr sid/main libarts1c2a 1.5.8-1 [1105kB]
Get:132 http://idpot.grenoble.grid5000.fr sid/main libaspell15 0.60.5-2 [635kB]
Get:133 http://idpot.grenoble.grid5000.fr sid/main libavahi-common-data 0.6.22-2 [98.7kB]
Get:134 http://idpot.grenoble.grid5000.fr sid/main libavahi-common3 0.6.22-2 [114kB]
Get:135 http://idpot.grenoble.grid5000.fr sid/main libavahi-client3 0.6.22-2 [118kB]
Get:136 http://idpot.grenoble.grid5000.fr sid/main libavahi-qt3-1 0.6.22-2 [102kB]
Get:137 http://idpot.grenoble.grid5000.fr sid/main libcupsys2 1.3.5-1+b1 [164kB]
Get:138 http://idpot.grenoble.grid5000.fr sid/main libfam0 2.7.0-13.1 [27.9kB]
Get:139 http://idpot.grenoble.grid5000.fr sid/main libjasper1 1.900.1-3 [142kB]
Get:140 http://idpot.grenoble.grid5000.fr sid/main liblua50 5.0.3-3 [48.7kB]
Get:141 http://idpot.grenoble.grid5000.fr sid/main liblualib50 5.0.3-3 [34.6kB]
Get:142 http://idpot.grenoble.grid5000.fr sid/main libopenexr2ldbl 1.2.2-4.4 [305kB]
Get:143 http://idpot.grenoble.grid5000.fr sid/main libtiff4 3.8.2-7 [483kB]
Get:144 http://idpot.grenoble.grid5000.fr sid/main libxslt1.1 1.1.22-1 [219kB]
Get:145 http://idpot.grenoble.grid5000.fr sid/main menu-xdg 0.3 [4720B]
Get:146 http://idpot.grenoble.grid5000.fr sid/main kdelibs4c2a 4:3.5.8.dfsg.1-7 [9813kB]
Get:147 http://idpot.grenoble.grid5000.fr sid/main libattr1-dev 1:2.4.39-1 [30.0kB]
Get:148 http://idpot.grenoble.grid5000.fr sid/main libacl1-dev 2.2.45-1 [76.2kB]
Get:149 http://idpot.grenoble.grid5000.fr sid/main libart-2.0-dev 2.3.20-1 [81.7kB]
Get:150 http://idpot.grenoble.grid5000.fr sid/main libglib2.0-dev 2.14.6-1 [569kB]
Get:151 http://idpot.grenoble.grid5000.fr sid/main libartsc0-dev 1.5.8-1 [20.8kB]
Get:152 http://idpot.grenoble.grid5000.fr sid/main libasound2-dev 1.0.15-3 [495kB]
Get:153 http://idpot.grenoble.grid5000.fr sid/main libaudio-dev 1.9.1-1 [503kB]
Get:154 http://idpot.grenoble.grid5000.fr sid/main libaudiofile-dev 0.2.6-7 [116kB]
Get:155 http://idpot.grenoble.grid5000.fr sid/main libesd0-dev 0.2.36-3 [23.7kB]
Get:156 http://idpot.grenoble.grid5000.fr sid/main libjack-dev 0.109.2-1 [161kB]
Get:157 http://idpot.grenoble.grid5000.fr sid/main libjack0.100.0-dev 0.109.2-1 [12.8kB]
Get:158 http://idpot.grenoble.grid5000.fr sid/main libmad0-dev 0.15.1b-2.1 [85.6kB]
Get:159 http://idpot.grenoble.grid5000.fr sid/main libogg-dev 1.1.3-3 [57.0kB]
Get:160 http://idpot.grenoble.grid5000.fr sid/main libgpg-error-dev 1.4-2 [33.6kB]
Get:161 http://idpot.grenoble.grid5000.fr sid/main libgcrypt11-dev 1.4.0-3 [319kB]
Get:162 http://idpot.grenoble.grid5000.fr sid/main libopencdk10-dev 0.6.6-1 [117kB]
Get:163 http://idpot.grenoble.grid5000.fr sid/main libtasn1-3-dev 1.3-1 [372kB]
Get:164 http://idpot.grenoble.grid5000.fr sid/main libgnutls-dev 2.2.1-3 [438kB]
Get:165 http://idpot.grenoble.grid5000.fr sid/main libkadm55 1.6.dfsg.3~beta1-2 [147kB]
Get:166 http://idpot.grenoble.grid5000.fr sid/main comerr-dev 2.1-1.40.6-1 [41.6kB]
Get:167 http://idpot.grenoble.grid5000.fr sid/main libkrb5-dev 1.6.dfsg.3~beta1-2 [88.6kB]
Get:168 http://idpot.grenoble.grid5000.fr sid/main libcupsys2-dev 1.3.5-1+b1 [142kB]
Get:169 http://idpot.grenoble.grid5000.fr sid/main mesa-common-dev 7.0.2-4 [182kB]
Get:170 http://idpot.grenoble.grid5000.fr sid/main libgl1-mesa-dev 7.0.2-4 [25.2kB]
Get:171 http://idpot.grenoble.grid5000.fr sid/main libglu1-mesa 7.0.2-4 [238kB]
Get:172 http://idpot.grenoble.grid5000.fr sid/main libglu1-mesa-dev 7.0.2-4 [256kB]
Get:173 http://idpot.grenoble.grid5000.fr sid/main libjpeg62-dev 6b-14 [186kB]
Get:174 http://idpot.grenoble.grid5000.fr sid/main liblcms1-dev 1.16-8 [619kB]
Get:175 http://idpot.grenoble.grid5000.fr sid/main libmng-dev 1.0.9-1 [285kB]
Get:176 http://idpot.grenoble.grid5000.fr sid/main libpng12-dev 1.2.15~beta5-3 [171kB]
Get:177 http://idpot.grenoble.grid5000.fr sid/main libqt3-headers 3:3.3.8b-1 [356kB]
Get:178 http://idpot.grenoble.grid5000.fr sid/main libxmu-dev 2:1.0.4-1 [54.5kB]
Get:179 http://idpot.grenoble.grid5000.fr sid/main qt3-dev-tools 3:3.3.8b-1 [1231kB]
Get:180 http://idpot.grenoble.grid5000.fr sid/main libqt3-mt-dev 3:3.3.8b-1 [48.7kB]
Get:181 http://idpot.grenoble.grid5000.fr sid/main libvorbis-dev 1.2.0.dfsg-3 [461kB]
Get:182 http://idpot.grenoble.grid5000.fr sid/main libarts1-dev 1.5.8-1 [1169kB]
Get:183 http://idpot.grenoble.grid5000.fr sid/main libaspell-dev 0.60.5-2 [49.0kB]
Get:184 http://idpot.grenoble.grid5000.fr sid/main libavahi-common-dev 0.6.22-2 [134kB]
Get:185 http://idpot.grenoble.grid5000.fr sid/main libdbus-1-dev 1.1.2-1 [222kB]
Get:186 http://idpot.grenoble.grid5000.fr sid/main libavahi-client-dev 0.6.22-2 [128kB]
Get:187 http://idpot.grenoble.grid5000.fr sid/main libavahi-qt3-dev 0.6.22-2 [102kB]
Get:188 http://idpot.grenoble.grid5000.fr sid/main libbz2-dev 1.0.4-3 [31.6kB]
Get:189 http://idpot.grenoble.grid5000.fr sid/main libfam-dev 2.7.0-13.1 [38.1kB]
Get:190 http://idpot.grenoble.grid5000.fr sid/main libidn11-dev 1.4-1 [589kB]
Get:191 http://idpot.grenoble.grid5000.fr sid/main libjasper-dev 1.900.1-3 [548kB]
Get:192 http://idpot.grenoble.grid5000.fr sid/main lua50 5.0.3-3 [25.6kB]
Get:193 http://idpot.grenoble.grid5000.fr sid/main liblua50-dev 5.0.3-3 [55.4kB]
Get:194 http://idpot.grenoble.grid5000.fr sid/main liblualib50-dev 5.0.3-3 [36.0kB]
Get:195 http://idpot.grenoble.grid5000.fr sid/main libopenexr-dev 1.2.2-4.4 [499kB]
Get:196 http://idpot.grenoble.grid5000.fr sid/main libpcrecpp0 7.6-1 [93.7kB]
Get:197 http://idpot.grenoble.grid5000.fr sid/main libpcre3-dev 7.6-1 [254kB]
Get:198 http://idpot.grenoble.grid5000.fr sid/main libsasl2-modules 2.1.22.dfsg1-17+b1 [145kB]
Get:199 http://idpot.grenoble.grid5000.fr sid/main libsasl2-dev 2.1.22.dfsg1-17+b1 [257kB]
Get:200 http://idpot.grenoble.grid5000.fr sid/main libssl-dev 0.9.8g-4 [2072kB]
Get:201 http://idpot.grenoble.grid5000.fr sid/main libtiffxx0c2 3.8.2-7 [5006B]
Get:202 http://idpot.grenoble.grid5000.fr sid/main libtiff4-dev 3.8.2-7 [233kB]
Get:203 http://idpot.grenoble.grid5000.fr sid/main libxml2-dev 2.6.31.dfsg-1 [673kB]
Get:204 http://idpot.grenoble.grid5000.fr sid/main libxml2-utils 2.6.31.dfsg-1 [33.9kB]
Get:205 http://idpot.grenoble.grid5000.fr sid/main libxslt1-dev 1.1.22-1 [595kB]
Get:206 http://idpot.grenoble.grid5000.fr sid/main kdelibs4-dev 4:3.5.8.dfsg.1-7 [1396kB]
Get:207 http://idpot.grenoble.grid5000.fr sid/main libdynamite0 0.1-4.1 [5288B]
Get:208 http://idpot.grenoble.grid5000.fr sid/main libdynamite-dev 0.1-4.1 [5588B]
Get:209 http://idpot.grenoble.grid5000.fr sid/main libmimedir0 0.4-4 [13.1kB]
Get:210 http://idpot.grenoble.grid5000.fr sid/main libmimedir-dev 0.4-4 [4290B]
Get:211 http://idpot.grenoble.grid5000.fr sid/main libunshield0 0.5-3 [13.2kB]
Get:212 http://idpot.grenoble.grid5000.fr sid/main liborange0 0.3-2 [14.5kB]
Get:213 http://idpot.grenoble.grid5000.fr sid/main liborange-dev 0.3-2 [15.7kB]
Get:214 http://idpot.grenoble.grid5000.fr sid/main librapi2-dev 0.11-1 [43.6kB]
Get:215 http://idpot.grenoble.grid5000.fr sid/main librra0 0.11-1 [61.6kB]
Get:216 http://idpot.grenoble.grid5000.fr sid/main libsynce0-dev 0.11-1 [37.1kB]
Get:217 http://idpot.grenoble.grid5000.fr sid/main librra0-dev 0.11-1 [71.4kB]
Get:218 http://idpot.grenoble.grid5000.fr sid/main libunshield-dev 0.5-3 [14.5kB]
Get:219 http://idpot.grenoble.grid5000.fr sid/main libxfont1 1:1.3.1-2 [211kB]
Get:220 http://idpot.grenoble.grid5000.fr sid/main xfonts-encodings 1:1.0.2-3 [584kB]
Get:221 http://idpot.grenoble.grid5000.fr sid/main xfonts-utils 1:1.0.1-2 [64.7kB]
Get:222 http://idpot.grenoble.grid5000.fr sid/main xutils 1:7.3+10 [25.1kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 70.4MB in 3s (21.5MB/s)
Selecting previously deselected package x11-common.
(Reading database ... 9173 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.3+10_i386.deb) ...
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.3-2_i386.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.2-2_i386.deb) ...
Setting up x11-common (1:7.3+10) ...
Selecting previously deselected package libx11-data.
(Reading database ... 9217 files and directories currently installed.)
Unpacking libx11-data (from .../libx11-data_2%3a1.0.3-7_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.0.3-7_i386.deb) ...
Selecting previously deselected package libxext6.
Unpacking libxext6 (from .../libxext6_1%3a1.0.3-2_i386.deb) ...
Selecting previously deselected package libdmx1.
Unpacking libdmx1 (from .../libdmx1_1%3a1.0.2-2_i386.deb) ...
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.4-1_i386.deb) ...
Selecting previously deselected package x11proto-core-dev.
Unpacking x11proto-core-dev (from .../x11proto-core-dev_7.0.11-1_all.deb) ...
Selecting previously deselected package libice-dev.
Unpacking libice-dev (from .../libice-dev_2%3a1.0.4-1_i386.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_2%3a1.0.3-1+b1_i386.deb) ...
Selecting previously deselected package libsm-dev.
Unpacking libsm-dev (from .../libsm-dev_2%3a1.0.3-1+b1_i386.deb) ...
Selecting previously deselected package libxau-dev.
Unpacking libxau-dev (from .../libxau-dev_1%3a1.0.3-2_i386.deb) ...
Selecting previously deselected package libxdmcp-dev.
Unpacking libxdmcp-dev (from .../libxdmcp-dev_1%3a1.0.2-2_i386.deb) ...
Selecting previously deselected package x11proto-input-dev.
Unpacking x11proto-input-dev (from .../x11proto-input-dev_1.4.2-1_all.deb) ...
Selecting previously deselected package x11proto-xext-dev.
Unpacking x11proto-xext-dev (from .../x11proto-xext-dev_7.0.2-5_all.deb) ...
Selecting previously deselected package libxext-dev.
Unpacking libxext-dev (from .../libxext-dev_1%3a1.0.3-2_i386.deb) ...
Selecting previously deselected package x11proto-kb-dev.
Unpacking x11proto-kb-dev (from .../x11proto-kb-dev_1.0.3-2_all.deb) ...
Selecting previously deselected package xtrans-dev.
Unpacking xtrans-dev (from .../xtrans-dev_1.0.4-1_all.deb) ...
Selecting previously deselected package libx11-dev.
Unpacking libx11-dev (from .../libx11-dev_2%3a1.0.3-7_i386.deb) ...
Selecting previously deselected package libxfixes3.
Unpacking libxfixes3 (from .../libxfixes3_1%3a4.0.3-2_i386.deb) ...
Selecting previously deselected package libxrender1.
Unpacking libxrender1 (from .../libxrender1_1%3a0.9.4-1_i386.deb) ...
Selecting previously deselected package libxcursor1.
Unpacking libxcursor1 (from .../libxcursor1_1%3a1.1.9-1_i386.deb) ...
Selecting previously deselected package x11proto-render-dev.
Unpacking x11proto-render-dev (from .../x11proto-render-dev_2%3a0.9.3-2_all.deb) ...
Selecting previously deselected package libxrender-dev.
Unpacking libxrender-dev (from .../libxrender-dev_1%3a0.9.4-1_i386.deb) ...
Selecting previously deselected package x11proto-fixes-dev.
Unpacking x11proto-fixes-dev (from .../x11proto-fixes-dev_4.0-2_all.deb) ...
Selecting previously deselected package libxfixes-dev.
Unpacking libxfixes-dev (from .../libxfixes-dev_1%3a4.0.3-2_i386.deb) ...
Selecting previously deselected package libxcursor-dev.
Unpacking libxcursor-dev (from .../libxcursor-dev_1%3a1.1.9-1_i386.deb) ...
Selecting previously deselected package libexpat1.
Unpacking libexpat1 (from .../libexpat1_1.95.8-4_i386.deb) ...
Selecting previously deselected package libfreetype6.
Unpacking libfreetype6 (from .../libfreetype6_2.3.5-1+b1_i386.deb) ...
Selecting previously deselected package ucf.
Unpacking ucf (from .../apt/archives/ucf_3.004_all.deb) ...
Moving old data out of the way
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_4.23-2_i386.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../archives/file_4.23-2_i386.deb) ...
Selecting previously deselected package libnewt0.52.
Unpacking libnewt0.52 (from .../libnewt0.52_0.52.2-11.1_i386.deb) ...
Selecting previously deselected package libpopt0.
Unpacking libpopt0 (from .../libpopt0_1.10-3_i386.deb) ...
Selecting previously deselected package whiptail.
Unpacking whiptail (from .../whiptail_0.52.2-11.1_i386.deb) ...
Selecting previously deselected package defoma.
Unpacking defoma (from .../defoma_0.11.10-0.2_all.deb) ...
Selecting previously deselected package ttf-dejavu-core.
Unpacking ttf-dejavu-core (from .../ttf-dejavu-core_2.23-1_all.deb) ...
Selecting previously deselected package ttf-dejavu-extra.
Unpacking ttf-dejavu-extra (from .../ttf-dejavu-extra_2.23-1_all.deb) ...
Selecting previously deselected package ttf-dejavu.
Unpacking ttf-dejavu (from .../ttf-dejavu_2.23-1_all.deb) ...
Selecting previously deselected package fontconfig-config.
Unpacking fontconfig-config (from .../fontconfig-config_2.5.0-2_all.deb) ...
Selecting previously deselected package libfontconfig1.
Unpacking libfontconfig1 (from .../libfontconfig1_2.5.0-2_i386.deb) ...
Selecting previously deselected package libxft2.
Unpacking libxft2 (from .../libxft2_2.1.12-2_i386.deb) ...
Selecting previously deselected package libexpat1-dev.
Unpacking libexpat1-dev (from .../libexpat1-dev_1.95.8-4_i386.deb) ...
Selecting previously deselected package zlib1g-dev.
Unpacking zlib1g-dev (from .../zlib1g-dev_1%3a1.2.3.3.dfsg-11_i386.deb) ...
Selecting previously deselected package libfreetype6-dev.
Unpacking libfreetype6-dev (from .../libfreetype6-dev_2.3.5-1+b1_i386.deb) ...
Selecting previously deselected package libpcre3.
Unpacking libpcre3 (from .../libpcre3_7.6-1_i386.deb) ...
Selecting previously deselected package libglib2.0-0.
Unpacking libglib2.0-0 (from .../libglib2.0-0_2.14.6-1_i386.deb) ...
Selecting previously deselected package pkg-config.
Unpacking pkg-config (from .../pkg-config_0.22-1_i386.deb) ...
Selecting previously deselected package libfontconfig1-dev.
Unpacking libfontconfig1-dev (from .../libfontconfig1-dev_2.5.0-2_i386.deb) ...
Selecting previously deselected package libxft-dev.
Unpacking libxft-dev (from .../libxft-dev_2.1.12-2_i386.deb) ...
Selecting previously deselected package libxi6.
Unpacking libxi6 (from .../libxi6_2%3a1.1.3-1_i386.deb) ...
Selecting previously deselected package libxi-dev.
Unpacking libxi-dev (from .../libxi-dev_2%3a1.1.3-1_i386.deb) ...
Selecting previously deselected package libxinerama1.
Unpacking libxinerama1 (from .../libxinerama1_1%3a1.0.2-1_i386.deb) ...
Selecting previously deselected package x11proto-xinerama-dev.
Unpacking x11proto-xinerama-dev (from .../x11proto-xinerama-dev_1.1.2-4_all.deb) ...
Selecting previously deselected package libxinerama-dev.
Unpacking libxinerama-dev (from .../libxinerama-dev_1%3a1.0.2-1_i386.deb) ...
Selecting previously deselected package libxmu-headers.
Unpacking libxmu-headers (from .../libxmu-headers_2%3a1.0.4-1_all.deb) ...
Selecting previously deselected package libxrandr2.
Unpacking libxrandr2 (from .../libxrandr2_2%3a1.2.2-1_i386.deb) ...
Selecting previously deselected package x11proto-randr-dev.
Unpacking x11proto-randr-dev (from .../x11proto-randr-dev_1.2.1-2_all.deb) ...
Selecting previously deselected package libxrandr-dev.
Unpacking libxrandr-dev (from .../libxrandr-dev_2%3a1.2.2-1_i386.deb) ...
Selecting previously deselected package libxt6.
Unpacking libxt6 (from .../libxt6_1%3a1.0.5-3_i386.deb) ...
Selecting previously deselected package libxt-dev.
Unpacking libxt-dev (from .../libxt-dev_1%3a1.0.5-3_i386.deb) ...
Selecting previously deselected package libxmu6.
Unpacking libxmu6 (from .../libxmu6_2%3a1.0.4-1_i386.deb) ...
Selecting previously deselected package libxpm4.
Unpacking libxpm4 (from .../libxpm4_1%3a3.5.7-1_i386.deb) ...
Selecting previously deselected package libxaw7.
Unpacking libxaw7 (from .../libxaw7_2%3a1.0.4-1_i386.deb) ...
Selecting previously deselected package x11-session-utils.
Unpacking x11-session-utils (from .../x11-session-utils_7.3+1_i386.deb) ...
Selecting previously deselected package libfontenc1.
Unpacking libfontenc1 (from .../libfontenc1_1%3a1.0.4-2_i386.deb) ...
Selecting previously deselected package libdrm2.
Unpacking libdrm2 (from .../libdrm2_2.3.0-4_i386.deb) ...
Selecting previously deselected package libxdamage1.
Unpacking libxdamage1 (from .../libxdamage1_1%3a1.1.1-3_i386.deb) ...
Selecting previously deselected package libxxf86vm1.
Unpacking libxxf86vm1 (from .../libxxf86vm1_1%3a1.0.1-2_i386.deb) ...
Selecting previously deselected package libgl1-mesa-glx.
Unpacking libgl1-mesa-glx (from .../libgl1-mesa-glx_7.0.2-4_i386.deb) ...
Selecting previously deselected package libxmuu1.
Unpacking libxmuu1 (from .../libxmuu1_2%3a1.0.4-1_i386.deb) ...
Selecting previously deselected package libxtst6.
Unpacking libxtst6 (from .../libxtst6_2%3a1.0.3-1_i386.deb) ...
Selecting previously deselected package libxv1.
Unpacking libxv1 (from .../libxv1_1%3a1.0.3-1_i386.deb) ...
Selecting previously deselected package libxxf86dga1.
Unpacking libxxf86dga1 (from .../libxxf86dga1_2%3a1.0.2-1_i386.deb) ...
Selecting previously deselected package x11-utils.
Unpacking x11-utils (from .../x11-utils_7.3+1_i386.deb) ...
Selecting previously deselected package libfs6.
Unpacking libfs6 (from .../libfs6_2%3a1.0.0-4_i386.deb) ...
Selecting previously deselected package x11-xfs-utils.
Unpacking x11-xfs-utils (from .../x11-xfs-utils_7.3+1_i386.deb) ...
Selecting previously deselected package libxtrap6.
Unpacking libxtrap6 (from .../libxtrap6_1%3a1.0.0-4_i386.deb) ...
Selecting previously deselected package libxxf86misc1.
Unpacking libxxf86misc1 (from .../libxxf86misc1_1%3a1.0.1-2_i386.deb) ...
Selecting previously deselected package x11-xserver-utils.
Unpacking x11-xserver-utils (from .../x11-xserver-utils_7.3+2_i386.deb) ...
Selecting previously deselected package xauth.
Unpacking xauth (from .../xauth_1%3a1.0.2-2_i386.deb) ...
Selecting previously deselected package xutils-dev.
Unpacking xutils-dev (from .../xutils-dev_1%3a7.2.ds2-1_i386.deb) ...
Selecting previously deselected package bsdmainutils.
Unpacking bsdmainutils (from .../bsdmainutils_6.1.10_i386.deb) ...
Selecting previously deselected package groff-base.
Unpacking groff-base (from .../groff-base_1.18.1.1-16_i386.deb) ...
Selecting previously deselected package libssl0.9.8.
Unpacking libssl0.9.8 (from .../libssl0.9.8_0.9.8g-4_i386.deb) ...
Selecting previously deselected package man-db.
Unpacking man-db (from .../man-db_2.5.1-2_i386.deb) ...
Selecting previously deselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.17-2_i386.deb) ...
Selecting previously deselected package libidn11.
Unpacking libidn11 (from .../libidn11_1.4-1_i386.deb) ...
Selecting previously deselected package libkeyutils1.
Unpacking libkeyutils1 (from .../libkeyutils1_1.2-6_i386.deb) ...
Selecting previously deselected package libkrb53.
Unpacking libkrb53 (from .../libkrb53_1.6.dfsg.3~beta1-2_i386.deb) ...
Selecting previously deselected package libdbus-1-3.
Unpacking libdbus-1-3 (from .../libdbus-1-3_1.1.2-1_i386.deb) ...
Selecting previously deselected package libdbus-glib-1-2.
Unpacking libdbus-glib-1-2 (from .../libdbus-glib-1-2_0.74-1_i386.deb) ...
Selecting previously deselected package libsynce0.
Unpacking libsynce0 (from .../libsynce0_0.11-1_i386.deb) ...
Selecting previously deselected package librapi2.
Unpacking librapi2 (from .../librapi2_0.11-1_i386.deb) ...
Selecting previously deselected package agsync.
Unpacking agsync (from .../agsync_0.2-pre-9_i386.deb) ...
Selecting previously deselected package agsync-dev.
Unpacking agsync-dev (from .../agsync-dev_0.2-pre-9_i386.deb) ...
Selecting previously deselected package html2text.
Unpacking html2text (from .../html2text_1.3.2a-3_i386.deb) ...
Selecting previously deselected package libgomp1.
Unpacking libgomp1 (from .../libgomp1_4.3-20080202-1_i386.deb) ...
Selecting previously deselected package gettext.
Unpacking gettext (from .../gettext_0.17-2_i386.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.11_all.deb) ...
Selecting previously deselected package debhelper.
Unpacking debhelper (from .../debhelper_6.0.5_all.deb) ...
Selecting previously deselected package esound-common.
Unpacking esound-common (from .../esound-common_0.2.36-3_all.deb) ...
Selecting previously deselected package fontconfig.
Unpacking fontconfig (from .../fontconfig_2.5.0-2_i386.deb) ...
Selecting previously deselected package hicolor-icon-theme.
Unpacking hicolor-icon-theme (from .../hicolor-icon-theme_0.10-1_all.deb) ...
Selecting previously deselected package hspell.
Unpacking hspell (from .../archives/hspell_1.0-4_i386.deb) ...
Selecting previously deselected package kdelibs-data.
Unpacking kdelibs-data (from .../kdelibs-data_4%3a3.5.8.dfsg.1-7_all.deb) ...
Selecting previously deselected package libart-2.0-2.
Unpacking libart-2.0-2 (from .../libart-2.0-2_2.3.20-1_i386.deb) ...
Selecting previously deselected package libartsc0.
Unpacking libartsc0 (from .../libartsc0_1.5.8-1_i386.deb) ...
Selecting previously deselected package libasound2.
Unpacking libasound2 (from .../libasound2_1.0.15-3_i386.deb) ...
Selecting previously deselected package libaudio2.
Unpacking libaudio2 (from .../libaudio2_1.9.1-1_i386.deb) ...
Selecting previously deselected package libaudiofile0.
Unpacking libaudiofile0 (from .../libaudiofile0_0.2.6-7_i386.deb) ...
Selecting previously deselected package libesd0.
Unpacking libesd0 (from .../libesd0_0.2.36-3_i386.deb) ...
Selecting previously deselected package libraw1394-8.
Unpacking libraw1394-8 (from .../libraw1394-8_1.3.0-2_i386.deb) ...
Selecting previously deselected package libavc1394-0.
Unpacking libavc1394-0 (from .../libavc1394-0_0.5.3-1+b1_i386.deb) ...
Selecting previously deselected package libiec61883-0.
Unpacking libiec61883-0 (from .../libiec61883-0_1.1.0-2_i386.deb) ...
Selecting previously deselected package libxml2.
Unpacking libxml2 (from .../libxml2_2.6.31.dfsg-1_i386.deb) ...
Selecting previously deselected package libfreebob0.
Unpacking libfreebob0 (from .../libfreebob0_1.0.7-1_i386.deb) ...
Selecting previously deselected package libjack0.
Unpacking libjack0 (from .../libjack0_0.109.2-1_i386.deb) ...
Selecting previously deselected package libmad0.
Unpacking libmad0 (from .../libmad0_0.15.1b-2.1_i386.deb) ...
Selecting previously deselected package libogg0.
Unpacking libogg0 (from .../libogg0_1.1.3-3_i386.deb) ...
Selecting previously deselected package libpng12-0.
Unpacking libpng12-0 (from .../libpng12-0_1.2.15~beta5-3_i386.deb) ...
Selecting previously deselected package libjpeg62.
Unpacking libjpeg62 (from .../libjpeg62_6b-14_i386.deb) ...
Selecting previously deselected package liblcms1.
Unpacking liblcms1 (from .../liblcms1_1.16-8_i386.deb) ...
Selecting previously deselected package libmng1.
Unpacking libmng1 (from .../libmng1_1.0.9-1_i386.deb) ...
Selecting previously deselected package libqt3-mt.
Unpacking libqt3-mt (from .../libqt3-mt_3%3a3.3.8b-1_i386.deb) ...
Selecting previously deselected package libvorbis0a.
Unpacking libvorbis0a (from .../libvorbis0a_1.2.0.dfsg-3_i386.deb) ...
Selecting previously deselected package libvorbisenc2.
Unpacking libvorbisenc2 (from .../libvorbisenc2_1.2.0.dfsg-3_i386.deb) ...
Selecting previously deselected package libvorbisfile3.
Unpacking libvorbisfile3 (from .../libvorbisfile3_1.2.0.dfsg-3_i386.deb) ...
Selecting previously deselected package libarts1c2a.
Unpacking libarts1c2a (from .../libarts1c2a_1.5.8-1_i386.deb) ...
Selecting previously deselected package libaspell15.
Unpacking libaspell15 (from .../libaspell15_0.60.5-2_i386.deb) ...
Selecting previously deselected package libavahi-common-data.
Unpacking libavahi-common-data (from .../libavahi-common-data_0.6.22-2_i386.deb) ...
Selecting previously deselected package libavahi-common3.
Unpacking libavahi-common3 (from .../libavahi-common3_0.6.22-2_i386.deb) ...
Selecting previously deselected package libavahi-client3.
Unpacking libavahi-client3 (from .../libavahi-client3_0.6.22-2_i386.deb) ...
Selecting previously deselected package libavahi-qt3-1.
Unpacking libavahi-qt3-1 (from .../libavahi-qt3-1_0.6.22-2_i386.deb) ...
Selecting previously deselected package libcupsys2.
Unpacking libcupsys2 (from .../libcupsys2_1.3.5-1+b1_i386.deb) ...
Selecting previously deselected package libfam0.
Unpacking libfam0 (from .../libfam0_2.7.0-13.1_i386.deb) ...
Selecting previously deselected package libjasper1.
Unpacking libjasper1 (from .../libjasper1_1.900.1-3_i386.deb) ...
Selecting previously deselected package liblua50.
Unpacking liblua50 (from .../liblua50_5.0.3-3_i386.deb) ...
Selecting previously deselected package liblualib50.
Unpacking liblualib50 (from .../liblualib50_5.0.3-3_i386.deb) ...
Selecting previously deselected package libopenexr2ldbl.
Unpacking libopenexr2ldbl (from .../libopenexr2ldbl_1.2.2-4.4_i386.deb) ...
Selecting previously deselected package libtiff4.
Unpacking libtiff4 (from .../libtiff4_3.8.2-7_i386.deb) ...
Selecting previously deselected package libxslt1.1.
Unpacking libxslt1.1 (from .../libxslt1.1_1.1.22-1_i386.deb) ...
Selecting previously deselected package menu-xdg.
Unpacking menu-xdg (from .../archives/menu-xdg_0.3_all.deb) ...
Selecting previously deselected package kdelibs4c2a.
Unpacking kdelibs4c2a (from .../kdelibs4c2a_4%3a3.5.8.dfsg.1-7_i386.deb) ...
Selecting previously deselected package libattr1-dev.
Unpacking libattr1-dev (from .../libattr1-dev_1%3a2.4.39-1_i386.deb) ...
Selecting previously deselected package libacl1-dev.
Unpacking libacl1-dev (from .../libacl1-dev_2.2.45-1_i386.deb) ...
Selecting previously deselected package libart-2.0-dev.
Unpacking libart-2.0-dev (from .../libart-2.0-dev_2.3.20-1_i386.deb) ...
Selecting previously deselected package libglib2.0-dev.
Unpacking libglib2.0-dev (from .../libglib2.0-dev_2.14.6-1_i386.deb) ...
Selecting previously deselected package libartsc0-dev.
Unpacking libartsc0-dev (from .../libartsc0-dev_1.5.8-1_i386.deb) ...
Selecting previously deselected package libasound2-dev.
Unpacking libasound2-dev (from .../libasound2-dev_1.0.15-3_i386.deb) ...
Selecting previously deselected package libaudio-dev.
Unpacking libaudio-dev (from .../libaudio-dev_1.9.1-1_i386.deb) ...
Selecting previously deselected package libaudiofile-dev.
Unpacking libaudiofile-dev (from .../libaudiofile-dev_0.2.6-7_i386.deb) ...
Selecting previously deselected package libesd0-dev.
Unpacking libesd0-dev (from .../libesd0-dev_0.2.36-3_i386.deb) ...
Selecting previously deselected package libjack-dev.
Unpacking libjack-dev (from .../libjack-dev_0.109.2-1_i386.deb) ...
Selecting previously deselected package libjack0.100.0-dev.
Unpacking libjack0.100.0-dev (from .../libjack0.100.0-dev_0.109.2-1_all.deb) ...
Selecting previously deselected package libmad0-dev.
Unpacking libmad0-dev (from .../libmad0-dev_0.15.1b-2.1_i386.deb) ...
Selecting previously deselected package libogg-dev.
Unpacking libogg-dev (from .../libogg-dev_1.1.3-3_i386.deb) ...
Selecting previously deselected package libgpg-error-dev.
Unpacking libgpg-error-dev (from .../libgpg-error-dev_1.4-2_i386.deb) ...
Selecting previously deselected package libgcrypt11-dev.
Unpacking libgcrypt11-dev (from .../libgcrypt11-dev_1.4.0-3_i386.deb) ...
Selecting previously deselected package libopencdk10-dev.
Unpacking libopencdk10-dev (from .../libopencdk10-dev_0.6.6-1_i386.deb) ...
Selecting previously deselected package libtasn1-3-dev.
Unpacking libtasn1-3-dev (from .../libtasn1-3-dev_1.3-1_i386.deb) ...
Selecting previously deselected package libgnutls-dev.
Unpacking libgnutls-dev (from .../libgnutls-dev_2.2.1-3_i386.deb) ...
Selecting previously deselected package libkadm55.
Unpacking libkadm55 (from .../libkadm55_1.6.dfsg.3~beta1-2_i386.deb) ...
Selecting previously deselected package comerr-dev.
Unpacking comerr-dev (from .../comerr-dev_2.1-1.40.6-1_i386.deb) ...
Selecting previously deselected package libkrb5-dev.
Unpacking libkrb5-dev (from .../libkrb5-dev_1.6.dfsg.3~beta1-2_i386.deb) ...
Selecting previously deselected package libcupsys2-dev.
Unpacking libcupsys2-dev (from .../libcupsys2-dev_1.3.5-1+b1_i386.deb) ...
Selecting previously deselected package mesa-common-dev.
Unpacking mesa-common-dev (from .../mesa-common-dev_7.0.2-4_all.deb) ...
Selecting previously deselected package libgl1-mesa-dev.
Unpacking libgl1-mesa-dev (from .../libgl1-mesa-dev_7.0.2-4_all.deb) ...
Selecting previously deselected package libglu1-mesa.
Unpacking libglu1-mesa (from .../libglu1-mesa_7.0.2-4_i386.deb) ...
Selecting previously deselected package libglu1-mesa-dev.
Unpacking libglu1-mesa-dev (from .../libglu1-mesa-dev_7.0.2-4_i386.deb) ...
Selecting previously deselected package libjpeg62-dev.
Unpacking libjpeg62-dev (from .../libjpeg62-dev_6b-14_i386.deb) ...
Selecting previously deselected package liblcms1-dev.
Unpacking liblcms1-dev (from .../liblcms1-dev_1.16-8_i386.deb) ...
Selecting previously deselected package libmng-dev.
Unpacking libmng-dev (from .../libmng-dev_1.0.9-1_i386.deb) ...
Selecting previously deselected package libpng12-dev.
Unpacking libpng12-dev (from .../libpng12-dev_1.2.15~beta5-3_i386.deb) ...
Selecting previously deselected package libqt3-headers.
Unpacking libqt3-headers (from .../libqt3-headers_3%3a3.3.8b-1_i386.deb) ...
Selecting previously deselected package libxmu-dev.
Unpacking libxmu-dev (from .../libxmu-dev_2%3a1.0.4-1_i386.deb) ...
Selecting previously deselected package qt3-dev-tools.
Unpacking qt3-dev-tools (from .../qt3-dev-tools_3%3a3.3.8b-1_i386.deb) ...
Selecting previously deselected package libqt3-mt-dev.
Unpacking libqt3-mt-dev (from .../libqt3-mt-dev_3%3a3.3.8b-1_i386.deb) ...
Selecting previously deselected package libvorbis-dev.
Unpacking libvorbis-dev (from .../libvorbis-dev_1.2.0.dfsg-3_i386.deb) ...
Selecting previously deselected package libarts1-dev.
Unpacking libarts1-dev (from .../libarts1-dev_1.5.8-1_i386.deb) ...
Selecting previously deselected package libaspell-dev.
Unpacking libaspell-dev (from .../libaspell-dev_0.60.5-2_i386.deb) ...
Selecting previously deselected package libavahi-common-dev.
Unpacking libavahi-common-dev (from .../libavahi-common-dev_0.6.22-2_i386.deb) ...
Selecting previously deselected package libdbus-1-dev.
Unpacking libdbus-1-dev (from .../libdbus-1-dev_1.1.2-1_i386.deb) ...
Selecting previously deselected package libavahi-client-dev.
Unpacking libavahi-client-dev (from .../libavahi-client-dev_0.6.22-2_i386.deb) ...
Selecting previously deselected package libavahi-qt3-dev.
Unpacking libavahi-qt3-dev (from .../libavahi-qt3-dev_0.6.22-2_i386.deb) ...
Selecting previously deselected package libbz2-dev.
Unpacking libbz2-dev (from .../libbz2-dev_1.0.4-3_i386.deb) ...
Selecting previously deselected package libfam-dev.
Unpacking libfam-dev (from .../libfam-dev_2.7.0-13.1_i386.deb) ...
Selecting previously deselected package libidn11-dev.
Unpacking libidn11-dev (from .../libidn11-dev_1.4-1_i386.deb) ...
Selecting previously deselected package libjasper-dev.
Unpacking libjasper-dev (from .../libjasper-dev_1.900.1-3_i386.deb) ...
Selecting previously deselected package lua50.
Unpacking lua50 (from .../lua50_5.0.3-3_i386.deb) ...
Selecting previously deselected package liblua50-dev.
Unpacking liblua50-dev (from .../liblua50-dev_5.0.3-3_i386.deb) ...
Selecting previously deselected package liblualib50-dev.
Unpacking liblualib50-dev (from .../liblualib50-dev_5.0.3-3_i386.deb) ...
Selecting previously deselected package libopenexr-dev.
Unpacking libopenexr-dev (from .../libopenexr-dev_1.2.2-4.4_i386.deb) ...
Selecting previously deselected package libpcrecpp0.
Unpacking libpcrecpp0 (from .../libpcrecpp0_7.6-1_i386.deb) ...
Selecting previously deselected package libpcre3-dev.
Unpacking libpcre3-dev (from .../libpcre3-dev_7.6-1_i386.deb) ...
Selecting previously deselected package libsasl2-modules.
Unpacking libsasl2-modules (from .../libsasl2-modules_2.1.22.dfsg1-17+b1_i386.deb) ...
Selecting previously deselected package libsasl2-dev.
Unpacking libsasl2-dev (from .../libsasl2-dev_2.1.22.dfsg1-17+b1_i386.deb) ...
Selecting previously deselected package libssl-dev.
Unpacking libssl-dev (from .../libssl-dev_0.9.8g-4_i386.deb) ...
Selecting previously deselected package libtiffxx0c2.
Unpacking libtiffxx0c2 (from .../libtiffxx0c2_3.8.2-7_i386.deb) ...
Selecting previously deselected package libtiff4-dev.
Unpacking libtiff4-dev (from .../libtiff4-dev_3.8.2-7_i386.deb) ...
Selecting previously deselected package libxml2-dev.
Unpacking libxml2-dev (from .../libxml2-dev_2.6.31.dfsg-1_i386.deb) ...
Selecting previously deselected package libxml2-utils.
Unpacking libxml2-utils (from .../libxml2-utils_2.6.31.dfsg-1_i386.deb) ...
Selecting previously deselected package libxslt1-dev.
Unpacking libxslt1-dev (from .../libxslt1-dev_1.1.22-1_i386.deb) ...
Selecting previously deselected package kdelibs4-dev.
Unpacking kdelibs4-dev (from .../kdelibs4-dev_4%3a3.5.8.dfsg.1-7_i386.deb) ...
Selecting previously deselected package libdynamite0.
Unpacking libdynamite0 (from .../libdynamite0_0.1-4.1_i386.deb) ...
Selecting previously deselected package libdynamite-dev.
Unpacking libdynamite-dev (from .../libdynamite-dev_0.1-4.1_i386.deb) ...
Selecting previously deselected package libmimedir0.
Unpacking libmimedir0 (from .../libmimedir0_0.4-4_i386.deb) ...
Selecting previously deselected package libmimedir-dev.
Unpacking libmimedir-dev (from .../libmimedir-dev_0.4-4_i386.deb) ...
Selecting previously deselected package libunshield0.
Unpacking libunshield0 (from .../libunshield0_0.5-3_i386.deb) ...
Selecting previously deselected package liborange0.
Unpacking liborange0 (from .../liborange0_0.3-2_i386.deb) ...
Selecting previously deselected package liborange-dev.
Unpacking liborange-dev (from .../liborange-dev_0.3-2_i386.deb) ...
Selecting previously deselected package librapi2-dev.
Unpacking librapi2-dev (from .../librapi2-dev_0.11-1_i386.deb) ...
Selecting previously deselected package librra0.
Unpacking librra0 (from .../librra0_0.11-1_i386.deb) ...
Selecting previously deselected package libsynce0-dev.
Unpacking libsynce0-dev (from .../libsynce0-dev_0.11-1_i386.deb) ...
Selecting previously deselected package librra0-dev.
Unpacking librra0-dev (from .../librra0-dev_0.11-1_i386.deb) ...
Selecting previously deselected package libunshield-dev.
Unpacking libunshield-dev (from .../libunshield-dev_0.5-3_i386.deb) ...
Selecting previously deselected package libxfont1.
Unpacking libxfont1 (from .../libxfont1_1%3a1.3.1-2_i386.deb) ...
Selecting previously deselected package xfonts-encodings.
Unpacking xfonts-encodings (from .../xfonts-encodings_1%3a1.0.2-3_all.deb) ...
Selecting previously deselected package xfonts-utils.
Unpacking xfonts-utils (from .../xfonts-utils_1%3a1.0.1-2_i386.deb) ...
Selecting previously deselected package xutils.
Unpacking xutils (from .../xutils_1%3a7.3+10_all.deb) ...
Setting up libxau6 (1:1.0.3-2) ...
Setting up libxdmcp6 (1:1.0.2-2) ...
Setting up libx11-data (2:1.0.3-7) ...
Setting up libx11-6 (2:1.0.3-7) ...
Setting up libxext6 (1:1.0.3-2) ...
Setting up libdmx1 (1:1.0.2-2) ...
Setting up libice6 (2:1.0.4-1) ...
Setting up x11proto-core-dev (7.0.11-1) ...
Setting up libice-dev (2:1.0.4-1) ...
Setting up libsm6 (2:1.0.3-1+b1) ...
Setting up libsm-dev (2:1.0.3-1+b1) ...
Setting up libxau-dev (1:1.0.3-2) ...
Setting up libxdmcp-dev (1:1.0.2-2) ...
Setting up x11proto-input-dev (1.4.2-1) ...
Setting up x11proto-xext-dev (7.0.2-5) ...
Setting up x11proto-kb-dev (1.0.3-2) ...
Setting up xtrans-dev (1.0.4-1) ...
Setting up libxfixes3 (1:4.0.3-2) ...
Setting up libxrender1 (1:0.9.4-1) ...
Setting up libxcursor1 (1:1.1.9-1) ...
Setting up x11proto-render-dev (2:0.9.3-2) ...
Setting up x11proto-fixes-dev (4.0-2) ...
Setting up libexpat1 (1.95.8-4) ...
Setting up libfreetype6 (2.3.5-1+b1) ...
Setting up ucf (3.004) ...
Setting up libmagic1 (4.23-2) ...
Setting up file (4.23-2) ...
Setting up libnewt0.52 (0.52.2-11.1) ...
Setting up libpopt0 (1.10-3) ...
Setting up whiptail (0.52.2-11.1) ...
Setting up defoma (0.11.10-0.2) ...
Setting up ttf-dejavu-core (2.23-1) ...
Setting up ttf-dejavu-extra (2.23-1) ...
Setting up ttf-dejavu (2.23-1) ...
Setting up fontconfig-config (2.5.0-2) ...
Setting up libfontconfig1 (2.5.0-2) ...
Setting up libxft2 (2.1.12-2) ...
Setting up libexpat1-dev (1.95.8-4) ...
Setting up zlib1g-dev (1:1.2.3.3.dfsg-11) ...
Setting up libfreetype6-dev (2.3.5-1+b1) ...
Setting up libpcre3 (7.6-1) ...
Setting up libglib2.0-0 (2.14.6-1) ...
Setting up pkg-config (0.22-1) ...
Setting up libfontconfig1-dev (2.5.0-2) ...
Setting up libxi6 (2:1.1.3-1) ...
Setting up libxinerama1 (1:1.0.2-1) ...
Setting up x11proto-xinerama-dev (1.1.2-4) ...
Setting up libxrandr2 (2:1.2.2-1) ...
Setting up x11proto-randr-dev (1.2.1-2) ...
Setting up libxt6 (1:1.0.5-3) ...
Setting up libxmu6 (2:1.0.4-1) ...
Setting up libxpm4 (1:3.5.7-1) ...
Setting up libxaw7 (2:1.0.4-1) ...
Setting up x11-session-utils (7.3+1) ...
Setting up libfontenc1 (1:1.0.4-2) ...
Setting up libdrm2 (2.3.0-4) ...
Setting up libxdamage1 (1:1.1.1-3) ...
Setting up libxxf86vm1 (1:1.0.1-2) ...
Setting up libgl1-mesa-glx (7.0.2-4) ...
Setting up libxmuu1 (2:1.0.4-1) ...
Setting up libxtst6 (2:1.0.3-1) ...
Setting up libxv1 (1:1.0.3-1) ...
Setting up libxxf86dga1 (2:1.0.2-1) ...
Setting up x11-utils (7.3+1) ...
Setting up libfs6 (2:1.0.0-4) ...
Setting up x11-xfs-utils (7.3+1) ...
Setting up libxtrap6 (1:1.0.0-4) ...
Setting up libxxf86misc1 (1:1.0.1-2) ...
Setting up x11-xserver-utils (7.3+2) ...
Setting up xauth (1:1.0.2-2) ...
Setting up xutils-dev (1:7.2.ds2-1) ...
Setting up bsdmainutils (6.1.10) ...
Setting up groff-base (1.18.1.1-16) ...
Setting up libssl0.9.8 (0.9.8g-4) ...
Setting up man-db (2.5.1-2) ...
Building database of manual pages ...
Setting up gettext-base (0.17-2) ...
Setting up libidn11 (1.4-1) ...
Setting up libkeyutils1 (1.2-6) ...
Setting up libkrb53 (1.6.dfsg.3~beta1-2) ...
Setting up libdbus-1-3 (1.1.2-1) ...
Setting up libdbus-glib-1-2 (0.74-1) ...
Setting up libsynce0 (0.11-1) ...
Setting up librapi2 (0.11-1) ...
Setting up agsync (0.2-pre-9) ...
Setting up agsync-dev (0.2-pre-9) ...
Setting up html2text (1.3.2a-3) ...
Setting up libgomp1 (4.3-20080202-1) ...
Setting up gettext (0.17-2) ...
Setting up intltool-debian (0.35.0+20060710.1) ...
Setting up po-debconf (1.0.11) ...
Setting up debhelper (6.0.5) ...
Setting up esound-common (0.2.36-3) ...
Setting up fontconfig (2.5.0-2) ...
Updating font configuration of fontconfig...
Cleaning up category cid..
Cleaning up category truetype..
Cleaning up category type1..
Updating category type1..
Updating category truetype..
Updating category cid..
Updating fontconfig cache for /usr/share/fonts/truetype/ttf-dejavu
Cleaning up old fontconfig caches... done.
Regenerating fonts cache... done.
Setting up hicolor-icon-theme (0.10-1) ...
Setting up hspell (1.0-4) ...
Setting up kdelibs-data (4:3.5.8.dfsg.1-7) ...
Setting up libart-2.0-2 (2.3.20-1) ...
Setting up libartsc0 (1.5.8-1) ...
Setting up libasound2 (1.0.15-3) ...
Setting up libaudio2 (1.9.1-1) ...
Setting up libaudiofile0 (0.2.6-7) ...
Setting up libesd0 (0.2.36-3) ...
Setting up libraw1394-8 (1.3.0-2) ...
Creating device node /dev/raw1394... done.
Setting up libavc1394-0 (0.5.3-1+b1) ...
Setting up libiec61883-0 (1.1.0-2) ...
Setting up libxml2 (2.6.31.dfsg-1) ...
Setting up libfreebob0 (1.0.7-1) ...
Setting up libjack0 (0.109.2-1) ...
Setting up libmad0 (0.15.1b-2.1) ...
Setting up libogg0 (1.1.3-3) ...
Setting up libpng12-0 (1.2.15~beta5-3) ...
Setting up libjpeg62 (6b-14) ...
Setting up liblcms1 (1.16-8) ...
Setting up libmng1 (1.0.9-1) ...
Setting up libqt3-mt (3:3.3.8b-1) ...
Setting up libvorbis0a (1.2.0.dfsg-3) ...
Setting up libvorbisenc2 (1.2.0.dfsg-3) ...
Setting up libvorbisfile3 (1.2.0.dfsg-3) ...
Setting up libarts1c2a (1.5.8-1) ...
Setting up libaspell15 (0.60.5-2) ...
Setting up libavahi-common-data (0.6.22-2) ...
Setting up libavahi-common3 (0.6.22-2) ...
Setting up libavahi-client3 (0.6.22-2) ...
Setting up libavahi-qt3-1 (0.6.22-2) ...
Setting up libcupsys2 (1.3.5-1+b1) ...
Setting up libfam0 (2.7.0-13.1) ...
Setting up libjasper1 (1.900.1-3) ...
Setting up liblua50 (5.0.3-3) ...
Setting up liblualib50 (5.0.3-3) ...
Setting up libopenexr2ldbl (1.2.2-4.4) ...
Setting up libtiff4 (3.8.2-7) ...
Setting up libxslt1.1 (1.1.22-1) ...
Setting up menu-xdg (0.3) ...
Setting up kdelibs4c2a (4:3.5.8.dfsg.1-7) ...
Setting up libattr1-dev (1:2.4.39-1) ...
Setting up libacl1-dev (2.2.45-1) ...
Setting up libart-2.0-dev (2.3.20-1) ...
Setting up libglib2.0-dev (2.14.6-1) ...
Setting up libartsc0-dev (1.5.8-1) ...
Setting up libasound2-dev (1.0.15-3) ...
Setting up libaudio-dev (1.9.1-1) ...
Setting up libaudiofile-dev (0.2.6-7) ...
Setting up libesd0-dev (0.2.36-3) ...
Setting up libjack-dev (0.109.2-1) ...
Setting up libjack0.100.0-dev (0.109.2-1) ...
Setting up libmad0-dev (0.15.1b-2.1) ...
Setting up libogg-dev (1.1.3-3) ...
Setting up libgpg-error-dev (1.4-2) ...
Setting up libgcrypt11-dev (1.4.0-3) ...
Setting up libopencdk10-dev (0.6.6-1) ...
Setting up libtasn1-3-dev (1.3-1) ...
Setting up libgnutls-dev (2.2.1-3) ...
Setting up libkadm55 (1.6.dfsg.3~beta1-2) ...
Setting up comerr-dev (2.1-1.40.6-1) ...
Setting up libkrb5-dev (1.6.dfsg.3~beta1-2) ...
Setting up libcupsys2-dev (1.3.5-1+b1) ...
Setting up libglu1-mesa (7.0.2-4) ...
Setting up libjpeg62-dev (6b-14) ...
Setting up liblcms1-dev (1.16-8) ...
Setting up libmng-dev (1.0.9-1) ...
Setting up libpng12-dev (1.2.15~beta5-3) ...
Setting up libqt3-headers (3:3.3.8b-1) ...
Setting up qt3-dev-tools (3:3.3.8b-1) ...
Setting up libvorbis-dev (1.2.0.dfsg-3) ...
Setting up libaspell-dev (0.60.5-2) ...
Setting up libavahi-common-dev (0.6.22-2) ...
Setting up libdbus-1-dev (1.1.2-1) ...
Setting up libavahi-client-dev (0.6.22-2) ...
Setting up libbz2-dev (1.0.4-3) ...
Setting up libfam-dev (2.7.0-13.1) ...
Setting up libidn11-dev (1.4-1) ...
Setting up libjasper-dev (1.900.1-3) ...
Setting up lua50 (5.0.3-3) ...
Setting up liblua50-dev (5.0.3-3) ...
Setting up liblualib50-dev (5.0.3-3) ...
Setting up libpcrecpp0 (7.6-1) ...
Setting up libpcre3-dev (7.6-1) ...
Setting up libsasl2-modules (2.1.22.dfsg1-17+b1) ...
Setting up libsasl2-dev (2.1.22.dfsg1-17+b1) ...
Setting up libssl-dev (0.9.8g-4) ...
Setting up libtiffxx0c2 (3.8.2-7) ...
Setting up libtiff4-dev (3.8.2-7) ...
Setting up libxml2-dev (2.6.31.dfsg-1) ...
Setting up libxml2-utils (2.6.31.dfsg-1) ...
Setting up libxslt1-dev (1.1.22-1) ...
Setting up libdynamite0 (0.1-4.1) ...
Setting up libdynamite-dev (0.1-4.1) ...
Setting up libmimedir0 (0.4-4) ...
Setting up libmimedir-dev (0.4-4) ...
Setting up libunshield0 (0.5-3) ...
Setting up liborange0 (0.3-2) ...
Setting up liborange-dev (0.3-2) ...
Setting up librapi2-dev (0.11-1) ...
Setting up librra0 (0.11-1) ...
Setting up libsynce0-dev (0.11-1) ...
Setting up librra0-dev (0.11-1) ...
Setting up libunshield-dev (0.5-3) ...
Setting up libxfont1 (1:1.3.1-2) ...
Setting up xfonts-encodings (1:1.0.2-3) ...
Setting up xfonts-utils (1:1.0.1-2) ...
Setting up xutils (1:7.3+10) ...
Setting up libxext-dev (1:1.0.3-2) ...
Setting up libx11-dev (2:1.0.3-7) ...
Setting up libxrender-dev (1:0.9.4-1) ...
Setting up libxfixes-dev (1:4.0.3-2) ...
Setting up libxcursor-dev (1:1.1.9-1) ...
Setting up libxft-dev (2.1.12-2) ...
Setting up libxi-dev (2:1.1.3-1) ...
Setting up libxinerama-dev (1:1.0.2-1) ...
Setting up libxmu-headers (2:1.0.4-1) ...
Setting up libxrandr-dev (2:1.2.2-1) ...
Setting up libxt-dev (1:1.0.5-3) ...
Setting up mesa-common-dev (7.0.2-4) ...
Setting up libgl1-mesa-dev (7.0.2-4) ...
Setting up libglu1-mesa-dev (7.0.2-4) ...
Setting up libxmu-dev (2:1.0.4-1) ...
Setting up libqt3-mt-dev (3:3.3.8b-1) ...
Setting up libarts1-dev (1.5.8-1) ...
Setting up libavahi-qt3-dev (0.6.22-2) ...
Setting up libopenexr-dev (1.2.2-4.4) ...
Setting up kdelibs4-dev (4:3.5.8.dfsg.1-7) ...
Checking correctness of source dependencies...
Kernel: Linux 2.6.18-3-amd64 i386 (x86_64)
Toolchain package versions: libc6-dev_2.7-6 linux-libc-dev_2.6.24-4 gcc-4.2_4.2.3-1 g++-4.2_4.2.3-1 binutils_2.18.1~cvs20080103-1 libstdc++6-4.2-dev_4.2.3-1 libstdc++6_4.3-20080202-1
------------------------------------------------------------------------------
gpg: Signature made Fri Feb 17 21:29:24 2006 CET using DSA key ID 10656584
gpg: Can't check signature: public key not found
dpkg-source: extracting synce-kde in synce-kde-0.9.1
dpkg-source: unpacking synce-kde_0.9.1.orig.tar.gz
dpkg-source: applying ./synce-kde_0.9.1-1.diff.gz
dpkg-buildpackage: source package synce-kde
dpkg-buildpackage: source version 0.9.1-1
dpkg-buildpackage: source changed by Volker Christian <voc@debian.org>
dpkg-buildpackage: host architecture i386
/usr/bin/fakeroot debian/rules clean
perl -w admin/debianrules echodirs > debian/debiandirs
dh_testdir
dh_testroot
dh_clean
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp \
debian/debiandirs debian/system.kdeglobals debian/*.1
# Remove Debian specific patches
if test -f patch-stamp; then \
for patch in /build/user/synce-kde-0.9.1/debian/patches/*.diff ;\
do \
echo REMOVING PATCH\: ${patch##*/};\
patch -p1 -R < $patch ;\
done ;\
rm -f patch-stamp ;\
fi
# Remove build tree
rm -rf /build/user/synce-kde-0.9.1/obj-i486-linux-gnu
# if Makefile exists run distclean
if test -f Makefile; then \
/usr/bin/make distclean; \
fi
if test -d CVS; then \
/usr/bin/make -f admin/Makefile.common cvs-clean ;\
fi
dh_clean
dpkg-source -b synce-kde-0.9.1
dpkg-source: building synce-kde using existing synce-kde_0.9.1.orig.tar.gz
dpkg-source: building synce-kde in synce-kde_0.9.1-1.diff.gz
dpkg-source: building synce-kde in synce-kde_0.9.1-1.dsc
debian/rules build
perl -w admin/debianrules echodirs > debian/debiandirs
dh_testdir
# KDE CVS does not have aclocal.m4 or configure
if test ! -f configure; then \
/usr/bin/make -f admin/Makefile.common ;\
fi
# ensure configure is executable
chmod +x configure
# make build directory
mkdir /build/user/synce-kde-0.9.1/obj-i486-linux-gnu
# run configure with build tree /build/user/synce-kde-0.9.1/obj-i486-linux-gnu
cd /build/user/synce-kde-0.9.1/obj-i486-linux-gnu && \
CXXFLAGS=-fPIC ../configure --disable-debug --disable-rpath --prefix=/usr --sysconfdir=/etc --includedir=/usr/include/kde --infodir=/usr/share/info --mandir=/usr/share/man --with-qt-dir=/usr/share/qt3 \
--with-distribution="$version (`cat /etc/debian_version`)" \
--enable-mitshm --with-alsa --with-ipv6-lookup=auto \
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking for -p flag to install... yes
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for kde-config... /usr/bin/kde-config
checking where to install... /usr (as requested)
checking for style of include used by make... GNU
checking for gcc... gcc
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 gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking whether gcc is blacklisted... no
checking whether g++ supports -Wmissing-format-attribute... yes
checking whether gcc supports -Wmissing-format-attribute... yes
checking whether g++ supports -Wundef... yes
checking whether g++ supports -Wno-long-long... yes
checking whether g++ supports -Wno-non-virtual-dtor... yes
checking whether g++ supports -fno-exceptions... yes
checking whether g++ supports -fno-check-new... yes
checking whether g++ supports -fno-common... yes
checking whether g++ supports -fexceptions... yes
checking how to run the C++ preprocessor... g++ -E
checking whether g++ supports -O0... yes
checking whether g++ supports -Wl,--no-undefined... yes
checking whether g++ supports -Wl,--allow-shlib-undefined... yes
not using lib directory suffix
checking for a sed that does not truncate output... /bin/sed
checking for egrep... grep -E
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognise dependent libraries... pass_all
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 dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for g77... no
checking for f77... no
checking for xlf... no
checking for frt... no
checking for pgf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for f90... no
checking for xlf90... no
checking for pgf90... no
checking for epcf90... no
checking for f95... no
checking for fort... no
checking for xlf95... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for gfortran... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 32768
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if gcc static flag works... yes
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc supports -c -o file.o... yes
checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... no
checking for dlopen in -ldl... yes
checking whether a program can dlopen itself... yes
checking whether a statically linked program can dlopen itself... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC
checking if g++ PIC flag -fPIC works... yes
checking if g++ supports -c -o file.o... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking for shl_load... (cached) no
checking for shl_load in -ldld... (cached) no
checking for dlopen... (cached) no
checking for dlopen in -ldl... (cached) yes
checking whether a program can dlopen itself... (cached) yes
checking whether a statically linked program can dlopen itself... (cached) yes
appending configuration tag "F77" to libtool
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking if C++ programs can be compiled... yes
checking for strlcat... no
checking if strlcat needs custom prototype... yes - in libkdefakes
checking for strlcpy... no
checking if strlcpy needs custom prototype... yes - in libkdefakes
checking for main in -lutil... yes
checking for main in -lcompat... no
checking for crypt in -lcrypt... yes
checking for socklen_t... yes
checking for dnet_ntoa in -ldnet... no
checking for dnet_ntoa in -ldnet_stub... no
checking for inet_ntoa... yes
checking for connect... yes
checking for remove... yes
checking for shmat... yes
checking for sys/types.h... (cached) yes
checking for stdint.h... (cached) yes
checking sys/bitypes.h usability... yes
checking sys/bitypes.h presence... yes
checking for sys/bitypes.h... yes
checking for poll in -lpoll... no
checking Carbon/Carbon.h usability... no
checking Carbon/Carbon.h presence... no
checking for Carbon/Carbon.h... no
checking CoreAudio/CoreAudio.h usability... no
checking CoreAudio/CoreAudio.h presence... no
checking for CoreAudio/CoreAudio.h... no
checking if res_init needs -lresolv... yes
checking for res_init... yes
checking if res_init needs custom prototype... no
checking for killpg in -lucb... no
checking for int... yes
checking size of int... 4
checking for short... yes
checking size of short... 2
checking for long... yes
checking size of long... 4
checking for char *... yes
checking size of char *... 4
checking for dlopen in -ldl... (cached) yes
checking for shl_unload in -ldld... no
checking for size_t... yes
checking size of size_t... 4
checking for unsigned long... yes
checking size of unsigned long... 4
checking sizeof size_t == sizeof unsigned long... yes
checking for PIE support... yes
checking if enabling -pie/fpie support... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking for _NSGetEnviron... no
checking for vsnprintf... yes
checking for snprintf... yes
checking for X... libraries /usr/lib, headers .
checking for IceConnectionNumber in -lICE... yes
checking for libXext... yes
checking for pthread_create in -lpthread... yes
checking for extra includes... no
checking for extra libs... no
checking for libz... -lz
checking for libpng... -lpng -lz -lm
checking for libjpeg6b... no
checking for libjpeg... -ljpeg
checking for perl... /usr/bin/perl
checking for Qt... libraries /usr/share/qt3/lib, headers /usr/share/qt3/include using -mt
checking for moc... /usr/share/qt3/bin/moc
checking for uic... /usr/share/qt3/bin/uic
checking whether uic supports -L ... yes
checking whether uic supports -nounload ... yes
checking if Qt needs -ljpeg... no
checking for rpath... no
checking for KDE... libraries /usr/lib, headers /usr/include/kde
checking if UIC has KDE plugins available... yes
checking for KDE paths... defaults
checking for dcopidl... /usr/bin/dcopidl
checking for dcopidl2cpp... /usr/bin/dcopidl2cpp
checking for mcopidl... /usr/bin/mcopidl
checking for artsc-config... /usr/bin/artsc-config
checking for meinproc... /usr/bin/meinproc
checking for kconfig_compiler... /usr/bin/kconfig_compiler
checking for dcopidlng... /usr/bin/dcopidlng
checking for makekdewidgets... /usr/bin/makekdewidgets
checking for xmllint... /usr/bin/xmllint
checking whether byte ordering is bigendian... no
checking for MAXPATHLEN... 4096
checking if unique application check should be disabled... no
checking for main in -lsynce... yes
checking synce.h usability... yes
checking synce.h presence... yes
checking for synce.h... yes
checking for CeRapiInit in -lrapi... yes
checking rapi.h usability... yes
checking rapi.h presence... yes
checking for rapi.h... yes
checking for rra_matchmaker_replace_partnership in -lrra... yes
checking rra/syncmgr.h usability... yes
checking rra/syncmgr.h presence... yes
checking for rra/syncmgr.h... yes
checking for unshield_open in -lunshield... yes
checking libunshield.h usability... yes
checking libunshield.h presence... yes
checking for libunshield.h... yes
checking for dynamite_explode in -ldynamite... yes
checking libdynamite.h usability... yes
checking libdynamite.h presence... yes
checking for libdynamite.h... yes
checking for orange_squeeze_file in -lorange... yes
checking liborange.h usability... yes
checking liborange.h presence... yes
checking for liborange.h... yes
checking for AGNetInit in -lmal-funcs... yes
checking AGNet.h usability... yes
checking AGNet.h presence... yes
checking for AGNet.h... yes
checking for main in -lpocketpckonnector... no
checking if doc should be compiled... yes
checking if icons should be compiled... yes
checking if po should be compiled... yes
checking if raki should be compiled... yes
checking if rapip should be compiled... yes
checking if sounds should be compiled... yes
checking if vdccm should be compiled... yes
configure: creating ./config.status
can't open ../raki/plugins/pimsync/Makefile.in: No such file or directory
fast creating Makefile
fast creating doc/Makefile
fast creating doc/en/Makefile
fast creating icons/Makefile
fast creating po/Makefile
fast creating raki/Makefile
fast creating raki/interfaces/Makefile
fast creating raki/plugins/Makefile
fast creating raki/plugins/agsync/Makefile
fast creating raki/plugins/pimsync/Makefile
fast creating rapip/Makefile
fast creating sounds/Makefile
fast creating vdccm/Makefile
config.pl: fast created 13 file(s).
config.status: creating config.h
config.status: executing depfiles commands
Good - your configure finished. Start make now
touch configure-stamp
dh_testdir
cd /build/user/synce-kde-0.9.1/obj-i486-linux-gnu && \
/usr/bin/make
make[1]: Entering directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu'
Makefile:884: warning: overriding commands for target `clean-bcheck'
Makefile:847: warning: ignoring old commands for target `clean-bcheck'
Makefile:889: warning: overriding commands for target `bcheck-am'
Makefile:852: warning: ignoring old commands for target `bcheck-am'
/usr/bin/make all-recursive
make[2]: Entering directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu'
Makefile:884: warning: overriding commands for target `clean-bcheck'
Makefile:847: warning: ignoring old commands for target `clean-bcheck'
Makefile:889: warning: overriding commands for target `bcheck-am'
Makefile:852: warning: ignoring old commands for target `bcheck-am'
Making all in doc
make[3]: Entering directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu/doc'
Making all in .
make[4]: Entering directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu/doc'
make[4]: Nothing to be done for `all-am'.
make[4]: Leaving directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu/doc'
Making all in en
make[4]: Entering directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu/doc/en'
/usr/bin/meinproc --check --cache index.cache.bz2 ../../../doc/en/index.docbook
make[4]: Leaving directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu/doc/en'
make[3]: Leaving directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu/doc'
Making all in icons
make[3]: Entering directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu/icons'
Making all in .
make[4]: Entering directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu/icons'
make[4]: Nothing to be done for `all-am'.
make[4]: Leaving directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu/icons'
make[3]: Leaving directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu/icons'
Making all in po
make[3]: Entering directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu/po'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu/po'
Making all in raki
make[3]: Entering directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu/raki'
Making all in plugins
make[4]: Entering directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu/raki/plugins'
Making all in agsync
make[5]: Entering directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu/raki/plugins/agsync'
rm -rf agsyncconfig.h;
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload ../../../../raki/plugins/agsync/agsyncconfig.ui | /usr/bin/perl -pi -e "s,public QWizard,public KWizard,g; s,#include <qwizard.h>,#include <kwizard.h>,g" >> agsyncconfig.h ;
rm -rf serverconfig.h;
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload ../../../../raki/plugins/agsync/serverconfig.ui | /usr/bin/perl -pi -e "s,public QWizard,public KWizard,g; s,#include <qwizard.h>,#include <kwizard.h>,g" >> serverconfig.h ;
rm -rf avantgoclientinstallationdialog.h;
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload ../../../../raki/plugins/agsync/avantgoclientinstallationdialog.ui | /usr/bin/perl -pi -e "s,public QWizard,public KWizard,g; s,#include <qwizard.h>,#include <kwizard.h>,g" >> avantgoclientinstallationdialog.h ;
if /bin/sh ../../../libtool --silent --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../../../../raki/plugins/agsync -I../../.. -I../../../../raki -I../../../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT agsync.lo -MD -MP -MF ".deps/agsync.Tpo" -c -o agsync.lo ../../../../raki/plugins/agsync/agsync.cpp; \
then mv -f ".deps/agsync.Tpo" ".deps/agsync.Plo"; else rm -f ".deps/agsync.Tpo"; exit 1; fi
if /bin/sh ../../../libtool --silent --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../../../../raki/plugins/agsync -I../../.. -I../../../../raki -I../../../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT agsyncfactory.lo -MD -MP -MF ".deps/agsyncfactory.Tpo" -c -o agsyncfactory.lo ../../../../raki/plugins/agsync/agsyncfactory.cpp; \
then mv -f ".deps/agsyncfactory.Tpo" ".deps/agsyncfactory.Plo"; else rm -f ".deps/agsyncfactory.Tpo"; exit 1; fi
if /bin/sh ../../../libtool --silent --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../../../../raki/plugins/agsync -I../../.. -I../../../../raki -I../../../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT syncstream.lo -MD -MP -MF ".deps/syncstream.Tpo" -c -o syncstream.lo ../../../../raki/plugins/agsync/syncstream.cpp; \
then mv -f ".deps/syncstream.Tpo" ".deps/syncstream.Plo"; else rm -f ".deps/syncstream.Tpo"; exit 1; fi
if /bin/sh ../../../libtool --silent --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../../../../raki/plugins/agsync -I../../.. -I../../../../raki -I../../../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT agsyncconfigimpl.lo -MD -MP -MF ".deps/agsyncconfigimpl.Tpo" -c -o agsyncconfigimpl.lo ../../../../raki/plugins/agsync/agsyncconfigimpl.cpp; \
then mv -f ".deps/agsyncconfigimpl.Tpo" ".deps/agsyncconfigimpl.Plo"; else rm -f ".deps/agsyncconfigimpl.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc ../../../../raki/plugins/agsync/serverconfigimpl.h -o serverconfigimpl.moc
if /bin/sh ../../../libtool --silent --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../../../../raki/plugins/agsync -I../../.. -I../../../../raki -I../../../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT serverconfigimpl.lo -MD -MP -MF ".deps/serverconfigimpl.Tpo" -c -o serverconfigimpl.lo ../../../../raki/plugins/agsync/serverconfigimpl.cpp; \
then mv -f ".deps/serverconfigimpl.Tpo" ".deps/serverconfigimpl.Plo"; else rm -f ".deps/serverconfigimpl.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc ../../../../raki/plugins/agsync/avantgoclientinstallationdialogimpl.h -o avantgoclientinstallationdialogimpl.moc
if /bin/sh ../../../libtool --silent --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../../../../raki/plugins/agsync -I../../.. -I../../../../raki -I../../../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT avantgoclientinstallationdialogimpl.lo -MD -MP -MF ".deps/avantgoclientinstallationdialogimpl.Tpo" -c -o avantgoclientinstallationdialogimpl.lo ../../../../raki/plugins/agsync/avantgoclientinstallationdialogimpl.cpp; \
then mv -f ".deps/avantgoclientinstallationdialogimpl.Tpo" ".deps/avantgoclientinstallationdialogimpl.Plo"; else rm -f ".deps/avantgoclientinstallationdialogimpl.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc agsyncconfig.h -o agsyncconfig.moc
rm -f agsyncconfig.cpp
echo '#include <kdialog.h>' > agsyncconfig.cpp
echo '#include <klocale.h>' >> agsyncconfig.cpp
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload -tr tr2i18n -i agsyncconfig.h ../../../../raki/plugins/agsync/agsyncconfig.ui > agsyncconfig.cpp.temp ; ret=$?; \
/usr/bin/perl -pe "s,tr2i18n( \"\" ),QString::null,g" agsyncconfig.cpp.temp | /usr/bin/perl -pe "s,tr2i18n( \"\"\, \"\" ),QString::null,g" | /usr/bin/perl -pe "s,image([0-9][0-9]*)_data,img\$1_agsyncconfig,g" | /usr/bin/perl -pe "s,: QWizard\(,: KWizard(,g" >> agsyncconfig.cpp ;\
rm -f agsyncconfig.cpp.temp ;\
if test "$ret" = 0; then echo '#include "agsyncconfig.moc"' >> agsyncconfig.cpp; else rm -f agsyncconfig.cpp ; exit $ret ; fi
if /bin/sh ../../../libtool --silent --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../../../../raki/plugins/agsync -I../../.. -I../../../../raki -I../../../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT agsyncconfig.lo -MD -MP -MF ".deps/agsyncconfig.Tpo" -c -o agsyncconfig.lo ../../../../raki/plugins/agsync/agsyncconfig.cpp; \
then mv -f ".deps/agsyncconfig.Tpo" ".deps/agsyncconfig.Plo"; else rm -f ".deps/agsyncconfig.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc serverconfig.h -o serverconfig.moc
rm -f serverconfig.cpp
echo '#include <kdialog.h>' > serverconfig.cpp
echo '#include <klocale.h>' >> serverconfig.cpp
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload -tr tr2i18n -i serverconfig.h ../../../../raki/plugins/agsync/serverconfig.ui > serverconfig.cpp.temp ; ret=$?; \
/usr/bin/perl -pe "s,tr2i18n( \"\" ),QString::null,g" serverconfig.cpp.temp | /usr/bin/perl -pe "s,tr2i18n( \"\"\, \"\" ),QString::null,g" | /usr/bin/perl -pe "s,image([0-9][0-9]*)_data,img\$1_serverconfig,g" | /usr/bin/perl -pe "s,: QWizard\(,: KWizard(,g" >> serverconfig.cpp ;\
rm -f serverconfig.cpp.temp ;\
if test "$ret" = 0; then echo '#include "serverconfig.moc"' >> serverconfig.cpp; else rm -f serverconfig.cpp ; exit $ret ; fi
if /bin/sh ../../../libtool --silent --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../../../../raki/plugins/agsync -I../../.. -I../../../../raki -I../../../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT serverconfig.lo -MD -MP -MF ".deps/serverconfig.Tpo" -c -o serverconfig.lo ../../../../raki/plugins/agsync/serverconfig.cpp; \
then mv -f ".deps/serverconfig.Tpo" ".deps/serverconfig.Plo"; else rm -f ".deps/serverconfig.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc avantgoclientinstallationdialog.h -o avantgoclientinstallationdialog.moc
rm -f avantgoclientinstallationdialog.cpp
echo '#include <kdialog.h>' > avantgoclientinstallationdialog.cpp
echo '#include <klocale.h>' >> avantgoclientinstallationdialog.cpp
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload -tr tr2i18n -i avantgoclientinstallationdialog.h ../../../../raki/plugins/agsync/avantgoclientinstallationdialog.ui > avantgoclientinstallationdialog.cpp.temp ; ret=$?; \
/usr/bin/perl -pe "s,tr2i18n( \"\" ),QString::null,g" avantgoclientinstallationdialog.cpp.temp | /usr/bin/perl -pe "s,tr2i18n( \"\"\, \"\" ),QString::null,g" | /usr/bin/perl -pe "s,image([0-9][0-9]*)_data,img\$1_avantgoclientinstallationdialog,g" | /usr/bin/perl -pe "s,: QWizard\(,: KWizard(,g" >> avantgoclientinstallationdialog.cpp ;\
rm -f avantgoclientinstallationdialog.cpp.temp ;\
if test "$ret" = 0; then echo '#include "avantgoclientinstallationdialog.moc"' >> avantgoclientinstallationdialog.cpp; else rm -f avantgoclientinstallationdialog.cpp ; exit $ret ; fi
if /bin/sh ../../../libtool --silent --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../../../../raki/plugins/agsync -I../../.. -I../../../../raki -I../../../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT avantgoclientinstallationdialog.lo -MD -MP -MF ".deps/avantgoclientinstallationdialog.Tpo" -c -o avantgoclientinstallationdialog.lo ../../../../raki/plugins/agsync/avantgoclientinstallationdialog.cpp; \
then mv -f ".deps/avantgoclientinstallationdialog.Tpo" ".deps/avantgoclientinstallationdialog.Plo"; else rm -f ".deps/avantgoclientinstallationdialog.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc ../../../../raki/plugins/agsync/agsync.h -o agsync.moc.cpp
if /bin/sh ../../../libtool --silent --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../../../../raki/plugins/agsync -I../../.. -I../../../../raki -I../../../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT agsync.moc.lo -MD -MP -MF ".deps/agsync.moc.Tpo" -c -o agsync.moc.lo agsync.moc.cpp; \
then mv -f ".deps/agsync.moc.Tpo" ".deps/agsync.moc.Plo"; else rm -f ".deps/agsync.moc.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc ../../../../raki/plugins/agsync/agsyncfactory.h -o agsyncfactory.moc.cpp
if /bin/sh ../../../libtool --silent --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../../../../raki/plugins/agsync -I../../.. -I../../../../raki -I../../../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT agsyncfactory.moc.lo -MD -MP -MF ".deps/agsyncfactory.moc.Tpo" -c -o agsyncfactory.moc.lo agsyncfactory.moc.cpp; \
then mv -f ".deps/agsyncfactory.moc.Tpo" ".deps/agsyncfactory.moc.Plo"; else rm -f ".deps/agsyncfactory.moc.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc ../../../../raki/plugins/agsync/agsyncconfigimpl.h -o agsyncconfigimpl.moc.cpp
if /bin/sh ../../../libtool --silent --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../../../../raki/plugins/agsync -I../../.. -I../../../../raki -I../../../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT agsyncconfigimpl.moc.lo -MD -MP -MF ".deps/agsyncconfigimpl.moc.Tpo" -c -o agsyncconfigimpl.moc.lo agsyncconfigimpl.moc.cpp; \
then mv -f ".deps/agsyncconfigimpl.moc.Tpo" ".deps/agsyncconfigimpl.moc.Plo"; else rm -f ".deps/agsyncconfigimpl.moc.Tpo"; exit 1; fi
/bin/sh ../../../libtool --silent --tag=CXX --mode=link g++ -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -o rakiagsync.la -rpath /usr/lib/kde3 -avoid-version -module -L/usr/share/qt3/lib -L/usr/lib --whole_archive -rdynamic agsync.lo agsyncfactory.lo syncstream.lo agsyncconfigimpl.lo serverconfigimpl.lo avantgoclientinstallationdialogimpl.lo agsyncconfig.lo serverconfig.lo avantgoclientinstallationdialog.lo agsync.moc.lo agsyncfactory.moc.lo agsyncconfigimpl.moc.lo -lmal-funcs
make[5]: Leaving directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu/raki/plugins/agsync'
make[5]: Entering directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu/raki/plugins'
make[5]: Nothing to be done for `all-am'.
make[5]: Leaving directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu/raki/plugins'
make[4]: Leaving directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu/raki/plugins'
Making all in interfaces
make[4]: Entering directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu/raki/interfaces'
if g++ -DHAVE_CONFIG_H -I. -I../../../raki/interfaces -I../.. -I../../../raki -I../../../raki/interfaces -I../ -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT rakisyncfactory.o -MD -MP -MF ".deps/rakisyncfactory.Tpo" -c -o rakisyncfactory.o ../../../raki/interfaces/rakisyncfactory.cpp; \
then mv -f ".deps/rakisyncfactory.Tpo" ".deps/rakisyncfactory.Po"; else rm -f ".deps/rakisyncfactory.Tpo"; exit 1; fi
if g++ -DHAVE_CONFIG_H -I. -I../../../raki/interfaces -I../.. -I../../../raki -I../../../raki/interfaces -I../ -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT rakisyncplugin.o -MD -MP -MF ".deps/rakisyncplugin.Tpo" -c -o rakisyncplugin.o ../../../raki/interfaces/rakisyncplugin.cpp; \
then mv -f ".deps/rakisyncplugin.Tpo" ".deps/rakisyncplugin.Po"; else rm -f ".deps/rakisyncplugin.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc ../../../raki/interfaces/rakisyncfactory.h -o rakisyncfactory.moc.cpp
if g++ -DHAVE_CONFIG_H -I. -I../../../raki/interfaces -I../.. -I../../../raki -I../../../raki/interfaces -I../ -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT rakisyncfactory.moc.o -MD -MP -MF ".deps/rakisyncfactory.moc.Tpo" -c -o rakisyncfactory.moc.o rakisyncfactory.moc.cpp; \
then mv -f ".deps/rakisyncfactory.moc.Tpo" ".deps/rakisyncfactory.moc.Po"; else rm -f ".deps/rakisyncfactory.moc.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc ../../../raki/interfaces/rakisyncplugin.h -o rakisyncplugin.moc.cpp
if g++ -DHAVE_CONFIG_H -I. -I../../../raki/interfaces -I../.. -I../../../raki -I../../../raki/interfaces -I../ -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT rakisyncplugin.moc.o -MD -MP -MF ".deps/rakisyncplugin.moc.Tpo" -c -o rakisyncplugin.moc.o rakisyncplugin.moc.cpp; \
then mv -f ".deps/rakisyncplugin.moc.Tpo" ".deps/rakisyncplugin.moc.Po"; else rm -f ".deps/rakisyncplugin.moc.Tpo"; exit 1; fi
rm -f libinterfaces.a
ar cru libinterfaces.a rakisyncfactory.o rakisyncplugin.o rakisyncfactory.moc.o rakisyncplugin.moc.o
ranlib libinterfaces.a
make[4]: Leaving directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu/raki/interfaces'
make[4]: Entering directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu/raki'
rm -rf management.h;
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload ../../raki/management.ui | /usr/bin/perl -pi -e "s,public QWizard,public KWizard,g; s,#include <qwizard.h>,#include <kwizard.h>,g" >> management.h ;
rm -rf runwindow.h;
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload ../../raki/runwindow.ui | /usr/bin/perl -pi -e "s,public QWizard,public KWizard,g; s,#include <qwizard.h>,#include <kwizard.h>,g" >> runwindow.h ;
rm -rf configdialog.h;
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload ../../raki/configdialog.ui | /usr/bin/perl -pi -e "s,public QWizard,public KWizard,g; s,#include <qwizard.h>,#include <kwizard.h>,g" >> configdialog.h ;
rm -rf installdialog.h;
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload ../../raki/installdialog.ui | /usr/bin/perl -pi -e "s,public QWizard,public KWizard,g; s,#include <qwizard.h>,#include <kwizard.h>,g" >> installdialog.h ;
rm -rf passworddialog.h;
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload ../../raki/passworddialog.ui | /usr/bin/perl -pi -e "s,public QWizard,public KWizard,g; s,#include <qwizard.h>,#include <kwizard.h>,g" >> passworddialog.h ;
rm -rf pdaconfigdialog.h;
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload ../../raki/pdaconfigdialog.ui | /usr/bin/perl -pi -e "s,public QWizard,public KWizard,g; s,#include <qwizard.h>,#include <kwizard.h>,g" >> pdaconfigdialog.h ;
rm -rf syncdialog.h;
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload ../../raki/syncdialog.ui | /usr/bin/perl -pi -e "s,public QWizard,public KWizard,g; s,#include <qwizard.h>,#include <kwizard.h>,g" >> syncdialog.h ;
rm -rf removepartnershipdialog.h;
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload ../../raki/removepartnershipdialog.ui | /usr/bin/perl -pi -e "s,public QWizard,public KWizard,g; s,#include <qwizard.h>,#include <kwizard.h>,g" >> removepartnershipdialog.h ;
rm -rf welcomedialog.h;
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload ../../raki/welcomedialog.ui | /usr/bin/perl -pi -e "s,public QWizard,public KWizard,g; s,#include <qwizard.h>,#include <kwizard.h>,g" >> welcomedialog.h ;
rm -rf initprogress.h;
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload ../../raki/initprogress.ui | /usr/bin/perl -pi -e "s,public QWizard,public KWizard,g; s,#include <qwizard.h>,#include <kwizard.h>,g" >> initprogress.h ;
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT raki.o -MD -MP -MF ".deps/raki.Tpo" -c -o raki.o ../../raki/raki.cpp; \
then mv -f ".deps/raki.Tpo" ".deps/raki.Po"; else rm -f ".deps/raki.Tpo"; exit 1; fi
../../raki/raki.cpp: In member function 'bool Raki::dccmConnect()':
../../raki/raki.cpp:291: warning: '__comp_ctor ' is deprecated (declared at /usr/include/kde/ksock.h:108)
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT rakiworkerthread.o -MD -MP -MF ".deps/rakiworkerthread.Tpo" -c -o rakiworkerthread.o ../../raki/rakiworkerthread.cpp; \
then mv -f ".deps/rakiworkerthread.Tpo" ".deps/rakiworkerthread.Po"; else rm -f ".deps/rakiworkerthread.Tpo"; exit 1; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT runwindowimpl.o -MD -MP -MF ".deps/runwindowimpl.Tpo" -c -o runwindowimpl.o ../../raki/runwindowimpl.cpp; \
then mv -f ".deps/runwindowimpl.Tpo" ".deps/runwindowimpl.Po"; else rm -f ".deps/runwindowimpl.Tpo"; exit 1; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT managerimpl.o -MD -MP -MF ".deps/managerimpl.Tpo" -c -o managerimpl.o ../../raki/managerimpl.cpp; \
then mv -f ".deps/managerimpl.Tpo" ".deps/managerimpl.Po"; else rm -f ".deps/managerimpl.Tpo"; exit 1; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT configdialogimpl.o -MD -MP -MF ".deps/configdialogimpl.Tpo" -c -o configdialogimpl.o ../../raki/configdialogimpl.cpp; \
then mv -f ".deps/configdialogimpl.Tpo" ".deps/configdialogimpl.Po"; else rm -f ".deps/configdialogimpl.Tpo"; exit 1; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT workerthreadinterface.o -MD -MP -MF ".deps/workerthreadinterface.Tpo" -c -o workerthreadinterface.o ../../raki/workerthreadinterface.cpp; \
then mv -f ".deps/workerthreadinterface.Tpo" ".deps/workerthreadinterface.Po"; else rm -f ".deps/workerthreadinterface.Tpo"; exit 1; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT installer.o -MD -MP -MF ".deps/installer.Tpo" -c -o installer.o ../../raki/installer.cpp; \
then mv -f ".deps/installer.Tpo" ".deps/installer.Po"; else rm -f ".deps/installer.Tpo"; exit 1; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT pda.o -MD -MP -MF ".deps/pda.Tpo" -c -o pda.o ../../raki/pda.cpp; \
then mv -f ".deps/pda.Tpo" ".deps/pda.Po"; else rm -f ".deps/pda.Tpo"; exit 1; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT passworddialogimpl.o -MD -MP -MF ".deps/passworddialogimpl.Tpo" -c -o passworddialogimpl.o ../../raki/passworddialogimpl.cpp; \
then mv -f ".deps/passworddialogimpl.Tpo" ".deps/passworddialogimpl.Po"; else rm -f ".deps/passworddialogimpl.Tpo"; exit 1; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT pdaconfigdialogimpl.o -MD -MP -MF ".deps/pdaconfigdialogimpl.Tpo" -c -o pdaconfigdialogimpl.o ../../raki/pdaconfigdialogimpl.cpp; \
then mv -f ".deps/pdaconfigdialogimpl.Tpo" ".deps/pdaconfigdialogimpl.Po"; else rm -f ".deps/pdaconfigdialogimpl.Tpo"; exit 1; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT rra.o -MD -MP -MF ".deps/rra.Tpo" -c -o rra.o ../../raki/rra.cpp; \
then mv -f ".deps/rra.Tpo" ".deps/rra.Po"; else rm -f ".deps/rra.Tpo"; exit 1; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT syncdialogimpl.o -MD -MP -MF ".deps/syncdialogimpl.Tpo" -c -o syncdialogimpl.o ../../raki/syncdialogimpl.cpp; \
then mv -f ".deps/syncdialogimpl.Tpo" ".deps/syncdialogimpl.Po"; else rm -f ".deps/syncdialogimpl.Tpo"; exit 1; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT synctasklistitem.o -MD -MP -MF ".deps/synctasklistitem.Tpo" -c -o synctasklistitem.o ../../raki/synctasklistitem.cpp; \
then mv -f ".deps/synctasklistitem.Tpo" ".deps/synctasklistitem.Po"; else rm -f ".deps/synctasklistitem.Tpo"; exit 1; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT removepartnershipdialogimpl.o -MD -MP -MF ".deps/removepartnershipdialogimpl.Tpo" -c -o removepartnershipdialogimpl.o ../../raki/removepartnershipdialogimpl.cpp; \
then mv -f ".deps/removepartnershipdialogimpl.Tpo" ".deps/removepartnershipdialogimpl.Po"; else rm -f ".deps/removepartnershipdialogimpl.Tpo"; exit 1; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT welcomedialogimpl.o -MD -MP -MF ".deps/welcomedialogimpl.Tpo" -c -o welcomedialogimpl.o ../../raki/welcomedialogimpl.cpp; \
then mv -f ".deps/welcomedialogimpl.Tpo" ".deps/welcomedialogimpl.Po"; else rm -f ".deps/welcomedialogimpl.Tpo"; exit 1; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT threadevent.o -MD -MP -MF ".deps/threadevent.Tpo" -c -o threadevent.o ../../raki/threadevent.cpp; \
then mv -f ".deps/threadevent.Tpo" ".deps/threadevent.Po"; else rm -f ".deps/threadevent.Tpo"; exit 1; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT syncthread.o -MD -MP -MF ".deps/syncthread.Tpo" -c -o syncthread.o ../../raki/syncthread.cpp; \
then mv -f ".deps/syncthread.Tpo" ".deps/syncthread.Po"; else rm -f ".deps/syncthread.Tpo"; exit 1; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT rapiwrapper.o -MD -MP -MF ".deps/rapiwrapper.Tpo" -c -o rapiwrapper.o ../../raki/rapiwrapper.cpp; \
then mv -f ".deps/rapiwrapper.Tpo" ".deps/rapiwrapper.Po"; else rm -f ".deps/rapiwrapper.Tpo"; exit 1; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT matchmaker.o -MD -MP -MF ".deps/matchmaker.Tpo" -c -o matchmaker.o ../../raki/matchmaker.cpp; \
then mv -f ".deps/matchmaker.Tpo" ".deps/matchmaker.Po"; else rm -f ".deps/matchmaker.Tpo"; exit 1; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT rakiapi.o -MD -MP -MF ".deps/rakiapi.Tpo" -c -o rakiapi.o ../../raki/rakiapi.cpp; \
then mv -f ".deps/rakiapi.Tpo" ".deps/rakiapi.Po"; else rm -f ".deps/rakiapi.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc management.h -o management.moc
rm -f management.cpp
echo '#include <kdialog.h>' > management.cpp
echo '#include <klocale.h>' >> management.cpp
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload -tr tr2i18n -i management.h ../../raki/management.ui > management.cpp.temp ; ret=$?; \
/usr/bin/perl -pe "s,tr2i18n( \"\" ),QString::null,g" management.cpp.temp | /usr/bin/perl -pe "s,tr2i18n( \"\"\, \"\" ),QString::null,g" | /usr/bin/perl -pe "s,image([0-9][0-9]*)_data,img\$1_management,g" | /usr/bin/perl -pe "s,: QWizard\(,: KWizard(,g" >> management.cpp ;\
rm -f management.cpp.temp ;\
if test "$ret" = 0; then echo '#include "management.moc"' >> management.cpp; else rm -f management.cpp ; exit $ret ; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT management.o -MD -MP -MF ".deps/management.Tpo" -c -o management.o ../../raki/management.cpp; \
then mv -f ".deps/management.Tpo" ".deps/management.Po"; else rm -f ".deps/management.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc runwindow.h -o runwindow.moc
rm -f runwindow.cpp
echo '#include <kdialog.h>' > runwindow.cpp
echo '#include <klocale.h>' >> runwindow.cpp
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload -tr tr2i18n -i runwindow.h ../../raki/runwindow.ui > runwindow.cpp.temp ; ret=$?; \
/usr/bin/perl -pe "s,tr2i18n( \"\" ),QString::null,g" runwindow.cpp.temp | /usr/bin/perl -pe "s,tr2i18n( \"\"\, \"\" ),QString::null,g" | /usr/bin/perl -pe "s,image([0-9][0-9]*)_data,img\$1_runwindow,g" | /usr/bin/perl -pe "s,: QWizard\(,: KWizard(,g" >> runwindow.cpp ;\
rm -f runwindow.cpp.temp ;\
if test "$ret" = 0; then echo '#include "runwindow.moc"' >> runwindow.cpp; else rm -f runwindow.cpp ; exit $ret ; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT runwindow.o -MD -MP -MF ".deps/runwindow.Tpo" -c -o runwindow.o ../../raki/runwindow.cpp; \
then mv -f ".deps/runwindow.Tpo" ".deps/runwindow.Po"; else rm -f ".deps/runwindow.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc configdialog.h -o configdialog.moc
rm -f configdialog.cpp
echo '#include <kdialog.h>' > configdialog.cpp
echo '#include <klocale.h>' >> configdialog.cpp
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload -tr tr2i18n -i configdialog.h ../../raki/configdialog.ui > configdialog.cpp.temp ; ret=$?; \
/usr/bin/perl -pe "s,tr2i18n( \"\" ),QString::null,g" configdialog.cpp.temp | /usr/bin/perl -pe "s,tr2i18n( \"\"\, \"\" ),QString::null,g" | /usr/bin/perl -pe "s,image([0-9][0-9]*)_data,img\$1_configdialog,g" | /usr/bin/perl -pe "s,: QWizard\(,: KWizard(,g" >> configdialog.cpp ;\
rm -f configdialog.cpp.temp ;\
if test "$ret" = 0; then echo '#include "configdialog.moc"' >> configdialog.cpp; else rm -f configdialog.cpp ; exit $ret ; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT configdialog.o -MD -MP -MF ".deps/configdialog.Tpo" -c -o configdialog.o ../../raki/configdialog.cpp; \
then mv -f ".deps/configdialog.Tpo" ".deps/configdialog.Po"; else rm -f ".deps/configdialog.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc installdialog.h -o installdialog.moc
rm -f installdialog.cpp
echo '#include <kdialog.h>' > installdialog.cpp
echo '#include <klocale.h>' >> installdialog.cpp
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload -tr tr2i18n -i installdialog.h ../../raki/installdialog.ui > installdialog.cpp.temp ; ret=$?; \
/usr/bin/perl -pe "s,tr2i18n( \"\" ),QString::null,g" installdialog.cpp.temp | /usr/bin/perl -pe "s,tr2i18n( \"\"\, \"\" ),QString::null,g" | /usr/bin/perl -pe "s,image([0-9][0-9]*)_data,img\$1_installdialog,g" | /usr/bin/perl -pe "s,: QWizard\(,: KWizard(,g" >> installdialog.cpp ;\
rm -f installdialog.cpp.temp ;\
if test "$ret" = 0; then echo '#include "installdialog.moc"' >> installdialog.cpp; else rm -f installdialog.cpp ; exit $ret ; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT installdialog.o -MD -MP -MF ".deps/installdialog.Tpo" -c -o installdialog.o ../../raki/installdialog.cpp; \
then mv -f ".deps/installdialog.Tpo" ".deps/installdialog.Po"; else rm -f ".deps/installdialog.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc passworddialog.h -o passworddialog.moc
rm -f passworddialog.cpp
echo '#include <kdialog.h>' > passworddialog.cpp
echo '#include <klocale.h>' >> passworddialog.cpp
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload -tr tr2i18n -i passworddialog.h ../../raki/passworddialog.ui > passworddialog.cpp.temp ; ret=$?; \
/usr/bin/perl -pe "s,tr2i18n( \"\" ),QString::null,g" passworddialog.cpp.temp | /usr/bin/perl -pe "s,tr2i18n( \"\"\, \"\" ),QString::null,g" | /usr/bin/perl -pe "s,image([0-9][0-9]*)_data,img\$1_passworddialog,g" | /usr/bin/perl -pe "s,: QWizard\(,: KWizard(,g" >> passworddialog.cpp ;\
rm -f passworddialog.cpp.temp ;\
if test "$ret" = 0; then echo '#include "passworddialog.moc"' >> passworddialog.cpp; else rm -f passworddialog.cpp ; exit $ret ; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT passworddialog.o -MD -MP -MF ".deps/passworddialog.Tpo" -c -o passworddialog.o ../../raki/passworddialog.cpp; \
then mv -f ".deps/passworddialog.Tpo" ".deps/passworddialog.Po"; else rm -f ".deps/passworddialog.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc pdaconfigdialog.h -o pdaconfigdialog.moc
rm -f pdaconfigdialog.cpp
echo '#include <kdialog.h>' > pdaconfigdialog.cpp
echo '#include <klocale.h>' >> pdaconfigdialog.cpp
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload -tr tr2i18n -i pdaconfigdialog.h ../../raki/pdaconfigdialog.ui > pdaconfigdialog.cpp.temp ; ret=$?; \
/usr/bin/perl -pe "s,tr2i18n( \"\" ),QString::null,g" pdaconfigdialog.cpp.temp | /usr/bin/perl -pe "s,tr2i18n( \"\"\, \"\" ),QString::null,g" | /usr/bin/perl -pe "s,image([0-9][0-9]*)_data,img\$1_pdaconfigdialog,g" | /usr/bin/perl -pe "s,: QWizard\(,: KWizard(,g" >> pdaconfigdialog.cpp ;\
rm -f pdaconfigdialog.cpp.temp ;\
if test "$ret" = 0; then echo '#include "pdaconfigdialog.moc"' >> pdaconfigdialog.cpp; else rm -f pdaconfigdialog.cpp ; exit $ret ; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT pdaconfigdialog.o -MD -MP -MF ".deps/pdaconfigdialog.Tpo" -c -o pdaconfigdialog.o ../../raki/pdaconfigdialog.cpp; \
then mv -f ".deps/pdaconfigdialog.Tpo" ".deps/pdaconfigdialog.Po"; else rm -f ".deps/pdaconfigdialog.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc syncdialog.h -o syncdialog.moc
rm -f syncdialog.cpp
echo '#include <kdialog.h>' > syncdialog.cpp
echo '#include <klocale.h>' >> syncdialog.cpp
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload -tr tr2i18n -i syncdialog.h ../../raki/syncdialog.ui > syncdialog.cpp.temp ; ret=$?; \
/usr/bin/perl -pe "s,tr2i18n( \"\" ),QString::null,g" syncdialog.cpp.temp | /usr/bin/perl -pe "s,tr2i18n( \"\"\, \"\" ),QString::null,g" | /usr/bin/perl -pe "s,image([0-9][0-9]*)_data,img\$1_syncdialog,g" | /usr/bin/perl -pe "s,: QWizard\(,: KWizard(,g" >> syncdialog.cpp ;\
rm -f syncdialog.cpp.temp ;\
if test "$ret" = 0; then echo '#include "syncdialog.moc"' >> syncdialog.cpp; else rm -f syncdialog.cpp ; exit $ret ; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT syncdialog.o -MD -MP -MF ".deps/syncdialog.Tpo" -c -o syncdialog.o ../../raki/syncdialog.cpp; \
then mv -f ".deps/syncdialog.Tpo" ".deps/syncdialog.Po"; else rm -f ".deps/syncdialog.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc removepartnershipdialog.h -o removepartnershipdialog.moc
rm -f removepartnershipdialog.cpp
echo '#include <kdialog.h>' > removepartnershipdialog.cpp
echo '#include <klocale.h>' >> removepartnershipdialog.cpp
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload -tr tr2i18n -i removepartnershipdialog.h ../../raki/removepartnershipdialog.ui > removepartnershipdialog.cpp.temp ; ret=$?; \
/usr/bin/perl -pe "s,tr2i18n( \"\" ),QString::null,g" removepartnershipdialog.cpp.temp | /usr/bin/perl -pe "s,tr2i18n( \"\"\, \"\" ),QString::null,g" | /usr/bin/perl -pe "s,image([0-9][0-9]*)_data,img\$1_removepartnershipdialog,g" | /usr/bin/perl -pe "s,: QWizard\(,: KWizard(,g" >> removepartnershipdialog.cpp ;\
rm -f removepartnershipdialog.cpp.temp ;\
if test "$ret" = 0; then echo '#include "removepartnershipdialog.moc"' >> removepartnershipdialog.cpp; else rm -f removepartnershipdialog.cpp ; exit $ret ; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT removepartnershipdialog.o -MD -MP -MF ".deps/removepartnershipdialog.Tpo" -c -o removepartnershipdialog.o ../../raki/removepartnershipdialog.cpp; \
then mv -f ".deps/removepartnershipdialog.Tpo" ".deps/removepartnershipdialog.Po"; else rm -f ".deps/removepartnershipdialog.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc welcomedialog.h -o welcomedialog.moc
rm -f welcomedialog.cpp
echo '#include <kdialog.h>' > welcomedialog.cpp
echo '#include <klocale.h>' >> welcomedialog.cpp
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload -tr tr2i18n -i welcomedialog.h ../../raki/welcomedialog.ui > welcomedialog.cpp.temp ; ret=$?; \
/usr/bin/perl -pe "s,tr2i18n( \"\" ),QString::null,g" welcomedialog.cpp.temp | /usr/bin/perl -pe "s,tr2i18n( \"\"\, \"\" ),QString::null,g" | /usr/bin/perl -pe "s,image([0-9][0-9]*)_data,img\$1_welcomedialog,g" | /usr/bin/perl -pe "s,: QWizard\(,: KWizard(,g" >> welcomedialog.cpp ;\
rm -f welcomedialog.cpp.temp ;\
if test "$ret" = 0; then echo '#include "welcomedialog.moc"' >> welcomedialog.cpp; else rm -f welcomedialog.cpp ; exit $ret ; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT welcomedialog.o -MD -MP -MF ".deps/welcomedialog.Tpo" -c -o welcomedialog.o ../../raki/welcomedialog.cpp; \
then mv -f ".deps/welcomedialog.Tpo" ".deps/welcomedialog.Po"; else rm -f ".deps/welcomedialog.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc initprogress.h -o initprogress.moc
rm -f initprogress.cpp
echo '#include <kdialog.h>' > initprogress.cpp
echo '#include <klocale.h>' >> initprogress.cpp
/usr/share/qt3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload -tr tr2i18n -i initprogress.h ../../raki/initprogress.ui > initprogress.cpp.temp ; ret=$?; \
/usr/bin/perl -pe "s,tr2i18n( \"\" ),QString::null,g" initprogress.cpp.temp | /usr/bin/perl -pe "s,tr2i18n( \"\"\, \"\" ),QString::null,g" | /usr/bin/perl -pe "s,image([0-9][0-9]*)_data,img\$1_initprogress,g" | /usr/bin/perl -pe "s,: QWizard\(,: KWizard(,g" >> initprogress.cpp ;\
rm -f initprogress.cpp.temp ;\
if test "$ret" = 0; then echo '#include "initprogress.moc"' >> initprogress.cpp; else rm -f initprogress.cpp ; exit $ret ; fi
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT initprogress.o -MD -MP -MF ".deps/initprogress.Tpo" -c -o initprogress.o ../../raki/initprogress.cpp; \
then mv -f ".deps/initprogress.Tpo" ".deps/initprogress.Po"; else rm -f ".deps/initprogress.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc ../../raki/welcomedialogimpl.h -o welcomedialogimpl.moc.cpp
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT welcomedialogimpl.moc.o -MD -MP -MF ".deps/welcomedialogimpl.moc.Tpo" -c -o welcomedialogimpl.moc.o welcomedialogimpl.moc.cpp; \
then mv -f ".deps/welcomedialogimpl.moc.Tpo" ".deps/welcomedialogimpl.moc.Po"; else rm -f ".deps/welcomedialogimpl.moc.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc ../../raki/pda.h -o pda.moc.cpp
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT pda.moc.o -MD -MP -MF ".deps/pda.moc.Tpo" -c -o pda.moc.o pda.moc.cpp; \
then mv -f ".deps/pda.moc.Tpo" ".deps/pda.moc.Po"; else rm -f ".deps/pda.moc.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc ../../raki/syncdialogimpl.h -o syncdialogimpl.moc.cpp
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT syncdialogimpl.moc.o -MD -MP -MF ".deps/syncdialogimpl.moc.Tpo" -c -o syncdialogimpl.moc.o syncdialogimpl.moc.cpp; \
then mv -f ".deps/syncdialogimpl.moc.Tpo" ".deps/syncdialogimpl.moc.Po"; else rm -f ".deps/syncdialogimpl.moc.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc ../../raki/synctasklistitem.h -o synctasklistitem.moc.cpp
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT synctasklistitem.moc.o -MD -MP -MF ".deps/synctasklistitem.moc.Tpo" -c -o synctasklistitem.moc.o synctasklistitem.moc.cpp; \
then mv -f ".deps/synctasklistitem.moc.Tpo" ".deps/synctasklistitem.moc.Po"; else rm -f ".deps/synctasklistitem.moc.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc ../../raki/threadevent.h -o threadevent.moc.cpp
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT threadevent.moc.o -MD -MP -MF ".deps/threadevent.moc.Tpo" -c -o threadevent.moc.o threadevent.moc.cpp; \
then mv -f ".deps/threadevent.moc.Tpo" ".deps/threadevent.moc.Po"; else rm -f ".deps/threadevent.moc.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc ../../raki/passworddialogimpl.h -o passworddialogimpl.moc.cpp
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT passworddialogimpl.moc.o -MD -MP -MF ".deps/passworddialogimpl.moc.Tpo" -c -o passworddialogimpl.moc.o passworddialogimpl.moc.cpp; \
then mv -f ".deps/passworddialogimpl.moc.Tpo" ".deps/passworddialogimpl.moc.Po"; else rm -f ".deps/passworddialogimpl.moc.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc ../../raki/installer.h -o installer.moc.cpp
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT installer.moc.o -MD -MP -MF ".deps/installer.moc.Tpo" -c -o installer.moc.o installer.moc.cpp; \
then mv -f ".deps/installer.moc.Tpo" ".deps/installer.moc.Po"; else rm -f ".deps/installer.moc.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc ../../raki/managerimpl.h -o managerimpl.moc.cpp
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT managerimpl.moc.o -MD -MP -MF ".deps/managerimpl.moc.Tpo" -c -o managerimpl.moc.o managerimpl.moc.cpp; \
then mv -f ".deps/managerimpl.moc.Tpo" ".deps/managerimpl.moc.Po"; else rm -f ".deps/managerimpl.moc.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc ../../raki/pdaconfigdialogimpl.h -o pdaconfigdialogimpl.moc.cpp
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT pdaconfigdialogimpl.moc.o -MD -MP -MF ".deps/pdaconfigdialogimpl.moc.Tpo" -c -o pdaconfigdialogimpl.moc.o pdaconfigdialogimpl.moc.cpp; \
then mv -f ".deps/pdaconfigdialogimpl.moc.Tpo" ".deps/pdaconfigdialogimpl.moc.Po"; else rm -f ".deps/pdaconfigdialogimpl.moc.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc ../../raki/configdialogimpl.h -o configdialogimpl.moc.cpp
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT configdialogimpl.moc.o -MD -MP -MF ".deps/configdialogimpl.moc.Tpo" -c -o configdialogimpl.moc.o configdialogimpl.moc.cpp; \
then mv -f ".deps/configdialogimpl.moc.Tpo" ".deps/configdialogimpl.moc.Po"; else rm -f ".deps/configdialogimpl.moc.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc ../../raki/raki.h -o raki.moc.cpp
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT raki.moc.o -MD -MP -MF ".deps/raki.moc.Tpo" -c -o raki.moc.o raki.moc.cpp; \
then mv -f ".deps/raki.moc.Tpo" ".deps/raki.moc.Po"; else rm -f ".deps/raki.moc.Tpo"; exit 1; fi
/usr/share/qt3/bin/moc ../../raki/syncthread.h -o syncthread.moc.cpp
if g++ -DHAVE_CONFIG_H -I. -I../../raki -I.. -I../../raki/interfaces -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -MT syncthread.moc.o -MD -MP -MF ".deps/syncthread.moc.Tpo" -c -o syncthread.moc.o syncthread.moc.cpp; \
then mv -f ".deps/syncthread.moc.Tpo" ".deps/syncthread.moc.Po"; else rm -f ".deps/syncthread.moc.Tpo"; exit 1; fi
/bin/sh ../libtool --silent --tag=CXX --mode=link g++ -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -fPIC -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -o raki -L/usr/share/qt3/lib -L/usr/lib -Wl,--export-dynamic --whole-archive -Wno-non-virtual-dtor raki.o rakiworkerthread.o runwindowimpl.o managerimpl.o configdialogimpl.o workerthreadinterface.o installer.o pda.o passworddialogimpl.o pdaconfigdialogimpl.o rra.o syncdialogimpl.o synctasklistitem.o removepartnershipdialogimpl.o welcomedialogimpl.o threadevent.o syncthread.o rapiwrapper.o matchmaker.o rakiapi.o management.o runwindow.o configdialog.o installdialog.o passworddialog.o pdaconfigdialog.o syncdialog.o removepartnershipdialog.o welcomedialog.o initprogress.o welcomedialogimpl.moc.o pda.moc.o syncdialogimpl.moc.o synctasklistitem.moc.o threadevent.moc.o passworddialogimpl.moc.o installer.moc.o managerimpl.moc.o pdaconfigdialogimpl.moc.o configdialogimpl.moc.o raki.moc.o syncthread.moc.o ../raki/interfaces/libinterfaces.a -lkdeui -lkabc -lorange -lrra -lrapi -lsynce -lunshield -ldynamite
/usr/bin/ld: cannot find -ldbus-glib-1
collect2: ld returned 1 exit status
make[4]: *** [raki] Error 1
make[4]: Leaving directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu/raki'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu/raki'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/build/user/synce-kde-0.9.1/obj-i486-linux-gnu'
make: *** [build-stamp] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
******************************************************************************
Build finished at 20080213-0228
FAILED [dpkg-buildpackage died]
Purging /var/lib/schroot/mount/sid32-e2a8270f-dcbb-4066-b55e-ccf4a55e78b5/build/user/synce-kde-0.9.1
------------------------------------------------------------------------------
Not removing build depends: session managed chroot in use
******************************************************************************
Finished at 20080213-0228
Build needed 00:01:05, 8316k disk space
DC-Build-Status: Failed 134.348852s
|