Sie sind nicht angemeldet.

Lieber Besucher, herzlich willkommen bei: GentooForum.de. Falls dies Ihr erster Besuch auf dieser Seite ist, lesen Sie sich bitte die Hilfe durch. Dort wird Ihnen die Bedienung dieser Seite näher erläutert. Darüber hinaus sollten Sie sich registrieren, um alle Funktionen dieser Seite nutzen zu können. Benutzen Sie das Registrierungsformular, um sich zu registrieren oder informieren Sie sich ausführlich über den Registrierungsvorgang. Falls Sie sich bereits zu einem früheren Zeitpunkt registriert haben, können Sie sich hier anmelden.

RKnoerig

unregistriert

1

05.10.2013, 14:46

Pakete werden mit Kennzeichnung [ rR ] ständig neu compiliert

Momentan werden einige Pakete bei jedem Aufruf von emerge immer wieder neu installiert, worüber sich speziell die SSD freuen würde. Ich behelfe mir mit --nodeps zwar ab, aber ein Dauerzustand ist das nicht.
Ein Beispiel:

Quellcode

1
2
3
4
5
6
7
8
9
10
11
emerge -pu dev-libs/libclc
[...]
[ebuild  rR	] dev-libs/boost-1.53.0 
[ebuild  rR	] dev-vcs/mercurial-2.7.2 
[ebuild  rR	] dev-util/meld-1.8.1 
[ebuild  N 	] app-admin/chrpath-0.13-r2  USE="-static-libs" 
[ebuild 	U  ] sys-devel/llvm-3.3-r1 [3.2] USE="clang%* static-analyzer%* -python%" ABI_X86="(64%*) -32% (-x32)" PYTHON_TARGETS="python2_6%* python2_7%* -pypy2_0%" VIDEO_CARDS="-radeon%" 
[ebuild  rR	] app-office/libreoffice-4.1.2.2-r1 
[ebuild  N 	] sys-devel/clang-3.3-r100  USE="static-analyzer -debug -multitarget -python" ABI_X86="(64) -32 (-x32)" 
[ebuild  N 	] dev-libs/libclc-0.0.1_pre20130819 
[ebuild  rR	] media-libs/openimageio-1.1.8


Angefangen hat es mit dem Paket media-libs/openimageio-1.1.8, nun sind auch die Schwergewichte libreoffice und boost mit dabei. Gibt es da Abhilfe?

2

05.10.2013, 15:10

Das hat schon so seine Richtigkeit. Wenn sich die Bibliotheken ändern gegen die ein Paket gebaut wurde, muss es gegen die neuen Bibliotheken neu kompiliert werden. Portage erkennt das dann automatisch und will sie eben neu bauen.

Wie man das verhindern kann? Gar nicht...

So spontan würde mir nur einfallen, bei einem World Update --deep weg zu lassen, damit Abhängigkeiten nur bei Bedarf aktualisiert werden. Ob das allerdings bzgl. Sicherheitslücken klug ist, ist wohl eine andere Sache. Empfehlenswert ist es wohl eher nicht.

3

05.10.2013, 15:24

Hm, klingt ein wenig nach python-exec:2
falls ja, python-exec aus Slot 2 wird zZt zu spät installiert, und somit kommt es dann zu einem zweiten rebuild der Abhängigkeiten. Das ist so nicht gewollt und auch nicht richtig - siehe dazu zb auch im Bug 486580

Mein Workaround war python-exec:2 gleich beim world Update mit anzugeben, dann wird es gleich mit zu anfang in der richtigen Reihenfolge mit installiert, und somit war dann auch nur ein rebuild der Abhängigkeiten nötig. Also zb

Quellcode

1
emerge -avuDN @world -1 python-exec:2

Dies trifft aber nur zu wenn es sich wirklich um python-exec:2 handelt.

RKnoerig

unregistriert

4

05.10.2013, 15:44

Das hat schon so seine Richtigkeit. Wenn sich die Bibliotheken ändern gegen die ein Paket gebaut wurde, muss es gegen die neuen Bibliotheken neu kompiliert werden. Portage erkennt das dann automatisch und will sie eben neu bauen.

Wie man das verhindern kann? Gar nicht...

So spontan würde mir nur einfallen, bei einem World Update --deep weg zu lassen, damit Abhängigkeiten nur bei Bedarf aktualisiert werden. Ob das allerdings bzgl. Sicherheitslücken klug ist, ist wohl eine andere Sache. Empfehlenswert ist es wohl eher nicht.
Es kann doch nicht sein, daß bei der Aktualisierung/Installation jedes beliebigen kleinen ebuilds LibreOffice mit kompiliert wird! Ein solches Erstellungssystem, das dies bewußt tut, könnte man nur als unbrauchbar ansehen.

RKnoerig

unregistriert

5

05.10.2013, 15:48

Emerge world geht leider nicht

Eine Welt-Aktualisierung geht leider momentan auch nicht - da will irgendwas systemd, und was anderes will das überhaupt nicht:

Quellcode

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
emerge -avpuDN @world -1 python-exec:2
/usr/lib64/portage/pym/portage/package/ebuild/config.py:432: UserWarning: 'cache.metadata_overlay.database' is deprecated: /etc/portage/modules
  (user_auxdbmodule, modules_file))
!!! Repository 'wavilen' is missing masters attribute in '/var/lib/layman/wavilen/metadata/layout.conf'
!!! Set 'masters = gentoo' in this file for future compatibility
!!! Repository 'mistafunk' is missing masters attribute in '/var/lib/layman/mistafunk/metadata/layout.conf'
!!! Set 'masters = gentoo' in this file for future compatibility
!!! Repository 'scarabeus' is missing masters attribute in '/var/lib/layman/scarabeus/metadata/layout.conf'
!!! Set 'masters = gentoo' in this file for future compatibility
--- Invalid atom in /etc/portage/package.keywords/cross--h: cross--h/[latest]
--- Invalid atom in /etc/portage/package.keywords/cross-msp430: cross-msp430/[latest]

These are the packages that would be merged, in order:

Calculating dependencies... done!
[ebuild 	U  ] sys-libs/timezone-data-2013g [2013c] USE="nls" 390 kB
[ebuild 	U  ] media-libs/libsidplayfp-1.1.0 [0.3.8] USE="mmx%* -static-libs" 606 kB
[ebuild 	U  ] app-arch/lbzip2-2.3 [2.2-r1] USE="-debug -symlink" 616 kB
[ebuild 	U  ] sys-libs/mtdev-1.1.4 [1.1.3] USE="-static-libs" 268 kB
[ebuild 	U  ] dev-lang/jimtcl-0.74-r1 [0.73] USE="-doc -static-libs" 2,251 kB
[ebuild 	U  ] sys-apps/debianutils-4.4 [4.3.4] USE="-static" 266 kB
[ebuild   R	] x11-base/xorg-drivers-1.14  INPUT_DEVICES="evdev keyboard mouse -acecad -aiptek -elographics -fpit -hyperpen -joystick -mutouch -penmount -synaptics -tslib -vmmouse -void -wacom" VIDEO_CARDS="fglrx -apm -ast -chips -cirrus -dummy -epson -fbdev (-geode) -glint -i128 (-i740) -intel -mach64 -mga -modesetting -neomagic% -nouveau -nv -nvidia (-omap) (-omapfb) -qxl -r128 -radeon -radeonsi% -rendition -s3virge -savage -siliconmotion -sisusb (-sunbw2) (-suncg14) (-suncg3) (-suncg6) (-sunffb) (-sunleo) (-suntcx) -tdfx -tga -trident -tseng -v4l -vesa -via -virtualbox -vmware (-voodoo)" 0 kB
[ebuild 	U  ] dev-lisp/asdf-3.0.2.1:0/3.0.2.1 [3.0.1:0/3.0.1] USE="-doc" 381 kB
[ebuild 	U  ] dev-lisp/uiop-3.0.2.1 [3.0.1] 0 kB
[ebuild 	U  ] dev-lisp/sbcl-1.1.11:0/1.1.11 [1.1.7:0/0] USE="threads unicode zlib -debug -doc -source" 13,429 kB
[ebuild 	U  ] app-arch/xz-utils-5.0.5-r1 [5.0.5] USE="nls threads -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild  NS	] dev-python/python-exec-2.0:2 [0.3.1:0] PYTHON_TARGETS="(jython2_5) (jython2_7) (pypy2_0) (python2_6) (python2_7) (python3_2) (python3_3)" 79 kB
[ebuild 	U  ] virtual/libiconv-0-r1 [0] ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] dev-libs/expat-2.1.0-r3 [2.1.0-r2] USE="unicode -examples -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] media-libs/ilmbase-2.0.1-r1:0/2.0.1 [2.0.0:0/10] USE="-static-libs" ABI_X86="(64%*) -32% (-x32)" 543 kB
[ebuild 	U  ] media-libs/x264-0.0.20130912:0/138 [0.0.20130506:0/132] USE="interlaced sse%* threads -10bit -pic -static-libs (-custom-cflags%)" ABI_X86="(64%*) -32% (-x32)" 615 kB
[ebuild 	U  ] media-libs/vo-aacenc-0.1.3 [0.1.2] USE="-examples (-neon) -static-libs" ABI_X86="(64%*) -32% (-x32)" 599 kB
[ebuild 	U  ] media-libs/libdvdcss-1.2.13-r1:1.2 [1.2.13:1.2] USE="-doc -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] dev-libs/libffi-3.0.13-r1 [3.0.13] USE="-debug -pax_kernel -static-libs {-test}" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild   R	] dev-python/python-exec-0.3.1  PYTHON_TARGETS="(jython2_5) (jython2_7) (pypy2_0) (python2_6) (python2_7) (python3_2) (python3_3) (-pypy1_9%*) (-python2_5%*) (-python3_1%*)" 0 kB
[ebuild 	U  ] media-libs/dumb-0.9.3-r2 [0.9.3-r1] USE="-debug" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] virtual/libffi-3.0.13-r1 [3.0.11] ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] dev-libs/gobject-introspection-common-1.36.0 [1.34.2] 0 kB
[ebuild 	U  ] app-portage/portage-utils-0.40 [0.30] USE="-static" 394 kB
[ebuild 	U  ] sys-devel/m4-1.4.17 [1.4.16] USE="-examples" 1,123 kB
[ebuild 	U  ] gnome-base/gnome-common-3.7.4:3 [3.6.0:3] 149 kB
[ebuild 	U  ] media-libs/libcddb-1.3.2-r1 [1.3.2] USE="-doc -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] media-libs/libquvi-scripts-0.4.17 [0.4.16] USE="-offensive" 116 kB
[ebuild 	U  ] dev-libs/gmp-5.1.3 [5.1.2] USE="cxx -doc -pgo -static-libs" 1,777 kB
[ebuild 	U  ] dev-libs/mpfr-3.1.2-r1 [3.1.2] USE="-static-libs" 0 kB
[ebuild  N 	] dev-qt/qtlockedfile-2.4.1  USE="-doc" 53 kB
[ebuild 	U  ] app-misc/ca-certificates-20130906 [20130610] 181 kB
[ebuild 	U  ] virtual/jpeg-0-r2 [0] USE="-static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] app-text/docbook-xsl-stylesheets-1.78.0-r1 [1.78.0] USE="-ruby" 0 kB
[ebuild 	U  ] virtual/udev-206-r3 [206-r2] USE="gudev introspection kmod (-selinux) -static-libs" ABI_X86="(64) -32 (-x32)" 0 kB
[ebuild 	U  ] virtual/libusb-1-r1:1 [1:1] ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild  N 	] app-emacs/eselect-mode-1.3.8  165 kB
[ebuild 	U  ] app-emacs/po-mode-0.18.3.1 [0.18.1.1] 15,959 kB
[ebuild 	U  ] app-emacs/lua-mode-20130419 [20100617-r1] 26 kB
[ebuild 	U  ] app-admin/eselect-1.3.8 [1.3.6] USE="emacs%* -doc -vim-syntax%" 0 kB
[ebuild 	U  ] sci-libs/fftw-3.3.3-r3:3.0 [3.3.3-r2:3.0] USE="fortran openmp sse sse2 threads (-altivec) -avx -doc -fma -mpi (-neon) -quad -static-libs {-test} (-zbus)" ABI_X86="(64) -32 (-x32)" 0 kB
[ebuild 	U  ] dev-lang/swig-2.0.11 [2.0.10] USE="pcre -ccache -doc" 5,186 kB
[ebuild 	U  ] sys-apps/fakeroot-1.20 [1.19] USE="acl -static-libs {-test}" 314 kB
[ebuild 	U  ] x11-misc/xdg-utils-1.1.0_rc1_p20130921 [1.1.0_rc1_p20120916] USE="perl -doc" 265 kB
[ebuild 	U  ] app-text/build-docbook-catalog-1.20 [1.19.1] 5 kB
[ebuild 	U  ] virtual/fam-0-r1 [0] ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] virtual/perl-MIME-Base64-3.140.0 [3.130.0-r2] 0 kB
[ebuild 	U  ] virtual/perl-libnet-1.230.0 [1.220.0-r1] 0 kB
[ebuild 	U  ] virtual/blas-2.1::science [1.0::gentoo] USE="-doc%" 0 kB
[ebuild 	U  ] dev-libs/libatasmart-0.19-r1 [0.19] USE="-static-libs" 7 kB
[ebuild 	U  ] dev-db/mysql-init-scripts-2.0_pre1-r6 [2.0_pre1-r3] 0 kB
[ebuild 	U  ] app-crypt/p11-kit-0.20.1 [0.18.4] USE="asn1 trust -debug" 1,149 kB
[ebuild 	U  ] sys-power/acpid-2.0.20 [2.0.18] USE="(-selinux)" 148 kB
[ebuild 	U  ] dev-libs/libusb-compat-0.1.5-r2 [0.1.5] USE="-debug -examples% -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] app-text/libwpd-0.9.9:0.9 [0.9.8:0.9] USE="tools -doc {-test}" 529 kB
[ebuild 	U  ] sys-process/vixie-cron-4.1-r13 [4.1-r12] USE="pam -debug (-selinux)" 0 kB
[ebuild 	U  ] virtual/libusb-0-r1 [0] ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] sys-libs/zlib-1.2.8-r1 [1.2.8] USE="minizip -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] media-libs/fontconfig-2.10.93:1.0 [2.10.92:1.0] USE="-doc -static-libs" ABI_X86="(64) -32 (-x32)" 1,491 kB
[ebuild 	U  ] media-libs/alsa-lib-1.0.27.2 [1.0.27.1] USE="-alisp -debug -doc -python" ABI_X86="(64) -32 (-x32)" PYTHON_SINGLE_TARGET="python2_7" PYTHON_TARGETS="python2_7" 886 kB
[ebuild 	U  ] media-libs/libsamplerate-0.1.8-r1 [0.1.8] USE="-sndfile -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] x11-proto/videoproto-2.3.2 [2.3.1-r1] ABI_X86="(64) -32 (-x32)" 117 kB
[ebuild 	U  ] dev-libs/libgcrypt-1.5.3:0/11 [1.5.2-r1:0/11] USE="-static-libs" 1,474 kB
[ebuild 	U  ] media-libs/libdvdread-4.2.0-r1 [4.2.0] USE="css" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] dev-db/sqlite-3.8.0.2:3 [3.7.17:3] USE="icu readline -debug -doc -secure-delete -static-libs -tcl {-test} (-extensions%*)" 1,835 kB
[ebuild 	U  ] media-libs/libmad-0.15.1b-r8 [0.15.1b-r7] USE="-debug -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] app-text/libpaper-1.1.24-r2 [1.1.24-r1] ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] x11-apps/iceauth-1.0.6 [1.0.5] 131 kB
[ebuild 	U  ] media-libs/a52dec-0.7.4-r7 [0.7.4-r6] USE="-djbfft -oss -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] media-libs/libdca-0.0.5-r3 [0.0.5-r2] USE="-debug -oss -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] media-sound/cdparanoia-3.10.2-r6 [3.10.2-r5] USE="-static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] dev-libs/libgamin-0.1.10-r4 [0.1.10-r3] USE="-debug -python -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] sys-devel/patch-2.7.1-r2 [2.7.1-r1] USE="-static {-test} -xattr" 0 kB
[ebuild 	U  ] dev-lang/tcl-8.6.1:0/8.6 [8.6.0-r1:0/8.6] USE="threads -debug" 5,639 kB
[ebuild 	U  ] sys-apps/kbd-2.0.0 [1.15.5-r1] USE="nls pam {-test%}" 929 kB
[ebuild 	U  ] x11-misc/util-macros-1.17.1 [1.17] 78 kB
[ebuild  N 	] x11-proto/dmxproto-2.3.1  95 kB
[ebuild 	U  ] media-libs/speex-1.2_rc1-r2 [1.2_rc1-r1] USE="ogg sse -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild  N 	] dev-libs/iniparser-3.1  USE="-doc -examples -static-libs" 39 kB
[ebuild 	U  ] media-libs/libpng-1.6.6:0/16 [1.6.2:0/16] USE="apng (-neon) -static-libs" ABI_X86="(64%*) -32% (-x32)" 860 kB
[ebuild 	U  ] media-libs/tiff-4.0.3-r5 [4.0.3-r2] USE="cxx jpeg zlib -jbig -lzma -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] media-libs/openexr-2.0.1-r1:0/2.0.1 [2.0.0:0/20] USE="-examples -static-libs" ABI_X86="(64%*) -32% (-x32)" 12,314 kB
[ebuild 	U  ] media-libs/libdvdnav-4.2.0-r1 [4.2.0] ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] sys-libs/cracklib-2.9.0-r1 [2.9.0] USE="nls zlib -python -static-libs (-build%)" 0 kB
[ebuild 	U  ] sys-apps/file-5.15 [5.12-r1] USE="zlib -python -static-libs" PYTHON_TARGETS="python2_6%* python2_7%* python3_3%* -pypy2_0% -python3_2%" 641 kB
[ebuild 	U  ] app-admin/gamin-0.1.10-r1 [0.1.10] ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] media-libs/libsndfile-1.0.25-r1 [1.0.25] USE="alsa -minimal -sqlite -static-libs {-test%}" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] media-sound/mpg123-1.15.4-r1 [1.15.4] USE="alsa ipv6 sdl sse (-3dnow) (-3dnowext) (-altivec) (-coreaudio) -int-quality -jack (-mmx) -nas -oss -portaudio -pulseaudio" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] x11-libs/libpciaccess-0.13.2 [0.13.1-r1] USE="zlib -minimal -static-libs" ABI_X86="(64) -32 (-x32)" 351 kB
[ebuild 	U  ] sci-libs/hdf5-1.8.11:0/1.8.11 [1.8.10_p1:0/1.8.10] USE="fortran zlib -cxx -debug -examples -fortran2003 -mpi -static-libs -szip -threads" 5,790 kB
[ebuild 	U  ] media-sound/sidplayfp-1.1.0 [0.3.3] USE="alsa -oss -pulseaudio" 217 kB
[ebuild 	U  ] dev-libs/botan-1.10.5 [1.10.3-r1] USE="bzip2 ssl threads zlib -bindist -doc -gmp -python -static-libs%" PYTHON_TARGETS="python2_6 python2_7 python3_3 -python3_2 (-python3_1%)" 2,163 kB
[ebuild 	U  ] media-libs/lcms-2.5-r1:2 [2.5:2] USE="jpeg tiff zlib -doc -static-libs {-test}" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] x11-libs/libXfont-1.4.6 [1.4.5-r1] USE="bzip2 ipv6 truetype -doc -static-libs" 478 kB
[ebuild 	U  ] x11-apps/mkfontscale-1.1.1 [1.1.0] 137 kB
[ebuild 	U  ] media-libs/libraw-0.15.4:0/9 [0.15.2:0/9] USE="jpeg jpeg2k lcms openmp -demosaic -examples -static-libs" 1,395 kB
[ebuild 	U  ] media-fonts/dejavu-2.34 [2.33] USE="X -fontforge" 4,597 kB
[ebuild 	U  ] media-fonts/liberation-fonts-2.00.1 [2.00.0-r1] USE="X -fontforge" 2,233 kB
[ebuild 	U  ] sys-apps/man-pages-3.53 [3.51] USE="nls" LINGUAS="de -da -fr -it -ja -nl -pl -ro -ru -zh_CN" 1,141 kB
[ebuild 	U  ] sci-libs/gsl-1.16-r1::science [1.15::gentoo] USE="-cblas-external -static-libs" 3,452 kB
[ebuild 	U  ] virtual/cblas-2.0::science [1.0::gentoo] 0 kB
[ebuild 	U  ] media-libs/openjpeg-1.5.1-r1 [1.5.1] USE="-doc -static-libs {-test}" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] dev-cpp/eigen-3.2.0:3::science [3.1.3:3::gentoo] USE="fftw%* fortran%* -adolc% -doc -gmp% -mkl% -sparse% -static-libs% {-test%} (-debug%)" 1,110 kB
[ebuild 	U  ] sci-libs/lapack-reference-3.4.2::science [3.2.1-r1::gentoo] USE="-static-libs% {-test%} -xblas% (-doc%)" 0 kB
[ebuild 	U  ] net-libs/libssh-0.5.5:0/4 [0.5.4:0/4] USE="gcrypt sftp zlib -debug -doc -examples -pcap -server -ssh1 -static-libs {-test}" 315 kB
[ebuild 	U  ] dev-games/physfs-2.0.3-r1 [2.0.3] USE="zip -doc -grp -hog -mvl -qpak -static-libs -wad" ABI_X86="(64%*) -32% (-x32)" 0 kB
[uninstall 	] app-admin/eselect-cblas-0.1 
[blocks b  	] app-admin/eselect-cblas ("app-admin/eselect-cblas" is blocking sci-libs/lapack-reference-3.4.2, dev-cpp/eigen-3.2.0, sci-libs/gsl-1.16-r1)
[uninstall 	] app-admin/eselect-lapack-0.1 
[blocks b  	] app-admin/eselect-lapack ("app-admin/eselect-lapack" is blocking sci-libs/lapack-reference-3.4.2, dev-cpp/eigen-3.2.0, sci-libs/gsl-1.16-r1)
[ebuild 	U  ] virtual/lapack-3.4::science [3.1::gentoo] USE="-doc%" 0 kB
[ebuild 	U  ] dev-lang/orc-0.4.18 [0.4.17] USE="-examples -static-libs" ABI_X86="(64%*) -32% (-x32)" 716 kB
[ebuild 	U  ] app-text/lcdf-typetools-2.99 [2.98] USE="kpathsea" 613 kB
[ebuild 	U  ] app-arch/p7zip-9.20.1-r5 [9.20.1-r4] USE="kde pch wxwidgets -doc -rar (-static)" 0 kB
[ebuild 	U  ] dev-libs/nspr-4.10.1 [4.10] USE="-debug" 1,078 kB
[ebuild 	U  ] virtual/perl-ExtUtils-Command-1.180.0 [1.170.0-r3] 0 kB
[ebuild 	U  ] virtual/perl-PodParser-1.610.0 [1.510.0-r1] 0 kB
[ebuild   R	] dev-lang/perl-5.16.3:0/5.16  USE="berkdb gdbm -debug -doc -ithreads (-build%)" 0 kB
[ebuild 	U  ] dev-perl/TermReadKey-2.300.200 [2.300.0] 37 kB
[ebuild 	U  ] dev-perl/WWW-RobotRules-6.10.0-r1 [6.10.0] 0 kB
[ebuild 	U  ] dev-perl/HTML-Parser-3.710.0 [3.690.0] USE="{-test}" 89 kB
[ebuild 	U  ] dev-perl/Net-SSLeay-1.550 [1.520.0] 386 kB
[ebuild 	U  ] dev-perl/Net-Daemon-0.480.0-r1 [0.480.0] 0 kB
[ebuild 	U  ] app-text/qpdf-5.0.0:0/13 [4.1.0:0/10] USE="-doc -examples -static-libs {-test}" 7,380 kB
[ebuild 	U  ] dev-perl/libintl-perl-1.230.0 [1.210.0] 512 kB
[ebuild 	U  ] perl-core/Scalar-List-Utils-1.320.0 [1.270.0] 72 kB
[ebuild 	U  ] perl-core/Digest-MD5-2.530.0 [2.520.0] 47 kB
[ebuild 	U  ] perl-core/Storable-2.450.0 [2.390.0] 180 kB
[ebuild 	U  ] perl-core/Sys-Syslog-0.330.0 [0.320.0] 81 kB
[ebuild 	U  ] perl-core/Digest-SHA-5.850.0 [5.820.0] USE="{-test%}" 42 kB
[ebuild 	U  ] perl-core/Encode-2.550.0 [2.490.0] 1,962 kB
[ebuild 	U  ] sys-apps/help2man-1.43.3 [1.43.2] USE="nls" 195 kB
[ebuild 	U  ] dev-tex/latexmk-437 [435] 408 kB
[ebuild 	U  ] dev-perl/Algorithm-Diff-1.190.200-r1 [1.190.200] 0 kB
[ebuild 	U  ] media-libs/exiftool-9.270.0 [9.120.0] 3,534 kB
[ebuild 	U  ] app-text/openjade-1.3.2-r6 [1.3.2-r5] USE="-static-libs" 0 kB
[ebuild 	U  ] dev-perl/SGMLSpm-1.03-r7 [1.03-r6] 0 kB
[ebuild  N 	] dev-perl/Text-CharWidth-0.40.0  9 kB
[ebuild 	U  ] perl-core/version-0.990.400 [0.990.200] 106 kB
[ebuild 	U  ] perl-core/Test-Harness-3.280.0 [3.260.0] 292 kB
[ebuild 	U  ] perl-core/Archive-Tar-1.920.0 [1.900.0] USE="{-test%}" 58 kB
[ebuild 	U  ] perl-core/ExtUtils-ParseXS-3.220.0 [3.180.0] 65 kB
[ebuild 	U  ] perl-core/Params-Check-0.380.0 [0.360.0] 12 kB
[ebuild 	U  ] perl-core/Module-CoreList-2.970.0 [2.840.0] 66 kB
[ebuild 	U  ] perl-core/Parse-CPAN-Meta-1.440.700 [1.440.400] 21 kB
[ebuild 	U  ] perl-core/ExtUtils-Manifest-1.630.0 [1.610.0] 29 kB
[ebuild 	U  ] perl-core/Getopt-Long-2.410.0 [2.390.0] 42 kB
[ebuild 	U  ] sys-apps/lm_sensors-3.3.4-r1 [3.3.4] USE="-sensord -static-libs" 0 kB
[ebuild 	U  ] virtual/perl-Scalar-List-Utils-1.320.0 [1.270.0] 0 kB
[ebuild 	U  ] virtual/perl-Digest-MD5-2.530.0 [2.520.0] 0 kB
[ebuild 	U  ] virtual/perl-Storable-2.450.0 [2.390.0] 0 kB
[ebuild 	U  ] virtual/perl-Encode-2.550.0 [2.490.0] 0 kB
[ebuild 	U  ] virtual/perl-Sys-Syslog-0.330.0 [0.320.0] 0 kB
[ebuild 	U  ] virtual/perl-Digest-SHA-5.850.0 [5.820.0] 0 kB
[ebuild 	U  ] virtual/perl-version-0.990.400 [0.990.200] 0 kB
[ebuild 	U  ] virtual/perl-Parse-CPAN-Meta-1.440.700 [1.440.400] 0 kB
[ebuild 	U  ] virtual/perl-Params-Check-0.380.0 [0.360.0] 0 kB
[ebuild  N 	] dev-perl/Text-WrapI18N-0.60.0  4 kB
[ebuild 	U  ] virtual/perl-Test-Harness-3.280.0 [3.260.0] 0 kB
[ebuild 	U  ] virtual/perl-Archive-Tar-1.920.0 [1.900.0] 0 kB
[ebuild 	U  ] virtual/perl-ExtUtils-ParseXS-3.220.0 [3.180.0] 0 kB
[ebuild 	U  ] virtual/perl-Module-CoreList-2.970.0 [2.840.0] 0 kB
[ebuild 	U  ] virtual/perl-ExtUtils-Manifest-1.630.0 [1.610.0] 0 kB
[ebuild 	U  ] virtual/perl-Getopt-Long-2.410.0 [2.390.0] 0 kB
[ebuild 	U  ] dev-perl/IO-Socket-SSL-1.953.0 [1.840.0] USE="-idn" 88 kB
[ebuild 	U  ] dev-perl/PlRPC-0.202.0-r1 [0.202.0] 0 kB
[ebuild 	U  ] perl-core/Module-Load-Conditional-0.580.0 [0.540.0] 13 kB
[ebuild 	U  ] perl-core/CPAN-Meta-Requirements-2.123.0 [2.122.0] 22 kB
[ebuild 	U  ] dev-perl/DBI-1.628.0 [1.623.0] USE="{-test}" 573 kB
[ebuild 	U  ] virtual/perl-Module-Load-Conditional-0.580.0 [0.540.0] 0 kB
[ebuild 	U  ] virtual/perl-CPAN-Meta-Requirements-2.123.0 [2.122.0] 0 kB
[ebuild 	U  ] dev-perl/DBD-SQLite-1.400.0 [1.370.0] USE="{-test}" 1,536 kB
[ebuild 	U  ] perl-core/IPC-Cmd-0.840.0 [0.800.0] 29 kB
[ebuild 	U  ] virtual/perl-IPC-Cmd-0.840.0 [0.800.0] 0 kB
[ebuild 	U  ] dev-perl/HTTP-Cookies-6.0.1-r1 [6.0.1] 0 kB
[ebuild 	U  ] dev-perl/HTTP-Negotiate-6.0.1-r1 [6.0.1] 0 kB
[ebuild 	U  ] perl-core/ExtUtils-MakeMaker-6.740.0 [6.640.0] 416 kB
[ebuild 	U  ] virtual/perl-ExtUtils-MakeMaker-6.740.0 [6.640.0] 0 kB
[ebuild 	U  ] perl-core/CPAN-Meta-2.132.510 [2.120.921] 78 kB
[ebuild 	U  ] virtual/perl-CPAN-Meta-2.132.510 [2.120.921] 0 kB
[ebuild 	U  ] perl-core/Module-Build-0.400.700 [0.400.300] USE="{-test}" 301 kB
[ebuild 	U  ] virtual/perl-Module-Build-0.400.700 [0.400.300] 0 kB
[ebuild 	U  ] dev-perl/File-MimeInfo-0.170.0 [0.160.0] USE="{-test}" 35 kB
[ebuild 	U  ] dev-perl/Error-0.170.210 [0.170.190] USE="{-test}" 22 kB
[ebuild 	U  ] dev-libs/glib-2.36.4-r1:2 [2.36.3-r1:2] USE="-debug (-fam) (-selinux) -static-libs -systemtap {-test} -utils -xattr" ABI_X86="(64%*) -32% (-x32)" PYTHON_TARGETS="python2_6 python2_7 (-python2_5%)" 6,417 kB
[ebuild 	U  ] dev-util/desktop-file-utils-0.22 [0.21] USE="emacs" 128 kB
[ebuild 	U  ] dev-cpp/glibmm-2.36.2:2 [2.34.1:2] USE="-debug -doc -examples {-test}" 2,256 kB
[ebuild 	U  ] dev-libs/fribidi-0.19.5-r2 [0.19.5-r1] USE="-static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] dev-cpp/pangomm-2.34.0:1.4 [2.28.4:1.4] USE="-doc" 504 kB
[ebuild 	U  ] dev-cpp/atkmm-2.22.7 [2.22.6] USE="-doc" 383 kB
[ebuild 	U  ] dev-libs/gobject-introspection-1.36.0-r1 [1.34.2-r1] USE="cairo%* -doctool {-test}" PYTHON_SINGLE_TARGET="python2_7" PYTHON_TARGETS="python2_7" 0 kB
[ebuild 	U  ] x11-libs/libnotify-0.7.6 [0.7.5-r1] USE="introspection {-test} (-doc%)" 274 kB
[ebuild 	U  ] dev-libs/libgee-0.10.5:0.8 [0.10.2:0.8] USE="introspection" 612 kB
[ebuild 	U  ] sys-devel/gettext-0.18.3.1 [0.18.2] USE="acl cvs cxx emacs git java nls openmp -doc -static-libs" 0 kB
[ebuild 	U  ] sys-devel/binutils-2.23.2 [2.23.1] USE="cxx nls zlib -multislot -multitarget -static-libs {-test} -vanilla" 0 kB
[ebuild   R	] media-gfx/exiv2-0.23-r3::stuff  USE="nls xmp* zlib -contrib -doc -examples -static-libs" LINGUAS="de -es -fi -fr -pl -ru -sk" PYTHON_TARGETS="python2_7" 0 kB
[ebuild 	U  ] app-text/iso-codes-3.45 [3.42] 3,518 kB
[ebuild 	U  ] sys-apps/attr-2.4.47-r1 [2.4.47] USE="nls -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] net-libs/gnutls-3.2.4 [3.2.1-r1] USE="cxx nls zlib -dane -doc -examples -guile -pkcs11 -static-libs {-test}" LINGUAS="de en -cs -fi -fr -it -ms -nl -pl -sv -uk -vi* -zh_CN" 4,844 kB
[ebuild 	U  ] gnome-base/gsettings-desktop-schemas-3.8.2 [3.6.1] USE="introspection" 450 kB
[ebuild 	U  ] sys-libs/e2fsprogs-libs-1.42.7-r1 [1.42.7] USE="nls -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] dev-libs/elfutils-0.156 [0.155] USE="bzip2 nls static-libs threads utils zlib -lzma {-test}" ABI_X86="(64%*) -32% (-x32)" 2,694 kB
[ebuild 	U  ] x11-themes/gnome-icon-theme-3.8.3 [3.6.2] USE="branding" 16,299 kB
[ebuild 	U  ] app-cdr/cdrtools-3.01_alpha17 [3.01_alpha15] USE="acl filecaps nls unicode" 2,014 kB
[ebuild 	U  ] media-libs/gstreamer-1.2.0:1.0 [1.0.7:1.0] USE="introspection nls orc {-test}" 3,120 kB
[ebuild  NS	] cross-avr/gcc-4.7.3-r1:4.7::games [4.6.3:4.6::games] USE="cxx graphite lto multilib nls nptl openmp (-altivec) -doc (-fixed-point) -fortran -gcj -go -gtk -hardened -libssp -mudflap -multislot -nopie -nossp -objc -objc++ -objc-gc -regression-test -vanilla" 42 kB
[ebuild  NS	] cross-arm-none-eabi/gcc-4.6.3:4.6::games [4.7.3:4.7::games] USE="graphite lto multilib nls nptl (-altivec) -cxx -doc (-fixed-point) -fortran -gcj -gtk -hardened -libssp -mudflap -multislot -nopie -nossp -objc -objc++ -objc-gc -openmp -regression-test -vanilla" 0 kB
[ebuild 	U  ] media-libs/libgphoto2-2.5.2:0/6 [2.5.1.1:0/6] USE="exif jpeg nls -doc -examples -gd -zeroconf" CAMERAS="ptp2 -adc65 -agfa_cl20 -aox -ax203 -barbie -canon -casio_qv -clicksmart310 -digigr8 -digita -dimagev -dimera3500 -directory -enigma13 -fuji -gsmart300 -hp215 -iclick -jamcam -jd11 -jl2005a -jl2005c -kodak_dc120 -kodak_dc210 -kodak_dc240 -kodak_dc3200 -kodak_ez200 -konica -konica_qm150 -largan -lg_gsm -mars -mustek -panasonic_coolshot -panasonic_dc1000 -panasonic_dc1580 -panasonic_l859 -pccam300 -pccam600 -polaroid_pdc320 -polaroid_pdc640 -polaroid_pdc700 -ricoh -ricoh_g3 -samsung -sierra -sipix_blink -sipix_blink2 -sipix_web2 -smal -sonix -sony_dscf1 -sony_dscf55 -soundvision -spca50x -sq905 -st2205 -stv0674 -stv0680 -sx330z -template -topfield -toshiba_pdrm11 -tp6801" 6,296 kB
[ebuild 	U  ] sys-devel/gcc-4.7.3-r1:4.7 [4.7.3:4.7] USE="cxx fortran graphite gtk lto mudflap (multilib) nls nptl openmp (-altivec) -doc (-fixed-point) -gcj -go (-hardened) (-libssp) -multislot -nopie -nossp -objc -objc++ -objc-gc -regression-test -vanilla" 0 kB
[ebuild 	U  ] net-libs/glib-networking-2.36.2 [2.34.2] USE="gnome libproxy ssl -smartcard {-test}" 345 kB
[ebuild  N 	] dev-util/nvidia-cuda-toolkit-5.5.22:0/5.5.22  USE="-debugger -doc -eclipse -profiler" 829,510 kB
[ebuild 	U  ] x11-libs/libX11-1.6.2 [1.6.0] USE="ipv6 -doc -static-libs {-test}" ABI_X86="(64) -32 (-x32)" 2,286 kB
[ebuild 	U  ] x11-libs/libXmu-1.1.2 [1.1.1-r1] USE="ipv6 -doc -static-libs" ABI_X86="(64) -32 (-x32)" 387 kB
[ebuild 	U  ] x11-libs/libXrandr-1.4.2 [1.4.1] USE="-static-libs" ABI_X86="(64) -32 (-x32)" 308 kB
[ebuild 	U  ] x11-libs/libXpm-3.5.11 [3.5.10-r1] USE="-static-libs" ABI_X86="(64) -32 (-x32)" 434 kB
[ebuild 	U  ] dev-lang/tk-8.6.1:0/8.6 [8.6.0:0/8.6] USE="threads truetype xscreensaver (-aqua) -debug {-test}" 4,145 kB
[ebuild 	U  ] x11-libs/libXv-1.0.10 [1.0.9] USE="-static-libs" ABI_X86="(64) -32 (-x32)" 294 kB
[ebuild 	U  ] app-accessibility/at-spi2-core-2.8.0:2 [2.6.3:2] USE="introspection" 427 kB
[ebuild 	U  ] x11-apps/xprop-1.2.2 [1.2.1] 143 kB
[ebuild 	U  ] dev-perl/perl-tk-804.31.0 [804.30.0] 6,770 kB
[ebuild  N 	] x11-libs/libdmx-1.1.3  USE="-static-libs" 285 kB
[ebuild 	U  ] x11-libs/libXaw-1.0.12 [1.0.11-r2] USE="-deprecated -doc -static-libs" ABI_X86="(64) -32 (-x32)" 662 kB
[ebuild 	U  ] app-accessibility/at-spi2-atk-2.8.1:2 [2.6.2:2] USE="{-test}" 261 kB
[ebuild 	U  ] x11-apps/xset-1.2.3 [1.2.2] 139 kB
[ebuild 	U  ] media-libs/glew-1.10.0-r1:0/1.10 [1.9.0:0/0] USE="-doc -static-libs" 555 kB
[ebuild 	U  ] sci-mathematics/maxima-5.30.0-r2 [5.30.0-r1] USE="X emacs latex nls tk unicode -clisp -clozurecl (-cmucl) -ecls (-gcl) -sbcl -xemacs" LINGUAS="-es -pt -pt_BR" 0 kB
[ebuild 	U  ] x11-apps/xrdb-1.1.0 [1.0.9] 135 kB
[ebuild 	U  ] x11-apps/xrandr-1.4.1 [1.4.0] 168 kB
[ebuild 	U  ] media-libs/gst-plugins-base-1.2.0:1.0 [1.0.7:1.0] USE="X alsa introspection nls ogg orc pango theora* vorbis -ivorbis" 2,454 kB
[ebuild 	U  ] media-libs/opencolorio-1.0.9 [1.0.8] USE="opengl sse2 -doc (-pdf) -python {-test}" PYTHON_SINGLE_TARGET="python2_7" PYTHON_TARGETS="python2_7" 12,182 kB
[ebuild 	U  ] x11-apps/xinit-1.3.3 [1.3.2] USE="minimal" 161 kB
[ebuild 	U  ] dev-qt/qtgui-4.8.5-r1:4 [4.8.5:4] USE="accessibility cups exceptions glib mng qt3support tiff xinerama xv (-aqua) -c++0x -debug -egl -gtkstyle -nas -nis -pch -trace" 0 kB
[ebuild 	U  ] kde-base/kde-l10n-4.11.1:4 [4.11.0:4] USE="handbook (-aqua)" LINGUAS="de -ar -bg -bs -ca -ca@valencia -cs -da -el -en_GB -es -et -eu -fa -fi -fr -ga -gl -he -hi -hr -hu -ia -is -it -ja -kk -km -ko -lt -lv -mr -nb -nds -nl -nn -pa -pl -pt -pt_BR -ro -ru -sk -sl -sr -sv -tg -tr -ug -uk -vi* -wa -zh_CN -zh_TW" 35,156 kB
[ebuild 	U  ] dev-libs/libdbusmenu-qt-0.9.2-r2::stuff [0.9.2-r1::stuff] USE="-debug -doc {-test}" 0 kB
[ebuild   R	] kde-base/libkexiv2-4.11.1:4  USE="xmp%* (-aqua) -debug" 0 kB
[ebuild 	U  ] kde-base/marble-4.11.1:4 [4.10.4:4] USE="handbook kde plasma (-aqua) -debug -designer-plugin -gps -python -shapefile {-test} -zip%" 18,606 kB
[ebuild  N 	] dev-qt/qtsingleapplication-2.6.1  USE="-doc" 91 kB
[ebuild 	U  ] sci-astronomy/stellarium-0.12.3 [0.12.0] USE="nls -debug -sound% -stars" LINGUAS="de en -af -ak -am -ar -as -ast -az -be -bg -bn -bo -br -bs -ca -cs -cy -da -el -en_CA -en_GB -en_US -eo -es -et -eu -fa -fi -fil -fr -ga -gd -gl -gu -he -hi -hr -hu -hy -ia -id -is -it -ja -ka -kk -kn -ko -ky -la -lb -lo -lt -lv -mk -ml -mn -mr -ms -mt -nan -nb -nl -nn -oc -pa -pl -pt -pt_BR -ro -ru -se -si -sk -sl -sq -sr -sv -sw -ta -te -tg -th -tl -tr -tt -uk -uz -vi* -zh -zh_CN -zh_HK -zh_TW -zu (-sco%)" 77,476 kB
[ebuild 	U  ] dev-qt/qthelp-4.8.5-r2:4 [4.8.5-r1:4] USE="exceptions (-aqua) -c++0x -compat -debug -doc -pch" 0 kB
[ebuild 	U  ] kde-base/qguiplatformplugin_kde-4.11.1-r1:4 [4.11.1:4] USE="(-aqua) -debug" 0 kB
[ebuild 	U  ] sci-mathematics/cgal-4.2 [4.1] USE="gmp qt4 -doc -examples -mpfi" 9,772 kB
[ebuild 	U  ] media-libs/libkgeomap-3.4.0:4 [3.2.0:4] USE="(-aqua)" 65,546 kB
[ebuild 	U  ] net-libs/libbluedevil-1.9.4:4 [1.9.3:4] USE="(-aqua) -debug" 183 kB
[ebuild 	U  ] net-wireless/bluedevil-1.3.2:4 [1.3.1:4] USE="(-aqua) -debug" LINGUAS="de -ar -bs -ca -ca@valencia -cs -da -el -en_GB -eo -es -et -eu -fa -fi -fr -ga -gl -hu -it -ja -kk -km% -ko -lt -mai -mr -ms -nb -nds -nl -pa -pl -pt -pt_BR -ro -ru -sk -sl -sr -sr@ijekavian -sr@ijekavianlatin -sr@latin -sv -th -tr -ug -uk -zh_CN -zh_TW" 193 kB
[ebuild   R	] kde-base/solid-runtime-4.11.1:4  USE="bluetooth%* (-aqua) -debug -networkmanager%" 0 kB
[ebuild 	U  ] dev-lang/python-3.3.2-r2:3.3 [3.3.2:3.3] USE="gdbm ipv6 ncurses readline ssl threads tk xml -build -doc -examples -hardened -sqlite -wininst" 13 kB
[ebuild 	U  ] app-misc/media-player-info-21-r1 [17] 101 kB
[ebuild  N 	] sys-libs/tdb-1.2.12-r1  USE="-python" PYTHON_SINGLE_TARGET="python2_7 -python2_6" PYTHON_TARGETS="python2_6 python2_7" 452 kB
[ebuild   R	] dev-java/java-config-2.2.0:2  PYTHON_TARGETS="python2_6 python2_7 python3_3 -python3_2 (-python3_1%)" 0 kB
[ebuild  NS   #] sys-libs/db-5.1.29:5.1 [4.8.30:4.8] USE="cxx java -doc -examples -tcl {-test}" 31,434 kB
[ebuild   R	] dev-java/antlr-2.7.7-r5  USE="cxx java -debug -doc -examples -mono -python -script -source -static-libs" PYTHON_SINGLE_TARGET="python2_7 -python2_6 (-python2_5%)" PYTHON_TARGETS="python2_6 python2_7 (-python2_5%)" 0 kB
[ebuild  N 	] dev-java/gnu-regexp-1.1.4-r2:1  USE="-doc -source" 0 kB
[ebuild 	U  ] dev-libs/cyrus-sasl-2.1.26-r3:2 [2.1.26-r1:2] USE="berkdb gdbm java mysql pam ssl -authdaemond -kerberos -ldapdb -openldap -postgres -sample -sqlite -srp -static-libs -urandom" 0 kB
[ebuild  N 	] x11-libs/libqxt-0.6.2  USE="berkdb sql xscreensaver -debug -doc -web -zeroconf" 2,147 kB
[ebuild 	U  ] net-nds/openldap-2.4.35-r1 [2.4.35] USE="berkdb crypt cxx icu ipv6 minimal odbc sasl ssl syslog tcpd -debug -experimental -gnutls -iodbc -kerberos -overlays -perl -samba (-selinux) -slp -smbkrb5passwd" 0 kB
[ebuild 	U  ] x11-misc/qlipper-2.0.2 [2.0.1] LINGUAS="-cs -sr" 82 kB
[ebuild 	U  ] net-misc/curl-7.32.0 [7.30.0] USE="ipv6 ldap ssl threads -adns -idn -kerberos -metalink -rtmp -ssh -static-libs {-test}" CURL_SSL="openssl -axtls -cyassl -gnutls -nss -polarssl" 2,664 kB
[ebuild 	U  ] app-crypt/gnupg-2.0.21 [2.0.20] USE="bzip2 ldap nls readline usb -adns -doc -mta (-selinux) -smartcard -static" 4,200 kB
[ebuild 	U  ] app-crypt/gpgme-1.4.3:1/11 [1.4.1:1/11] USE="-common-lisp -static-libs" 950 kB
[ebuild 	U  ] net-print/cups-1.6.4 [1.6.2-r5] USE="X acl dbus filters java pam ssl threads usb -debug -gnutls -kerberos -lprng-compat -python (-selinux) -static-libs -xinetd -zeroconf" LINGUAS="-ca -es -fr -ja -ru" PYTHON_SINGLE_TARGET="python2_7%* -python2_6%" PYTHON_TARGETS="python2_6%* python2_7%*" 8,069 kB
[ebuild  N 	] net-print/foomatic-filters-4.0.17-r1  USE="cups dbus" 0 kB
[ebuild 	U  ] net-wireless/bluez-4.101-r7 [4.101-r5] USE="alsa cups gstreamer readline usb -debug -pcmcia (-selinux) -test-programs (-consolekit%*)" PYTHON_SINGLE_TARGET="python2_7 -python2_6" PYTHON_TARGETS="python2_6 python2_7" 13 kB
[ebuild 	UD ] sys-libs/pam-1.1.6-r2 [1.1.6-r4] USE="berkdb cracklib nls -audit -debug -nis (-selinux) {-test} -vim-syntax" 0 kB
[ebuild 	U  ] sys-apps/busybox-1.21.1 [1.21.0] USE="ipv6 pam static -livecd -make-symlinks -math -mdev -savedconfig (-selinux) -sep-usr -syslog -systemd" 2,151 kB
[ebuild 	U  ] dev-vcs/git-1.8.3.2 [1.8.2.1] USE="blksha1 curl cvs emacs gpg gtk iconv nls pcre perl python subversion threads tk webdav -cgi -doc -gnome-keyring -highlight (-ppcsha1) {-test} -xinetd" PYTHON_SINGLE_TARGET="python2_7%* -python2_6%" PYTHON_TARGETS="python2_6%* python2_7%*" 4,900 kB
[ebuild 	U  ] sci-electronics/qucs-9999::zugaina [0.0.17.130503::gentoo] 0 kB
[ebuild   R	] dev-libs/libxml2-2.9.1-r1:2  USE="icu ipv6 python readline -debug -examples -lzma -static-libs {-test}" PYTHON_TARGETS="python2_6 python2_7 python3_3 -python3_2 (-python2_5%) (-python3_1%)" 0 kB
[ebuild   R	] dev-libs/libxslt-1.1.28-r1  USE="crypt -debug -python -static-libs" PYTHON_TARGETS="python2_6 python2_7 (-python2_5%)" 0 kB
[ebuild 	U  ] net-libs/neon-0.30.0:0/27 [0.29.6-r5:0/0] USE="nls ssl zlib -doc -expat -gnutls -kerberos -libproxy -pkcs11 -static-libs" LINGUAS="de -cs -fr -ja -nn -pl -ru -tr -zh_CN" 889 kB
[ebuild 	U  ] sys-apps/kmod-15 [14-r1] USE="openrc tools zlib -debug -doc -lzma -static-libs" 1,420 kB
[ebuild  N 	] app-text/po4a-0.42  USE="{-test}" 1,957 kB
[ebuild 	U  ] app-i18n/man-pages-de-1.3 [0.12] 1,223 kB
[ebuild 	U  ] x11-misc/lightdm-1.4.3 [1.4.0-r2] USE="gtk introspection kde qt4 -razor" 671 kB
[ebuild 	U  ] media-plugins/kipi-plugins-3.4.0:4 [3.2.0:4] USE="cdr crypt handbook imagemagick opengl (-aqua) -calendar -debug -expoblending -gpssync -ipod -mediawiki -mjpeg -panorama -redeyes -scanner -upnp -videoslideshow -vkontakte" LINGUAS="de -ar -az -be -bg -bn -br -bs -ca -cs -csb -cy -da -el -en_GB -eo -es -et -eu -fa -fi -fo -fr -fy -ga -gl -ha -he -hi -hr -hsb -hu -id -is -it -ja -ka -kk -km -ko -ku -lb -lo -lt -lv -mi -mk -mn -ms -mt -nb -nds -ne -nl -nn -nso -oc -pa -pl -pt -pt_BR -ro -ru -rw -se -sk -sl -sq -sr -ss -sv -ta -te -tg -th -tr -tt -uk -uz -ven -vi* -wa -xh -zh_CN -zh_HK -zh_TW -zu" 0 kB
[ebuild 	U  ] dev-lang/python-2.7.5-r2:2.7 [2.7.5:2.7] USE="gdbm ipv6 ncurses readline sqlite ssl threads tk (wide-unicode) xml -berkdb -build -doc -examples -hardened -wininst" 0 kB
[ebuild 	U  ] net-libs/libsoup-2.42.2-r1:2.4 [2.40.3:2.4] USE="introspection ssl -debug -samba {-test}" 716 kB
[ebuild 	U  ] sys-libs/talloc-2.1.0 [2.0.8-r1] USE="python -compat" PYTHON_SINGLE_TARGET="python2_7 -python2_6" PYTHON_TARGETS="python2_6 python2_7" 407 kB
[ebuild  N 	] sys-libs/tevent-0.9.19  PYTHON_SINGLE_TARGET="python2_7 -python2_6" PYTHON_TARGETS="python2_6 python2_7" 531 kB
[ebuild 	U  ] dev-lang/python-2.6.8-r3:2.6 [2.6.8-r1:2.6] USE="gdbm ipv6 ncurses readline ssl threads tk (wide-unicode) xml -berkdb -build -doc -examples -hardened -sqlite -wininst" 0 kB
[ebuild   R	] media-libs/lcms-1.19-r1  USE="jpeg python tiff zlib -static-libs" PYTHON_TARGETS="python2_6 python2_7 python3_3 -python3_2 (-python2_5%)" 0 kB
[ebuild   R	] x11-proto/xcb-proto-1.8-r3  ABI_X86="(64) -32 (-x32)" PYTHON_TARGETS="python2_6 python2_7 python3_3 -python3_2 (-python2_5%) (-python3_1%)" 0 kB
[ebuild 	U  ] dev-python/setuptools-1.1.6 [0.6.40] PYTHON_TARGETS="python2_6 python2_7 python3_3 -pypy2_0 -python3_2 (-pypy1_9%) (-python2_5%) (-python3_1%)" 666 kB
[ebuild 	U  ] dev-python/pygobject-2.28.6-r54:2 [2.28.6-r53:2] USE="-examples -libffi {-test}" PYTHON_TARGETS="python2_6 python2_7" 0 kB
[ebuild   R	] sys-devel/llvm-3.3-r1:0/3.3  USE="clang* libffi static-analyzer -debug -doc -gold -multitarget -ocaml -python {-test} -udis86" ABI_X86="(64) -32 (-x32)" PYTHON_TARGETS="python2_6 python2_7 -pypy2_0" VIDEO_CARDS="radeon*" 10,736 kB
[ebuild   R	] dev-java/javatoolkit-0.3.0-r9  PYTHON_TARGETS="python2_6 python2_7 (-python2_5%)" 0 kB
[ebuild 	U  ] dev-util/gdbus-codegen-2.36.4-r1 [2.36.3] PYTHON_TARGETS="python2_6 python2_7 python3_3 -python3_2 (-python2_5%) (-python3_1%)" 0 kB
[ebuild 	U  ] dev-python/pycups-1.9.63 [1.9.62] USE="-doc -examples" PYTHON_TARGETS="python2_6%* python2_7%* -pypy2_0%" 52 kB
[ebuild  N 	] app-text/gnome-doc-utils-0.20.10-r1  PYTHON_TARGETS="python2_6 python2_7" 0 kB
[ebuild   R	] dev-python/pycurl-7.19.0-r3  USE="ssl -examples" CURL_SSL="openssl -gnutls -nss" PYTHON_TARGETS="python2_6 python2_7 python3_3 -python3_2 (-python2_5%) (-python3_1%)" 0 kB
[ebuild 	U  ] dev-util/scons-2.3.0 [2.2.0-r1] USE="-doc" PYTHON_TARGETS="python2_6 python2_7 (-python2_5%)" 586 kB
[ebuild   R	] x11-libs/libxcb-1.9.1  USE="-doc (-selinux) -static-libs -xkb" ABI_X86="(64) -32 (-x32)" PYTHON_SINGLE_TARGET="python2_7 -python2_6 -python3_2 -python3_3 (-python3_1%)" PYTHON_TARGETS="python2_6 python2_7 python3_3 -python3_2 (-python3_1%)" 0 kB
[ebuild   R	] dev-python/numpy-1.7.1  USE="lapack -doc {-test}" PYTHON_TARGETS="python2_6 python2_7 python3_3 -python3_2 (-python2_5%) (-python3_1%)" 0 kB
[ebuild 	U  ] dev-java/ant-owanttask-1.3.2 [1.1-r12] 1,144 kB
[ebuild 	U  ] dev-python/pillow-2.1.0 [2.0.0-r1] USE="jpeg lcms tiff tk truetype zlib -doc -examples -scanner {-test} -webp" PYTHON_TARGETS="python2_6 python2_7 python3_3 -python3_2" 2,010 kB
[ebuild   R	] dev-python/pygments-1.6  USE="-doc {-test}" PYTHON_TARGETS="python2_6 python2_7 python3_3 -pypy2_0 -python3_2 (-pypy1_9%) (-python2_5%) (-python3_1%)" 0 kB
[ebuild  N 	] dev-java/java-getopt-1.0.13:1  USE="-doc -source" 0 kB
[ebuild 	U  ] dev-java/ant-nodeps-1.9.2 [1.9.1] 0 kB
[ebuild  N 	] dev-java/ant-apache-bcel-1.9.2  0 kB
[ebuild  N 	] dev-libs/libclc-0.0.1_pre20130819  0 kB
[ebuild  NS	] dev-java/asm-2.0-r1:2 [1.4.3-r3:1.4, 1.5.3:1.5] USE="-doc -source" 0 kB
[ebuild 	U  ] dev-java/asm-1.4.3-r4:1.4 [1.4.3-r3:1.4] USE="-doc -source" 0 kB
[ebuild 	U  ] dev-java/asm-1.5.3-r1:1.5 [1.5.3:1.5] USE="-doc -source" 0 kB
[ebuild   R	] dev-python/docutils-0.10  USE="-glep" PYTHON_TARGETS="python2_6 python2_7 python3_3 -pypy2_0 -python3_2 (-pypy1_9%) (-python2_5%) (-python3_1%)" 0 kB
[ebuild 	U  ] virtual/python-imaging-2 [1] USE="tk" PYTHON_TARGETS="python2_6 python2_7 python3_3 -python3_2 (-python2_5%)" 0 kB
[ebuild 	U  ] media-libs/mesa-9.2.0 [9.1.3] USE="classic egl gallium llvm nptl opencl%* xa -bindist -debug -gbm -gles1 -gles2 -openvg -osmesa -pax_kernel -pic -r600-llvm-compiler (-selinux) -vdpau -wayland -xorg -xvmc (-shared-glapi%*)" PYTHON_SINGLE_TARGET="python2_7 -python2_6" PYTHON_TARGETS="python2_6 python2_7" VIDEO_CARDS="(-freedreno) -i915 -i965 -ilo% -intel -nouveau -r100 -r200 -r300 -r600 -radeon -radeonsi -vmware" 0 kB
[ebuild  N 	] dev-java/jarjar-0.9:1  USE="-doc -source {-test}" 0 kB
[ebuild 	U  ] x11-libs/cairo-1.12.16 [1.12.14-r2] USE="X glib opengl svg xcb (-aqua) -debug -directfb -doc (-drm) (-gallium) (-gles2) -legacy-drivers -openvg (-qt4) -static-libs -valgrind% -xlib-xcb%" 35,049 kB
[ebuild 	U  ] virtual/opencl-0-r3 [0-r2] VIDEO_CARDS="fglrx -nvidia" 0 kB
[ebuild 	U  ] x11-base/xorg-server-1.14.3-r1:0/1.14.3 [1.14.1.901:0/1.14.1.901] USE="dmx* ipv6 nptl suid udev xorg -doc -kdrive -minimal (-selinux) -static-libs -tslib -xnest -xvfb" 5,374 kB
[ebuild  N 	] dev-java/xom-1.2.10  USE="-doc -examples -source" 11,643 kB
[ebuild 	U  ] app-text/poppler-0.24.2:0/43 [0.22.4:0/37] USE="cairo cxx introspection jpeg jpeg2k lcms png qt4 tiff utils -cjk -curl -debug -doc" 1,470 kB
[ebuild 	U  ] media-libs/harfbuzz-0.9.20:0/0.9.18 [0.9.18-r1:0/0.9.18] USE="cairo glib graphite icu truetype -introspection% -static-libs" 1,007 kB
[ebuild   R	] dev-python/pycairo-1.10.0-r4  USE="svg xcb -doc -examples {-test}" PYTHON_TARGETS="python2_6 python2_7 python3_3 -python3_2 (-python3_1%)" 0 kB
[ebuild 	UD ] dev-java/jaxen-1.1.4:1.1 [1.1.4-r1:1.1] USE="-doc -examples -source {-test}" 0 kB
[ebuild 	U  ] app-text/poppler-0.22.5:0/37 [0.22.4:0/37] USE="cairo cxx introspection jpeg jpeg2k lcms png qt4 tiff utils -cjk -curl -debug -doc" 0 kB
[ebuild 	U  ] dev-python/pygobject-3.8.3:3 [3.4.2-r1:3] USE="cairo threads -examples {-test}" PYTHON_TARGETS="python2_6 python2_7 python3_3 -python3_2 (-python3_1%)" 642 kB
[ebuild 	U  ] app-text/dvipdfmx-20110311-r1 [20110311] 0 kB
[ebuild 	U  ] x11-libs/gtk+-2.24.21:2::gentoo [2.24.18:2::stuff] USE="cups introspection xinerama (-aqua) -debug -examples {-test} -vim-syntax (-appmenu%) (-overlay%)" 13,066 kB
[uninstall 	] dev-util/gtk-builder-convert-2.24.20  PYTHON_SINGLE_TARGET="python2_7 -python2_5 -python2_6" PYTHON_TARGETS="python2_6 python2_7 -python2_5" 
[blocks b  	] <dev-util/gtk-builder-convert-2.24.21 ("<dev-util/gtk-builder-convert-2.24.21" is blocking x11-libs/gtk+-2.24.21)
[ebuild 	U  ] x11-libs/gtk+-3.8.4:3::gentoo [3.6.3-r2:3::stuff] USE="X cups introspection xinerama (-aqua) -colord -debug -examples (-packagekit) {-test} -vim-syntax -wayland (-appmenu%) (-egl%) (-overlay%)" 13,395 kB
[ebuild 	U  ] gnome-base/librsvg-2.39.0:2 [2.36.4:2] USE="gtk introspection -tools -vala" 507 kB
[ebuild 	U  ] dev-python/pygtk-2.24.0-r4:2 [2.24.0-r3:2] USE="-doc -examples {-test}" PYTHON_TARGETS="python2_6 python2_7" 0 kB
[ebuild  N 	] net-dns/avahi-0.6.31-r2  USE="dbus gdbm gtk introspection ipv6 qt4 -autoipd -bookmarks -doc -gtk3 -howl-compat -mdnsresponder-compat -mono -python {-test} -utils" PYTHON_TARGETS="python2_6 python2_7" 1,239 kB
[ebuild 	U  ] dev-java/swt-3.7.2-r1:3.7 [3.7.2:3.7] USE="cairo opengl -gnome -webkit" 0 kB
[ebuild 	U  ] x11-misc/xscreensaver-5.22 [5.21] USE="jpeg opengl pam perl xinerama -gdm -new-login (-selinux) -suid" 7,238 kB
[ebuild   R	] media-gfx/graphviz-2.28.0  USE="X cairo gtk java nls qt4 svg -devil -doc -examples -gts -lasi -perl -postscript -python -ruby -static-libs -tcl" PYTHON_SINGLE_TARGET="python2_7 -python2_6 (-python2_5%)" PYTHON_TARGETS="python2_6 python2_7 (-python2_5%)" 0 kB
[ebuild 	U  ] x11-themes/gnome-themes-standard-3.8.4 [3.8.3] USE="gtk" 3,765 kB
[ebuild 	U  ] media-gfx/fotoxx-13.09.2 [13.06] 2,324 kB
[ebuild 	U  ] x11-libs/gtksourceview-3.8.2:3.0/1 [3.6.3:3.0/3.0] USE="introspection -glade {-test}" 1,239 kB
[ebuild 	U  ] x11-libs/goocanvas-2.0.1-r1:2.0 [2.0.1:2.0] USE="introspection -examples -python (-doc%)" PYTHON_TARGETS="python2_6%* python2_7%*" 8 kB
[ebuild 	U  ] x11-misc/lightdm-gtk-greeter-1.6.0 [1.3.1-r1] USE="branding" 375 kB
[ebuild 	U  ] media-plugins/audacious-plugins-3.4.1 [3.3.4] USE="aac alsa cdda ffmpeg flac ipv6 libnotify libsamplerate midi mp3 nls sdl sid vorbis -adplug -bs2b -cue -fluidsynth -gnome -jack -lame -lirc -mms -pulseaudio -scrobbler -sndfile -wavpack" 0 kB
[ebuild 	U  ] media-plugins/audacious-dumb-0.82 [0.81] 0 kB
[ebuild 	U  ] app-text/ghostscript-gpl-9.10 [9.07] USE="X cups dbus gtk -bindist -djvu -idn -static-libs (-jpeg2k%*)" LINGUAS="de -ja -ko -zh_CN -zh_TW" 30,262 kB
[ebuild 	U  ] net-print/cups-filters-1.0.36-r2 [1.0.34-r1] USE="jpeg png tiff -perl -static-libs -zeroconf" 0 kB
[blocks b  	] <net-print/cups-filters-1.0.36-r2 ("<net-print/cups-filters-1.0.36-r2" is blocking app-text/ghostscript-gpl-9.10)
[ebuild 	U  ] app-text/dvisvgm-1.4 [1.3] USE="{-test}" 601 kB
[ebuild 	U  ] app-text/epstool-3.08-r1 [3.08] 0 kB
[ebuild 	U  ] sys-apps/texinfo-5.2 [4.13-r2] USE="nls -static" 3,724 kB
[ebuild 	U  ] sys-apps/util-linux-2.23.2-r2 [2.23] USE="bash-completion* cramfs ncurses nls pam%* suid udev unicode -caps -cytune -fdformat -old-linux (-selinux) -slang -static-libs {-test} -tty-helpers" 3,304 kB
[ebuild 	U  ] x11-libs/libSM-1.2.2 [1.2.1-r1] USE="ipv6 uuid -doc -static-libs" ABI_X86="(64) -32 (-x32)" 341 kB
[ebuild 	U  ] dev-libs/apr-1.4.8-r1:1 [1.4.6-r1:1] USE="urandom -doc -older-kernels-compatibility -static-libs (-uuid%*)" 0 kB
[ebuild 	U  ] sys-fs/udev-208 [207] USE="acl firmware-loader gudev introspection kmod openrc -doc (-selinux) -static-libs" ABI_X86="(64) -32 (-x32)" 2,328 kB
[ebuild 	U  ] media-libs/giflib-4.2.3 [4.1.6-r2] USE="X -static-libs (-rle%)" 548 kB
[ebuild 	U  ] media-gfx/imagemagick-6.8.6.8-r1:0/6.8.6.8 [6.8.5.4:0/6.8.5.4] USE="X bzip2 cxx fftw fontconfig graphviz jpeg jpeg2k lcms opencl openexr openmp pango png svg tiff truetype xml zlib -autotrace -corefonts -djvu -fpx -hdri -jbig -lqr -lzma -perl -postscript -q32 -q64 -q8 -raw -static-libs {-test} -webp -wmf" 7,361 kB
[ebuild 	U  ] media-libs/libmpeg2-0.5.1-r2 [0.5.1-r1] USE="X sdl -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] dev-libs/apr-util-1.5.2:1 [1.5.1:1] USE="berkdb gdbm ldap mysql odbc -doc -freetds -nss -openssl -postgres -sqlite -static-libs" 0 kB
[ebuild 	U  ] app-text/texlive-core-2013-r1 [2013] USE="X tk xetex -cjk -doc -source" 0 kB
[ebuild   R	] media-sound/pulseaudio-4.0  USE="X alsa asyncns avahi* bluetooth caps dbus gdbm glib gtk ipv6 libsamplerate orc qt4 ssl tcpd udev webrtc-aec -doc -equalizer -gnome -jack -lirc (-neon) (-oss) -realtime (-system-wide) -systemd {-test} -xen" 0 kB
[ebuild 	U  ] dev-vcs/subversion-1.7.13 [1.7.9] USE="berkdb java kde nls perl sasl webdav-neon -apache2 -ctypes-python -debug -doc -dso -extras -gnome-keyring -python -ruby {-test%} -vim-syntax -webdav-serf" PYTHON_TARGETS="python2_6 python2_7 (-python2_5%)" 5,903 kB
[ebuild   R	] app-text/texlive-2013  USE="X extra png truetype xetex xml -cjk -context -detex -dvi2tty -dvipdfm -epspdf -games -graphics -humanities -jadetex -luatex -metapost -music -omega -pdfannotextractor -pstricks -publishers -science -tex4ht -texi2html -xindy" LINGUAS="de en -af -ar -as -bg -bn -br -ca -cs -cy -da -el -en_GB -eo -es -et -eu -fa -fi -fr -ga -gl -gu -he -hi -hr -hsb -hu -hy -ia -id -is -it -ja -kn -ko -la -lo -lt -lv -ml -mn -mr -nb -nl -nn -no -or -pa -pl -pt -rm -ro -ru -sa_IN -sco -sk -sl -sq -sr -sv -ta -te -th -tk -tr -uk -vi* -zh" 0 kB
[ebuild 	U  ] dev-perl/GD-2.500.0 [2.460.0] USE="gif jpeg png truetype -animgif -xpm" 257 kB
[ebuild 	U  ] dev-texlive/texlive-omega-2013 [2012] USE="-doc -source" 1,312 kB
[ebuild 	U  ] dev-texlive/texlive-music-2013 [2012] USE="-doc -source" 4,538 kB
[ebuild   R	] media-gfx/blender-2.67a:2.6::stuff  USE="boolean compositor cycles decimate ffmpeg fftw game-engine jpeg2k nls ocio openal openexr openmp remesh sdl sse tiff tomato -addons -cin -collada -cuda -dds -debug -doc -fluid* -freestyle -jack -ndof -oceansim* -osl -player -redcode -sm_20 -sm_21 -sm_30 -smoke -sndfile -tweak-mode" LINGUAS="de en -ar -bg -ca -cs -el -es -es_ES -fa -fi -fr -he -hr -hu -id -it -ja -ky -ne -nl -pl -pt -pt_BR -ru -sr -sr@latin -sv -tr -uk -zh_CN -zh_TW" 0 kB
[ebuild 	U  ] app-doc/doxygen-1.8.4-r2 [1.8.4-r1] USE="dot latex qt4 -debug -doc (-sqlite)" LINGUAS="de -af -ar -ca -cs -da -el -eo -es -fa -fi -fr -hr -hu -hy -id -it -ja -ko -lt -mk -nb -nl -pl -pt -pt_BR -ro -ru -sk -sl -sr -sv -tr -uk -vi* -zh" 0 kB
[ebuild  N 	] sys-apps/systemd-208-r1:0/1  USE="acl filecaps firmware-loader gcrypt gudev introspection kmod pam (policykit) tcpd -audit -cryptsetup -doc -http -lzma -openrc -python -qrcode (-selinux) {-test} -vanilla -xattr" ABI_X86="(64) -32 (-x32)" PYTHON_SINGLE_TARGET="python2_7" PYTHON_TARGETS="python2_7" 0 kB
[ebuild  N 	] sys-apps/gentoo-systemd-integration-2  51 kB
[ebuild 	U  ] mail-mta/nullmailer-1.13-r2 [1.11-r1] USE="ssl" 201 kB
[ebuild 	U  ] sys-auth/pambase-20120417-r2 [20120417-r1] USE="consolekit cracklib sha512 systemd* -debug -gnome-keyring -minimal -mktemp -pam_krb5 -pam_ssh -passwdqc (-selinux)" 0 kB
[ebuild 	U  ] net-misc/openssh-6.2_p2-r4 [6.2_p2-r3] USE="X hpn ldap pam tcpd -X509 -bindist -kerberos -ldns -libedit (-selinux) -skey -static" 25 kB
[ebuild 	U  ] sys-auth/polkit-0.112-r1 [0.111-r1] USE="gtk introspection kde nls pam -examples (-selinux) -systemd" 1,396 kB
[ebuild   R	] sys-auth/consolekit-0.4.6  USE="acl pam (policykit) -debug -doc (-selinux) -systemd-units% {-test}" 0 kB
[ebuild 	U  ] sys-power/upower-0.9.21 [0.9.20-r2] USE="introspection -doc -ios -systemd (-deprecated%*)" 412 kB
[ebuild   R	] gnome-base/gconf-3.2.6-r1:2  USE="gtk introspection ldap (policykit) -debug -orbit" PYTHON_TARGETS="python2_6 python2_7 (-python2_5%)" 0 kB
[ebuild   R	] sys-block/gparted-0.16.1  USE="kde (policykit) -btrfs -dmraid -f2fs -fat -hfs -jfs -mdadm -ntfs -reiser4 -reiserfs -xfs (-gtk%*)" 0 kB
[ebuild 	U  ] app-admin/system-config-printer-common-1.4.1 [1.3.12] USE="(policykit) -doc" PYTHON_SINGLE_TARGET="python2_7%* -python2_6%" PYTHON_TARGETS="python2_6%* python2_7%*" 866 kB
[ebuild 	U  ] app-admin/system-config-printer-gnome-1.4.1 [1.3.12] USE="-gnome-keyring" LINGUAS="de -ar -as -bg -bn -bn_IN -br -bs -ca -cs -cy -da -el -en_GB -es -et -fa -fi -fr -gu -he -hi -hr -hu -hy -id -is -it -ja -ka -kn -ko -lo -lv -mai -mk -ml -mr -ms -nb -nl -nn -or -pa -pl -pt -pt_BR -ro -ru -si -sk -sl -sr -sr@latin -sv -ta -te -th -tr -uk -vi* -zh_CN -zh_TW" PYTHON_SINGLE_TARGET="python2_7%* -python2_6%" PYTHON_TARGETS="python2_6%* python2_7%*" 0 kB
[blocks b  	] <app-admin/system-config-printer-gnome-1.4.1 ("<app-admin/system-config-printer-gnome-1.4.1" is blocking app-admin/system-config-printer-common-1.4.1)
[ebuild 	U  ] media-sound/lame-3.99.5-r1 [3.99.5] USE="-debug (-mmx) -mp3rtp -sndfile -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] dev-libs/libcdio-0.90-r1 [0.90] USE="cxx -cddb -minimal -static-libs {-test}" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] dev-libs/libcdio-paranoia-0.90_p1-r1 [0.90_p1] USE="cxx -static-libs {-test}" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] media-video/vcdimager-0.7.24 [0.7.23-r1] USE="xml -static-libs" ABI_X86="(64%*) -32% (-x32)" 1,042 kB
[ebuild   R   #] media-video/ffmpeg-2.0.1:0/52.55.55  USE="X aac alsa amr bzip2 cdio encode faac fontconfig hardcoded-tables iconv jpeg2k mmx modplug mp3 network openal sdl ssse3 theora* threads truetype v4l vorbis x264 xvid zlib -3dnow -3dnowext -aacplus (-altivec) -amrenc -avx -bindist -bluray -celt -cpudetection -debug -doc -examples -fdk -flite -frei0r -gme -gnutls -gsm -iec61883 -ieee1394 -jack -libass -libcaca -libsoxr -libv4l -mmxext (-neon) -openssl -opus -oss -pic -pulseaudio -quvi -rtmp -schroedinger -speex -static-libs {-test} -twolame -vaapi -vdpau (-vis) -vpx -wavpack" FFTOOLS="aviocat cws2fws ffescape ffeval ffhash fourcc2pixfmt graph2dot ismindex pktdumper qt-faststart trasher" 0 kB
[ebuild 	U  ] media-gfx/blender-2.68a [2.68] USE="boost bullet colorio cycles dds elbeem ffmpeg fftw game-engine jpeg2k nls openal openexr openmp sdl sse sse2 tiff -collada -debug -doc -jack -ndof -player -redcode -sndfile" PYTHON_SINGLE_TARGET="python3_3" PYTHON_TARGETS="python3_3" 39,104 kB
[ebuild 	U  ] app-misc/strigi-0.7.8 [0.7.7-r2] USE="dbus exif fam ffmpeg qt4 -clucene -debug -inotify (-log) {-test} (-hyperestraier%)" 792 kB
[ebuild 	U  ] media-plugins/gst-plugins-ffmpeg-0.10.13_p201211-r1:0.10 [0.10.13_p201211:0.10] USE="orc" 0 kB
[ebuild 	U  ] media-video/transcode-1.1.7-r3 [1.1.7-r2] USE="X a52 aac alsa dvd iconv imagemagick jpeg mmx mp3 mpeg ogg sdl sse sse2 truetype vorbis x264 xml xvid -3dnow (-altivec) -dv -lzo -mjpeg (-nuv) -oss (-pic) -postproc -quicktime -theora -v4l" 0 kB
[ebuild 	U  ] media-libs/mlt-0.9.0 [0.8.8] USE="ffmpeg gtk kde kdenlive libsamplerate melt mmx qt4 sdl sse sse2 vorbis xml -compressed-lumas -debug -dv -frei0r -jack -lua -python -quicktime -rtaudio -ruby -swfdec -vdpau -xine*" 1,141 kB
[ebuild 	U  ] media-libs/gegl-0.2.0-r2 [0.2.0-r1] USE="cairo ffmpeg jpeg jpeg2k mmx openexr png sdl sse svg -debug -lensfun -raw -umfpack (-introspection%) (-vala%)" 0 kB
[ebuild 	U  ] media-libs/opencv-2.4.6.1 [2.4.5] USE="ffmpeg gstreamer gtk java jpeg jpeg2k opencl openexr opengl png qt4 threads tiff -cuda -doc -eigen -examples -ieee1394 (-ipp) -pch -testprograms -v4l -xine*" 78,870 kB
[ebuild 	U  ] media-sound/qmmp-0.7.3 [0.7.1] USE="aac alsa cdda dbus ffmpeg flac kde libsamplerate mad midi modplug mplayer udev vorbis -bs2b -cover -crossfade -enca -game -jack -ladspa -lyrics -mms -mpris -musepack -notifier -opus -oss -projectm -pulseaudio -scrobbler -sndfile -stereo -tray -wavpack" 829 kB
[ebuild   R	] media-gfx/gimp-2.8.6:2  USE="alsa bzip2 dbus exif jpeg jpeg2k lcms mmx mng pdf png smp sse svg tiff udev -aalib (-altivec) (-aqua) -curl -debug -doc -gnome -postscript -python -webkit -wmf -xpm" LINGUAS="de -am -ar -ast -az -be -bg -br -ca -ca@valencia -cs -csb -da -dz -el -en_CA -en_GB -eo -es -et -eu -fa -fi -fr -ga -gl -gu -he -hi -hr -hu -id -is -it -ja -ka -kk -km -kn -ko -lt -lv -mk -ml -ms -my -nb -nds -ne -nl -nn -oc -pa -pl -pt -pt_BR -ro -ru -rw -si -sk -sl -sr -sr@latin -sv -ta -te -th -tr -tt -uk -vi* -xh -yi -zh_CN -zh_HK -zh_TW" 0 kB
[ebuild 	UD ] kde-base/kdelibs-4.10.5-r1:4 [4.11.1:4] USE="acl alsa bzip2 fam handbook jpeg2k mmx nls openexr opengl (policykit) semantic-desktop%* spell sse sse2 ssl udev udisks upower -3dnow (-altivec) (-aqua) -debug -doc -kerberos -lzma {-test} -zeroconf" 0 kB
[ebuild 	U  ] media-libs/libkface-3.4.0:4 [3.3.0:4] USE="(-aqua)" 0 kB
[ebuild 	U  ] media-gfx/digikam-3.4.0:4 [3.3.0:4] USE="handbook mysql thumbnails -addressbook (-aqua) -debug -doc -gphoto2 -themedesigner -video" LINGUAS="de -af -ar -az -be -bg -bn -br -bs -ca -cs -csb -cy -da -el -en_GB -eo -es -et -eu -fa -fi -fo -fr -fy -ga -gl -ha -he -hi -hr -hsb -hu -id -is -it -ja -ka -kk -km -ko -ku -lb -lo -lt -lv -mi -mk -mn -ms -mt -nb -nds -ne -nl -nn -nso -oc -pa -pl -pt -pt_BR -ro -ru -rw -se -sk -sl -sq -sr -sr@Latn -ss -sv -ta -te -tg -th -tr -tt -uk -uz -uz@cyrillic -ven -vi* -wa -xh -zh_CN -zh_HK -zh_TW -zu" 0 kB
[ebuild 	U  ] media-plugins/gimp-gmic-1.5.7.1 [1.5.6.1] 2,124 kB
[ebuild 	U  ] media-plugins/gimp-lqr-0.7.2 [0.7.1] 767 kB
[ebuild   R	] media-video/kdenlive-0.9.6:4::zugaina  USE="handbook semantic-desktop* (-aqua) -debug" LINGUAS="de -ca -cs -da -el -es -et -fi -fr -ga -gl -he -hr -hu -it -ja -lt -nb -nds -nl -pl -pt -pt_BR -ru -sk -sl -sv -tr -uk -zh -zh_CN -zh_TW" 0 kB
[ebuild  N 	] sys-libs/gpm-1.20.7-r2  USE="(-selinux) -static-libs" ABI_X86="(64) -32 (-x32)" 0 kB
[ebuild 	U  ] sys-libs/ncurses-5.9-r3:5 [5.9-r2:5] USE="cxx gpm unicode -ada -debug -doc -minimal -profile -static-libs -tinfo -trace" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] sys-apps/openrc-0.12.1 [0.12] USE="ncurses netifrc pam unicode -debug -newnet (-prefix) (-selinux) -static-libs -tools" 129 kB
[ebuild 	U  ] sys-process/procps-3.3.8 [3.3.6] USE="ncurses nls unicode -static-libs" 0 kB
[ebuild 	U  ] media-sound/alsa-utils-1.0.27.2:0.9 [1.0.27.1-r1:0.9] USE="libsamplerate ncurses nls -doc (-selinux)" 1,117 kB
[ebuild  NS	] sys-kernel/gentoo-sources-3.11.3:3.11.3 [3.10.4:3.10.4, 3.11.2:3.11.2] USE="-build -deblob -experimental -symlink" 90 kB
[ebuild   R	] net-dialup/minicom-2.6.2  USE="nls" LINGUAS="de -cs -da -es -fi -fr -hu -id -ja -nb -pl -pt_BR -ro -ru -rw -sv -vi* -zh_TW" 0 kB
[ebuild 	U  ] sys-devel/gdb-7.6.1 [7.6] USE="client nls python server zlib -expat -multitarget {-test} -vanilla" 23,783 kB
[ebuild 	U  ] cross-avr/gdb-7.6.1::games [7.6::games] USE="client nls python server zlib -expat -multitarget {-test} -vanilla" 0 kB
[ebuild   R	] x11-wm/fvwm-2.6.5  USE="nls png readline svg tk truetype vanilla xinerama* -bidi -debug -doc -gtk2-perl -lock -netpbm -perl -rplay -stroke" 0 kB
[ebuild 	U  ] dev-lang/ocaml-4.01.0:0/4.01.0 [4.00.1-r1:0/4.00.1] USE="X emacs latex ncurses ocamlopt tk -xemacs" 3,607 kB
[ebuild  N 	] net-fs/samba-3.6.19  USE="acl aio avahi client cups fam ldap netapi pam readline server smbclient winbind -addns -ads -caps -cluster -debug -dmapi -doc -examples -ldb -quota (-selinux) -smbsharemodes -swat -syslog" 33,317 kB
[ebuild 	U  ] net-fs/cifs-utils-6.1-r1 [6.1] USE="acl* caps caps-ng upcall -ads -creds" 0 kB
[blocks B  	] app-admin/eselect-blas ("app-admin/eselect-blas" is blocking sci-libs/lapack-reference-3.4.2, dev-cpp/eigen-3.2.0, sci-libs/gsl-1.16-r1)
[blocks B  	] sys-fs/udev ("sys-fs/udev" is blocking sys-apps/systemd-208-r1)
[blocks B  	] >=sys-apps/systemd-197 (">=sys-apps/systemd-197" is blocking sys-auth/nss-myhostname-0.3)
[blocks B  	] sys-apps/systemd ("sys-apps/systemd" is blocking sys-fs/udev-207, sys-fs/udev-208, app-admin/openrc-settingsd-1.0.1)
[blocks B  	] sys-auth/nss-myhostname ("sys-auth/nss-myhostname" is blocking sys-apps/systemd-208-r1)
[blocks B  	] <dev-libs/gobject-introspection-1.36 ("<dev-libs/gobject-introspection-1.36" is blocking dev-libs/glib-2.36.4-r1)

Total: 395 packages (328 upgrades, 3 downgrades, 26 new, 6 in new slots, 32 reinstalls, 3 uninstalls), Size of downloads: 1,666,129 kB
Conflict: 11 blocks (6 unsatisfied)

!!! Multiple package instances within a single package slot have been pulled
!!! into the dependency graph, resulting in a slot conflict:

kde-base/kdelibs:4

  (kde-base/kdelibs-4.10.5-r1::gentoo, ebuild scheduled for merge) pulled in by
	>=kde-base/kdelibs-4.4:4[aqua=,semantic-desktop?] required by (media-video/kdenlive-0.9.6::zugaina, ebuild scheduled for merge)

  (kde-base/kdelibs-4.11.1::gentoo, installed) pulled in by
	>=kde-base/kdelibs-4.11.1:4[aqua=] required by (kde-base/ark-4.11.1::gentoo, installed)
	(and 190 more with the same problem)

sys-devel/llvm:0

  (sys-devel/llvm-3.3-r1::gentoo, ebuild scheduled for merge) pulled in by
	~sys-devel/llvm-3.3[clang(-),debug=,multitarget?,python?,static-analyzer,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?] required by (sys-devel/clang-3.3-r100::gentoo, installed)
	>=sys-devel/llvm-3.3-r1[video_cards_radeon] required by (media-libs/mesa-9.2.0::gentoo, ebuild scheduled for merge)

  (sys-devel/llvm-3.3-r1::gentoo, installed) pulled in by
	(no parents that aren't satisfied by other packages in this slot)

media-libs/openexr:0

  (media-libs/openexr-2.0.0::gentoo, installed) pulled in by
	media-libs/openexr:0/20= required by (media-libs/openimageio-1.1.8::stuff, installed)
	media-libs/openexr:0/20= required by (kde-base/kdebase-kioslaves-4.11.1::gentoo, installed)
	media-libs/openexr:0/20= required by (kde-base/kdelibs-4.11.1::gentoo, installed)

  (media-libs/openexr-2.0.1-r1::gentoo, ebuild scheduled for merge) pulled in by
	(no parents that aren't satisfied by other packages in this slot)

media-libs/ilmbase:0

  (media-libs/ilmbase-2.0.0::gentoo, installed) pulled in by
	>=media-libs/ilmbase-2.0.0:0/10= required by (media-libs/openexr-2.0.0::gentoo, installed)
	media-libs/ilmbase:0/10= required by (media-libs/openimageio-1.1.8::stuff, installed)
	media-libs/ilmbase:0/10= required by (kde-base/kdelibs-4.11.1::gentoo, installed)

  (media-libs/ilmbase-2.0.1-r1::gentoo, ebuild scheduled for merge) pulled in by
	>=media-libs/ilmbase-2.0.1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?] required by (media-libs/openexr-2.0.1-r1::gentoo, ebuild scheduled for merge)

media-libs/x264:0

  (media-libs/x264-0.0.20130912::gentoo, ebuild scheduled for merge) pulled in by
	(no parents that aren't satisfied by other packages in this slot)

  (media-libs/x264-0.0.20130506::gentoo, installed) pulled in by
	>=media-libs/x264-0.0.20111017:0/132= required by (media-video/ffmpeg-2.0.1::gentoo, installed)
	(and 1 more with the same problem)

app-text/poppler:0

  (app-text/poppler-0.24.2::gentoo, ebuild scheduled for merge) pulled in by
	(no parents that aren't satisfied by other packages in this slot)

  (app-text/poppler-0.22.5::gentoo, ebuild scheduled for merge) pulled in by
	app-text/poppler:0/37=[xpdf-headers(+)] required by (dev-tex/luatex-0.76.0::gentoo, installed)
	>=app-text/poppler-0.16:0/37=[xpdf-headers(+),cxx] required by (app-office/libreoffice-4.1.2.2-r1::gentoo, installed)

x11-base/xorg-server:0

  (x11-base/xorg-server-1.14.1.901::gentoo, installed) pulled in by
	x11-base/xorg-server:0/1.14.1.901= required by (x11-drivers/xf86-input-keyboard-1.7.0::gentoo, installed)
	x11-base/xorg-server:0/1.14.1.901= required by (x11-drivers/xf86-input-evdev-2.8.1::gentoo, installed)
	x11-base/xorg-server:0/1.14.1.901= required by (x11-drivers/xf86-input-mouse-1.9.0::gentoo, installed)

  (x11-base/xorg-server-1.14.3-r1::gentoo, ebuild scheduled for merge) pulled in by
	(no parents that aren't satisfied by other packages in this slot)

sys-apps/texinfo:0

  (sys-apps/texinfo-4.13-r2::gentoo, installed) pulled in by
	<sys-apps/texinfo-5.0 required by (sci-mathematics/maxima-5.30.0-r2::gentoo, ebuild scheduled for merge)

  (sys-apps/texinfo-5.2::gentoo, ebuild scheduled for merge) pulled in by
	(no parents that aren't satisfied by other packages in this slot)

media-libs/glew:0

  (media-libs/glew-1.10.0-r1::gentoo, ebuild scheduled for merge) pulled in by
	(no parents that aren't satisfied by other packages in this slot)

  (media-libs/glew-1.9.0::gentoo, installed) pulled in by
	media-libs/glew:0/0= required by (media-libs/openimageio-1.1.8::stuff, installed)

dev-libs/gobject-introspection:0

  (dev-libs/gobject-introspection-1.36.0-r1::gentoo, ebuild scheduled for merge) pulled in by
	(no parents that aren't satisfied by other packages in this slot)

  (dev-libs/gobject-introspection-1.34.2-r1::gentoo, installed) pulled in by
	<dev-libs/gobject-introspection-1.36.0 required by (x11-misc/lightdm-1.4.3::gentoo, ebuild scheduled for merge)

dev-libs/gobject-introspection-common:0

  (dev-libs/gobject-introspection-common-1.34.2::gentoo, installed) pulled in by
	<dev-libs/gobject-introspection-common-1.35.9 required by (dev-libs/gobject-introspection-1.34.2-r1::gentoo, installed)

  (dev-libs/gobject-introspection-common-1.36.0::gentoo, ebuild scheduled for merge) pulled in by
	>=dev-libs/gobject-introspection-common-1.36.0 required by (dev-libs/gobject-introspection-1.36.0-r1::gentoo, ebuild scheduled for merge)

media-video/ffmpeg:0

  (media-video/ffmpeg-2.0.1::gentoo, ebuild scheduled for merge) pulled in by
	media-video/ffmpeg:0[x264,mp3,encode,theora,jpeg2k?] required by (media-gfx/blender-2.68a::gentoo, ebuild scheduled for merge)
	>=media-video/ffmpeg-1.0:0[X?,encode?,gsm?,jpeg2k?,mp3?,opus?,sdl?,speex?,theora?,threads?,truetype?,vaapi?,vdpau?,x264?] required by (virtual/ffmpeg-9::gentoo, installed)

  (media-video/ffmpeg-2.0.1::gentoo, installed) pulled in by
	(no parents that aren't satisfied by other packages in this slot)


It may be possible to solve this problem by using package.mask to
prevent one of those packages from being selected. However, it is also
possible that conflicting dependencies exist such that they are
impossible to satisfy simultaneously.  If such a conflict exists in
the dependencies of two different packages, then those packages can
not be installed simultaneously. You may want to try a larger value of
the --backtrack option, such as --backtrack=30, in order to see if
that will solve this conflict automatically.

For more information, see MASKED PACKAGES section in the emerge man
page or refer to the Gentoo Handbook.


 * Error: The above package list contains packages which cannot be
 * installed at the same time on the same system.

  (sys-apps/systemd-208-r1::gentoo, ebuild scheduled for merge) pulled in by
	>=sys-apps/systemd-44-r1[pam] required by (sys-auth/pambase-20120417-r2::gentoo, ebuild scheduled for merge)
	>=sys-apps/systemd-207 required by (sys-apps/gentoo-systemd-integration-2::gentoo, ebuild scheduled for merge)
	>=sys-apps/systemd-38 required by (virtual/logger-0::gentoo, installed)

  (app-admin/openrc-settingsd-1.0.1::gentoo, installed) pulled in by
	app-admin/openrc-settingsd required by @selected

  (app-admin/eselect-blas-0.1::gentoo, installed) pulled in by
	app-admin/eselect-blas required by @selected

  (sci-libs/gsl-1.16-r1::science, ebuild scheduled for merge) pulled in by
	sci-libs/gsl required by (media-gfx/asymptote-2.24::gentoo, installed)
	>=sci-libs/gsl-1.15-r3[-cblas-external] required by (virtual/cblas-2.0::science, ebuild scheduled for merge)

  (sci-libs/lapack-reference-3.4.2::science, ebuild scheduled for merge) pulled in by
	>=sci-libs/lapack-reference-3.4 required by (virtual/lapack-3.4::science, ebuild scheduled for merge)

  (dev-cpp/eigen-3.2.0::science, ebuild scheduled for merge) pulled in by
	dev-cpp/eigen:3 required by (media-gfx/digikam-3.4.0::gentoo, ebuild scheduled for merge)
	>=dev-cpp/eigen-3.1.3:3 required by (media-gfx/blender-2.68a::gentoo, ebuild scheduled for merge)
	dev-cpp/eigen:3 required by (media-gfx/blender-2.67a::stuff, ebuild scheduled for merge)
	>=dev-cpp/eigen-3.1.2 required by (virtual/blas-2.1::science, ebuild scheduled for merge)

  (dev-libs/glib-2.36.4-r1::gentoo, ebuild scheduled for merge) pulled in by
	dev-libs/glib:2 required by (razorqt-base/razorqt-policykit-0.5.2::gentoo, installed)
	>=dev-libs/glib-2.28:2 required by (app-mobilephone/obexd-0.46::gentoo, installed)
	dev-libs/glib required by (media-libs/liblqr-0.4.2::gentoo, installed)
	>=dev-libs/glib-2.28:2 required by (app-accessibility/at-spi2-core-2.8.0::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2:2 required by (sys-block/gparted-0.16.1::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.30.2:2 required by (media-gfx/gimp-2.8.6::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.14:2 required by (x11-libs/gtksourceview-2.10.5-r2::gentoo, installed)
	dev-libs/glib:2 required by (sys-fs/fuseiso-20070708-r1::gentoo, installed)
	>=dev-libs/glib-2.18:2 required by (dev-lang/vala-0.20.1::gentoo, installed)
	dev-libs/glib:2 required by (kde-misc/kde-gtk-config-2.2.1::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-flac-0.10.31::gentoo, installed)
	>=dev-libs/glib-2.30 required by (dev-util/pkgconfig-0.28::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-soup-0.10.31::gentoo, installed)
	>=dev-libs/glib-2.16 required by (x11-libs/libxklavier-5.3::gentoo, installed)
	dev-libs/glib:2 required by (net-dns/avahi-0.6.31-r2::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.30 required by (gnome-extra/polkit-gnome-0.105::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-libs/gst-plugins-ugly-0.10.19::gentoo, installed)
	>=dev-libs/glib-2.32:2 required by (dev-java/icedtea-bin-6.1.12.6-r1::gentoo, installed)
	>=dev-libs/glib-2.24.0:2 required by (dev-python/pygobject-2.28.6-r54::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-vorbis-0.10.36::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-x264-0.10.19::gentoo, installed)
	dev-libs/glib:2 required by (media-gfx/ufraw-0.19.2::gentoo, installed)
	>=dev-libs/glib-2.31.2:2 required by (dev-libs/atk-2.8.0::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-mpeg2dec-0.10.19::gentoo, installed)
	dev-libs/glib:2 required by (app-text/poppler-0.24.2::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.34.2:2 required by (dev-python/pygobject-3.8.3::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-a52dec-0.10.19::gentoo, installed)
	>=dev-libs/glib-2.32.2 required by (media-plugins/audacious-plugins-3.4.1::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.34.0:2 required by (x11-libs/gtksourceview-3.8.2::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.33.12:2 required by (x11-libs/pango-1.34.1::gentoo, installed)
	>=dev-libs/glib-2.24:2 required by (media-libs/gst-plugins-good-0.10.31::gentoo, installed)
	>=dev-libs/glib-2.26:2 required by (mail-client/thunderbird-24.0-r1::gentoo, installed)
	>=dev-libs/glib-2.26 required by (sys-apps/systemd-ui-2::gentoo, installed)
	>=dev-libs/glib-2.4.0 required by (media-sound/pulseaudio-4.0::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.22:2= required by (sys-auth/consolekit-0.4.6::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.28.6:2 required by (x11-libs/cairo-1.12.16::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.12:2 required by (dev-util/desktop-file-utils-0.22::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.36.1:2 required by (dev-cpp/glibmm-2.36.2::gentoo, ebuild scheduled for merge)
	dev-libs/glib:2 required by (app-text/poppler-0.22.5::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?] (>=dev-libs/glib-2:2[abi_x86_64(-)]) required by (dev-libs/fribidi-0.19.5-r2::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.24:2 required by (media-libs/gst-plugins-ugly-0.10.19::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-x-0.10.36::gentoo, installed)
	>=dev-libs/glib-2.26 required by (x11-libs/libnotify-0.7.6::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.24:2 required by (media-libs/gstreamer-0.10.36::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-dts-0.10.23::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-xvideo-0.10.36::gentoo, installed)
	>=dev-libs/glib-2.36:2 required by (dev-libs/gobject-introspection-1.36.0-r1::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-xvid-0.10.23::gentoo, installed)
	>=dev-libs/glib-2.24:2 required by (media-libs/gst-plugins-bad-0.10.23-r1::gentoo, installed)
	>=dev-libs/glib-2.24:2 required by (gnome-base/librsvg-2.39.0::gentoo, ebuild scheduled for merge)
	dev-libs/glib:2 required by (media-libs/opencv-2.4.6.1::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.22 required by (sys-power/upower-0.9.21::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2 required by (app-admin/system-config-printer-common-1.4.1::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-cdparanoia-0.10.36::gentoo, installed)
	>=dev-libs/glib-2.28 required by (media-sound/audacious-3.4.1::gentoo, installed)
	>=dev-libs/glib-2.34.1:2 required by (dev-libs/gobject-introspection-1.34.2-r1::gentoo, installed)
	>=dev-libs/glib-2:2 required by (app-admin/gam-server-0.1.10-r1::gentoo, installed)
	dev-libs/glib:2 required by (dev-python/wxpython-2.8.12.1-r1::gentoo, installed)
	dev-libs/glib:2 required by (dev-qt/qtcore-4.8.5::gentoo, installed)
	>=dev-libs/glib-2.34:2 required by (x11-libs/gtk+-2.24.21::gentoo, ebuild scheduled for merge)
	dev-libs/glib:2 required by (sys-auth/polkit-qt-0.103.0::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-mad-0.10.19::gentoo, installed)
	>=dev-libs/glib-2.22:2 required by (x11-libs/wxGTK-2.9.4.1-r1::gentoo, installed)
	>=dev-libs/glib-2.11.1 required by (media-gfx/graphviz-2.28.0::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.8:2 required by (dev-python/pygtk-2.24.0-r4::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.26:2 required by (dev-libs/dbus-glib-0.100.2::gentoo, installed)
	dev-libs/glib:2 required by (media-libs/harfbuzz-0.9.20::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.32:2 required by (dev-libs/libgee-0.10.5::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.32:2 required by (app-crypt/gcr-3.8.2::gentoo, installed)
	>=dev-libs/glib-2.10:2 required by (gnome-base/libglade-2.6.4::gentoo, installed)
	>=dev-libs/glib-2.31:2 required by (gnome-base/gsettings-desktop-schemas-3.8.2::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.31:2 required by (gnome-base/gconf-3.2.6-r1::gentoo, ebuild scheduled for merge)
	dev-libs/glib:2 required by (kde-base/systemsettings-4.11.1::gentoo, installed)
	>=dev-libs/glib-2 required by (gnome-base/libgnomeprint-2.18.8::gentoo, installed)
	>=dev-libs/glib-2.28.0:2 required by (x11-libs/goocanvas-2.0.1-r1::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.6:2 required by (media-libs/gst-plugins-bad-0.10.23-r1::gentoo, installed)
	>=dev-libs/glib-2.20.5:2 required by (dev-java/icedtea-bin-7.2.4.1::gentoo, installed)
	dev-libs/glib:2 required by (dev-libs/libcroco-0.6.8::gentoo, installed)
	>=dev-libs/glib-2.32.0:2 required by (gnome-base/gnome-keyring-3.8.2::gentoo, installed)
	>=dev-libs/glib-2.36.0:2 required by (net-libs/libsoup-2.42.2-r1::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.6 required by (dev-java/swt-3.7.2-r1::gentoo, ebuild scheduled for merge)
	dev-libs/glib:2 required by (dev-qt/qtwebkit-4.8.5::gentoo, installed)
	>=dev-libs/glib-2.32.3:2 required by (x11-misc/lightdm-1.4.3::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.24:2 required by (media-libs/gst-plugins-base-0.10.36::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-faad-0.10.23::gentoo, installed)
	>=dev-libs/glib-2.34.0:2 required by (sys-apps/accountsservice-0.6.34::gentoo, installed)
	dev-libs/glib:2 required by (x11-libs/wxGTK-2.8.12.1-r1::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-resindvd-0.10.23::gentoo, installed)
	>=dev-libs/glib-2.28:2 required by (media-libs/gegl-0.2.0-r2::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.6:2 required by (media-libs/gst-plugins-base-1.2.0::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.32:2 required by (app-accessibility/at-spi2-atk-2.8.1::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.28 required by (media-libs/lensfun-0.2.7::gentoo, installed)
	>=dev-libs/glib-2.32 required by (sys-fs/udisks-2.1.1::gentoo, installed)
	dev-libs/glib:2 required by @selected
	>=dev-libs/glib-2.35.3:2 required by (x11-libs/gtk+-3.8.4::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.32:2 required by (media-libs/gst-plugins-base-1.2.0::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.36.4:2 required by (dev-util/gdbus-codegen-2.36.4-r1::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.10:2 required by (gnome-base/libgnomecanvas-2.30.3::gentoo, installed)
	dev-libs/glib required by (app-text/liblangtag-0.5.1::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-dvdread-0.10.19::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-libs/gst-plugins-good-0.10.31::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-libs/gst-plugins-base-0.10.36::gentoo, installed)
	dev-libs/glib:2 required by (app-text/enchant-1.6.0::gentoo, installed)
	>=dev-libs/glib-2.26:2 required by (www-client/firefox-24.0-r1::gentoo, installed)
	>=dev-libs/glib-2:2 required by (net-print/libgnomecups-0.2.3-r3::gentoo, installed)
	>=dev-libs/glib-2.32 required by (sys-auth/polkit-0.112-r1::gentoo, ebuild scheduled for merge)
	dev-libs/glib:2 required by (sci-electronics/gtkwave-3.3.47::gentoo, installed)
	>=dev-libs/glib-2.34.0:2 required by (x11-libs/gdk-pixbuf-2.28.2::gentoo, installed)
	>=dev-libs/glib-2.32:2 required by (media-libs/gstreamer-1.2.0::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-alsa-0.10.36::gentoo, installed)
	>=dev-libs/glib-2 required by (x11-misc/shared-mime-info-1.1::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-ogg-0.10.36::gentoo, installed)
	dev-libs/glib:2 required by (app-mobilephone/obex-data-server-0.4.6::gentoo, installed)
	>=dev-libs/glib-2.28:2 required by (net-wireless/bluez-4.101-r7::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.35.8:2 required by (net-libs/glib-networking-2.36.2::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2 required by (sys-fs/udev-208::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.30:2 required by (app-admin/openrc-settingsd-1.0.1::gentoo, installed)
	>=dev-libs/glib-2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?] (>=dev-libs/glib-2[abi_x86_64(-)]) required by (sys-apps/systemd-208-r1::gentoo, ebuild scheduled for merge)

  (sys-fs/udev-208::gentoo, ebuild scheduled for merge) pulled in by
	sys-fs/udev required by @selected
	>=sys-fs/udev-206-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,gudev?,introspection?,kmod?,selinux?,static-libs?] (>=sys-fs/udev-206-r2[abi_x86_64(-),gudev,introspection,kmod]) required by (virtual/udev-206-r3::gentoo, ebuild scheduled for merge)


For more information about Blocked Packages, please refer to the following
section of the Gentoo Linux x86 Handbook (architecture is irrelevant):

http://www.gentoo.org/doc/en/handbook/handbook-x86.xml?full=1#blocked


The following USE changes are necessary to proceed:
 (see "package.use" in the portage(5) man page for more details)
# required by net-fs/cifs-utils-6.1-r1[acl]
# required by @selected
# required by @world (argument)
=net-fs/samba-3.6.19 winbind
# required by sys-devel/clang-3.3-r100
# required by dev-libs/libclc-0.0.1_pre20130819
# required by media-libs/mesa-9.2.0[opencl]
# required by virtual/opencl-0-r3
# required by media-libs/opencv-2.4.6.1[opencl]
# required by media-libs/libkface-3.4.0
# required by media-gfx/digikam-3.4.0
# required by @selected
# required by @world (argument)
=sys-devel/llvm-3.3-r1 clang video_cards_radeon
# required by virtual/ffmpeg-9
# required by media-plugins/audacious-plugins-3.4.1[ffmpeg]
# required by @selected
# required by @world (argument)
=media-video/ffmpeg-2.0.1 theora

 * IMPORTANT: 9 news items need reading for repository 'gentoo'.
 * Use eselect news to read news items.

6

06.10.2013, 04:42

Eine Welt-Aktualisierung geht leider momentan auch nicht - da will irgendwas systemd, und was anderes will das überhaupt nicht:

Das liegt wahrscheinlich am gesetzten systemd USE-Flag beim sys-auth/pambase Paket.
Siehe

Zitat

Quellcode

1
[ebuild 	U  ] sys-auth/pambase-20120417-r2 [20120417-r1] USE="consolekit cracklib sha512 systemd* -debug -gnome-keyring -minimal -mktemp -pam_krb5 -pam_ssh -passwdqc (-selinux)" 0 kB
bzw auch im

Quellcode

1
2
3
  (sys-apps/systemd-208-r1::gentoo, ebuild scheduled for merge) pulled in by
	>=sys-apps/systemd-44-r1[pam] required by (sys-auth/pambase-20120417-r2::gentoo, ebuild scheduled for merge)
....

RKnoerig

unregistriert

7

06.10.2013, 12:44

Eine Welt-Aktualisierung geht leider momentan auch nicht - da will irgendwas systemd, und was anderes will das überhaupt nicht:

Das liegt wahrscheinlich am gesetzten systemd USE-Flag beim sys-auth/pambase Paket.
Siehe

Zitat

Quellcode

1
[ebuild 	U  ] sys-auth/pambase-20120417-r2 [20120417-r1] USE="consolekit cracklib sha512 systemd* -debug -gnome-keyring -minimal -mktemp -pam_krb5 -pam_ssh -passwdqc (-selinux)" 0 kB
bzw auch im

Quellcode

1
2
3
  (sys-apps/systemd-208-r1::gentoo, ebuild scheduled for merge) pulled in by
	>=sys-apps/systemd-44-r1[pam] required by (sys-auth/pambase-20120417-r2::gentoo, ebuild scheduled for merge)
....
Das Lustige ist - ich bekomme dies weder über package.use noch make.conf raus.
In der make.conf steht ganz am Anfang explizit

Quellcode

1
USE="-systemd consolekit icu infinality X a52 aac acl acpi asl alsa amd64 avahi bash-completion blender cycles colorio gcrypt lto gsl graphite dot ebook sql mod mikmod modplug wxwidgets melt midi mp3 faad faac sdl xvid threads jpeg2k timidity midi sid git subversion libsamplerate ssse3 xvid network aac amr vhook ftp cxx qmake cmake multilib nls nptl nsplugin joystick readline X emacs latex png ffmpeg wxwindows kpathsea kdeprefix tk alsa audiofile blas bzip2 cdparanoia cvs fam fftw flac fontconfig ginac graphviz gstreamer imagemagick cdr java java6 jpeg jpeg2k kdehiddenvisibility latex lapack lm_sensors mp3 mplayer mysql nsplugin odbc ofx openal openexr openmp pcre pdf plasma sasl sdl smp spell sox svg threads timidity truetype unicode usb v4l2 win32codecs zlib opendbc opengl cups qt4 kde dvd hal mmx sse sse2 sse3 sse4 xetex xfti opencl"


und zuvor habe ich es schon mit der package.use probiert:

Quellcode

1
2
cat /etc/portage/package.use/pambase 
sys-auth/pambase -systemd


Trotzdem liefert mir equery u pambase hartnäckig:

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
* Found these USE flags for sys-auth/pambase-20120417-r2:
 U I
 + + consolekit	:  Enable pam_ck_connector module on local system logins. This allows for console logins to make use of ConsoleKit authorization. 
 + + cracklib  	:  Enable pam_cracklib module on system authentication stack. This produces warnings when changing password to something easily crackable. It requires the same USE flag
                 	to be enabled on sys-libs/pam or system login might be impossible. 
 - - debug     	:  Enable debug information logging on syslog(3) for all the modules supporting this in the system authentication and system login stacks. 
 - - gnome-keyring :  Enable pam_gnome_keyring module on system login stack. This enables proper Gnome Keyring access to logins, whether they are done with the login shell, a Desktop
                 	Manager or a remote login systems such as SSH. 
 - - minimal   	:  Disables the standard PAM modules that provide extra information to users on login; this includes pam_tally (and pam_tally2 for Linux PAM 1.1 and later), pam_lastlog,
                 	pam_motd and other similar modules. This might not be a good idea on a multi-user system but could reduce slightly the overhead on single-user non-networked systems. 
 - - mktemp    	:  Enable pam_mktemp module on system auth stack for session handling. This module creates a private temporary directory for the user, and sets TMP and TMPDIR
                 	accordingly. 
 - - pam_krb5  	:  Enable pam_krb5 module on system auth stack, as an alternative to pam_unix. If Kerberos authentication succeed, only pam_unix will be ignore, and all the other
                 	modules will proceed as usual, including Gnome Keyring and other session modules. It requires sys-libs/pam as PAM implementation. 
 - - pam_ssh   	:  Enable pam_ssh module on system auth stack for authentication and session handling. This module will accept as password the passphrase of a private SSH key (one of
                 	~/.ssh/id_rsa, ~/.ssh/id_dsa or ~/.ssh/identity), and will spawn an ssh-agent instance to cache the open key. 
 - - passwdqc  	:  Enable pam_passwdqc module on system auth stack for password quality validation. This is an alternative to pam_cracklib producing warnings, rejecting or providing
                 	example passwords when changing your system password. It is used by default by OpenWall GNU/*/Linux and by FreeBSD. 
 + - sha512    	:  Switch Linux-PAM's pam_unix module to use sha512 for passwords hashes rather than MD5. This option requires >=sys-libs/pam-1.0.1 built against >=sys-libs/glibc-2.7,
                 	if it's built against an earlier version, it will silently be ignored, and MD5 hashes will be used. All the passwords changed after this USE flag is enabled will be
                 	saved to the shadow file hashed using SHA512 function. The password previously saved will be left untouched. Please note that while SHA512-hashed passwords will still
                 	be recognised if the USE flag is removed, the shadow file will not be compatible with systems using an earlier glibc version. 
 + - systemd   	:  Use pam_systemd module to register user sessions in the systemd control group hierarchy.

8

07.10.2013, 09:04

Kümmere dich doch mal um

Zitat

Quellcode

1
2
--- Invalid atom in /etc/portage/package.keywords/cross--h: cross--h/[latest]
--- Invalid atom in /etc/portage/package.keywords/cross-msp430: cross-msp430/[latest]
und

Zitat

Quellcode

1
2
 * IMPORTANT: 9 news items need reading for repository 'gentoo'.
 * Use eselect news to read news items.
Schönheitsfehler. Sind aber idR schnell erledigt.

Dann was gibt dein emerge --info sowie ein emerge -avuDN @system?
http://www.dyle.org
IM-Account (Jabber!) sind auf meiner HP ...
There is no place like /home

http://www.gentooforum.de
http://www.gentoofreunde.org

<div>how to annoy a web developer?</span>

RKnoerig

unregistriert

9

13.10.2013, 12:25

Emerge info liefert

Quellcode

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
/usr/lib64/portage/pym/portage/package/ebuild/config.py:432: UserWarning: 'cache.metadata_overlay.database' is deprecated: /etc/portage/modules
  (user_auxdbmodule, modules_file))
!!! Repository 'scarabeus' is missing masters attribute in '/var/lib/layman/scarabeus/metadata/layout.conf'
!!! Set 'masters = gentoo' in this file for future compatibility
--- Invalid atom in /etc/portage/package.keywords/cross--h: cross--h/[latest]
--- Invalid atom in /etc/portage/package.keywords/cross-msp430: cross-msp430/[latest]
Portage 2.2.7 (default/linux/amd64/13.0/desktop/kde, gcc-4.8.1, glibc-2.17, 3.11.2-gentoo x86_64)
=================================================================
System uname: Linux-3.11.2-gentoo-x86_64-AMD_Phenom-tm-_II_X6_1045T_Processor-with-gentoo-2.2
KiB Mem:	24740564 total,  20384120 free
KiB Swap:   33554428 total,  33554428 free
Timestamp of tree: Sun, 13 Oct 2013 10:00:01 +0000
ld GNU ld (GNU Binutils) 2.23.1
app-shells/bash:      	4.2_p45
dev-java/java-config: 	2.2.0
dev-lang/python:      	2.6.8-r1, 2.7.5, 3.3.2
dev-util/cmake:       	2.8.11.2
dev-util/pkgconfig:   	0.28
sys-apps/baselayout:  	2.2
sys-apps/openrc:      	0.12
sys-apps/sandbox:     	2.6-r1
sys-devel/autoconf:   	2.13, 2.69
sys-devel/automake:   	1.10.3, 1.11.6, 1.12.6, 1.13.4, 1.14
sys-devel/binutils:   	2.23.1
sys-devel/gcc:        	4.6.4, 4.7.3, 4.8.1
sys-devel/gcc-config: 	1.8
sys-devel/libtool:    	2.4.2
sys-devel/make:       	3.82-r4
sys-kernel/linux-headers: 3.11 (virtual/os-headers)
sys-libs/glibc:       	2.17
Repositories: gentoo games mistafunk scarabeus science wavilen zugaina stuff
ACCEPT_KEYWORDS="amd64 ~amd64"
ACCEPT_LICENSE="*"
CBUILD="x86_64-pc-linux-gnu"
CFLAGS="-O2 -march=native -g0 -mtune=native -funroll-loops -fomit-frame-pointer -mfpmath=sse -fopenmp -pipe -msse -msse2 -msse3 -msse4a -ftree-vectorize -fivopts -floop-interchange -floop-strip-mine -floop-block"
CHOST="x86_64-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/share/config /usr/share/gnupg/qualified.txt /var/lib/hsqldb"
CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/php/apache2-php5.4/ext-active/ /etc/php/apache2-php5/ext-active/ /etc/php/cgi-php5.4/ext-active/ /etc/php/cgi-php5/ext-active/ /etc/php/cli-php5.4/ext-active/ /etc/php/cli-php5/ext-active/ /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo /etc/texmf/language.dat.d /etc/texmf/language.def.d /etc/texmf/updmap.d /etc/texmf/web2c"
CXXFLAGS="-O2 -march=native -g0 -mtune=native -funroll-loops -fomit-frame-pointer -mfpmath=sse -fopenmp -pipe -msse -msse2 -msse3 -msse4a -ftree-vectorize -fivopts -floop-interchange -floop-strip-mine -floop-block -felide-constructors"
DISTDIR="/usr/portage/distfiles"
EMERGE_DEFAULT_OPTS="--jobs=8  --load-average=16  --keep-going=y  --with-bdeps=y --complete-graph"
FCFLAGS="-O2 -pipe"
FEATURES="assume-digests binpkg-logs config-protect-if-modified distlocks ebuild-locks fixlafiles merge-sync news parallel-fetch preserve-libs protect-owned sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync"
FFLAGS="-O2 -pipe"
GENTOO_MIRRORS="http://distfiles.gentoo.org"
LANG="de_DE.utf8@euro"
LC_ALL="de_DE.utf8@euro"
LDFLAGS="-pthread"
MAKEOPTS="-j9 -l16"
PKGDIR="/usr/portage/packages"
PORTAGE_CONFIGROOT="/"
PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages"
PORTAGE_TMPDIR="/var/tmp"
PORTDIR="/usr/portage"
PORTDIR_OVERLAY="/usr/local/portage/layman/games /var/lib/layman/mistafunk /var/lib/layman/scarabeus /var/lib/layman/science /var/lib/layman/wavilen /var/lib/layman/zugaina /var/lib/layman/stuff"
USE="X a52 aac acl acpi alsa amd64 amr asl audiofile avahi bash-completion berkdb blas blender bluetooth branding bzip2 cairo cdda cdparanoia cdr cli cmake colorio consolekit cracklib crypt cups cvs cxx cycles dbus declarative dot dri dts dvd dvdr ebook emacs emboss encode exif faac faad fam ffmpeg fftw firefox flac fontconfig fortran ftp gcrypt gdbm gif ginac git gpm graphite graphviz gsl gstreamer gtk hal iconv icu imagemagick infinality ipv6 java java6 joystick jpeg jpeg2k kde kdehiddenvisibility kdeprefix kipi kpathsea lapack latex lcms ldap libnotify libsamplerate lm_sensors lto mad melt midi mikmod mmx mng mod modplug modules mp3 mp4 mpeg mplayer mudflap multilib mysql ncurses network nls nptl nsplugin odbc ofx ogg openal opencl opendbc openexr opengl openmp pam pango pcre pdf phonon plasma png policykit ppds qmake qt3support qt4 readline sasl sdl semantic-desktop session sid smp sox spell sql sse sse2 sse3 sse4 ssl ssse3 startup-notification subversion svg tcpd theora threads tiff timidity tk truetype udev udisks unicode upower usb v4l2 vhook vorbis win32codecs wxwidgets wxwindows x264 xcb xcomposite xetex xfti xinerama xml xscreensaver xv xvid zlib" ABI_X86="64" ALSA_CARDS="ali5451 als4000 atiixp atiixp-modem bt87x ca0106 cmipci emu10k1x ens1370 ens1371 es1938 es1968 fm801 hda-intel intel8x0 intel8x0m maestro3 trident usb-audio via82xx via82xx-modem ymfpci" APACHE2_MODULES="authn_core authz_core socache_shmcb unixd actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" CALLIGRA_FEATURES="kexi words flow plan sheets stage tables krita karbon braindump author" CAMERAS="ptp2" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf superstar2 timing tsip tripmate tnt ubx" INPUT_DEVICES="keyboard mouse evdev" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" LINGUAS="de en" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php5-5" PYTHON_SINGLE_TARGET="python2_7" PYTHON_TARGETS="python2_6 python2_7 python3_3" RUBY_TARGETS="ruby19 ruby18" USERLAND="GNU" VIDEO_CARDS="fglrx" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq steal rawnat logmark ipmark dhcpmac delude chaos account"
USE_PYTHON="2.6 2.7 3.3"
Unset:  CPPFLAGS, CTARGET, INSTALL_MASK, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS, SYNC


und

Quellcode

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
localhost knoeohcd # emerge -avuDN @system
/usr/lib64/portage/pym/portage/package/ebuild/config.py:432: UserWarning: 'cache.metadata_overlay.database' is deprecated: /etc/portage/modules
  (user_auxdbmodule, modules_file))
!!! Repository 'scarabeus' is missing masters attribute in '/var/lib/layman/scarabeus/metadata/layout.conf'
!!! Set 'masters = gentoo' in this file for future compatibility
--- Invalid atom in /etc/portage/package.keywords/cross--h: cross--h/[latest]
--- Invalid atom in /etc/portage/package.keywords/cross-msp430: cross-msp430/[latest]

 * IMPORTANT: 9 news items need reading for repository 'gentoo'.
 * Use eselect news to read news items.


These are the packages that would be merged, in order:

Calculating dependencies... done!
[ebuild 	U  ] sys-libs/timezone-data-2013g [2013c] USE="nls" 390 kB
[ebuild 	U  ] sys-apps/debianutils-4.4 [4.3.4] USE="-static" 266 kB
[ebuild 	U  ] app-arch/xz-utils-5.0.5-r1 [5.0.5] USE="nls threads -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] dev-python/python-exec-2.0-r1:2 [2.0:2] PYTHON_TARGETS="(jython2_5) (jython2_7) (pypy2_0) (python2_6) (python2_7) (python3_2) (python3_3)" 0 kB
[ebuild 	U  ] dev-libs/expat-2.1.0-r3 [2.1.0-r2] USE="unicode -examples -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] virtual/libiconv-0-r1 [0] ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] media-libs/ilmbase-2.0.1-r1:0/2.0.1 [2.0.0:0/10] USE="-static-libs" ABI_X86="(64%*) -32% (-x32)" 543 kB
[ebuild 	U  ] media-libs/x264-0.0.20130912:0/138 [0.0.20130506:0/132] USE="interlaced sse%* threads -10bit -pic -static-libs (-custom-cflags%)" ABI_X86="(64%*) -32% (-x32)" 615 kB
[ebuild 	U  ] media-libs/libdvdcss-1.2.13-r1:1.2 [1.2.13:1.2] USE="-doc -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] dev-libs/libffi-3.0.13-r1 [3.0.13] USE="-debug -pax_kernel -static-libs {-test}" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] media-libs/vo-aacenc-0.1.3 [0.1.2] USE="-examples (-neon) -static-libs" ABI_X86="(64%*) -32% (-x32)" 599 kB
[ebuild   R	] dev-python/python-exec-0.3.1  PYTHON_TARGETS="(jython2_5) (jython2_7) (pypy2_0) (python2_6) (python2_7) (python3_2) (python3_3) (-pypy1_9%*) (-python2_5%*) (-python3_1%*)" 0 kB
[ebuild 	U  ] virtual/libffi-3.0.13-r1 [3.0.11] ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] dev-libs/gobject-introspection-common-1.36.0 [1.34.2] 0 kB
[ebuild 	U  ] app-portage/portage-utils-0.40 [0.30] USE="-static" 394 kB
[ebuild 	U  ] sys-devel/m4-1.4.17 [1.4.16] USE="-examples" 1,123 kB
[ebuild 	U  ] dev-libs/vala-common-0.22.0 [0.20.1] 2,590 kB
[ebuild 	U  ] dev-libs/gmp-5.1.3-r1 [5.1.2] USE="cxx -doc -pgo -static-libs" ABI_X86="(64%*) -32% (-x32)" 1,777 kB
[ebuild 	U  ] dev-libs/mpfr-3.1.2-r1 [3.1.2] USE="-static-libs" 0 kB
[ebuild 	U  ] kde-base/kde-env-4.11.2:4 [4.11.1:4] USE="(-aqua)" 0 kB
[ebuild 	U  ] app-misc/ca-certificates-20130906 [20130610] 181 kB
[ebuild 	U  ] virtual/jpeg-0-r2 [0] USE="-static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] app-text/docbook-xsl-stylesheets-1.78.0-r1 [1.78.0] USE="-ruby" 0 kB
[ebuild 	U  ] app-emacs/po-mode-0.18.3.1 [0.18.1.1] 15,959 kB
[ebuild  N 	] app-emacs/eselect-mode-1.3.8  165 kB
[ebuild 	U  ] virtual/glu-9.0-r1 [9.0] ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] dev-lang/swig-2.0.11 [2.0.10] USE="pcre -ccache -doc" 5,186 kB
[ebuild 	U  ] sci-libs/fftw-3.3.3-r3:3.0 [3.3.3-r2:3.0] USE="fortran openmp sse sse2 threads (-altivec) -avx -doc -fma -mpi (-neon) -quad -static-libs {-test} (-zbus)" ABI_X86="(64) -32 (-x32)" 0 kB
[ebuild 	U  ] app-text/build-docbook-catalog-1.20 [1.19.1] 5 kB
[ebuild 	U  ] x11-misc/xdg-utils-1.1.0_rc1_p20130921 [1.1.0_rc1_p20120916] USE="perl -doc" 265 kB
[ebuild 	U  ] virtual/libusb-1-r1:1 [1:1] ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] virtual/perl-MIME-Base64-3.140.0 [3.130.0-r2] 0 kB
[ebuild 	U  ] virtual/fam-0-r1 [0] ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] virtual/perl-libnet-1.230.0 [1.220.0-r1] 0 kB
[ebuild 	U  ] net-misc/rsync-3.1.0 [3.0.9-r3] USE="acl iconv ipv6 -static -xattr" 864 kB
[ebuild 	U  ] dev-db/mysql-init-scripts-2.0_pre1-r6 [2.0_pre1-r3] 0 kB
[ebuild 	U  ] sys-libs/zlib-1.2.8-r1 [1.2.8] USE="minizip -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] media-libs/alsa-lib-1.0.27.2 [1.0.27.1] USE="-alisp -debug -doc -python" ABI_X86="(64) -32 (-x32)" PYTHON_SINGLE_TARGET="python2_7" PYTHON_TARGETS="python2_7" 886 kB
[ebuild 	U  ] dev-db/sqlite-3.8.0.2:3 [3.7.17:3] USE="icu readline -debug -doc -secure-delete -static-libs -tcl {-test} (-extensions%*)" 1,835 kB
[ebuild 	U  ] dev-libs/libgcrypt-1.5.3:0/11 [1.5.2-r1:0/11] USE="-static-libs" 1,474 kB
[ebuild 	U  ] app-text/libpaper-1.1.24-r2 [1.1.24-r1] ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] x11-proto/videoproto-2.3.2 [2.3.1-r1] ABI_X86="(64) -32 (-x32)" 117 kB
[ebuild 	U  ] media-libs/libsamplerate-0.1.8-r1 [0.1.8] USE="-sndfile -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] media-libs/libdvdread-4.2.0-r1 [4.2.0] USE="css" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] x11-apps/iceauth-1.0.6 [1.0.5] 131 kB
[ebuild 	U  ] x11-libs/libdrm-2.4.46-r1 [2.4.46] USE="libkms -static-libs" ABI_X86="(64%*) -32% (-x32)" VIDEO_CARDS="(-exynos) (-freedreno) -intel -nouveau (-omap) -radeon -vmware" 0 kB
[ebuild 	U  ] dev-libs/libgamin-0.1.10-r4 [0.1.10-r3] USE="-debug -python -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] sys-devel/patch-2.7.1-r2 [2.7.1-r1] USE="-static {-test} -xattr" 0 kB
[ebuild 	U  ] media-libs/libmad-0.15.1b-r8 [0.15.1b-r7] USE="-debug -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] media-libs/libdca-0.0.5-r3 [0.0.5-r2] USE="-debug -oss -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] media-libs/a52dec-0.7.4-r7 [0.7.4-r6] USE="-djbfft -oss -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] dev-lang/tcl-8.6.1:0/8.6 [8.6.0-r1:0/8.6] USE="threads -debug" 5,639 kB
[ebuild 	U  ] media-sound/cdparanoia-3.10.2-r6 [3.10.2-r5] USE="-static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] sys-apps/kbd-2.0.0 [1.15.5-r1] USE="nls pam {-test%}" 929 kB
[ebuild 	U  ] x11-misc/util-macros-1.17.1 [1.17] 78 kB
[ebuild 	U  ] x11-proto/dri2proto-2.8-r1 [2.8] ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] x11-proto/glproto-1.4.16-r1 [1.4.16] ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] x11-proto/xf86driproto-2.1.1-r1 [2.1.1] ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] media-libs/libpng-1.6.6:0/16 [1.6.2:0/16] USE="apng (-neon) -static-libs" ABI_X86="(64%*) -32% (-x32)" 860 kB
[ebuild 	U  ] media-libs/tiff-4.0.3-r5 [4.0.3-r2] USE="cxx jpeg zlib -jbig -lzma -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] media-libs/openexr-2.0.1-r1:0/2.0.1 [2.0.0:0/20] USE="-examples -static-libs" ABI_X86="(64%*) -32% (-x32)" 12,314 kB
[ebuild 	U  ] sys-libs/cracklib-2.9.0-r1 [2.9.0] USE="nls zlib -python -static-libs (-build%)" 0 kB
[ebuild 	U  ] sys-apps/file-5.15 [5.12-r1] USE="zlib -python -static-libs" PYTHON_TARGETS="python2_6%* python2_7%* python3_3%* -pypy2_0% -python3_2%" 641 kB
[ebuild 	U  ] media-libs/libdvdnav-4.2.0-r1 [4.2.0] ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] app-admin/gamin-0.1.10-r1 [0.1.10] ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] media-libs/lcms-2.5-r1:2 [2.5:2] USE="jpeg tiff zlib -doc -static-libs {-test}" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] app-admin/eselect-1.3.8-r100::science [1.3.6::gentoo] USE="emacs%* -doc -vim-syntax%" 0 kB
[ebuild 	U  ] sci-libs/gsl-1.16-r1::science [1.15::gentoo] USE="-cblas-external -static-libs" 3,452 kB
[ebuild 	U  ] virtual/cblas-2.0::science [1.0::gentoo] 0 kB
[ebuild 	U  ] dev-lang/orc-0.4.18 [0.4.17] USE="-examples -static-libs" ABI_X86="(64%*) -32% (-x32)" 716 kB
[ebuild 	U  ] media-plugins/gst-plugins-ffmpeg-0.10.13_p201211-r1:0.10 [0.10.13_p201211:0.10] USE="orc" 0 kB
[ebuild 	U  ] media-fonts/dejavu-2.34 [2.33] USE="X -fontforge" 4,597 kB
[ebuild 	U  ] dev-libs/nspr-4.10.1 [4.10] USE="-debug" 1,078 kB
[ebuild 	U  ] virtual/perl-ExtUtils-Command-1.180.0 [1.170.0-r3] 0 kB
[ebuild   R	] dev-lang/perl-5.16.3:0/5.16  USE="berkdb gdbm -debug -doc -ithreads (-build%)" 0 kB
[ebuild 	U  ] dev-perl/TermReadKey-2.300.200 [2.300.0] 37 kB
[ebuild 	U  ] app-text/qpdf-5.0.0:0/13 [4.1.0:0/10] USE="-doc -examples -static-libs {-test}" 7,380 kB
[ebuild 	U  ] dev-perl/WWW-RobotRules-6.10.0-r1 [6.10.0] 0 kB
[ebuild 	U  ] dev-perl/HTML-Parser-3.710.0 [3.690.0] USE="{-test}" 89 kB
[ebuild 	U  ] dev-perl/Net-SSLeay-1.550 [1.520.0] 386 kB
[ebuild 	U  ] dev-perl/Net-Daemon-0.480.0-r1 [0.480.0] 0 kB
[ebuild 	U  ] dev-perl/libintl-perl-1.230.0 [1.210.0] 512 kB
[ebuild 	U  ] perl-core/Scalar-List-Utils-1.320.0 [1.270.0] 72 kB
[ebuild 	U  ] perl-core/Storable-2.450.0 [2.390.0] 180 kB
[ebuild 	U  ] perl-core/Sys-Syslog-0.330.0 [0.320.0] 81 kB
[ebuild 	U  ] perl-core/Digest-SHA-5.850.0 [5.820.0] USE="{-test%}" 42 kB
[ebuild 	U  ] perl-core/Digest-MD5-2.530.0 [2.520.0] 47 kB
[ebuild 	U  ] perl-core/Encode-2.550.0 [2.490.0] 1,962 kB
[ebuild 	U  ] sys-apps/help2man-1.43.3 [1.43.2] USE="nls" 195 kB
[ebuild 	U  ] app-text/openjade-1.3.2-r6 [1.3.2-r5] USE="-static-libs" 0 kB
[ebuild 	U  ] dev-perl/SGMLSpm-1.03-r7 [1.03-r6] 0 kB
[ebuild  N 	] dev-perl/Text-CharWidth-0.40.0  9 kB
[ebuild 	U  ] perl-core/version-0.990.400 [0.990.200] 106 kB
[ebuild 	U  ] perl-core/Test-Harness-3.280.0 [3.260.0] 292 kB
[ebuild 	U  ] perl-core/Archive-Tar-1.920.0 [1.900.0] USE="{-test%}" 58 kB
[ebuild 	U  ] perl-core/ExtUtils-ParseXS-3.220.0 [3.180.0] 65 kB
[ebuild 	U  ] perl-core/Params-Check-0.380.0 [0.360.0] 12 kB
[ebuild 	U  ] perl-core/Module-CoreList-2.970.0 [2.840.0] 66 kB
[ebuild 	U  ] perl-core/Parse-CPAN-Meta-1.440.700 [1.440.400] 21 kB
[ebuild 	U  ] perl-core/ExtUtils-Manifest-1.630.0 [1.610.0] 29 kB
[ebuild 	U  ] virtual/perl-Scalar-List-Utils-1.320.0 [1.270.0] 0 kB
[ebuild 	U  ] virtual/perl-Storable-2.450.0 [2.390.0] 0 kB
[ebuild 	U  ] virtual/perl-Digest-MD5-2.530.0 [2.520.0] 0 kB
[ebuild 	U  ] virtual/perl-Encode-2.550.0 [2.490.0] 0 kB
[ebuild 	U  ] virtual/perl-Sys-Syslog-0.330.0 [0.320.0] 0 kB
[ebuild 	U  ] virtual/perl-Digest-SHA-5.850.0 [5.820.0] 0 kB
[ebuild 	U  ] virtual/perl-version-0.990.400 [0.990.200] 0 kB
[ebuild 	U  ] virtual/perl-Parse-CPAN-Meta-1.440.700 [1.440.400] 0 kB
[ebuild 	U  ] virtual/perl-Params-Check-0.380.0 [0.360.0] 0 kB
[ebuild  N 	] dev-perl/Text-WrapI18N-0.60.0  4 kB
[ebuild 	U  ] virtual/perl-Test-Harness-3.280.0 [3.260.0] 0 kB
[ebuild 	U  ] virtual/perl-Archive-Tar-1.920.0 [1.900.0] 0 kB
[ebuild 	U  ] virtual/perl-ExtUtils-ParseXS-3.220.0 [3.180.0] 0 kB
[ebuild 	U  ] virtual/perl-Module-CoreList-2.970.0 [2.840.0] 0 kB
[ebuild 	U  ] virtual/perl-ExtUtils-Manifest-1.630.0 [1.610.0] 0 kB
[ebuild 	U  ] dev-perl/IO-Socket-SSL-1.953.0 [1.840.0] USE="-idn" 88 kB
[ebuild 	U  ] dev-perl/PlRPC-0.202.0-r1 [0.202.0] 0 kB
[ebuild 	U  ] perl-core/Module-Load-Conditional-0.580.0 [0.540.0] 13 kB
[ebuild 	U  ] perl-core/CPAN-Meta-Requirements-2.123.0 [2.122.0] 22 kB
[ebuild 	U  ] dev-perl/DBI-1.628.0 [1.623.0] USE="{-test}" 573 kB
[ebuild 	U  ] virtual/perl-Module-Load-Conditional-0.580.0 [0.540.0] 0 kB
[ebuild 	U  ] virtual/perl-CPAN-Meta-Requirements-2.123.0 [2.122.0] 0 kB
[ebuild 	U  ] dev-perl/DBD-SQLite-1.400.0 [1.370.0] USE="{-test}" 1,536 kB
[ebuild 	U  ] perl-core/IPC-Cmd-0.840.0 [0.800.0] 29 kB
[ebuild 	U  ] virtual/perl-IPC-Cmd-0.840.0 [0.800.0] 0 kB
[ebuild 	U  ] dev-perl/HTTP-Cookies-6.0.1-r1 [6.0.1] 0 kB
[ebuild 	U  ] dev-perl/HTTP-Negotiate-6.0.1-r1 [6.0.1] 0 kB
[ebuild 	U  ] perl-core/ExtUtils-MakeMaker-6.740.0 [6.640.0] 416 kB
[ebuild 	U  ] virtual/perl-ExtUtils-MakeMaker-6.740.0 [6.640.0] 0 kB
[ebuild 	U  ] perl-core/CPAN-Meta-2.132.510 [2.120.921] 78 kB
[ebuild 	U  ] virtual/perl-CPAN-Meta-2.132.510 [2.120.921] 0 kB
[ebuild 	U  ] perl-core/Module-Build-0.400.700 [0.400.300] USE="{-test}" 301 kB
[ebuild 	U  ] virtual/perl-Module-Build-0.400.700 [0.400.300] 0 kB
[ebuild 	U  ] dev-perl/Error-0.170.210 [0.170.190] USE="{-test}" 22 kB
[ebuild 	U  ] dev-libs/glib-2.36.4-r1:2 [2.36.3-r1:2] USE="-debug (-fam) (-selinux) -static-libs -systemtap {-test} -utils -xattr" ABI_X86="(64%*) -32% (-x32)" PYTHON_TARGETS="python2_6 python2_7 (-python2_5%)" 6,417 kB
[ebuild 	U  ] dev-util/desktop-file-utils-0.22 [0.21] USE="emacs" 128 kB
[ebuild  N 	] media-plugins/gst-plugins-theora-0.10.36:0.10  0 kB
[ebuild   R	] media-plugins/gst-plugins-meta-0.10-r8:0.10  USE="X a52 aac alsa cdda dts dvd ffmpeg flac mp3 mpeg ogg theora* vorbis x264 xv xvid -dv -dvb -http -jack -lame -libass -libvisual -mms -musepack -opus -oss -pulseaudio -taglib -v4l -vcd -vpx -wavpack" 0 kB
[ebuild 	U  ] dev-libs/gobject-introspection-1.36.0-r1 [1.34.2-r1] USE="cairo%* -doctool {-test}" PYTHON_SINGLE_TARGET="python2_7" PYTHON_TARGETS="python2_7" 0 kB
[ebuild 	U  ] sys-devel/gettext-0.18.3.1 [0.18.2] USE="acl cvs cxx emacs git java nls openmp -doc -static-libs" 0 kB
[ebuild 	U  ] sys-apps/findutils-4.5.12 [4.5.11] USE="nls (-selinux) -static" 3,161 kB
[ebuild 	U  ] sys-devel/binutils-2.23.2 [2.23.1] USE="cxx nls zlib -multislot -multitarget -static-libs {-test} -vanilla" 0 kB
[ebuild 	U  ] sys-apps/attr-2.4.47-r1 [2.4.47] USE="nls -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] app-text/iso-codes-3.45 [3.42] 3,518 kB
[ebuild   R	] media-gfx/exiv2-0.23-r3::stuff  USE="nls xmp* zlib -contrib -doc -examples -static-libs" LINGUAS="de -es -fi -fr -pl -ru -sk" PYTHON_TARGETS="python2_7" 0 kB
[ebuild 	U  ] gnome-base/gsettings-desktop-schemas-3.8.2 [3.6.1] USE="introspection" 450 kB
[ebuild 	U  ] net-libs/gnutls-3.2.4 [3.2.1-r1] USE="cxx nls zlib -dane -doc -examples -guile -pkcs11 -static-libs {-test}" LINGUAS="de en -cs -fi -fr -it -ms -nl -pl -sv -uk -vi* -zh_CN" 4,844 kB
[ebuild 	U  ] sys-libs/e2fsprogs-libs-1.42.8 [1.42.7] USE="nls -static-libs" ABI_X86="(64%*) -32% (-x32)" 561 kB
[ebuild 	U  ] dev-libs/elfutils-0.156 [0.155] USE="bzip2 nls static-libs threads utils zlib -lzma {-test}" ABI_X86="(64%*) -32% (-x32)" 2,694 kB
[ebuild 	U  ] kde-base/oxygen-icons-4.11.2:4 [4.11.1:4] USE="(-aqua) -bindist" 28,639 kB
[ebuild 	U  ] sys-devel/gcc-4.8.1-r1:4.8 [4.8.1:4.8] USE="cxx fortran graphite gtk lto mudflap (multilib) nls nptl openmp (-altivec) -doc (-fixed-point) -gcj -go (-hardened) (-libssp) -multislot -nopie -nossp -objc -objc++ -objc-gc -regression-test -vanilla" 0 kB
[ebuild 	U  ] media-libs/openjpeg-1.5.1-r1 [1.5.1] USE="-doc -static-libs {-test}" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] dev-libs/soprano-2.9.4 [2.9.3] USE="dbus raptor redland virtuoso -debug -doc {-test}" 1,913 kB
[ebuild 	U  ] net-libs/glib-networking-2.36.2 [2.34.2] USE="gnome libproxy ssl -smartcard {-test}" 345 kB
[ebuild 	U  ] sci-libs/blas-reference-20120925::science [20070226-r2::gentoo] USE="-static-libs% {-test%} (-doc%)" 0 kB
[ebuild 	U  ] virtual/blas-2.1::science [1.0::gentoo] USE="-doc%" 0 kB
[ebuild 	U  ] sci-libs/lapack-reference-3.4.2::science [3.2.1-r1::gentoo] USE="-static-libs% {-test%} -xblas% (-doc%)" 0 kB
[uninstall 	] app-admin/eselect-cblas-0.1 
[blocks b  	] app-admin/eselect-cblas ("app-admin/eselect-cblas" is blocking sci-libs/lapack-reference-3.4.2, sci-libs/gsl-1.16-r1, sci-libs/blas-reference-20120925)
[uninstall 	] app-admin/eselect-lapack-0.1 
[blocks b  	] app-admin/eselect-lapack ("app-admin/eselect-lapack" is blocking sci-libs/lapack-reference-3.4.2, sci-libs/gsl-1.16-r1, sci-libs/blas-reference-20120925)
[ebuild 	U  ] virtual/lapack-3.4::science [3.1::gentoo] USE="-doc%" 0 kB
[ebuild 	U  ] x11-libs/libX11-1.6.2 [1.6.0] USE="ipv6 -doc -static-libs {-test}" ABI_X86="(64) -32 (-x32)" 2,286 kB
[ebuild 	U  ] media-libs/freetype-2.5.0.1:2 [2.4.12:2] USE="X adobe-cff* bzip2 infinality png%* -auto-hinter -bindist -debug -doc -fontforge -static-libs -utils" ABI_X86="(64) -32 (-x32)" 1,601 kB
[ebuild 	U  ] sys-apps/dbus-1.6.16 [1.6.14] USE="X -debug -doc (-selinux) -static-libs -systemd {-test}" 1,903 kB
[ebuild 	U  ] x11-libs/libXmu-1.1.2 [1.1.1-r1] USE="ipv6 -doc -static-libs" ABI_X86="(64) -32 (-x32)" 387 kB
[ebuild 	U  ] x11-libs/libXrandr-1.4.2 [1.4.1] USE="-static-libs" ABI_X86="(64) -32 (-x32)" 308 kB
[ebuild 	U  ] x11-libs/libXpm-3.5.11 [3.5.10-r1] USE="-static-libs" ABI_X86="(64) -32 (-x32)" 434 kB
[ebuild 	U  ] x11-libs/libXv-1.0.10 [1.0.9] USE="-static-libs" ABI_X86="(64) -32 (-x32)" 294 kB
[ebuild 	U  ] x11-apps/xprop-1.2.2 [1.2.1] 143 kB
[ebuild 	U  ] media-libs/fontconfig-2.10.93:1.0 [2.10.92:1.0] USE="-doc -static-libs" ABI_X86="(64) -32 (-x32)" 1,491 kB
[ebuild 	U  ] x11-libs/libXaw-1.0.12 [1.0.11-r2] USE="-deprecated -doc -static-libs" ABI_X86="(64) -32 (-x32)" 662 kB
[ebuild 	U  ] x11-apps/xset-1.2.3 [1.2.2] 139 kB
[ebuild 	U  ] app-accessibility/at-spi2-core-2.8.0:2 [2.6.3:2] USE="introspection" 427 kB
[ebuild 	U  ] x11-apps/mkfontscale-1.1.1 [1.1.0] 137 kB
[ebuild 	U  ] dev-lang/tk-8.6.1:0/8.6 [8.6.0:0/8.6] USE="threads truetype xscreensaver (-aqua) -debug {-test}" 4,145 kB
[ebuild 	U  ] app-accessibility/at-spi2-atk-2.8.1:2 [2.6.2:2] USE="{-test}" 261 kB
[ebuild 	U  ] sys-apps/man-pages-3.53 [3.51] USE="nls" LINGUAS="de -da -fr -it -ja -nl -pl -ro -ru -zh_CN" 1,141 kB
[ebuild 	U  ] dev-lang/python-3.3.2-r2:3.3 [3.3.2:3.3] USE="gdbm ipv6 ncurses readline ssl threads tk xml -build -doc -examples -hardened -sqlite -wininst" 13 kB
[ebuild 	U  ] dev-qt/qtgui-4.8.5-r1:4 [4.8.5:4] USE="accessibility cups exceptions glib mng qt3support tiff xinerama xv (-aqua) -c++0x -debug -egl -gtkstyle -nas -nis -pch -trace" 0 kB
[ebuild 	U  ] dev-libs/libdbusmenu-qt-0.9.2-r2::stuff [0.9.2-r1::stuff] USE="-debug -doc {-test}" 0 kB
[ebuild 	U  ] dev-lang/python-2.7.5-r2:2.7 [2.7.5:2.7] USE="gdbm ipv6 ncurses readline sqlite ssl threads tk (wide-unicode) xml -berkdb -build -doc -examples -hardened -wininst" 0 kB
[ebuild 	U  ] x11-libs/cairo-1.12.16 [1.12.14-r2] USE="X glib opengl svg xcb (-aqua) -debug -directfb -doc (-drm) (-gallium) (-gles2) -legacy-drivers -openvg (-qt4) -static-libs -valgrind% -xlib-xcb%" 35,049 kB
[ebuild 	U  ] app-text/poppler-0.24.2:0/43 [0.22.4:0/37] USE="cairo cxx introspection jpeg jpeg2k lcms png qt4 tiff utils -cjk -curl -debug -doc" 1,470 kB
[ebuild 	U  ] media-libs/harfbuzz-0.9.20:0/0.9.18 [0.9.18-r1:0/0.9.18] USE="cairo glib graphite icu truetype -introspection% -static-libs" 1,007 kB
[ebuild 	U  ] dev-lang/python-2.6.8-r3:2.6 [2.6.8-r1:2.6] USE="gdbm ipv6 ncurses readline ssl threads tk (wide-unicode) xml -berkdb -build -doc -examples -hardened -sqlite -wininst" 0 kB
[ebuild   R	] dev-java/java-config-2.2.0:2  PYTHON_TARGETS="python2_6 python2_7 python3_3 -python3_2 (-python3_1%)" 0 kB
[ebuild   R	] dev-libs/libxml2-2.9.1-r1:2  USE="icu ipv6 python readline -debug -examples -lzma -static-libs {-test}" PYTHON_TARGETS="python2_6 python2_7 python3_3 -python3_2 (-python2_5%) (-python3_1%)" 0 kB
[ebuild   R	] sys-devel/llvm-3.3-r1:0/3.3  USE="clang* libffi static-analyzer -debug -doc -gold -multitarget -ocaml -python {-test} -udis86" ABI_X86="(64) -32 (-x32)" PYTHON_TARGETS="python2_6 python2_7 -pypy2_0" VIDEO_CARDS="radeon*" 10,736 kB
[ebuild 	U  ] dev-python/pygobject-2.28.6-r54:2 [2.28.6-r53:2] USE="-examples -libffi {-test}" PYTHON_TARGETS="python2_6 python2_7" 0 kB
[ebuild   R	] media-libs/lcms-1.19-r1  USE="jpeg python tiff zlib -static-libs" PYTHON_TARGETS="python2_6 python2_7 python3_3 -python3_2 (-python2_5%)" 0 kB
[ebuild 	U  ] dev-python/setuptools-1.1.6 [0.6.40] PYTHON_TARGETS="python2_6 python2_7 python3_3 -pypy2_0 -python3_2 (-pypy1_9%) (-python2_5%) (-python3_1%)" 666 kB
[ebuild 	U  ] dev-util/gdbus-codegen-2.36.4-r1 [2.36.3] PYTHON_TARGETS="python2_6 python2_7 python3_3 -python3_2 (-python2_5%) (-python3_1%)" 0 kB
[ebuild   R	] dev-libs/libxslt-1.1.28-r1  USE="crypt -debug -python -static-libs" PYTHON_TARGETS="python2_6 python2_7 (-python2_5%)" 0 kB
[ebuild 	U  ] x11-misc/shared-mime-info-1.2 [1.1] USE="{-test}" 503 kB
[ebuild  NS   #] sys-libs/db-5.1.29:5.1 [4.8.30:4.8] USE="cxx java -doc -examples -tcl {-test}" 31,434 kB
[ebuild   R	] x11-proto/xcb-proto-1.8-r3  ABI_X86="(64) -32 (-x32)" PYTHON_TARGETS="python2_6 python2_7 python3_3 -python3_2 (-python2_5%) (-python3_1%)" 0 kB
[ebuild   R	] dev-python/numpy-1.7.1  USE="lapack -doc {-test}" PYTHON_TARGETS="python2_6 python2_7 python3_3 -python3_2 (-python2_5%) (-python3_1%)" 0 kB
[ebuild 	U  ] net-libs/neon-0.30.0:0/27 [0.29.6-r5:0/0] USE="nls ssl zlib -doc -expat -gnutls -kerberos -libproxy -pkcs11 -static-libs" LINGUAS="de -cs -fr -ja -nn -pl -ru -tr -zh_CN" 889 kB
[ebuild 	U  ] app-misc/strigi-0.7.8 [0.7.7-r2] USE="dbus exif fam ffmpeg qt4 -clucene -debug -inotify (-log) {-test} (-hyperestraier%)" 792 kB
[ebuild 	U  ] net-libs/libsoup-2.42.2-r1:2.4 [2.40.3:2.4] USE="introspection ssl -debug -samba {-test}" 716 kB
[ebuild   R	] x11-libs/libxcb-1.9.1  USE="-doc (-selinux) -static-libs -xkb" ABI_X86="(64) -32 (-x32)" PYTHON_SINGLE_TARGET="python2_7 -python2_6 -python3_2 -python3_3 (-python3_1%)" PYTHON_TARGETS="python2_6 python2_7 python3_3 -python3_2 (-python3_1%)" 0 kB
[ebuild 	U  ] sys-apps/kmod-15 [14-r1] USE="openrc tools zlib -debug -doc -lzma -static-libs" 1,420 kB
[ebuild 	U  ] dev-libs/cyrus-sasl-2.1.26-r3:2 [2.1.26-r1:2] USE="berkdb gdbm java mysql pam ssl -authdaemond -kerberos -ldapdb -openldap -postgres -sample -sqlite -srp -static-libs -urandom" 0 kB
[ebuild 	U  ] dev-perl/File-MimeInfo-0.170.0 [0.160.0] USE="{-test}" 35 kB
[ebuild  N 	] dev-libs/libclc-0.0.1_pre20130819-r1  0 kB
[ebuild  N 	] app-text/po4a-0.42  USE="{-test}" 1,957 kB
[ebuild 	U  ] net-nds/openldap-2.4.35-r1 [2.4.35] USE="berkdb crypt cxx icu ipv6 minimal odbc sasl ssl syslog tcpd -debug -experimental -gnutls -iodbc -kerberos -overlays -perl -samba (-selinux) -slp -smbkrb5passwd" 0 kB
[ebuild 	U  ] media-libs/mesa-9.2.0-r1 [9.1.3] USE="classic egl gallium llvm nptl opencl%* xa -bindist -debug -gbm -gles1 -gles2 -openvg -osmesa -pax_kernel -pic -r600-llvm-compiler (-selinux) -vdpau -wayland -xorg -xvmc (-shared-glapi%*)" ABI_X86="(64%*) -32% (-x32)" PYTHON_SINGLE_TARGET="python2_7 -python2_6" PYTHON_TARGETS="python2_6 python2_7" VIDEO_CARDS="(-freedreno) -i915 -i965 -ilo% -intel -nouveau -r100 -r200 -r300 -r600 -radeon -radeonsi -vmware" 0 kB
[ebuild 	U  ] app-i18n/man-pages-de-1.3 [0.12] 1,223 kB
[ebuild 	U  ] virtual/opengl-7.0-r1 [7.0] ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] net-misc/curl-7.32.0 [7.30.0] USE="ipv6 ldap ssl threads -adns -idn -kerberos -metalink -rtmp -ssh -static-libs {-test}" CURL_SSL="openssl -axtls -cyassl -gnutls -nss -polarssl" 2,664 kB
[ebuild   R	] dev-python/pycairo-1.10.0-r4  USE="svg xcb -doc -examples {-test}" PYTHON_TARGETS="python2_6 python2_7 python3_3 -python3_2 (-python3_1%)" 0 kB
[ebuild 	U  ] virtual/opencl-0-r4 [0-r2] ABI_X86="(64%*) -32% (-x32)" VIDEO_CARDS="fglrx -nvidia" 0 kB
[ebuild 	U  ] media-libs/freeglut-2.8.1-r1 [2.8.1] USE="-debug -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] media-libs/glu-9.0.0-r1 [9.0.0] USE="-static-libs (-multilib%)" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] net-print/cups-1.6.4 [1.6.2-r5] USE="X acl dbus filters java pam ssl threads usb -debug -gnutls -kerberos -lprng-compat -python (-selinux) -static-libs -xinetd -zeroconf" LINGUAS="-ca -es -fr -ja -ru" PYTHON_SINGLE_TARGET="python2_7%* -python2_6%" PYTHON_TARGETS="python2_6%* python2_7%*" 8,069 kB
[ebuild  N 	] net-print/foomatic-filters-4.0.17-r1  USE="cups dbus" 0 kB
[ebuild 	UD ] sys-libs/pam-1.1.6-r2 [1.1.6-r4] USE="berkdb cracklib nls -audit -debug -nis (-selinux) {-test} -vim-syntax" 0 kB
[ebuild 	U  ] sys-apps/busybox-1.21.1 [1.21.0] USE="ipv6 pam static -livecd -make-symlinks -math -mdev -savedconfig (-selinux) -sep-usr -syslog -systemd" 2,151 kB
[ebuild 	U  ] x11-libs/gtk+-2.24.22:2::gentoo [2.24.18:2::stuff] USE="cups introspection xinerama (-aqua) -debug -examples {-test} -vim-syntax (-appmenu%) (-overlay%)" 13,063 kB
[uninstall 	] dev-util/gtk-builder-convert-2.24.20  PYTHON_SINGLE_TARGET="python2_7 -python2_5 -python2_6" PYTHON_TARGETS="python2_6 python2_7 -python2_5" 
[blocks b  	] <dev-util/gtk-builder-convert-2.24.22 ("<dev-util/gtk-builder-convert-2.24.22" is blocking x11-libs/gtk+-2.24.22)
[ebuild 	U  ] x11-libs/gtk+-3.8.4:3::gentoo [3.6.3-r2:3::stuff] USE="X cups introspection xinerama (-aqua) -colord -debug -examples (-packagekit) {-test} -vim-syntax -wayland (-appmenu%) (-egl%) (-overlay%)" 13,395 kB
[ebuild 	U  ] gnome-base/librsvg-2.39.0:2 [2.36.4:2] USE="gtk introspection -tools -vala" 507 kB
[ebuild 	U  ] dev-python/pygtk-2.24.0-r4:2 [2.24.0-r3:2] USE="-doc -examples {-test}" PYTHON_TARGETS="python2_6 python2_7" 0 kB
[ebuild 	U  ] media-gfx/graphviz-2.32.0::stuff [2.28.0::gentoo] USE="X cairo gtk java nls qt4 svg -devil -doc -examples -gts -lasi -perl -postscript -python -ruby -static-libs -tcl" PYTHON_SINGLE_TARGET="python2_7 -python2_6 (-python2_5%)" PYTHON_TARGETS="python2_6 python2_7 (-python2_5%)" 23,200 kB
[ebuild 	U  ] app-text/ghostscript-gpl-9.10 [9.07] USE="X cups dbus gtk -bindist -djvu -idn -static-libs (-jpeg2k%*)" LINGUAS="de -ja -ko -zh_CN -zh_TW" 30,262 kB
[ebuild 	U  ] net-print/cups-filters-1.0.36-r2 [1.0.34-r1] USE="jpeg png tiff -perl -static-libs -zeroconf" 0 kB
[blocks b  	] <net-print/cups-filters-1.0.36-r2 ("<net-print/cups-filters-1.0.36-r2" is blocking app-text/ghostscript-gpl-9.10)
[ebuild 	U  ] x11-libs/libSM-1.2.2 [1.2.1-r1] USE="ipv6 uuid -doc -static-libs" ABI_X86="(64) -32 (-x32)" 341 kB
[ebuild 	U  ] media-libs/giflib-4.2.3 [4.1.6-r2] USE="X -static-libs (-rle%)" 548 kB
[ebuild 	U  ] media-libs/libmpeg2-0.5.1-r2 [0.5.1-r1] USE="X sdl -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] media-gfx/imagemagick-6.8.6.8-r1:0/6.8.6.8 [6.8.5.4:0/6.8.5.4] USE="X bzip2 cxx fftw fontconfig graphviz jpeg jpeg2k lcms opencl openexr openmp pango png svg tiff truetype xml zlib -autotrace -corefonts -djvu -fpx -hdri -jbig -lqr -lzma -perl -postscript -q32 -q64 -q8 -raw -static-libs {-test} -webp -wmf" 7,361 kB
[ebuild 	U  ] sys-apps/texinfo-5.2 [4.13-r2] USE="nls -static" 3,724 kB
[ebuild 	U  ] sys-auth/polkit-0.112-r1 [0.111-r1] USE="gtk introspection kde nls pam -examples (-selinux) -systemd" 1,396 kB
[ebuild 	U  ] app-crypt/gnupg-2.0.22 [2.0.20] USE="bzip2 ldap nls readline usb -adns -doc -mta (-selinux) -smartcard -static" 4,177 kB
[ebuild 	U  ] sys-apps/openrc-0.12.2 [0.12] USE="ncurses netifrc pam unicode -debug -newnet (-prefix) (-selinux) -static-libs -tools" 129 kB
[ebuild 	U  ] dev-libs/apr-1.4.8-r1:1 [1.4.6-r1:1] USE="urandom -doc -older-kernels-compatibility -static-libs (-uuid%*)" 0 kB
[ebuild 	U  ] dev-libs/apr-util-1.5.2:1 [1.5.1:1] USE="berkdb gdbm ldap mysql odbc -doc -freetds -nss -openssl -postgres -sqlite -static-libs" 0 kB
[ebuild  N 	] sys-libs/gpm-1.20.7-r2  USE="(-selinux) -static-libs" ABI_X86="(64) -32 (-x32)" 0 kB
[ebuild 	U  ] sys-libs/ncurses-5.9-r3:5 [5.9-r2:5] USE="cxx gpm unicode -ada -debug -doc -minimal -profile -static-libs -tinfo -trace" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] sys-process/procps-3.3.8 [3.3.6] USE="ncurses nls unicode -static-libs" 0 kB
[ebuild 	U  ] media-sound/alsa-utils-1.0.27.2:0.9 [1.0.27.1-r1:0.9] USE="libsamplerate ncurses nls -doc (-selinux)" 1,117 kB
[ebuild 	U  ] app-crypt/pinentry-0.8.3 [0.8.2] USE="gtk ncurses qt4 -caps -static" 421 kB
[ebuild 	U  ] media-sound/lame-3.99.5-r1 [3.99.5] USE="-debug (-mmx) -mp3rtp -sndfile -static-libs" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] dev-libs/libcdio-0.90-r1 [0.90] USE="cxx -cddb -minimal -static-libs {-test}" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] dev-libs/libcdio-paranoia-0.90_p1-r1 [0.90_p1] USE="cxx -static-libs {-test}" ABI_X86="(64%*) -32% (-x32)" 0 kB
[ebuild 	U  ] dev-vcs/subversion-1.7.13 [1.7.9] USE="berkdb java kde nls perl sasl webdav-neon -apache2 -ctypes-python -debug -doc -dso -extras -gnome-keyring -python -ruby {-test%} -vim-syntax -webdav-serf" PYTHON_TARGETS="python2_6 python2_7 (-python2_5%)" 5,903 kB
[ebuild 	U  ] dev-vcs/git-1.8.3.2 [1.8.2.1] USE="blksha1 curl cvs emacs gpg gtk iconv nls pcre perl python subversion threads tk webdav -cgi -doc -gnome-keyring -highlight (-ppcsha1) {-test} -xinetd" PYTHON_SINGLE_TARGET="python2_7%* -python2_6%" PYTHON_TARGETS="python2_6%* python2_7%*" 4,900 kB
[ebuild  N 	] sys-apps/systemd-208-r2:0/1  USE="acl filecaps firmware-loader gcrypt gudev introspection kmod pam (policykit) tcpd -audit -cryptsetup -doc -http -lzma -openrc -python -qrcode (-selinux) {-test} -vanilla -xattr" ABI_X86="(64) -32 (-x32)" PYTHON_SINGLE_TARGET="python2_7" PYTHON_TARGETS="python2_7" 2,335 kB
[ebuild  N 	] sys-apps/gentoo-systemd-integration-2  51 kB
[ebuild 	U  ] virtual/udev-206-r3 [206-r2] USE="gudev introspection kmod (-selinux) -static-libs" ABI_X86="(64) -32 (-x32)" 0 kB
[ebuild 	U  ] sys-apps/util-linux-2.23.2-r2 [2.23] USE="bash-completion* cramfs ncurses nls pam%* suid udev unicode -caps -cytune -fdformat -old-linux (-selinux) -slang -static-libs {-test} -tty-helpers" 3,304 kB
[ebuild   R	] sys-auth/consolekit-0.4.6  USE="acl pam (policykit) -debug -doc (-selinux) -systemd-units% {-test}" 0 kB
[ebuild 	U  ] app-misc/media-player-info-21-r1 [17] 101 kB
[ebuild 	U  ] sys-power/upower-0.9.22 [0.9.20-r2] USE="introspection -doc -ios -systemd (-deprecated%*)" 387 kB
[ebuild 	U  ] dev-libs/libatasmart-0.19-r1 [0.19] USE="-static-libs" 7 kB
[ebuild 	U  ] sys-auth/pambase-20120417-r2 [20120417-r1] USE="consolekit cracklib sha512 systemd* -debug -gnome-keyring -minimal -mktemp -pam_krb5 -pam_ssh -passwdqc (-selinux)" 0 kB
[ebuild 	U  ] sys-fs/e2fsprogs-1.42.8 [1.42.7] USE="nls -static-libs" 5,850 kB
[ebuild 	U  ] net-misc/openssh-6.2_p2-r4 [6.2_p2-r3] USE="X hpn ldap pam tcpd -X509 -bindist -kerberos -ldns -libedit (-selinux) -skey -static" 25 kB
[ebuild 	U  ] kde-base/kdelibs-4.11.2-r1:4 [4.11.1:4] USE="acl alsa bzip2 fam handbook jpeg2k mmx nls openexr opengl (policykit) semantic-desktop%* spell sse sse2 ssl udev udisks upower -3dnow (-altivec) (-aqua) -debug -doc -kerberos -lzma {-test} -zeroconf" 11,790 kB
[ebuild 	U  ] kde-base/nepomuk-core-4.11.2:4 [4.11.1:4] USE="exif ffmpeg pdf (-aqua) -debug -epub -taglib" 392 kB
[ebuild 	U  ] kde-base/katepart-4.11.2:4 [4.11.1:4] USE="handbook (-aqua) -debug" 2,600 kB
[ebuild 	U  ] kde-base/nepomuk-widgets-4.11.2:4 [4.11.1:4] USE="(-aqua) -debug" 50 kB
[ebuild 	U  ] kde-base/kdesu-4.11.2:4 [4.11.1:4] USE="handbook (-aqua) -debug" 7,788 kB
[ebuild 	U  ] kde-base/khelpcenter-4.11.2:4 [4.11.1:4] USE="(-aqua) -debug" 0 kB
[ebuild 	U  ] kde-base/kde-l10n-4.11.2:4 [4.11.0:4] USE="handbook (-aqua)" LINGUAS="de -ar -bg -bs -ca -ca@valencia -cs -da -el -en_GB -es -et -eu -fa -fi -fr -ga -gl -he -hi -hr -hu -ia -is -it -ja -kk -km -ko -lt -lv -mr -nb -nds -nl -nn -pa -pl -pt -pt_BR -ro -ru -sk -sl -sr -sv -tg -tr -ug -uk -vi* -wa -zh_CN -zh_TW" 35,160 kB
[ebuild 	U  ] kde-base/kwalletd-4.11.2:4 [4.11.1:4] USE="(-aqua) -debug" 0 kB
[blocks B  	] app-admin/eselect-blas ("app-admin/eselect-blas" is blocking sci-libs/lapack-reference-3.4.2, sci-libs/gsl-1.16-r1, sci-libs/blas-reference-20120925)
[blocks B  	] sys-fs/udev ("sys-fs/udev" is blocking sys-apps/systemd-208-r2)
[blocks B  	] >=sys-apps/systemd-197 (">=sys-apps/systemd-197" is blocking sys-auth/nss-myhostname-0.3)
[blocks B  	] sys-apps/systemd ("sys-apps/systemd" is blocking sys-fs/udev-207, app-admin/openrc-settingsd-1.0.1)
[blocks B  	] sys-auth/nss-myhostname ("sys-auth/nss-myhostname" is blocking sys-apps/systemd-208-r2)
[blocks B  	] <dev-libs/gobject-introspection-1.36 ("<dev-libs/gobject-introspection-1.36" is blocking dev-libs/glib-2.36.4-r1)

Total: 262 packages (236 upgrades, 1 downgrade, 10 new, 1 in new slot, 14 reinstalls, 3 uninstalls), Size of downloads: 429,830 kB
Conflict: 10 blocks (6 unsatisfied)

!!! Multiple package instances within a single package slot have been pulled
!!! into the dependency graph, resulting in a slot conflict:

media-libs/x264:0

  (media-libs/x264-0.0.20130912::gentoo, ebuild scheduled for merge) pulled in by
	(no parents that aren't satisfied by other packages in this slot)

  (media-libs/x264-0.0.20130506::gentoo, installed) pulled in by
	>=media-libs/x264-0.0.20111017:0/132= required by (media-video/ffmpeg-2.0.1::gentoo, installed)
	(and 1 more with the same problem)

app-text/poppler:0

  (app-text/poppler-0.22.4::gentoo, installed) pulled in by
	app-text/poppler:0/37=[xpdf-headers(+)] required by (dev-tex/luatex-0.76.0::gentoo, installed)
	>=app-text/poppler-0.16:0/37=[xpdf-headers(+),cxx] required by (app-office/libreoffice-4.1.2.3::gentoo, installed)
	(and 1 more with the same problems)

  (app-text/poppler-0.24.2::gentoo, ebuild scheduled for merge) pulled in by
	(no parents that aren't satisfied by other packages in this slot)

kde-base/kde-l10n:4

  (kde-base/kde-l10n-4.11.0::gentoo, installed) pulled in by
	>=kde-base/kde-l10n-4.10:4[-aqua,linguas_vi(+)] required by (media-gfx/digikam-3.3.0::gentoo, installed)
	>=kde-base/kde-l10n-4.10:4[aqua=,linguas_vi(+)] required by (media-plugins/kipi-plugins-3.2.0::gentoo, installed)

  (kde-base/kde-l10n-4.11.2::gentoo, ebuild scheduled for merge) pulled in by
	(no parents that aren't satisfied by other packages in this slot)

dev-libs/gobject-introspection:0

  (dev-libs/gobject-introspection-1.36.0-r1::gentoo, ebuild scheduled for merge) pulled in by
	(no parents that aren't satisfied by other packages in this slot)

  (dev-libs/gobject-introspection-1.34.2-r1::gentoo, installed) pulled in by
	<dev-libs/gobject-introspection-1.36.0 required by (x11-misc/lightdm-1.4.0-r2::gentoo, installed)

dev-libs/gobject-introspection-common:0

  (dev-libs/gobject-introspection-common-1.34.2::gentoo, installed) pulled in by
	<dev-libs/gobject-introspection-common-1.35.9 required by (dev-libs/gobject-introspection-1.34.2-r1::gentoo, installed)

  (dev-libs/gobject-introspection-common-1.36.0::gentoo, ebuild scheduled for merge) pulled in by
	>=dev-libs/gobject-introspection-common-1.36.0 required by (dev-libs/gobject-introspection-1.36.0-r1::gentoo, ebuild scheduled for merge)

media-libs/openexr:0

  (media-libs/openexr-2.0.0::gentoo, installed) pulled in by
	media-libs/openexr:0/20= required by (media-libs/openimageio-1.1.8::stuff, installed)
	media-libs/openexr:0/20= required by (kde-base/kdebase-kioslaves-4.11.1::gentoo, installed)

  (media-libs/openexr-2.0.1-r1::gentoo, ebuild scheduled for merge) pulled in by
	(no parents that aren't satisfied by other packages in this slot)

media-libs/ilmbase:0

  (media-libs/ilmbase-2.0.0::gentoo, installed) pulled in by
	>=media-libs/ilmbase-2.0.0:0/10= required by (media-libs/openexr-2.0.0::gentoo, installed)
	media-libs/ilmbase:0/10= required by (media-libs/openimageio-1.1.8::stuff, installed)

  (media-libs/ilmbase-2.0.1-r1::gentoo, ebuild scheduled for merge) pulled in by
	>=media-libs/ilmbase-2.0.1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?] required by (media-libs/openexr-2.0.1-r1::gentoo, ebuild scheduled for merge)


It may be possible to solve this problem by using package.mask to
prevent one of those packages from being selected. However, it is also
possible that conflicting dependencies exist such that they are
impossible to satisfy simultaneously.  If such a conflict exists in
the dependencies of two different packages, then those packages can
not be installed simultaneously. You may want to try a larger value of
the --backtrack option, such as --backtrack=30, in order to see if
that will solve this conflict automatically.

For more information, see MASKED PACKAGES section in the emerge man
page or refer to the Gentoo Handbook.


 * Error: The above package list contains packages which cannot be
 * installed at the same time on the same system.

  (sys-apps/systemd-208-r2::gentoo, ebuild scheduled for merge) pulled in by
	>=sys-apps/systemd-44-r1[pam] required by (sys-auth/pambase-20120417-r2::gentoo, ebuild scheduled for merge)
	>=sys-apps/systemd-206:0/1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,gudev?,introspection?,kmod?,selinux?,static-libs(-)?] (>=sys-apps/systemd-206:0/1[abi_x86_64(-),gudev,introspection,kmod]) required by (virtual/udev-206-r3::gentoo, ebuild scheduled for merge)
	>=sys-apps/systemd-207 required by (sys-apps/gentoo-systemd-integration-2::gentoo, ebuild scheduled for merge)
	>=sys-apps/systemd-38 required by (virtual/logger-0::gentoo, installed)

  (app-admin/openrc-settingsd-1.0.1::gentoo, installed) pulled in by
	app-admin/openrc-settingsd required by @selected

  (app-admin/eselect-blas-0.1::gentoo, installed) pulled in by
	app-admin/eselect-blas required by @selected

  (sci-libs/gsl-1.16-r1::science, ebuild scheduled for merge) pulled in by
	sci-libs/gsl required by (media-gfx/asymptote-2.24::gentoo, installed)
	>=sci-libs/gsl-1.15-r3[-cblas-external] required by (virtual/cblas-2.0::science, ebuild scheduled for merge)

  (sci-libs/lapack-reference-3.4.2::science, ebuild scheduled for merge) pulled in by
	>=sci-libs/lapack-reference-3.4 required by (virtual/lapack-3.4::science, ebuild scheduled for merge)

  (dev-libs/glib-2.36.4-r1::gentoo, ebuild scheduled for merge) pulled in by
	dev-libs/glib:2 required by (razorqt-base/razorqt-policykit-0.5.2::gentoo, installed)
	dev-libs/glib required by (media-libs/liblqr-0.4.2::gentoo, installed)
	>=dev-libs/glib-2.28:2 required by (app-accessibility/at-spi2-core-2.8.0::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.14:2 required by (x11-libs/gtksourceview-2.10.5-r2::gentoo, installed)
	>=dev-libs/glib-2.32:2 required by (media-libs/gst-plugins-base-1.0.7::gentoo, installed)
	dev-libs/glib:2 required by (sys-fs/fuseiso-20070708-r1::gentoo, installed)
	>=dev-libs/glib-2.18:2 required by (dev-lang/vala-0.20.1::gentoo, installed)
	dev-libs/glib:2 required by (kde-misc/kde-gtk-config-2.2.1::gentoo, installed)
	>=dev-libs/glib-2 required by (x11-misc/shared-mime-info-1.2::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-flac-0.10.31::gentoo, installed)
	>=dev-libs/glib-2.30 required by (dev-util/pkgconfig-0.28::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-soup-0.10.31::gentoo, installed)
	>=dev-libs/glib-2.28.0:2 required by (x11-libs/goocanvas-2.0.1::gentoo, installed)
	>=dev-libs/glib-2.32:2 required by (app-crypt/gcr-3.8.2::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-alsa-0.10.36::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-libs/gst-plugins-ugly-0.10.19::gentoo, installed)
	>=dev-libs/glib-2.32:2 required by (dev-java/icedtea-bin-6.1.12.6-r1::gentoo, installed)
	>=dev-libs/glib-2.34.0:2 required by (sys-apps/accountsservice-0.6.34::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-vorbis-0.10.36::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-x264-0.10.19::gentoo, installed)
	dev-libs/glib:2 required by (media-gfx/ufraw-0.19.2::gentoo, installed)
	>=dev-libs/glib-2.31.2:2 required by (dev-libs/atk-2.8.0::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-mpeg2dec-0.10.19::gentoo, installed)
	dev-libs/glib:2 required by (app-text/poppler-0.24.2::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.34.1:2 required by (dev-libs/gobject-introspection-1.34.2-r1::gentoo, installed)
	>=dev-libs/glib-2.33.12:2 required by (x11-libs/pango-1.34.1::gentoo, installed)
	>=dev-libs/glib-2.24:2 required by (media-libs/gst-plugins-good-0.10.31::gentoo, installed)
	>=dev-libs/glib-2.26:2 required by (mail-client/thunderbird-24.0-r1::gentoo, installed)
	>=dev-libs/glib-2.22:2= required by (sys-auth/consolekit-0.4.6::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.4.0 required by (media-sound/pulseaudio-4.0::gentoo, installed)
	>=dev-libs/glib-2.28.6:2 required by (x11-libs/cairo-1.12.16::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.12:2 required by (dev-util/desktop-file-utils-0.22::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2 required by (app-admin/system-config-printer-common-1.3.12::gentoo, installed)
	dev-libs/glib required by (app-emulation/virtualbox-bin-4.2.18::gentoo, installed)
	>=dev-libs/glib-2.24:2 required by (media-libs/gst-plugins-ugly-0.10.19::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-x-0.10.36::gentoo, installed)
	>=dev-libs/glib-2.24:2 required by (media-libs/gstreamer-0.10.36::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-dts-0.10.23::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-xvideo-0.10.36::gentoo, installed)
	>=dev-libs/glib-2.36:2 required by (dev-libs/gobject-introspection-1.36.0-r1::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-xvid-0.10.23::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-a52dec-0.10.19::gentoo, installed)
	>=dev-libs/glib-2.24:2 required by (gnome-base/librsvg-2.39.0::gentoo, ebuild scheduled for merge)
	dev-libs/glib:2 required by (media-libs/opencv-2.4.6.1::gentoo, installed)
	>=dev-libs/glib-2.28:2 required by (media-libs/gegl-0.2.0-r1::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-cdparanoia-0.10.36::gentoo, installed)
	>=dev-libs/glib-2.28 required by (media-sound/audacious-3.4.1::gentoo, installed)
	>=dev-libs/glib-2:2 required by (app-admin/gam-server-0.1.10-r1::gentoo, installed)
	dev-libs/glib:2 required by (dev-python/wxpython-2.8.12.1-r1::gentoo, installed)
	>=dev-libs/glib-2.34:2 required by (x11-libs/gtk+-2.24.22::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.11.1 required by (media-gfx/graphviz-2.32.0::stuff, ebuild scheduled for merge)
	dev-libs/glib:2 required by (dev-qt/qtcore-4.8.5::gentoo, installed)
	>=dev-libs/glib-2.32:2 required by (dev-libs/libgee-0.10.2::gentoo, installed)
	>=dev-libs/glib-2.24:2 required by (media-libs/gst-plugins-bad-0.10.23-r1::gentoo, installed)
	>=dev-libs/glib-2.26 required by (x11-libs/libnotify-0.7.5-r1::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-mad-0.10.19::gentoo, installed)
	>=dev-libs/glib-2:2 required by (sys-block/gparted-0.16.1::gentoo, installed)
	>=dev-libs/glib-2.22:2 required by (x11-libs/wxGTK-2.9.4.1-r1::gentoo, installed)
	>=dev-libs/glib-2.16 required by (x11-libs/libxklavier-5.3::gentoo, installed)
	>=dev-libs/glib-2.8:2 required by (dev-python/pygtk-2.24.0-r4::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.26:2 required by (dev-libs/dbus-glib-0.100.2::gentoo, installed)
	dev-libs/glib:2 required by (media-libs/harfbuzz-0.9.20::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.10:2 required by (gnome-base/libglade-2.6.4::gentoo, installed)
	>=dev-libs/glib-2.31:2 required by (gnome-base/gsettings-desktop-schemas-3.8.2::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.30 required by (gnome-extra/polkit-gnome-0.105::gentoo, installed)
	dev-libs/glib:2 required by (kde-base/systemsettings-4.11.1::gentoo, installed)
	>=dev-libs/glib-2 required by (gnome-base/libgnomeprint-2.18.8::gentoo, installed)
	>=dev-libs/glib-2 required by (dev-libs/fribidi-0.19.5-r1::gentoo, installed)
	>=dev-libs/glib-2.32.2 required by (media-plugins/audacious-plugins-3.3.4::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-libs/gst-plugins-bad-0.10.23-r1::gentoo, installed)
	>=dev-libs/glib-2.20.5:2 required by (dev-java/icedtea-bin-7.2.4.1::gentoo, installed)
	dev-libs/glib:2 required by (dev-libs/libcroco-0.6.8::gentoo, installed)
	>=dev-libs/glib-2.32.0:2 required by (gnome-base/gnome-keyring-3.8.2::gentoo, installed)
	>=dev-libs/glib-2.28:2 required by (net-wireless/bluez-4.101-r5::gentoo, installed)
	>=dev-libs/glib-2.36.0:2 required by (net-libs/libsoup-2.42.2-r1::gentoo, ebuild scheduled for merge)
	dev-libs/glib:2 required by (dev-qt/qtwebkit-4.8.5::gentoo, installed)
	>=dev-libs/glib-2.35.3:2 required by (x11-libs/gtk+-3.8.4::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.24:2 required by (media-libs/gst-plugins-base-0.10.36::gentoo, installed)
	>=dev-libs/glib-2.6 required by (dev-java/swt-3.7.2::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-faad-0.10.23::gentoo, installed)
	dev-libs/glib:2 required by (sys-auth/polkit-qt-0.103.0::gentoo, installed)
	>=dev-libs/glib-2.24.0:2 required by (dev-python/pygobject-2.28.6-r54::gentoo, ebuild scheduled for merge)
	dev-libs/glib:2 required by (x11-libs/wxGTK-2.8.12.1-r1::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-resindvd-0.10.23::gentoo, installed)
	>=dev-libs/glib-2.26:2 required by (sys-apps/systemd-ui-2::gentoo, installed)
	>=dev-libs/glib-2.32:2 required by (app-accessibility/at-spi2-atk-2.8.1::gentoo, ebuild scheduled for merge)
	dev-libs/glib:2 required by (app-text/poppler-0.22.4::gentoo, installed)
	>=dev-libs/glib-2.28 required by (media-libs/lensfun-0.2.7::gentoo, installed)
	>=dev-libs/glib-2.32 required by (sys-fs/udisks-2.1.1::gentoo, installed)
	dev-libs/glib:2 required by @selected
	>=dev-libs/glib-2.31:2 required by (gnome-base/gconf-3.2.6-r1::gentoo, installed)
	>=dev-libs/glib-2.36.4:2 required by (dev-util/gdbus-codegen-2.36.4-r1::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.10:2 required by (gnome-base/libgnomecanvas-2.30.3::gentoo, installed)
	>=dev-libs/glib-2.34:2 required by (dev-cpp/glibmm-2.34.1::gentoo, installed)
	dev-libs/glib required by (app-text/liblangtag-0.5.1::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-dvdread-0.10.19::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-libs/gst-plugins-good-0.10.31::gentoo, installed)
	>=dev-libs/glib-2.32:2 required by (media-libs/gstreamer-1.0.7::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-libs/gst-plugins-base-0.10.36::gentoo, installed)
	dev-libs/glib:2 required by (app-text/enchant-1.6.0::gentoo, installed)
	>=dev-libs/glib-2.26:2 required by (www-client/firefox-24.0-r1::gentoo, installed)
	>=dev-libs/glib-2:2 required by (net-print/libgnomecups-0.2.3-r3::gentoo, installed)
	>=dev-libs/glib-2.32 required by (sys-auth/polkit-0.112-r1::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.22 required by (sys-power/upower-0.9.22::gentoo, ebuild scheduled for merge)
	dev-libs/glib:2 required by (sci-electronics/gtkwave-3.3.47::gentoo, installed)
	>=dev-libs/glib-2.34.0:2 required by (x11-libs/gdk-pixbuf-2.28.2::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-libs/gst-plugins-base-1.0.7::gentoo, installed)
	>=dev-libs/glib-2.30.2:2 required by (media-gfx/gimp-2.8.6::gentoo, installed)
	>=dev-libs/glib-2.32:2 required by (x11-libs/gtksourceview-3.6.3::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-ogg-0.10.36::gentoo, installed)
	>=dev-libs/glib-2.35.8:2 required by (net-libs/glib-networking-2.36.2::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2.32.3:2 required by (x11-misc/lightdm-1.4.0-r2::gentoo, installed)
	>=dev-libs/glib-2.6:2 required by (media-plugins/gst-plugins-theora-0.10.36::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?] (>=dev-libs/glib-2[abi_x86_64(-)]) required by (sys-apps/systemd-208-r2::gentoo, ebuild scheduled for merge)
	>=dev-libs/glib-2 required by (sys-fs/udev-207::gentoo, installed)
	>=dev-libs/glib-2.30:2 required by (app-admin/openrc-settingsd-1.0.1::gentoo, installed)

  (sys-fs/udev-207::gentoo, installed) pulled in by
	sys-fs/udev required by @selected
	>=sys-fs/udev-206-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,gudev?,introspection?,kmod?,selinux?,static-libs?] (>=sys-fs/udev-206-r2[abi_x86_64(-),gudev,introspection,kmod]) required by (virtual/udev-206-r3::gentoo, ebuild scheduled for merge)

  (sci-libs/blas-reference-20120925::science, ebuild scheduled for merge) pulled in by
	>=sci-libs/blas-reference-20110417 required by (virtual/blas-2.1::science, ebuild scheduled for merge)


For more information about Blocked Packages, please refer to the following
section of the Gentoo Linux x86 Handbook (architecture is irrelevant):

http://www.gentoo.org/doc/en/handbook/handbook-x86.xml?full=1#blocked


The following USE changes are necessary to proceed:
 (see "package.use" in the portage(5) man page for more details)
# required by sys-devel/clang-3.3-r100
# required by dev-libs/libclc-0.0.1_pre20130819-r1
# required by media-libs/mesa-9.2.0-r1[opencl]
# required by virtual/opencl-0-r4
# required by media-gfx/imagemagick-6.8.6.8-r1[opencl]
# required by media-gfx/asymptote-2.24[-doc,imagemagick]
# required by @selected
# required by @world (argument)
=sys-devel/llvm-3.3-r1 clang video_cards_radeon

Use --autounmask-write to write changes to config files (honoring
CONFIG_PROTECT). Carefully examine the list of proposed changes,
paying special attention to mask or keyword changes that may expose
experimental or unstable packages.

10

14.10.2013, 09:21

http://www.dyle.org
IM-Account (Jabber!) sind auf meiner HP ...
There is no place like /home

http://www.gentooforum.de
http://www.gentoofreunde.org

<div>how to annoy a web developer?</span>

11

16.10.2013, 21:51

Pakete mit rR werden ständig neu kompiliert

Hallo zusammen!

Sorry, wenn ich mich an den thread anhänge, aber ich habe ein ähnliches Problem: Bei mir werden die beiden Pakete ksplash und kdelibs (Markierung [rR]) bei jedem emerge mit angezeigt, z.B. bei einem emerge app-text/iso-codes (zufällig ausgesucht, da ich dachte, dass hier keine KDE-Abhängigkeiten existieren können). Leider kann ich den Ursprung nicht mehr nachvollziehen, denke aber es hat mit der sub slot Systematik zu tun. Irgendein Hinweis, wo ich mit der Suche anfangen könnte?

Quellcode

1
2
3
4
5
6
7
8
9
10
gentoo silversurfer # emerge -ptv iso-codes

These are the packages that would be merged, in reverse order:

Calculating dependencies... done!
[ebuild  rR	] kde-base/ksplash-4.10.5:4  USE="mmx sse sse2 xinerama -3dnow (-altivec) (-aqua) -debug" 0 kB
[ebuild 	U  ] app-text/iso-codes-3.40 [3.24.2] 3,549 kB
[ebuild  rR	] kde-base/kdelibs-4.10.5-r1:4  USE="acl alsa bzip2 fam handbook mmx nls opengl policykit semantic-desktop spell sse sse2 ssl udev udisks upower zeroconf -3dnow (-altivec) (-aqua) -debug -doc -jpeg2k -kerberos -lzma -openexr {-test}" 0 kB

Total: 3 packages (1 upgrade, 2 reinstalls), Size of downloads: 3,549 kB


Hier noch

Quellcode

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
gentoo silversurfer # emerge --info
Portage 2.1.12.2 (default/linux/x86/13.0/desktop, gcc-4.4.5, glibc-2.12.2, 3.3.4-ck i686)
=================================================================
System uname: Linux-3.3.4-ck-i686-Intel-R-_Xeon-R-_CPU_W3540_@_2.93GHz-with-gentoo-2.1
KiB Mem: 	6210308 total,	873060 free
KiB Swap:      	0 total,     	0 free
Timestamp of tree: Sun, 13 Oct 2013 12:00:01 +0000
ld GNU ld (GNU Binutils) 2.20.1.20100303
app-shells/bash:      	4.2_p37
dev-java/java-config: 	1.3.7-r1, 2.1.11-r3
dev-lang/python:      	2.7.5-r2, 3.1.2-r4, 3.2.5-r2
dev-util/cmake:       	2.8.9
dev-util/pkgconfig:   	0.27.1
sys-apps/baselayout:  	2.1-r1
sys-apps/openrc:      	0.11.8::pentoo
sys-apps/sandbox:     	2.4
sys-devel/autoconf:   	2.13, 2.68
sys-devel/automake:   	1.5, 1.7.9-r1, 1.8.5-r3, 1.9.6-r2, 1.10.3, 1.11.1, 1.12.6
sys-devel/binutils:   	2.20.1-r1
sys-devel/gcc:        	4.4.5, 4.5.3-r1
sys-devel/gcc-config: 	1.4.1-r1
sys-devel/libtool:    	2.4-r1
sys-devel/make:       	3.82-r1
sys-kernel/linux-headers: 3.1 (virtual/os-headers)
sys-libs/glibc:       	2.12.2
Repositories: gentoo kde zugaina scarabeus ubuntu wavilen vdr-devel sunrise java-overlay quarks_gentoo_hardened_overlay axs enlightenment pentoo luman rion AzP steam-overlay sabayon-distro last-hope DuPol desktop-effects x-portage x-myOverlay stuff
ACCEPT_KEYWORDS="x86"
ACCEPT_LICENSE="*"
CBUILD="i686-pc-linux-gnu"
CFLAGS="-march=native -O2 -pipe -fomit-frame-pointer"
CHOST="i686-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/share/config /usr/share/gnupg/qualified.txt /usr/share/polkit-1/actions"
CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/env.d /etc/env.d/java/ /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/php/apache2-php5.3/ext-active/ /etc/php/cgi-php5.3/ext-active/ /etc/php/cli-php5.3/ext-active/ /etc/revdep-rebuild /etc/sandbox.d /etc/splash /etc/terminfo"
CXXFLAGS="-march=native -O2 -pipe -fomit-frame-pointer"
DISTDIR="/usr/portage/distfiles"
EMERGE_DEFAULT_OPTS=" --autounmask=n"
FCFLAGS="-O2 -march=i686 -pipe"
FEATURES="assume-digests binpkg-logs config-protect-if-modified distlocks ebuild-locks fixlafiles merge-sync news parallel-fetch preserve-libs protect-owned sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch"
FFLAGS="-O2 -march=i686 -pipe"
GENTOO_MIRRORS="http://ftp.uni-erlangen.de/pub/mirrors/gentoo http://mirror.cambrium.nl/pub/os/linux/gentoo/ http://mirrors.sec.informatik.tu-darmstadt.de/gentoo/ http://mirror.netcologne.de/gentoo/"
LANG="de_DE.utf8"
LDFLAGS="-Wl,-O1 -Wl,--as-needed"
MAKEOPTS="-j5"
PKGDIR="/usr/portage/packages"
PORTAGE_CONFIGROOT="/"
PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages"
PORTAGE_TMPDIR="/var/tmp"
PORTDIR="/usr/portage"
PORTDIR_OVERLAY="/var/lib/layman/kde /var/lib/layman/zugaina /var/lib/layman/scarabeus /var/lib/layman/ubuntu /var/lib/layman/wavilen /var/lib/layman/vdr-devel /var/lib/layman/sunrise /var/lib/layman/java-overlay /var/lib/layman/quarks /var/lib/layman/axs /var/lib/layman/enlightenment /var/lib/layman/pentoo /var/lib/layman/luman /var/lib/layman/rion /var/lib/layman/AzP /var/lib/layman/steam /var/lib/layman/sabayon-distro /var/lib/layman/last-hope /var/lib/layman/DuPol /var/lib/layman/desktop-effects /usr/local/portage /usr/local/portage/myOverlay /usr/local/portage/megabaks-stuff-local"
SYNC="rsync://rsync.gentoo.org/gentoo-portage"
USE="X a52 aac acl acpi alsa avahi berkdb bluetooth branding bzip2 cairo cdda cdr cli consolekit cracklib crypt cups cxx dbus dri dts dvb dvd dvdr emboss encode exif fam firefox flac fortran gdbm gif gpm gtk iconv ipv6 jpeg kde lcms ldap libnotify mad mmx mng modules mp3 mp4 mpeg mudflap ncurses nls nptl nsplugin ogg opengl openmp pam pango pcre pdf png policykit ppds python qt3support qt4 readline samba sdl session spell sse sse2 sse3 sse4 sse4_1 sse4_2 ssl startup-notification svg tcpd tiff truetype udev udisks unicode upnp upower usb vorbis win32codecs wxwidgets x264 x86 xcb xinerama xml xv xvid xvmc zeroconf zlib" ABI_X86="32" ALSA_CARDS="ali5451 als4000 atiixp atiixp-modem bt87x ca0106 cmipci emu10k1 emu10k1x ens1370 ens1371 es1938 es1968 fm801 hda-intel intel8x0 intel8x0m maestro3 trident usb-audio via82xx via82xx-modem ymfpci" APACHE2_MODULES="authn_core authz_core socache_shmcb unixd actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" CALLIGRA_FEATURES="kexi words flow plan sheets stage tables krita karbon braindump author" CAMERAS="ptp2" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" DVB_CARDS="ttpci" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf superstar2 timing tsip tripmate tnt ubx" GRUB_PLATFORMS="pc qemu" INPUT_DEVICES="keyboard mouse synaptics" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" LINGUAS="de de_DE" LIRC_DEVICES="mceusb mceusb2 devinput" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php5-5" PYTHON_SINGLE_TARGET="python2_7" PYTHON_TARGETS="python2_7 python3_2" RUBY_TARGETS="ruby19 ruby18" USERLAND="GNU" VIDEO_CARDS="nvidia nv" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq steal rawnat logmark ipmark dhcpmac delude chaos account"
Unset:  CPPFLAGS, CTARGET, INSTALL_MASK, LC_ALL, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS, USE_PYTHON


---------------------------
Re-emerge von libpng (1.2 // 0/15) hat es gelöst...

Dieser Beitrag wurde bereits 2 mal editiert, zuletzt von »elric77« (16.10.2013, 23:17) aus folgendem Grund: solved