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.

1

10.09.2015, 22:00

emerge -avuDN world (bekomme folgende Blocks einfach nicht weg)

Hallo,

leider habe ich noch was. Ich bekomme diese Blocks einfach nicht weg.
Was kann ich noch tun?

emerge -avuDN world

[blocks B ] sys-apps/systemd ("sys-apps/systemd" is blocking sys-fs/udev-225)
[blocks B ] <net-fs/samba-4.1.7 ("<net-fs/samba-4.1.7" is hard blocking sys-libs/ntdb-1.0-r1)
[blocks B ] <x11-themes/gnome-themes-standard-3.14 ("<x11-themes/gnome-themes-standard-3.14" is blocking x11-themes/adwaita-icon-theme-3.16.2.1)
[blocks B ] sys-apps/gentoo-systemd-integration ("sys-apps/gentoo-systemd-integration" is blocking sys-fs/udev-225)
[blocks B ] sys-fs/udev ("sys-fs/udev" is blocking sys-apps/gentoo-systemd-integration-4, sys-apps/systemd-215-r3)

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »rabo« (10.09.2015, 22:56) aus folgendem Grund: hatte aufruf vertauscht


2

10.09.2015, 22:18

Poste doch bitter die ganze Ausgabe mit dieser hier kann man recht wenig Helfen ....

mfg
schatti
''''''''''''''''''''''''''''''''''''''''''''''''
Gentoo-Linux
der G-Punkt eines Pc´s

''''''''''''''''''''''''''''''''''''''''''''''''

3

10.09.2015, 22:54

gut dachte nur, weil die riesig ist:

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
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
[ebuild 	U  ] dev-java/jarjar-1.4:1::gentoo [0.9:1::gentoo] USE="-doc -source* {-test}" 332 KiB
[ebuild   R	] dev-java/xom-1.2.10::gentoo  USE="-doc -examples -source*" 0 KiB
[ebuild  NS	] dev-java/jdom-1.1.3:0::gentoo [1.0-r4:1.0::gentoo] USE="-doc -examples -source" 4,135 KiB
[ebuild  NS	] dev-java/cglib-3.1:3::gentoo [2.1.3:2.1::gentoo, 2.2.3:2.2::gentoo] USE="-doc -examples -source {-test}" 1,506 KiB
[ebuild 	U  ] dev-java/beansbinding-1.2.1-r2::gentoo [1.2.1::gentoo] USE="-doc -source*" 0 KiB
[ebuild 	U  ] dev-java/stax-ex-1.0-r3::gentoo [1.0-r2::gentoo] USE="-doc -source*" 0 KiB
[ebuild   R	] dev-java/javassist-3.18.2:3::gentoo  USE="-doc -examples -source*" 0 KiB
[ebuild 	U  ] dev-java/jsr181-1.0-r1::gentoo [1.0::gentoo] 0 KiB
[ebuild   R	] dev-java/glassfish-transaction-api-1.1.2.2.04::gentoo  USE="-doc -source*" 0 KiB
[ebuild   R	] dev-java/jtidy-0_pre20010801-r1::gentoo  USE="-doc -source*" 0 KiB
[ebuild   R	] dev-java/fastinfoset-1.2.11::gentoo  USE="-doc -source*" 0 KiB
[ebuild   R	] dev-java/absolutelayout-6.7_beta-r1::gentoo  USE="-doc -source*" 0 KiB
[ebuild   R	] dev-java/saaj-1.3.19-r1::gentoo  USE="-examples -source* {-test}" 0 KiB
[ebuild   R	] dev-java/jboss-modules-1.3.3::gentoo  USE="-source*" 0 KiB
[ebuild   R	] dev-java/jboss-logmanager-1.5.1::gentoo  USE="-doc -source*" 0 KiB
[ebuild   R	] dev-java/jboss-logging-3.1.4::gentoo  USE="(-doc) -source*" 0 KiB
[ebuild   R	] dev-java/stax-ex-1.7.6:1::gentoo  USE="-doc -source*" 0 KiB
[ebuild   R	] dev-java/xmlstreambuffer-1.5.3::gentoo  USE="-doc -source*" 0 KiB
[ebuild  N 	] dev-java/typesafe-config-1.3.0::gentoo  USE="-doc -source" 355 KiB
[ebuild  N 	] dev-java/mchange-commons-0.2.10::gentoo  USE="-doc -source" 756 KiB
[ebuild 	U  ] dev-java/c3p0-0.9.5.1::gentoo [0.9.1.2::gentoo] USE="-doc -examples% -source* {-test%}" 820 KiB
[ebuild   R	] dev-java/jdom-1.0-r4:1.0::gentoo  USE="-doc -examples -source*" 0 KiB
[ebuild   R	] dev-java/saxon-9.2.0.6:9::gentoo  USE="-doc -source*" 0 KiB
[ebuild   R	] dev-java/jaxen-1.1.4:1.1::gentoo  USE="-doc -examples -source* {-test}" 0 KiB
[ebuild 	U  ] dev-java/tomcat-servlet-api-6.0.44-r1:2.5::gentoo [6.0.41:2.5::gentoo] USE="-source*" 3,367 KiB
[ebuild   R	] dev-java/tomcat-servlet-api-5.5.34:2.4::gentoo  USE="-doc -source*" 0 KiB
[ebuild 	U  ] dev-java/netbeans-java-8.0.2-r3:8.0::gentoo [8.0.2:8.0::gentoo] 0 KiB
[ebuild   R	] dev-java/jdbc-mysql-5.1.26::gentoo  USE="-c3p0 -log4j -source*" 0 KiB
[ebuild  N 	] app-text/djvu-3.5.27::gentoo  USE="jpeg tiff xml -debug -doc" 3,564 KiB
[ebuild  N 	] sys-apps/lesspipe-1.82::mv  USE="cpio djvu dvi2tty elinks ghostscript groff html2text links lynx pdf rpm2targz unzip w3m -antiword -cabextract -catdoc -dpkg -fastjar -gpg -id3v2 -image -isoinfo -libplist -lzip -mp3info -mp3info2 -ooffice -p7zip -pstotext -rar -rpm -unrar -unrtf -xlhtml" 111 KiB
[ebuild 	U  ] net-nds/openldap-2.4.42::gentoo [2.4.38-r2::gentoo] USE="berkdb crypt ipv6 minimal ssl syslog tcpd -cxx -debug -experimental -gnutls -icu -iodbc -kerberos -odbc -overlays -perl -samba -sasl (-selinux) -slp -smbkrb5passwd -static-libs%" ABI_X86="32* (64) (-x32)" 5,526 KiB
[ebuild 	U  ] net-misc/curl-7.44.0::gentoo [7.39.0::gentoo] USE="ipv6 ldap ssl -adns (-http2) -idn -kerberos -metalink -rtmp -samba% -ssh -static-libs {-test} -threads" ABI_X86="32* (64) (-x32)" CURL_SSL="nss* -axtls -gnutls -openssl* -polarssl (-winssl)" 3,320 KiB
[ebuild 	U  ] media-libs/raptor-2.0.14:2::gentoo [2.0.9:2::gentoo] USE="curl unicode -debug -json -static-libs" 1,834 KiB
[ebuild 	U  ] dev-python/pycurl-7.19.5.1::gentoo [7.19.3.1-r1::gentoo] USE="ssl -examples {-test}" CURL_SSL="nss* -gnutls -openssl*" PYTHON_TARGETS="python2_7 python3_4* -python3_3* (-python3_2%)" 139 KiB
[ebuild  N 	] net-misc/dhcp-4.3.2::gentoo  USE="client ipv6 ldap server ssl (-selinux) -vim-syntax" 9,015 KiB
[ebuild  N 	] sys-libs/ldb-1.1.21:0/1.1.21::gentoo  USE="-doc" PYTHON_TARGETS="python2_7" 1,216 KiB
[ebuild 	U  ] dev-lang/php-5.6.13:5.6::gentoo [5.6.4:5.6::gentoo] USE="berkdb bzip2 cli crypt ctype curl exif fileinfo filter gd gdbm hash iconv ipv6 json ldap nls opcache pcntl phar posix readline session simplexml spell ssl tokenizer truetype unicode xml zip zlib -apache2 -bcmath -calendar -cdb -cgi -cjk -debug -embed -enchant (-firebird) -flatfile -fpm (-frontbase) -ftp -gmp -imap -inifile -intl -iodbc -kerberos -ldap-sasl -libedit -libmysqlclient -mhash -mssql -mysql -mysqli -oci8-instant-client -odbc -pdo -postgres -qdbm -recode (-selinux) -sharedmem -snmp -soap -sockets -sqlite (-sybase-ct) -systemd -sysvipc -threads -tidy -vpx -wddx -xmlreader -xmlrpc -xmlwriter -xpm -xslt" 13,748 KiB
[ebuild 	U  ] media-sound/vorbis-tools-1.4.0-r2::gentoo [1.4.0-r1::gentoo] USE="flac nls ogg123 -kate -speex" 1,315 KiB
[ebuild  NS	] dev-cpp/libcmis-0.5.0-r1:0.5::gentoo [0.4.1:0.4::gentoo] USE="-man -static-libs {-test}" 733 KiB
[uninstall 	] dev-cpp/libcmis-0.4.1:0.4::gentoo  USE="-man -static-libs {-test}" 
[blocks b  	] dev-cpp/libcmis:0.4 ("dev-cpp/libcmis:0.4" is blocking dev-cpp/libcmis-0.5.0-r1)
[ebuild 	U  ] sys-fs/quota-4.02::gentoo [4.01::gentoo] USE="ldap nls tcpd -netlink -rpc" 478 KiB
[ebuild 	U  ] app-benchmarks/phoronix-test-suite-4.8.5::gentoo [4.8.4::gentoo] 512 KiB
[ebuild 	U  ] dev-vcs/git-2.5.1::gentoo [2.0.2::gentoo] USE="blksha1 curl gnome-keyring gpg gtk iconv nls pcre perl python threads webdav -cgi -cvs -doc -emacs -highlight -mediawiki (-ppcsha1) -subversion {-test} -tk -xinetd" PYTHON_SINGLE_TARGET="(-python2_7%*)" PYTHON_TARGETS="python2_7" 4,024 KiB
[ebuild   R	] app-portage/layman-2.3.0::gentoo  USE="git -bazaar -cvs -darcs -g-sorcery -gpg -mercurial -squashfs -subversion -sync-plugin-portage {-test}" PYTHON_TARGETS="python2_7 python3_4* -pypy -python3_3*" 0 KiB
[ebuild 	U  ] sys-auth/polkit-0.113::gentoo [0.112-r2::gentoo] USE="gtk introspection nls pam -examples -jit -kde* (-selinux) -systemd {-test%}" 1,415 KiB
[ebuild 	U  ] sys-libs/libcap-2.24-r2::gentoo [2.22-r2::gentoo] USE="pam -static-libs%" ABI_X86="32* (64) (-x32)" 62 KiB
[ebuild 	U  ] sys-libs/pam-1.2.1-r1::gentoo [1.1.8-r2::gentoo] USE="berkdb cracklib filecaps%* nls pie%* -audit -debug -nis (-selinux) {-test} -vim-syntax" ABI_X86="32* (64) (-x32)" 1,729 KiB
[ebuild   R	] virtual/pam-0-r1::gentoo  ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] net-proxy/dante-1.4.1::gentoo [1.4.0-r1::gentoo] USE="pam tcpd -debug -kerberos (-selinux) -static-libs -upnp" 1,255 KiB
[ebuild 	U  ] dev-libs/libpwquality-1.3.0::gentoo [1.2.3::gentoo] USE="pam -python -static-libs" PYTHON_TARGETS="python2_7 python3_4%* -python3_3%" 414 KiB
[ebuild 	U  ] net-irc/irssi-0.8.17::gentoo [0.8.16::gentoo] USE="ipv6 perl proxy socks5 ssl (-selinux)" 1,077 KiB
[ebuild 	U  ] dev-libs/cyrus-sasl-2.1.26-r9:2::gentoo [2.1.26-r7:2::gentoo] USE="berkdb gdbm pam ssl -authdaemond -java -kerberos -ldapdb -mysql -openldap -postgres -sample (-selinux) -sqlite -srp -static-libs -urandom" ABI_X86="32* (64) (-x32)" 5,098 KiB
[ebuild 	U  ] dev-lang/ruby-2.0.0_p647:2.0::gentoo [2.0.0_p481:2.0::gentoo] USE="berkdb gdbm ipv6 ncurses rdoc readline socks5 ssl -debug -doc -examples -rubytests -xemacs" CPU_FLAGS_X86="sse2%*" 8,110 KiB
[ebuild 	U  ] virtual/rubygems-11::gentoo [10::gentoo] RUBY_TARGETS="ruby19 ruby20 ruby21 ruby22 (-rbx)" 0 KiB
[ebuild 	U  ] dev-lang/ruby-1.9.3_p551-r1:1.9::gentoo [1.9.3_p547:1.9::gentoo] USE="berkdb gdbm ipv6 ncurses rdoc readline socks5 ssl yaml -debug -doc -examples -rubytests -xemacs" 9,818 KiB
[ebuild 	U  ] dev-lang/ruby-2.2.3:2.2::gentoo [2.2.1:2.2::gentoo] USE="berkdb gdbm ipv6 ncurses rdoc readline socks5 ssl -debug -doc -examples -jemalloc -rubytests -xemacs" 10,211 KiB
[ebuild 	U  ] dev-ruby/minitest-5.8.0:5::gentoo [5.5.1:5::gentoo] USE="-doc {-test}" RUBY_TARGETS="ruby19 ruby20 ruby22 -ruby21" 70 KiB
[ebuild 	U  ] dev-ruby/power_assert-0.2.4::gentoo [0.2.3::gentoo] USE="-doc {-test}" RUBY_TARGETS="ruby20 ruby22 -ruby21" 13 KiB
[ebuild 	U  ] dev-lang/ruby-2.1.7:2.1::gentoo [2.1.2:2.1::gentoo] USE="berkdb gdbm ipv6 ncurses rdoc readline socks5 ssl -debug -doc -examples -rubytests -xemacs" 9,154 KiB
[ebuild 	U  ] dev-ruby/json-1.8.3::gentoo [1.8.2-r1::gentoo] USE="-doc {-test}" RUBY_TARGETS="ruby19 ruby20 ruby21 ruby22" 149 KiB
[ebuild 	U  ] sys-apps/openrc-0.17::gentoo [0.12.4::gentoo] USE="ncurses netifrc pam unicode -audit% -debug -newnet (-prefix) (-selinux) -static-libs -tools" 157 KiB
[blocks b  	] <sys-apps/openrc-0.16.2 ("<sys-apps/openrc-0.16.2" is blocking dev-db/mysql-init-scripts-2.1_alpha4)
[blocks b  	] <sys-apps/openrc-0.13.9 ("<sys-apps/openrc-0.13.9" is blocking net-fs/nfs-utils-1.3.2-r6)
[blocks b  	] <sys-apps/openrc-0.14 ("<sys-apps/openrc-0.14" is blocking sys-fs/udev-init-scripts-30)
[blocks b  	] <sys-apps/openrc-0.13.8 ("<sys-apps/openrc-0.13.8" is blocking sys-apps/kmod-21)
[ebuild  N 	] net-mail/mailutils-2.99.98::gentoo  USE="berkdb clients gdbm ipv6 ldap nls pam ssl tcpd threads -bidi -guile -kerberos -mysql -postgres -python -sasl -servers -static-libs -tokyocabinet" 2,447 KiB
[uninstall 	] mail-client/mailx-8.1.2.20050715-r6::gentoo 
[blocks b  	] mail-client/mailx ("mail-client/mailx" is blocking net-mail/mailutils-2.99.98)
[blocks b  	] net-mail/mailutils ("net-mail/mailutils" is blocking mail-client/mailx-8.1.2.20050715-r6)
[ebuild 	U  ] virtual/mailx-1-r1::calculate [1::gentoo] 0 KiB
[ebuild 	U  ] sys-apps/shadow-4.2.1-r1::gentoo [4.2.1::gentoo] USE="acl cracklib nls pam -audit (-selinux) -skey -xattr" LINGUAS="cs%* da%* de%* es%* fi%* fr%* hu%* id%* it%* ja%* ko%* pl%* pt_BR%* ru%* sv%* tr%* zh_CN%* zh_TW%*" 1,558 KiB
[ebuild 	U  ] sys-apps/kbd-2.0.3::gentoo [2.0.1-r1::gentoo] USE="nls pam {-test}" 1,013 KiB
[ebuild 	U  ] sys-apps/busybox-1.23.2::gentoo [1.22.1::gentoo] USE="ipv6 pam static -debug% -livecd* -make-symlinks -math -mdev -savedconfig (-selinux) -sep-usr -syslog -systemd" 2,200 KiB
[ebuild 	U  ] dev-ruby/test-unit-3.1.3:2::gentoo [3.0.9-r1:2::gentoo] USE="-doc {-test}" RUBY_TARGETS="ruby19 ruby20 ruby22 -ruby21" 119 KiB
[ebuild 	U  ] app-cdr/cdrtools-3.01_alpha31::gentoo [3.01_alpha24::gentoo] USE="acl filecaps nls unicode -caps%" 2,049 KiB
[ebuild 	U  ] dev-ruby/rubygems-2.4.8::gentoo [2.4.6::gentoo] USE="-server {-test}" RUBY_TARGETS="ruby19 ruby20 ruby21 ruby22" 438 KiB
[ebuild 	U  ] net-misc/openvpn-2.3.8::gentoo [2.3.6::gentoo] USE="lzo pam plugins ssl -down-root -examples -iproute2 -passwordsave -pkcs11 (-polarssl) (-selinux) -socks% -static -systemd" 1,187 KiB
[ebuild 	U  ] app-misc/screen-4.3.1::gentoo [4.0.3-r7::gentoo] USE="pam -debug -multiuser -nethack (-selinux)" 827 KiB
[ebuild 	U  ] app-admin/sudo-1.8.14_p3::gentoo [1.8.10_p3::gentoo] USE="ldap nls pam sendmail -offensive (-selinux) -skey" 2,511 KiB
[ebuild 	U  ] net-irc/irssi-otr-1.0.0::gentoo [0.3-r1::gentoo] USE="(-debug%)" 39 KiB
[ebuild 	U  ] sys-apps/gradm-3.1.201507191652::gentoo [3.0.201407222118::gentoo] USE="pam" 90 KiB
[ebuild 	U  ] sys-apps/smartmontools-6.4::gentoo [6.2::gentoo] USE="-caps -minimal (-selinux) -static" 804 KiB
[ebuild 	U  ] dev-ruby/activesupport-4.2.4:4.2::gentoo [4.2.1:4.2::gentoo] USE="{-test}" RUBY_TARGETS="ruby19 ruby20 -ruby21" 4,070 KiB
[ebuild 	U  ] net-misc/openssh-7.1_p1::gentoo [6.6.1_p1::gentoo] USE="X bindist hpn ldap pam pie%* ssl%* -X509 -debug% -kerberos -ldns -libedit -sctp% (-selinux) -skey -ssh1% -static (-tcpd%*)" 1,503 KiB
[ebuild 	U  ] app-crypt/gnupg-2.1.7-r1::gentoo [2.0.25::gentoo] USE="bzip2 gnutls%* ldap nls readline usb -doc (-selinux) -smartcard -static -tools% (-adns%) (-mta%)" 4,804 KiB
[ebuild 	U  ] app-crypt/gpgme-1.5.5:1/11::gentoo [1.5.0:1/11::gentoo] USE="-common-lisp -static-libs" 954 KiB
[ebuild 	U  ] dev-libs/gmime-2.6.20-r1:2.6::gentoo [2.6.20:2.6::gentoo] USE="-doc -mono -static-libs -vala" 724 KiB
[ebuild 	U  ] app-arch/rpm-4.12.0.1::gentoo [4.11.2-r1::gentoo] USE="acl nls -caps -doc -lua -python (-selinux)" PYTHON_SINGLE_TARGET="(-python2_7%*)" PYTHON_TARGETS="python2_7" 4,033 KiB
[ebuild 	U  ] app-arch/alien-8.94::gentoo [8.90::gentoo] USE="bzip2" 64 KiB
[ebuild 	U  ] app-crypt/aespipe-2.4c-r1::gentoo [2.4c::gentoo] USE="asm%* -static" CPU_FLAGS_X86="-aes% -padlock%" 105 KiB
[ebuild 	U  ] gnome-base/dconf-0.24.0::gentoo [0.20.0::gentoo] USE="{-test} (-X%*)" 214 KiB
[ebuild 	U  ] app-crypt/gcr-3.16.0:0/1::gentoo [3.12.2:0/1::gentoo] USE="gtk introspection vala -debug {-test}" 1,305 KiB
[ebuild 	U  ] app-text/ghostscript-gpl-9.15-r1::gentoo [9.14::gentoo] USE="X cups dbus gtk -djvu -idn -static-libs (-bindist%*)" LINGUAS="de ja ko zh_CN zh_TW" 28,156 KiB
[ebuild 	U  ] sys-fs/e2fsprogs-1.42.13::gentoo [1.42.10::gentoo] USE="nls -static-libs" 6,360 KiB
[ebuild 	U  ] sys-fs/btrfs-progs-4.1.2::gentoo [3.14.2::gentoo] USE="convert%*" 1,097 KiB
[ebuild 	U  ] sys-apps/groff-1.22.3::gentoo [1.22.2::gentoo] USE="X -examples" LINGUAS="(-ja%*)" 4,091 KiB
[ebuild 	U  ] app-shells/zsh-5.0.8::mv [5.0.5::gentoo] USE="gdbm pcre unicode -caps -compile% -debug -doc -examples -maildir -static" COMPLETION="Linux%* Unix%* X%* -AIX% -BSD% -Cygwin% -Darwin% -Debian% -Mandriva% -Redhat% -Solaris% -openSUSE%" 3,175 KiB
[ebuild 	U  ] sys-apps/man-db-2.7.2-r1::gentoo [2.6.7.1::gentoo] USE="berkdb gdbm manpager%* nls zlib (-selinux) -static-libs" 1,467 KiB
[ebuild 	U  ] mail-mta/nullmailer-1.13-r5::gentoo [1.13-r4::gentoo] USE="ssl" 209 KiB
[ebuild 	U  ] app-shells/gentoo-zsh-completions-20150103::gentoo [20130808::gentoo] 24 KiB
[ebuild 	U  ] app-crypt/pinentry-0.9.5::gentoo [0.8.3::gentoo] USE="gnome-keyring%* gtk ncurses qt4 -caps -clipboard% -emacs% -static" 503 KiB
[ebuild 	U  ] gnome-base/gnome-keyring-3.16.0-r1::gentoo [3.12.2-r1::gentoo] USE="caps filecaps pam ssh-agent -debug (-selinux) {-test}" 1,153 KiB
[ebuild 	U  ] x11-apps/xauth-1.0.9-r2::gentoo [1.0.9::gentoo] USE="ipv6" 152 KiB
[ebuild 	U  ] x11-apps/xinit-1.3.4-r1::gentoo [1.3.3-r1::gentoo] USE="minimal -systemd%" 162 KiB
[ebuild  N 	] media-libs/libepoxy-1.2::gentoo  USE="{-test}" ABI_X86="32 (64) (-x32)" 261 KiB
[ebuild   R	] media-gfx/graphite2-1.2.4-r1::gentoo  USE="-perl {-test}" ABI_X86="32* (64) (-x32)" 6,777 KiB
[ebuild  N 	] sys-fs/udev-225::gentoo  USE="acl kmod (-selinux) -static-libs" ABI_X86="32 (64) (-x32)" 3,788 KiB
[ebuild 	U  ] virtual/udev-217::gentoo [208-r2::gentoo] USE="-systemd% (-gudev%*) (-introspection%*) (-static-libs%)" ABI_X86="(-32%) (-64%*) (-x32%)" 0 KiB
[ebuild 	U  ] virtual/libudev-215-r1:0/1::gentoo [215:0/1::gentoo] USE="-static-libs -systemd%" ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] sys-apps/util-linux-2.26.2::gentoo [2.24.2::gentoo] USE="cramfs ncurses nls pam suid tty-helpers udev unicode -caps -fdformat -python (-selinux) -slang -static-libs -systemd% {-test} (-bash-completion%) (-cytune%)" ABI_X86="32* (64) (-x32)" PYTHON_SINGLE_TARGET="python2_7 -python3_3 -python3_4 (-python3_2%)" PYTHON_TARGETS="python2_7 python3_4* -python3_3* (-python3_2%)" 3,774 KiB
[ebuild   R	] x11-libs/libSM-1.2.2-r1::gentoo  USE="ipv6 uuid -doc -static-libs" ABI_X86="32* (64) (-x32)" 341 KiB
[ebuild 	U  ] x11-libs/libXt-1.1.5::gentoo [1.1.4::gentoo] USE="-static-libs" ABI_X86="32* (64) (-x32)" 754 KiB
[ebuild   R	] x11-libs/libXmu-1.1.2::gentoo  USE="ipv6 -doc -static-libs" ABI_X86="32* (64) (-x32)" 387 KiB
[ebuild 	U  ] sys-apps/hwids-20150717-r1::gentoo [20140627::gentoo] USE="net pci udev usb" 1,705 KiB
[ebuild   R	] x11-libs/libXpm-3.5.11::gentoo  USE="-static-libs" ABI_X86="32* (64) (-x32)" 434 KiB
[ebuild 	U  ] x11-libs/libXaw-1.0.13::gentoo [1.0.12::gentoo] USE="-deprecated -doc -static-libs" ABI_X86="32* (64) (-x32)" 659 KiB
[ebuild 	U  ] sys-fs/udev-init-scripts-30::gentoo [26-r2::gentoo] 4 KiB
[blocks b  	] <sys-fs/udev-init-scripts-27 ("<sys-fs/udev-init-scripts-27" is blocking sys-apps/openrc-0.17)
[ebuild   R	] dev-libs/libusb-1.0.19:1::gentoo  USE="udev -debug -doc -examples -static-libs {-test}" ABI_X86="32* (64) (-x32)" 510 KiB
[ebuild 	U  ] virtual/libusb-1-r2:1::gentoo [1-r1:1::gentoo] USE="udev" ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] sys-apps/pciutils-3.3.1::gentoo [3.2.1::gentoo] USE="kmod udev%* zlib -dns -static-libs" ABI_X86="32%* (64%*) (-x32)" 385 KiB
[ebuild 	U  ] dev-libs/apr-1.5.2:1::gentoo [1.5.1-r1:1::gentoo] USE="urandom -doc -older-kernels-compatibility (-selinux) -static-libs" 808 KiB
[ebuild 	U  ] dev-libs/apr-util-1.5.4:1::gentoo [1.5.3-r1:1::gentoo] USE="berkdb gdbm ldap -doc -freetds -mysql -nss -odbc -openssl -postgres -sqlite -static-libs" 679 KiB
[ebuild 	U  ] sys-fs/xfsprogs-3.2.4::gentoo [3.1.11-r1::gentoo] USE="nls readline -libedit -static -static-libs" 1,448 KiB
[ebuild  N 	] dev-libs/libinput-1.0.1:0/10::gentoo  USE="{-test}" 782 KiB
[ebuild  N 	] app-crypt/heimdal-1.5.3-r2::gentoo  USE="X berkdb ipv6 pkinit -afs -caps -hdb-ldap -otp (-selinux) -ssl -static-libs {-test} -threads" ABI_X86="32 (64) (-x32)" 6,639 KiB
[ebuild 	U  ] app-editors/vim-7.4.827::gentoo [7.4.326::gentoo] USE="X acl gpm nls -cscope -debug -lua -luajit -minimal -perl -python -racket -ruby (-selinux) -tcl -vim-pager" PYTHON_SINGLE_TARGET="(-python2_6%) (-python2_7%*) (-python3_2%) (-python3_3%) (-python3_4%)" PYTHON_TARGETS="python2_7 python3_4* -python3_3* (-python2_6%) (-python3_2%)" 0 KiB
[ebuild   R	] sys-apps/dmapi-2.2.12-r1::gentoo  USE="-static-libs" ABI_X86="32* (64) (-x32)" 359 KiB
[ebuild 	U  ] sys-fs/lvm2-2.02.116::gentoo [2.02.107::gentoo] USE="readline thin udev -clvm -cman -device-mapper-only -lvm1 -lvm2create_initrd (-selinux) -static -static-libs -systemd" 1,503 KiB
[ebuild 	U  ] sys-fs/cryptsetup-1.6.7::gentoo [1.6.5::gentoo] USE="gcrypt nls udev -kernel -nettle -openssl -pwquality% -python -reencrypt -static -static-libs -urandom" PYTHON_SINGLE_TARGET="python2_7 -python3_3% -python3_4% (-python2_6%)" PYTHON_TARGETS="python2_7 python3_4%* -python3_3% (-python2_6%)" 1,162 KiB
[ebuild 	U  ] sys-apps/gptfdisk-1.0.0::gentoo [0.8.10::gentoo] USE="ncurses -static" 189 KiB
[ebuild 	U  ] dev-libs/rasqal-0.9.32::gentoo [0.9.30::gentoo] USE="crypt mhash pcre xml -gmp -static-libs {-test} (-doc%)" 1,509 KiB
[ebuild 	U  ] dev-libs/redland-1.0.17-r1::gentoo [1.0.16::gentoo] USE="berkdb -iodbc -mysql -odbc -postgres -sqlite -static-libs (-ssl%*) (-xml%*)" 1,584 KiB
[ebuild 	U  ] dev-libs/libgusb-0.2.6::gentoo [0.1.6::gentoo] USE="introspection -static-libs -vala" ABI_X86="32%* (64%*) (-x32)" 271 KiB
[ebuild 	U  ] app-misc/media-player-info-22::gentoo [21-r1::gentoo] 103 KiB
[ebuild 	U  ] app-admin/apache-tools-2.4.16::gentoo [2.4.10::gentoo] USE="ssl" 4,982 KiB
[ebuild 	U  ] www-servers/apache-2.4.16:2::gentoo [2.4.10-r1:2::gentoo] USE="ldap ssl -alpn% -debug -doc (-selinux) -static -suexec -threads" APACHE2_MODULES="actions alias auth_basic auth_digest authn_alias authn_anon authn_core authn_dbm authn_file authz_core authz_dbm authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir env expires ext_filter file_cache filter headers include info log_config logio mime mime_magic negotiation rewrite setenvif socache_shmcb speling status unique_id unixd userdir usertrack vhost_alias -access_compat -asis -authn_dbd -authz_dbd -cache_disk -cern_meta -charset_lite -dbd -dumpio -ident -imagemap -lbmethod_bybusyness -lbmethod_byrequests -lbmethod_bytraffic -lbmethod_heartbeat -log_forensic -macro% -proxy -proxy_ajp -proxy_balancer -proxy_connect -proxy_fcgi -proxy_ftp -proxy_http -proxy_scgi -proxy_wstunnel -ratelimit -remoteip -reqtimeout -slotmem_shm -substitute -version" APACHE2_MPMS="prefork* -event -peruser -worker" 0 KiB
[ebuild 	U  ] sys-apps/usbutils-008-r1::gentoo [007::gentoo] USE="-python (-zlib%*)" PYTHON_SINGLE_TARGET="(-python2_7%*)" PYTHON_TARGETS="python2_7" 281 KiB
[ebuild 	U  ] media-libs/libgphoto2-2.5.8:0/6::gentoo [2.5.4-r1:0/6::gentoo] USE="exif gd* jpeg nls -doc -examples -serial (-zeroconf%)" ABI_X86="32* (64) (-x32)" 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 -pentax -polaroid_pdc320 -polaroid_pdc640 -polaroid_pdc700 -ricoh -ricoh_g3 -samsung -sierra -sipix_blink2 -sipix_web2 -smal -sonix -sony_dscf1 -sony_dscf55 -soundvision -spca50x -sq905 -st2205 -stv0674 -stv0680 -sx330z -topfield -toshiba_pdrm11 -tp6801" 6,779 KiB
[ebuild   R	] media-libs/libgpod-0.8.3::gentoo  USE="gtk udev -ios -mono -python -static-libs" PYTHON_SINGLE_TARGET="(-python2_7%*)" PYTHON_TARGETS="python2_7" 784 KiB
[ebuild  N 	] sys-apps/vbetool-1.1::gentoo  179 KiB
[ebuild 	U  ] net-libs/serf-1.3.8:1::gentoo [1.3.6:1::gentoo] USE="-kerberos" 140 KiB
[ebuild 	U  ] sys-boot/gnu-efi-3.0.3::gentoo [3.0u::gentoo] ABI_X86="32%* (64%*)" 139 KiB
[ebuild   R	] dev-libs/libusb-compat-0.1.5-r3::gentoo  USE="-debug -examples -static-libs" ABI_X86="32* (64) (-x32)" 271 KiB
[ebuild   R	] virtual/libusb-0-r2::gentoo  ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild  N 	] dev-libs/libgudev-230::gentoo  USE="introspection -debug -static-libs" ABI_X86="32 (64) (-x32)" 252 KiB
[ebuild 	U  ] virtual/libgudev-230::gentoo [215::gentoo] USE="introspection -static-libs" ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] sys-fs/udisks-2.1.6:2::gentoo [2.1.3:2::gentoo] USE="gptfdisk introspection -cryptsetup -debug (-selinux) -systemd" 888 KiB
[ebuild 	U  ] x11-misc/colord-1.2.12:0/2::gentoo [1.2.1:0/2::gentoo] USE="gusb introspection policykit udev -argyllcms% -examples -extra-print-profiles -scanner -systemd -vala" ABI_X86="32%* (64%*) (-x32)" 1,187 KiB
[ebuild 	U  ] net-misc/modemmanager-1.4.10:0/1::gentoo [1.2.0-r1:0/1::gentoo] USE="introspection policykit qmi -mbim -qmi-newest -vala" 1,376 KiB
[ebuild  N 	] virtual/krb5-0-r1::gentoo  ABI_X86="32 (64) (-x32)" 0 KiB
[ebuild  N 	] net-fs/cifs-utils-6.4::gentoo  USE="ads caps caps-ng -acl -creds" 384 KiB
[ebuild 	U  ] sys-apps/systemd-225:0/2::gentoo [215-r3:0/2::gentoo] USE="acl kdbus* kmod lz4%* pam policykit seccomp ssl -apparmor% -audit -cryptsetup -curl% -elfutils -gcrypt -gnuefi% -http -idn% -importd% -lzma -nat% -qrcode (-selinux) -sysv-utils% {-test} -vanilla -xkb% (-doc%) (-filecaps%*) (-firmware-loader%*) (-gudev%*) (-introspection%*) (-python%)" ABI_X86="32* (64) (-x32)" PYTHON_SINGLE_TARGET="(-python2_7%*) (-python3_2%) (-python3_3%)" PYTHON_TARGETS="(-python2_7%*) (-python3_2%) (-python3_3%*)" 3,788 KiB
[blocks b  	] sys-apps/systemd[gudev(-)] ("sys-apps/systemd[gudev(-)]" is blocking dev-libs/libgudev-230)
[blocks b  	] <sys-apps/systemd-216-r3 ("<sys-apps/systemd-216-r3" is blocking sys-apps/kmod-21)
[ebuild 	U  ] sys-apps/dbus-1.8.20::gentoo [1.8.10::gentoo] USE="X systemd* -debug -doc (-selinux) -static-libs {-test}" ABI_X86="32* (64) (-x32)" 1,828 KiB
[ebuild 	U  ] dev-libs/dbus-glib-0.104::gentoo [0.102::gentoo] USE="-debug -static-libs {-test} (-doc%)" ABI_X86="32* (64) (-x32)" 775 KiB
[ebuild 	U  ] app-accessibility/at-spi2-core-2.16.0:2::gentoo [2.12.0:2::gentoo] USE="X introspection" ABI_X86="32%* (64%*) (-x32)" 445 KiB
[ebuild 	U  ] app-accessibility/at-spi2-atk-2.16.0-r1:2::gentoo [2.12.1:2::gentoo] USE="{-test}" ABI_X86="32%* (64%*) (-x32)" 280 KiB
[ebuild 	U  ] dev-qt/qtdbus-4.8.7:4::gentoo [4.8.5:4::gentoo] USE="exceptions (-aqua) -debug -pch" ABI_X86="32%* (64%*) (-x32)" 0 KiB
[blocks b  	] <dev-qt/qtdbus-4.8.6:4 ("<dev-qt/qtdbus-4.8.6:4" is blocking dev-qt/qtchooser-0_p20150102)
[ebuild  NS	] dev-qt/qtdbus-5.4.2:5::gentoo [4.8.5:4::gentoo] USE="-debug {-test}" 0 KiB
[ebuild 	U  ] net-libs/libpcap-1.7.4::gentoo [1.6.1-r1::gentoo] USE="dbus ipv6 -bluetooth -canusb -netlink -static-libs" ABI_X86="32%* (64%*) (-x32)" 648 KiB
[ebuild 	U  ] xfce-base/xfconf-4.12.0-r1::gentoo [4.10.0::gentoo] USE="-debug -perl" 530 KiB
[ebuild 	U  ] sys-power/upower-0.99.3:0/3::gentoo [0.99.2-r1:0/3::gentoo] USE="introspection -doc% -ios (-selinux)" 420 KiB
[ebuild   R	] gnome-base/gconf-3.2.6-r3:2::gentoo  USE="introspection ldap policykit -debug" ABI_X86="32* (64) (-x32)" PYTHON_TARGETS="python2_7 (-python2_6%)" 1,524 KiB
[ebuild 	U  ] dev-python/dbus-python-1.2.0-r1::gentoo [1.2.0::gentoo] USE="-doc -examples {-test}" PYTHON_TARGETS="python2_7 python3_3 python3_4* (-python3_2%)" 589 KiB
[ebuild 	U  ] sys-apps/accountsservice-0.6.40::gentoo [0.6.37::gentoo] USE="introspection -doc (-selinux) -systemd" 360 KiB
[ebuild 	U  ] gnome-base/gnome-vfs-2.24.4-r3:2::gentoo [2.24.4-r2:2::gentoo] USE="acl ipv6 ssl -gnutls -kerberos -samba {-test} -zeroconf% (-avahi%*) (-doc%) (-fam%*)" ABI_X86="32* (64) (-x32)" 1,847 KiB
[ebuild   R	] media-plugins/gst-plugins-gconf-0.10.31-r1:0.10::gentoo  ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] gnome-base/libbonobo-2.24.3-r1::gentoo [2.24.3::gentoo] USE="-debug -examples {-test} (-doc%)" 1,324 KiB
[ebuild 	U  ] net-dns/dnsmasq-2.75::gentoo [2.71::gentoo] USE="dbus dhcp inotify%* ipv6 nls -auth-dns -conntrack -dhcp-tools -dnssec -idn -lua -script (-selinux) -static -tftp" LINGUAS="de es fi fr id it pl pt_BR ro -no" 462 KiB
[ebuild 	U  ] net-wireless/lorcon-0.0_p20150109::gentoo [0.0_p20130212-r1::gentoo] USE="python -ruby" PYTHON_TARGETS="python2_7" RUBY_TARGETS="ruby19 ruby20%*" 254 KiB
[ebuild 	U  ] sys-power/pm-utils-1.4.1-r7::gentoo [1.4.1-r6::gentoo] USE="alsa -debug -ntp" VIDEO_CARDS="radeon -intel*" 204 KiB
[ebuild 	U  ] net-print/cups-2.0.4::gentoo [1.7.4::gentoo] USE="X acl dbus pam ssl threads usb -debug -java -kerberos -lprng-compat -python (-selinux) -static-libs -systemd -xinetd -zeroconf (-gnutls%)" ABI_X86="32* (64) (-x32)" LINGUAS="ca cs%* de%* es fr it ja pt_BR ru" PYTHON_SINGLE_TARGET="(-python2_7%*)" PYTHON_TARGETS="python2_7" 8,594 KiB
[ebuild 	U  ] dev-qt/qtgui-4.8.7:4::gentoo [4.8.5-r3:4::gentoo] USE="accessibility cups exceptions glib mng qt3support tiff xv (-aqua) -debug -egl -gtkstyle -nas -nis -pch -trace -xinerama" ABI_X86="32%* (64%*) (-x32)" 51 KiB
[blocks b  	] <dev-qt/qtgui-4.8.6:4 ("<dev-qt/qtgui-4.8.6:4" is blocking dev-qt/qtchooser-0_p20150102)
[ebuild 	U  ] dev-util/cmake-3.3.1-r1::gentoo [2.8.12.2-r1::gentoo] USE="ncurses qt4 -doc% -emacs -qt5 -system-jsoncpp% {-test}" 6,426 KiB
[ebuild 	U  ] sys-devel/llvm-3.7.0:0/3.7.0::gentoo [3.4.2:0/3.4::gentoo] USE="libffi ncurses static-analyzer xml -clang -debug -doc -gold -libedit% -lldb% -multitarget -ocaml -python {-test} (-cmake%) (-udis86%)" ABI_X86="32* (64) (-x32)" PYTHON_TARGETS="python2_7 -pypy" VIDEO_CARDS="radeon" 14,331 KiB
[ebuild 	U  ] media-libs/mesa-11.0.0_rc2::gentoo [10.2.4::gentoo] USE="bindist classic dri3 egl gallium gbm gles2* llvm nptl pax_kernel udev%* vdpau xa -d3d9% -debug -gles1 -opencl -openmax -osmesa -pic (-selinux) -vaapi% -wayland -xvmc (-openvg%) (-r600-llvm-compiler%)" ABI_X86="32* (64) (-x32)" VIDEO_CARDS="radeon (-freedreno) -i915* -i965* -ilo -intel* -nouveau* -r100* -r200* -r300* -r600* -radeonsi -vmware*" 7,082 KiB
[blocks b  	] <media-libs/mesa-10.3.4-r1 ("<media-libs/mesa-10.3.4-r1" is blocking app-eselect/eselect-opengl-1.3.1-r4)
[ebuild 	U  ] x11-libs/cairo-1.14.2::gentoo [1.12.16-r3::gentoo] USE="X glib opengl svg xcb (-aqua) -debug (-directfb) (-gles2) -static-libs -valgrind -xlib-xcb (-drm%) (-gallium%) (-legacy-drivers%) (-lto%*) (-openvg%) (-qt4%)" ABI_X86="32* (64) (-x32)" 34,548 KiB
[ebuild 	U  ] media-libs/harfbuzz-0.9.41:0/0.9.18::gentoo [0.9.28:0/0.9.18::gentoo] USE="cairo fontconfig%* glib graphite icu introspection truetype -static-libs {-test}" ABI_X86="32* (64) (-x32)" 1,161 KiB
[ebuild 	U  ] x11-libs/pango-1.36.8::gentoo [1.36.5::gentoo] USE="X introspection -debug" ABI_X86="32* (64) (-x32)" 1,010 KiB
[ebuild 	U  ] gnome-base/librsvg-2.40.10:2::gentoo [2.40.2-r1:2::gentoo] USE="introspection -tools -vala" ABI_X86="32* (64) (-x32)" 511 KiB
[ebuild 	U  ] x11-libs/gtk+-3.16.6:3::gentoo [3.12.2:3::gentoo] USE="X cups introspection (-aqua) -broadway% -cloudprint -colord -debug -examples {-test} -vim-syntax -wayland -xinerama" ABI_X86="32%* (64%*) (-x32)" 17,846 KiB
[ebuild  N 	] media-libs/openjpeg-2.1.0-r1:2/7::gentoo  USE="-doc -static-libs {-test}" ABI_X86="32 (64) (-x32)" 1,748 KiB
[ebuild 	U  ] app-text/poppler-0.35.0:0/54::gentoo [0.26.2:0/46::gentoo] USE="cairo cxx introspection jpeg jpeg2k* lcms png qt4 tiff utils -cjk -curl -debug -doc -qt5" 1,581 KiB
[ebuild  N 	] kde-frameworks/extra-cmake-modules-5.13.0:5/5.13::gentoo  USE="-doc {-test}" 130 KiB
[ebuild   R	] virtual/opengl-7.0-r1::gentoo  ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild  NS	] dev-qt/qtgui-5.4.2-r1:5::gentoo [4.8.5-r3:4::gentoo] USE="accessibility dbus gif harfbuzz jpeg png udev xcb -debug -egl -eglfs -evdev -gles2 -gtkstyle -ibus {-test}" 0 KiB
[ebuild  N 	] dev-qt/qtwidgets-5.4.2:5::gentoo  USE="png xcb -debug -gles2 -gtkstyle {-test}" 0 KiB
[ebuild 	U  ] dev-qt/qtsvg-4.8.7:4::gentoo [4.8.5:4::gentoo] USE="accessibility exceptions (-aqua) -debug -pch" ABI_X86="32%* (64%*) (-x32)" 0 KiB
[blocks b  	] <dev-qt/qtsvg-4.8.6:4 ("<dev-qt/qtsvg-4.8.6:4" is blocking dev-qt/qtchooser-0_p20150102)
[ebuild 	U  ] dev-qt/qtwebkit-4.8.7:4::gentoo [4.8.5:4::gentoo] USE="exceptions jit (-aqua) -debug -gstreamer -icu -pch" ABI_X86="32%* (64%*) (-x32)" 0 KiB
[blocks b  	] <dev-qt/qtwebkit-4.8.6:4 ("<dev-qt/qtwebkit-4.8.6:4" is blocking dev-qt/qtchooser-0_p20150102)
[ebuild 	U  ] dev-util/automoc-0.9.88-r1::gentoo [0.9.88::gentoo] 9 KiB
[ebuild 	U  ] media-libs/gst-plugins-base-1.4.5:1.0::gentoo [1.2.4-r1:1.0::gentoo] USE="X alsa introspection nls ogg orc pango theora vorbis -ivorbis" ABI_X86="32* (64) (-x32)" 2,576 KiB
[ebuild  N 	] dev-qt/qtx11extras-5.4.2:5::gentoo  USE="-debug {-test}" 25 KiB
[ebuild  N 	] kde-frameworks/kcoreaddons-5.13.0:5/5.13::gentoo  USE="nls -debug -doc (-fam) {-test}" 296 KiB
[ebuild 	U  ] gnome-base/gnome-desktop-3.16.2:3/10::gentoo [3.12.2:3/10::gentoo] USE="introspection -debug {-test%}" 1,054 KiB
[ebuild  N 	] kde-frameworks/kconfig-5.13.0:5/5.13::gentoo  USE="nls -debug -doc {-test}" 216 KiB
[ebuild 	U  ] media-libs/gst-plugins-good-1.4.5:1.0::gentoo [1.2.4-r1:1.0::gentoo] USE="nls orc" ABI_X86="32* (64) (-x32)" 2,961 KiB
[ebuild  N 	] kde-frameworks/kwindowsystem-5.13.0:5/5.13::gentoo  USE="X nls -debug -doc {-test}" 160 KiB
[ebuild  N 	] kde-frameworks/kwidgetsaddons-5.13.0:5/5.13::gentoo  USE="nls -debug -doc {-test}" 2,078 KiB
[ebuild  N 	] kde-frameworks/ki18n-5.13.0:5/5.13::gentoo  USE="-debug -doc {-test}" 580 KiB
[ebuild 	U  ] media-libs/cogl-1.20.0:1.0/20::gentoo [1.18.2:1.0/20::gentoo] USE="gles2* introspection kms%* opengl pango -debug -examples (-gstreamer) {-test} -wayland%" 1,631 KiB
[ebuild 	U  ] media-libs/clutter-1.22.4:1.0::gentoo [1.18.2:1.0::gentoo] USE="X%* egl%* gtk introspection (-aqua) -debug -doc {-test} -wayland%" 5,187 KiB
[ebuild 	U  ] media-libs/clutter-gtk-1.6.2:1.0::gentoo [1.5.2:1.0::gentoo] USE="introspection -debug -examples" 308 KiB
[ebuild 	U  ] dev-libs/libqtxdg-1.2.0::gentoo [0.5.3::gentoo] USE="{-test}" 55 KiB
[ebuild 	U  ] lxqt-base/liblxqt-0.9.0::gentoo [0.7.0::gentoo] 85 KiB
[ebuild 	U  ] dev-qt/qtopengl-4.8.7:4::gentoo [4.8.5:4::gentoo] USE="exceptions qt3support (-aqua) -debug -egl -pch" ABI_X86="32%* (64%*) (-x32)" 0 KiB
[blocks b  	] <dev-qt/qtopengl-4.8.6:4 ("<dev-qt/qtopengl-4.8.6:4" is blocking dev-qt/qtchooser-0_p20150102)
[ebuild  N 	] kde-frameworks/kdbusaddons-5.13.0:5/5.13::gentoo  USE="X nls -debug -doc {-test}" 33 KiB
[ebuild   R	] media-libs/taglib-1.9.1-r2::gentoo  USE="asf mp4 -debug -examples {-test}" ABI_X86="32* (64) (-x32)" 639 KiB
[ebuild 	U  ] media-libs/gst-plugins-ugly-1.4.5:1.0::gentoo [1.2.4-r1:1.0::gentoo] USE="nls orc" ABI_X86="32* (64) (-x32)" 827 KiB
[ebuild  N 	] kde-frameworks/kcrash-5.13.0:5/5.13::gentoo  USE="X nls -debug -doc {-test}" 20 KiB
[ebuild 	U  ] dev-libs/gjs-1.43.3::gentoo [1.40.1::gentoo] USE="cairo gtk -examples {-test}" 446 KiB
[ebuild 	U  ] dev-libs/libical-1.0.1:0/1::gentoo [1.0-r2:0/1::gentoo] USE="-doc -examples -introspection -static-libs" 704 KiB
[ebuild 	U  ] net-wireless/bluez-5.34:0/3::gentoo [5.21-r1:0/3::gentoo] USE="cups obex readline udev -debug (-selinux) -systemd {-test}" ABI_X86="32* (64) (-x32)" 1,603 KiB
[ebuild 	U  ] net-wireless/gnome-bluetooth-3.16.1:2/13::gentoo [3.12.0:2/13::gentoo] USE="introspection -debug" 1,326 KiB
[ebuild   R	] dev-python/pycairo-1.10.0-r4::gentoo  USE="svg xcb -doc -examples {-test}" PYTHON_TARGETS="python2_7 python3_3 python3_4* (-python3_2%)" 634 KiB
[ebuild 	U  ] dev-python/pygobject-3.16.2:3::gentoo [3.12.2:3::gentoo] USE="cairo threads -examples {-test}" PYTHON_TARGETS="python2_7 python3_3 python3_4* (-python3_2%)" 709 KiB
[ebuild  N 	] kde-frameworks/kcodecs-5.13.0:5/5.13::gentoo  USE="nls -debug -doc {-test}" 212 KiB
[ebuild 	U  ] x11-libs/gtksourceview-3.16.1:3.0/3::gentoo [3.12.2:3.0/2::gentoo] USE="introspection -glade {-test} -vala%" 1,243 KiB
[ebuild 	U  ] sys-auth/polkit-qt-0.112.0-r1::gentoo [0.112.0::gentoo] USE="qt4 qt5* -debug -examples" 67 KiB
[ebuild 	U  ] dev-cpp/cairomm-1.10.0-r1::gentoo [1.10.0::gentoo] USE="svg -doc" ABI_X86="32%* (64%*) (-x32)" 1,065 KiB
[ebuild 	U  ] x11-libs/libwnck-3.14.0:3::gentoo [3.4.7:3::gentoo] USE="introspection startup-notification -tools" 661 KiB
[ebuild 	U  ] dev-libs/libpeas-1.14.0-r1::gentoo [1.10.0::gentoo] USE="gtk python -glade -jit% -lua% {-test} (-seed%)" PYTHON_TARGETS="python2_7 python3_4%* -python3_3* (-python2_6%) (-python3_2%)" 534 KiB
[ebuild  N 	] kde-frameworks/kitemviews-5.13.0:5/5.13::gentoo  USE="nls -debug -doc {-test}" 73 KiB
[ebuild  N 	] dev-qt/qtprintsupport-5.4.2:5::gentoo  USE="cups -debug -gles2 {-test}" 0 KiB
[ebuild  N 	] kde-frameworks/kcompletion-5.13.0:5/5.13::gentoo  USE="nls -debug -doc {-test}" 114 KiB
[ebuild  N 	] kde-frameworks/karchive-5.13.0:5/5.13::gentoo  USE="bzip2 lzma -debug -doc {-test}" 106 KiB
[ebuild  N 	] kde-frameworks/kdoctools-5.13.0:5/5.13::gentoo  USE="-debug -doc {-test}" 399 KiB
[ebuild  N 	] kde-frameworks/kservice-5.13.0:5/5.13::gentoo  USE="-debug -doc {-test}" 260 KiB
[ebuild 	U  ] media-gfx/imagemagick-6.9.2.0:0/6.9.2.0::gentoo [6.8.8.10-r1:0/6.8.8.10::gentoo] USE="X bzip2 cxx fontconfig* jpeg lcms openmp pango png svg tiff truetype xml zlib -autotrace -corefonts -djvu -fftw -fpx -graphviz -hdri -jbig -jpeg2k -lqr -lzma -opencl -openexr -perl -postscript -q32 -q64 -q8 -raw -static-libs {-test} -webp -wmf" 8,049 KiB
[ebuild 	U  ] media-plugins/gst-plugins-cdparanoia-1.4.5:1.0::gentoo [1.2.4-r1:1.0::gentoo] ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild  NS	] x11-libs/vte-0.40.2:2.91::gentoo [0.28.2-r206:0::gentoo, 0.36.3:2.90::gentoo] USE="crypt introspection -debug -glade -vala" 0 KiB
[ebuild 	U  ] lxqt-base/lxqt-globalkeys-0.9.0::gentoo [0.7.0::gentoo] 50 KiB
[ebuild  N 	] kde-frameworks/kjobwidgets-5.13.0:5/5.13::gentoo  USE="X nls -debug -doc {-test}" 87 KiB
[ebuild 	U  ] dev-cpp/eigen-3.2.5:3::gentoo [3.1.3:3::gentoo] USE="-debug -doc" 1,125 KiB
[ebuild 	U  ] x11-wm/openbox-3.6.1:3::gentoo [3.5.2-r1:3::gentoo] USE="branding imlib nls session startup-notification svg -debug -static-libs -xdg" PYTHON_TARGETS="python2_7" 941 KiB
[ebuild 	U  ] media-plugins/gst-plugins-v4l2-1.4.5:1.0::gentoo [1.2.4-r1:1.0::gentoo] USE="udev" ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild   R	] net-libs/libproxy-0.4.11-r2::gentoo  USE="gnome -kde* -mono -networkmanager -perl -python -spidermonkey {-test} -webkit" ABI_X86="32* (64) (-x32)" PYTHON_TARGETS="python2_7 (-python2_6%)" 92 KiB
[ebuild 	U  ] x11-libs/colord-gtk-0.1.26:0/1::gentoo [0.1.25:0/1::gentoo] USE="introspection -doc -vala" 274 KiB
[ebuild 	U  ] dev-libs/libdbusmenu-qt-0.9.3_pre20140619-r1::gentoo [0.9.2::gentoo] USE="qt4%* qt5%* -debug -doc {-test}" ABI_X86="32%* (64%*) (-x32)" 46 KiB
[ebuild 	U  ] dev-cpp/pangomm-2.36.0:1.4::gentoo [2.34.0:1.4::gentoo] USE="-doc" ABI_X86="32%* (64%*) (-x32)" 756 KiB
[ebuild  N 	] kde-frameworks/kguiaddons-5.13.0:5/5.13::gentoo  USE="-debug -doc {-test}" 39 KiB
[ebuild  NS	] dev-qt/qtsvg-5.4.2:5::gentoo [4.8.5:4::gentoo] USE="-debug {-test}" 1,752 KiB
[ebuild 	U  ] dev-python/pyatspi-2.16.0::gentoo [2.12.0::gentoo] PYTHON_TARGETS="python2_7 python3_3 python3_4%* (-python3_2%)" 295 KiB
[ebuild  N 	] media-plugins/gst-plugins-mad-1.4.5:1.0::gentoo  ABI_X86="32 (64) (-x32)" 0 KiB
[ebuild 	U  ] media-plugins/gst-plugins-flac-1.4.5:1.0::gentoo [1.2.4-r1:1.0::gentoo] ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] media-plugins/gst-plugins-taglib-1.4.5:1.0::gentoo [1.2.4-r1:1.0::gentoo] ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] dev-perl/Cairo-1.105.0::gentoo [1.103.0::gentoo] USE="{-test}" 107 KiB
[ebuild  N 	] kde-frameworks/kglobalaccel-5.13.0:5/5.13::gentoo  USE="nls -debug -doc {-test}" 80 KiB
[ebuild  N 	] kde-frameworks/sonnet-5.13.0:5/5.13::gentoo  USE="aspell nls -debug -doc -hunspell {-test}" 271 KiB
[ebuild  NS	] dev-qt/qtdeclarative-5.4.2-r1:5::gentoo [4.8.5:4::gentoo] USE="jit widgets xml -debug -gles2 -localstorage {-test}" 18,064 KiB
[ebuild  N 	] kde-frameworks/solid-5.13.0:5/5.13::gentoo  USE="nls -debug -doc {-test}" 260 KiB
[ebuild 	U  ] dev-libs/gdl-3.16.0:3/5::gentoo [3.12.0:3/5::gentoo] USE="introspection" 515 KiB
[ebuild 	U  ] dev-libs/qjson-0.8.1-r1::gentoo [0.8.1::gentoo] USE="-debug -doc {-test}" ABI_X86="32%* (64%*) (-x32)" 63 KiB
[ebuild  NS	] dev-qt/qtopengl-5.4.2:5::gentoo [4.8.5:4::gentoo] USE="-debug -gles2 {-test}" 0 KiB
[ebuild   R	] x11-libs/pangox-compat-0.0.2-r1::gentoo  ABI_X86="32* (64) (-x32)" 262 KiB
[ebuild 	U  ] app-accessibility/brltty-5.2::gentoo [5.0-r3::gentoo] USE="X api beeper bluetooth contracted-braille fm gpm iconv midi ncurses nls pcm python* speech usb -doc -icu -java -ocaml -tcl" PYTHON_TARGETS="python2_7 python3_3 python3_4%* (-python3_2%)" 2,474 KiB
[ebuild 	U  ] app-accessibility/orca-3.16.2::gentoo [3.12.2::gentoo] USE="braille%*" PYTHON_TARGETS="python3_3 python3_4%*" 2,031 KiB
[ebuild 	U  ] app-editors/emacs-24.5:24::gentoo [24.3-r6:24::gentoo] USE="X acl%* alsa dbus gif gpm gtk gtk3 inotify%* jpeg png svg tiff xpm zlib%* -Xaw3d (-aqua) -athena -games -gconf -gfile% -gnutls -gsettings -gzip-el -hesiod -imagemagick -kerberos -libxml2 -livecd* -m17n-lib -motif -pax_kernel (-selinux) -sound -source -toolkit-scroll-bars -wide-int -xft" 38,832 KiB
[ebuild 	U  ] media-plugins/gst-plugins-jpeg-1.4.5:1.0::gentoo [1.2.4-r1:1.0::gentoo] ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] net-wireless/wpa_supplicant-2.4-r4::gentoo [2.2-r1::gentoo] USE="dbus hs2-0%* qt4 readline ssl -ap -eap-sim -fasteap -gnutls -p2p (-ps3) (-selinux) -smartcard -tdls% -uncommon-eap-types% -wimax -wps" 2,467 KiB
[ebuild 	U  ] net-libs/glib-networking-2.44.0::gentoo [2.40.1-r1::gentoo] USE="gnome libproxy ssl -smartcard {-test}" ABI_X86="32* (64) (-x32)" 367 KiB
[ebuild 	U  ] net-libs/libsoup-2.50.0:2.4::gentoo [2.46.0-r1:2.4::gentoo] USE="introspection ssl -debug -samba {-test}" ABI_X86="32* (64) (-x32)" 1,714 KiB
[ebuild 	U  ] gnome-base/gvfs-1.24.2::gentoo [1.20.2::gentoo] USE="cdda gtk http udev udisks -afp -archive -bluray -fuse -gnome-online-accounts -gphoto2 -ios -libsecret -mtp -nfs% -samba -systemd {-test} -zeroconf% (-avahi%*)" 1,590 KiB
[ebuild 	U  ] app-misc/geoclue-2.2.0:2.0::gentoo [2.1.9:2.0::gentoo] USE="modemmanager" 331 KiB
[ebuild 	U  ] net-libs/libsoup-gnome-2.50.0:2.4::gentoo [2.46.0:2.4::gentoo] USE="introspection -debug" ABI_X86="32%* (64%*) (-x32)" 0 KiB
[ebuild 	U  ] sci-geosciences/geocode-glib-3.16.2::gentoo [3.12.2::gentoo] USE="introspection {-test}" 348 KiB
[ebuild 	U  ] dev-libs/libgweather-3.16.1:2/3-6::gentoo [3.12.2:2/3-6::gentoo] USE="introspection -glade -vala" 3,397 KiB
[ebuild 	U  ] net-libs/rest-0.7.93:0.7::gentoo [0.7.91:0.7::gentoo] USE="gnome introspection {-test}" ABI_X86="32%* (64%*) (-x32)" 314 KiB
[ebuild 	U  ] gnome-base/gnome-core-libs-3.16.0:3.0::gentoo [3.12.0:3.0::gentoo] USE="cups -python" 0 KiB
[ebuild 	U  ] net-libs/gssdp-0.14.11:0/3::gentoo [0.14.8-r1:0/3::gentoo] USE="gtk introspection" ABI_X86="32* (64) (-x32)" 286 KiB
[ebuild 	U  ] net-libs/gupnp-0.20.14:0/4::gentoo [0.20.12-r1:0/4::gentoo] USE="introspection -connman -networkmanager" ABI_X86="32* (64) (-x32)" PYTHON_TARGETS="python2_7 (-python2_6%)" 388 KiB
[ebuild 	U  ] media-libs/libchamplain-0.12.10-r1:0.12::gentoo [0.12.8:0.12::gentoo] USE="gtk introspection -debug -vala" 584 KiB
[ebuild 	U  ] media-plugins/gst-plugins-soup-1.4.5:1.0::gentoo [1.2.4-r1:1.0::gentoo] ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] app-editors/gedit-3.16.3::gentoo [3.12.2::gentoo] USE="introspection python spell {-test} -vala% (-zeitgeist%)" PYTHON_TARGETS="python3_4%* -python3_3* (-python3_2%)" 2,856 KiB
[ebuild 	U  ] dev-python/pycups-1.9.73::gentoo [1.9.66::gentoo] USE="-doc -examples" PYTHON_TARGETS="python2_7 python3_4%* -pypy -python3_3* (-pypy2_0%) (-python2_6%) (-python3_2%)" 52 KiB
[ebuild   R	] media-libs/libquvi-0.9.4-r1:0/8::gentoo  USE="nls -examples -static-libs" ABI_X86="32* (64) (-x32)" 365 KiB
[ebuild 	U  ] dev-libs/totem-pl-parser-3.10.5:0/18::gentoo [3.10.2:0/18::gentoo] USE="crypt introspection quvi -archive {-test}" 1,558 KiB
[ebuild 	U  ] media-libs/grilo-0.2.12:0.2/1::gentoo [0.2.10:0.2/1::gentoo] USE="gtk introspection network playlist -examples {-test} -vala" 603 KiB
[ebuild   R	] dev-libs/libattica-0.4.2::gentoo  USE="-debug {-test} (-qt4%*) (-qt5%)" 56 KiB
[ebuild   R	] app-misc/strigi-0.7.8-r1::gentoo  USE="clucene dbus exif inotify* qt4 -debug (-fam*) -ffmpeg -libav% (-log) {-test}" 792 KiB
[ebuild 	U  ] net-libs/libssh-0.7.1:0/4::gentoo [0.6.3-r1:0/4::gentoo] USE="sftp zlib -debug -doc -examples -gcrypt -gssapi -pcap -server -ssh1 -static-libs {-test}" ABI_X86="32* (64) (-x32)" 342 KiB
[ebuild 	U  ] net-libs/gupnp-igd-0.2.4::gentoo [0.2.3-r1::gentoo] USE="introspection -python" ABI_X86="32* (64) (-x32)" PYTHON_TARGETS="python2_7" 266 KiB
[ebuild 	U  ] net-libs/libnice-0.1.13::gentoo [0.1.7::gentoo] USE="introspection%* upnp" ABI_X86="32* (64) (-x32)" 891 KiB
[ebuild 	U  ] x11-misc/obconf-qt-0.9.0_p20150729::gentoo [0.1.0::gentoo] 95 KiB
[ebuild 	U  ] lxqt-base/lxqt-about-0.9.0::gentoo [0.7.0::gentoo] 11 KiB
[ebuild 	U  ] lxqt-base/lxqt-policykit-0.9.0::gentoo [0.7.0-r1::gentoo] 14 KiB
[ebuild 	U  ] lxqt-base/lxqt-qtplugin-0.9.0::gentoo [0.7.0::gentoo] 16 KiB
[ebuild 	U  ] lxqt-base/lxqt-config-0.9.0::gentoo [0.7.0-r1::gentoo] 137 KiB
[ebuild 	U  ] lxqt-base/liblxqt-mount-0.9.0::gentoo [0.7.0::gentoo] USE="udisks%*" 17 KiB
[ebuild  N 	] gnome-base/dconf-editor-3.16.1::gentoo  250 KiB
[ebuild 	U  ] media-gfx/gnome-font-viewer-3.16.2::gentoo [3.12.0::gentoo] 300 KiB
[ebuild 	U  ] sys-apps/baobab-3.16.1::gentoo [3.12.1::gentoo] 860 KiB
[ebuild 	U  ] gnome-extra/gnome-calculator-3.16.2::gentoo [3.12.3::gentoo] 1,404 KiB
[ebuild 	U  ] gnome-extra/nautilus-sendto-3.8.2::gentoo [3.8.1::gentoo] USE="introspection -debug" 335 KiB
[ebuild 	U  ] app-dicts/gnome-dictionary-3.16.2:0/8::gentoo [3.10.0:0/6::gentoo] USE="introspection%* ipv6 -debug" 828 KiB
[ebuild 	U  ] gnome-extra/gucharmap-3.16.2:2.90::gentoo [3.12.1:2.90::gentoo] USE="introspection -cjk -debug {-test} -vala" 1,950 KiB
[ebuild  N 	] media-libs/gupnp-dlna-0.10.3:2.0::gentoo  USE="introspection" 321 KiB
[ebuild 	U  ] sys-libs/libosinfo-0.2.12::gentoo [0.2.10::gentoo] USE="introspection vala {-test}" 1,908 KiB
[ebuild  N 	] net-libs/dleyna-core-0.5.0:1.0/4::gentoo  330 KiB
[ebuild  N 	] net-libs/dleyna-connector-dbus-0.2.0:1.0::gentoo  317 KiB
[ebuild 	U  ] media-plugins/gst-plugins-dvdread-1.4.5:1.0::gentoo [1.2.4-r1:1.0::gentoo] ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] media-plugins/gst-plugins-a52dec-1.4.5:1.0::gentoo [1.2.4-r1:1.0::gentoo] USE="orc" ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] media-plugins/gst-plugins-vpx-1.4.5:1.0::gentoo [1.2.4-r1:1.0::gentoo] ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] dev-cpp/gtkmm-3.16.0:3.0::gentoo [3.12.0:3.0::gentoo] USE="X (-aqua) -doc -examples {-test} -wayland" ABI_X86="32%* (64%*) (-x32)" 11,200 KiB
[ebuild 	U  ] gnome-extra/gnome-system-monitor-3.16.0::gentoo [3.12.2::gentoo] USE="X -systemd" 836 KiB
[ebuild 	U  ] media-gfx/eog-3.16.3:1::gentoo [3.12.2:1::gentoo] USE="exif introspection jpeg lcms svg tiff -debug -xmp" 4,206 KiB
[ebuild 	U  ] app-crypt/seahorse-3.16.0-r1::gentoo [3.12.2::gentoo] USE="ldap -debug -zeroconf% (-avahi%*)" 1,462 KiB
[ebuild 	U  ] media-plugins/gst-plugins-libnice-0.1.13-r100:1.0::gentoo [0.1.7-r100:1.0::gentoo] ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild   R	] dev-games/physfs-2.0.3-r1::gentoo  USE="zip -doc -grp -hog -mvl -qpak -static-libs -wad" ABI_X86="32* (64) (-x32)" 548 KiB
[ebuild   R	] net-print/libgnomecups-0.2.3-r5::gentoo  USE="-debug" ABI_X86="32* (64) (-x32)" 349 KiB
[ebuild   R	] gnome-base/libgnomeprint-2.18.8-r1:2.2::gentoo  USE="cups -doc" ABI_X86="32* (64) (-x32)" 860 KiB
[ebuild 	U  ] gnome-extra/libgda-5.2.4:5/4::gentoo [5.2.2:5/4::gentoo] USE="berkdb gnome-keyring%* gtk introspection ldap ssl -canvas -debug (-firebird) -graphviz -http -java -json -mdb -mysql -oci8 -postgres -reports -sourceview -vala% (-bindist%*) (-libsecret%)" PYTHON_SINGLE_TARGET="(-python2_6%) (-python2_7%*)" PYTHON_TARGETS="python2_7 (-python2_6%)" 12,032 KiB
[ebuild 	U  ] dev-util/anjuta-3.16.0::gentoo [3.12.0::gentoo] USE="introspection -debug -devhelp -glade (-packagekit) -subversion -terminal {-test} -vala" PYTHON_SINGLE_TARGET="(-python2_6%) (-python2_7%*)" PYTHON_TARGETS="python2_7 (-python2_6%)" 6,165 KiB
[ebuild 	U  ] media-libs/taglib-extras-1.0.1-r1::gentoo [1.0.1::gentoo] USE="-debug" 31 KiB
[ebuild  N 	] kde-frameworks/kemoticons-5.13.0:5/5.13::gentoo  USE="-debug -doc {-test}" 93 KiB
[ebuild  N 	] kde-frameworks/kidletime-5.13.0:5/5.13::gentoo  USE="-debug -doc" 26 KiB
[ebuild 	U  ] dev-qt/qtsingleapplication-2.6.1_p20150629::gentoo [2.6.1_p20130904-r1::gentoo] USE="X qt4%* -doc -qt5%" 0 KiB
[ebuild 	U  ] app-text/podofo-0.9.3::gentoo [0.9.2::gentoo] USE="boost -debug -idn {-test}" 1,109 KiB
[ebuild  N 	] dev-qt/qtquickcontrols-5.4.2:5::gentoo  USE="widgets -debug {-test}" 929 KiB
[ebuild  NS	] dev-qt/designer-5.4.2:5::gentoo [4.8.5:4::gentoo] USE="-debug -declarative {-test} -webkit" 0 KiB
[ebuild  N 	] dev-qt/linguist-5.4.2:5::gentoo  USE="-debug {-test}" 0 KiB
[ebuild 	U  ] media-libs/lensfun-0.3.1::gentoo [0.2.8-r1::gentoo] USE="-doc {-test%} (-sse%*) (-sse2%*)" CPU_FLAGS_X86="sse%* sse2%*" PYTHON_SINGLE_TARGET="(-python2_7%*)" PYTHON_TARGETS="python2_7" 745 KiB
[ebuild 	U  ] dev-qt/qtmultimedia-4.8.7:4::gentoo [4.8.5:4::gentoo] USE="alsa exceptions (-aqua) -debug -pch" ABI_X86="32%* (64%*) (-x32)" 0 KiB
[blocks b  	] <dev-qt/qtmultimedia-4.8.6:4 ("<dev-qt/qtmultimedia-4.8.6:4" is blocking dev-qt/qtchooser-0_p20150102)
[ebuild  NS	] media-plugins/gst-plugins-taglib-0.10.31-r1:0.10::gentoo [1.2.4-r1:1.0::gentoo] ABI_X86="32 (64) (-x32)" 0 KiB
[ebuild   R	] dev-libs/yajl-2.0.4-r3::gentoo  USE="-static-libs" ABI_X86="32* (64) (-x32)" 81 KiB
[ebuild   R	] media-libs/soxr-0.1.1::gentoo  USE="-examples" ABI_X86="32* (64) (-x32)" 79 KiB
[ebuild 	U  ] media-gfx/uniconvertor-2.0_pre379-r1::gentoo [1.1.5-r1::gentoo] PYTHON_TARGETS="python2_7 (-python2_6%)" 1,802 KiB
[ebuild  N 	] x11-libs/libcryptui-3.12.2::gentoo  USE="introspection libnotify -debug" 1,137 KiB
[ebuild   R	] media-libs/glu-9.0.0-r1::gentoo  USE="-static-libs" ABI_X86="32* (64) (-x32)" 482 KiB
[ebuild   R	] virtual/glu-9.0-r1::gentoo  ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] media-libs/libsdl-1.2.15-r9::gentoo [1.2.15-r8::gentoo] USE="X alsa joystick opengl sound video xv -aalib -custom-cflags -dga -fbcon -libcaca -nas -oss -pulseaudio -static-libs -tslib -xinerama" ABI_X86="32* (64) (-x32)" 3,829 KiB
[ebuild 	U  ] media-libs/gst-plugins-bad-1.4.5:1.0::gentoo [1.2.4-r1:1.0::gentoo] USE="X%* introspection nls opengl%* orc -egl -gles2% -vnc -wayland%" ABI_X86="32* (64) (-x32)" 3,736 KiB
[ebuild 	U  ] media-video/ffmpeg-2.7.2:0/54.56.56::gentoo [2.3:0/52.55.55::gentoo] USE="X aac alsa bzip2 encode fontconfig* gpl%* hardcoded-tables iconv mp3* network opengl postproc%* sdl theora* threads* truetype vorbis xcb%* zlib -aacplus (-altivec) -amr -amrenc (-armv5te) (-armv6) (-armv6t2) (-armvfp) -bluray -bs2b -cdio -celt -cpudetection -debug -doc -examples -faac -fdk -flite -frei0r -fribidi -gme -gnutls -gsm -iec61883 -ieee1394 -jack -jpeg2k -ladspa -libass -libcaca -librtmp% -libsoxr -libv4l -lzma% (-mipsdspr1) (-mipsdspr2) (-mipsfpu) -modplug (-neon) -openal -openssl -opus -oss -pic -pulseaudio -quvi -samba -schroedinger -speex -ssh -static-libs {-test} -twolame -v4l -vaapi -vdpau -vpx -wavpack -webp -x264 -x265 -xvid -zvbi (-3dnow%) (-3dnowext%) (-avx%) (-avx2%) (-bindist%*) (-fma3%) (-fma4%) (-mips32r2%) (-mmx%*) (-mmxext%) (-rtmp%) (-sse%*) (-sse2%*) (-sse3%) (-sse4%) (-sse4_2%) (-ssse3%) (-xop%)" ABI_X86="32* (64) (-x32)" CPU_FLAGS_X86="3dnow%* 3dnowext%* mmx%* mmxext%* sse%* sse2%* sse3%* -avx% -avx2% -fma3% -fma4% -sse4_1% -sse4_2% -ssse3% -xop%" FFTOOLS="aviocat cws2fws ffescape ffeval ffhash fourcc2pixfmt graph2dot ismindex pktdumper qt-faststart trasher" 7,967 KiB
[ebuild   R	] media-libs/sdl-mixer-1.2.12-r4::gentoo  USE="flac mad* mp3* vorbis wav -fluidsynth -midi -mikmod -mod -modplug -playtools -smpeg -static-libs -timidity" ABI_X86="32* (64) (-x32)" 3,621 KiB
[ebuild 	U  ] media-libs/freeglut-3.0.0::gentoo [2.8.1-r1::gentoo] USE="-debug -static-libs" ABI_X86="32* (64) (-x32)" 410 KiB
[ebuild   R	] media-libs/libmpeg2-0.5.1-r2::gentoo  USE="X sdl -static-libs" ABI_X86="32* (64) (-x32)" 513 KiB
[ebuild   R	] media-sound/mpg123-1.22.4::gentoo  USE="alsa ipv6 portaudio* sdl (-altivec) (-coreaudio) -int-quality -jack -nas -oss -pulseaudio" ABI_X86="32* (64) (-x32)" CPU_FLAGS_X86="sse (-3dnow) (-3dnowext) (-mmx)" 0 KiB
[ebuild 	U  ] media-libs/clutter-gst-2.0.16:2.0::gentoo [2.0.12:2.0::gentoo] USE="introspection -debug -examples" 350 KiB
[ebuild 	U  ] media-libs/libwebp-0.4.2:0/5::gentoo [0.4.0:0/5::gentoo] USE="gif jpeg opengl png tiff -experimental -static-libs -swap-16bit-csp" ABI_X86="32* (64) (-x32)" 955 KiB
[ebuild 	U  ] media-libs/glew-1.13.0:0/1.13::gentoo [1.10.0-r2:0/1.10::gentoo] USE="-doc -static-libs" ABI_X86="32* (64) (-x32)" 602 KiB
[ebuild 	U  ] net-libs/farstream-0.2.7:0.2/5::gentoo [0.2.4:0.2/0.2::gentoo] USE="introspection {-test} -upnp (-msn%)" 1,279 KiB
[ebuild   R	] media-libs/sdl-image-1.2.12-r1::gentoo  USE="gif jpeg png tiff -static-libs -webp" ABI_X86="32* (64) (-x32)" 2,179 KiB
[ebuild 	U  ] app-emulation/wine-1.7.50::gentoo [1.7.33::gentoo] USE="X alsa cups fontconfig gecko jpeg lcms ldap mono mp3* ncurses nls opengl perl png prelink realtime run-exes ssl threads truetype udisks xcomposite* xml -capi -custom-cflags -dos -gphoto2 -gsm -gstreamer -netapi -odbc -openal -opencl -osmesa -oss -pcap -pipelight -pulseaudio -s3tc% -samba -scanner (-selinux) -staging% {-test} -v4l -vaapi% -xinerama" ABI_X86="32 64 (-x32)" LINGUAS="ar bg ca cs da de el en eo es fa fi fr he hi hr hu it ja ko lt ml nl or pa pl pt_BR ro ru sk sl sv te th tr uk wa zh_CN zh_TW -en_US -nb_NO -pt_PT -rm -sr_RS@cyrillic -sr_RS@latin" 137,867 KiB
[ebuild 	U  ] x11-apps/mesa-progs-8.2.0::gentoo [8.1.0::gentoo] USE="-egl -gles2 (-gles1%)" 9,836 KiB
[ebuild   R	] media-plugins/gst-plugins-mpeg2dec-0.10.19-r1:0.10::gentoo  ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] media-plugins/gst-plugins-meta-0.10-r10:0.10::gentoo [0.10-r9:0.10::gentoo] USE="X aac alsa cdda dts dvd flac mp3* mpeg ogg vorbis xv -a52 -dv -dvb -ffmpeg -http -jack -lame -libass -libvisual -mms -modplug% -musepack -opus -oss -pulseaudio -taglib -theora -v4l -vcd -vpx -wavpack -x264 -xvid" ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] media-plugins/gst-plugins-dts-1.4.5:1.0::gentoo [1.2.4-r1:1.0::gentoo] USE="orc" ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] media-plugins/gst-plugins-resindvd-1.4.5:1.0::gentoo [1.2.4-r1:1.0::gentoo] ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] media-plugins/gst-plugins-mpeg2dec-1.4.5:1.0::gentoo [1.2.4-r1:1.0::gentoo] ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] media-plugins/gst-plugins-faad-1.4.5-r1:1.0::gentoo [1.2.4-r1:1.0::gentoo] ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] media-plugins/gst-plugins-meta-1.0-r3:1.0::gentoo [1.0-r2:1.0::gentoo] USE="X aac alsa cdda dts dvd flac mp3* mpeg ogg vorbis -a52 -dv -dvb -ffmpeg -http -jack -lame -libass -libvisual -mms -modplug% -opus -oss -pulseaudio -taglib -theora -v4l -vaapi% -vcd -vpx -wavpack -x264" ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild  NS	] media-libs/gegl-0.3.0:0.3::gentoo [0.2.0-r2:0::gentoo] USE="cairo introspection jpeg lcms png sdl svg -debug -ffmpeg -jpeg2k -lensfun -libav -openexr -raw {-test} -umfpack -v4l -vala -webp" CPU_FLAGS_X86="mmx sse" 5,336 KiB
[ebuild  NS	] media-libs/clutter-gst-3.0.10:3.0::gentoo [2.0.12:2.0::gentoo] USE="introspection -debug -examples" 383 KiB
[ebuild   R	] media-libs/sdl-ttf-2.0.11-r1::gentoo  USE="X -static-libs" ABI_X86="32* (64) (-x32)" 3,959 KiB
[ebuild 	U  ] media-libs/sdl-gfx-2.0.25::gentoo [2.0.24-r1::gentoo] USE="-doc -static-libs (-mmx%)" ABI_X86="32* (64) (-x32)" CPU_FLAGS_X86="(-mmx)" 1,720 KiB
[ebuild   R	] media-libs/sdl-net-1.2.8-r1::gentoo  USE="-static-libs" ABI_X86="32* (64) (-x32)" 353 KiB
[ebuild   R	] media-libs/gegl-0.2.0-r2::gentoo  USE="cairo jpeg png sdl svg -debug -ffmpeg -jpeg2k -lensfun -libav% -openexr -raw -umfpack (-mmx%*) (-sse%*)" CPU_FLAGS_X86="mmx%* sse%*" 7,327 KiB
[ebuild 	U  ] media-plugins/gst-plugins-libmms-1.4.5:1.0::gentoo [1.2.4-r1:1.0::gentoo] ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] media-libs/xine-lib-1.2.6-r1:1::gentoo [1.2.6:1::gentoo] USE="X aac alsa css dts flac gtk ipv6 jpeg mad mmap mng nls opengl sdl truetype vorbis xcb xv -a52 -aalib (-altivec) -bluray -directfb -dvb -dxr3 -fbcon -fusion -imagemagick -jack -libav% -libcaca -modplug -musepack -oss -pulseaudio -samba -speex -theora -v4l -vaapi -vcd -vdpau -vdr (-vidix) (-vis) -vpx -wavpack -xinerama -xvmc" 4,904 KiB
[ebuild 	U  ] media-libs/jasper-1.900.1-r9::gentoo [1.900.1-r6::gentoo] USE="jpeg opengl -static-libs" ABI_X86="32* (64) (-x32)" 1,409 KiB
[ebuild 	U  ] media-plugins/gst-plugins-ffmpeg-0.10.13_p201211-r4:0.10::gentoo [0.10.13_p201211-r3:0.10::gentoo] USE="orc -libav" ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] virtual/ffmpeg-9-r2::gentoo [9-r1::gentoo] USE="X encode mp3* sdl truetype -gsm -jpeg2k -libav% -opus -speex -theora -threads -vaapi -vdpau -x264" ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild   R	] media-video/transcode-1.1.7-r3::gentoo  USE="X aac alsa dvd iconv jpeg mp3* mpeg ogg sdl truetype vorbis xml -a52 (-altivec) -dv -imagemagick -lzo -mjpeg (-nuv) -oss (-pic) -postproc -quicktime -theora -v4l -x264 -xvid (-3dnow%) (-mmx%*) (-sse%*) (-sse2%*)" CPU_FLAGS_X86="3dnow%* mmx%* sse%* sse2%*" 2,133 KiB
[ebuild 	U  ] media-libs/libass-0.12.3:0/5::gentoo [0.11.2:0/5::gentoo] USE="enca fontconfig harfbuzz -static-libs" ABI_X86="32* (64) (-x32)" 307 KiB
[ebuild 	U  ] media-plugins/gst-plugins-libnice-0.1.13:0.10::gentoo [0.1.7:0.10::gentoo] ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] net-libs/farstream-0.1.2-r2:0.1::gentoo [0.1.2-r1:0.1::gentoo] USE="introspection -python {-test} -upnp (-msn%)" PYTHON_TARGETS="python2_7%*" 1,237 KiB
[ebuild 	U  ] net-libs/telepathy-glib-0.24.1::gentoo [0.24.0::gentoo] USE="introspection vala -debug {-test}" PYTHON_TARGETS="python2_7 (-python2_6%)" 3,807 KiB
[ebuild 	U  ] net-im/telepathy-mission-control-5.16.3::gentoo [5.16.2::gentoo] USE="systemd upower -debug -networkmanager" 1,071 KiB
[ebuild 	U  ] net-im/telepathy-logger-0.8.2:0/3::gentoo [0.8.0:0/3::gentoo] USE="introspection {-test}" 550 KiB
[ebuild 	U  ] net-misc/vino-3.16.0::gentoo [3.12.0::gentoo] USE="crypt ipv6 jpeg ssl telepathy zlib -debug -libsecret% -zeroconf% (-avahi%*) (-gnome-keyring%*) (-networkmanager%)" 743 KiB
[ebuild 	U  ] net-libs/telepathy-farstream-0.6.2:0/3::gentoo [0.6.1:0/3::gentoo] USE="introspection -examples" 588 KiB
[ebuild 	U  ] gnome-base/nautilus-3.16.2::gentoo [3.12.2::gentoo] USE="exif gnome introspection previewer (-packagekit) -sendto {-test} -tracker -xmp (-debug%)" 3,248 KiB
[ebuild 	U  ] app-text/evince-3.16.1:0/evd3.4-evv3.3::gentoo [3.12.1:0/evd3.4-evv3.3::gentoo] USE="gnome%* introspection nautilus postscript tiff -debug -djvu -dvi -libsecret -nsplugin% -t1lib -xps" 3,041 KiB
[ebuild 	U  ] app-arch/file-roller-3.16.4::gentoo [3.12.2::gentoo] USE="nautilus (-packagekit)" 1,380 KiB
[ebuild 	U  ] media-libs/phonon-4.8.3-r1::gentoo [4.7.2::gentoo] USE="qt4 qt5* vlc* (-aqua) -debug -designer -gstreamer* -pulseaudio (-zeitgeist)" ABI_X86="32%* (64%*) (-x32)" 315 KiB
[ebuild  N 	] media-libs/phonon-vlc-0.8.2::gentoo  USE="qt4 qt5 -debug" 59 KiB
[ebuild 	U  ] media-video/vlc-2.2.1:0/5-8::gentoo [2.1.4:0/5-7::gentoo] USE="X alsa avcodec avformat cdda dbus dts dvbpsi dvd encode ffmpeg flac fontconfig* gcrypt gnome jpeg%* libnotify libsamplerate* mp3* mpeg ncurses ogg opengl png qt4 sdl svg swscale truetype udev vorbis xcb xml xv -a52 -aalib (-altivec) -atmo (-audioqueue) -bidi -bluray -cddb -chromaprint -dc1394 -debug -directfb (-directx) -dvb (-dxva2) -faad -fdk -fluidsynth -gme -gnutls -growl -httpd -ieee1394 -jack -kate -kde* -libass -libav% -libcaca -libtar -libtiger -linsys -lirc -live -lua (-macosx-dialog-provider) (-macosx-eyetv) (-macosx-qtkit) (-macosx-quartztext) -matroska (-media-library) -modplug -mtp -musepack (-neon) -omxil -opencv -optimisememory -opus -postproc* -projectm -pulseaudio -qt5 -rdp -rtsp -run-as-root -samba -schroedinger -sdl-image -sftp -shout -sid -skins -speex -taglib {-test} -theora -tremor -twolame -upnp -v4l -vaapi -vcdx -vdpau -vlm -vnc -vpx% -wma-fixed -x264 -x265% -zeroconf% -zvbi (-avahi%*) (-dirac%) (-egl%) (-ios-vout%) (-macosx%) (-macosx-audio%) (-macosx-vout%) (-mmx%*) (-sse%*)" CPU_FLAGS_X86="mmx%* sse%*" 20,450 KiB
[ebuild  N 	] kde-frameworks/knotifications-5.13.0:5/5.13::gentoo  USE="X dbus nls -debug -doc" 91 KiB
[ebuild 	U  ] media-sound/pulseaudio-6.0::gentoo [5.0-r2::gentoo] USE="X alsa alsa-plugin%* asyncns bluetooth caps dbus gdbm glib gnome gtk ipv6 orc qt4 ssl tcpd udev webrtc-aec -doc -equalizer -jack -libsamplerate -lirc -native-headset% (-neon) -ofono-headset% (-oss) -realtime (-selinux) (-system-wide) -systemd {-test} -xen -zeroconf% (-avahi%*)" ABI_X86="32* (64) (-x32)" 1,435 KiB
[ebuild 	U  ] media-plugins/alsa-plugins-1.0.29-r1::gentoo [1.0.28::gentoo] USE="pulseaudio -debug -ffmpeg -jack -libav% -libsamplerate -speex" ABI_X86="32* (64) (-x32)" 358 KiB
[ebuild 	U  ] lxqt-base/lxqt-common-0.9.1::gentoo [0.7.0::gentoo] 3,894 KiB
[ebuild 	U  ] lxqt-base/lxqt-session-0.9.0-r1::gentoo [0.7.0-r1::gentoo] 56 KiB
[ebuild 	U  ] lxqt-base/lxqt-notificationd-0.9.0-r1::gentoo [0.7.0::gentoo] 37 KiB
[ebuild 	U  ] x11-misc/lightdm-1.14.2::gentoo [1.12.2::gentoo] USE="gnome%* gtk introspection qt4 -kde" 468 KiB
[ebuild  N 	] kde-frameworks/kauth-5.13.0:5/5.13::gentoo  USE="nls policykit -debug -doc {-test}" 81 KiB
[ebuild  N 	] kde-frameworks/kconfigwidgets-5.13.0:5/5.13::gentoo  USE="-debug -doc {-test}" 351 KiB
[ebuild  N 	] kde-frameworks/kiconthemes-5.13.0:5/5.13::gentoo  USE="-debug -doc {-test}" 191 KiB
[ebuild  N 	] kde-frameworks/ktextwidgets-5.13.0:5/5.13::gentoo  USE="-debug -doc {-test}" 299 KiB
[ebuild  N 	] kde-frameworks/kxmlgui-5.13.0:5/5.13::gentoo  USE="-attica -debug -doc {-test}" 843 KiB
[ebuild  N 	] kde-frameworks/kbookmarks-5.13.0:5/5.13::gentoo  USE="nls -debug -doc {-test}" 113 KiB
[ebuild  N 	] kde-frameworks/kwallet-5.13.0-r1:5/5.13::gentoo  USE="-debug -doc (-gpg) {-test}" 277 KiB
[ebuild  N 	] kde-frameworks/kio-5.13.0:5/5.13::gentoo  USE="X acl -debug -doc -kerberos {-test}" 2,782 KiB
[ebuild  N 	] kde-frameworks/kinit-5.13.0:5/5.13::gentoo  USE="caps -debug -doc" 115 KiB
[ebuild  N 	] kde-frameworks/kded-5.13.0:5/5.13::gentoo  USE="-debug -doc" 36 KiB
[ebuild  N 	] kde-frameworks/kparts-5.13.0:5/5.13::gentoo  USE="-debug -doc {-test}" 151 KiB
[ebuild  N 	] kde-frameworks/knotifyconfig-5.13.0:5/5.13::gentoo  USE="-debug -doc -phonon" 81 KiB
[ebuild 	U  ] x11-libs/gtk+-2.24.28-r1:2::gentoo [2.24.24:2::gentoo] USE="cups introspection (-aqua) -debug -examples {-test} -vim-syntax -xinerama" ABI_X86="32* (64) (-x32)" 13,042 KiB
[blocks b  	] <x11-libs/gtk+-2.24.28-r1:2 ("<x11-libs/gtk+-2.24.28-r1:2" is blocking dev-util/gtk-update-icon-cache-3.16.5)
[uninstall 	] dev-util/gtk-builder-convert-2.24.24::gentoo  PYTHON_SINGLE_TARGET="python2_7 -python2_6" PYTHON_TARGETS="python2_7 -python2_6" 
[blocks b  	] <dev-util/gtk-builder-convert-2.24.28 ("<dev-util/gtk-builder-convert-2.24.28" is blocking x11-libs/gtk+-2.24.28-r1)
[ebuild 	U  ] media-libs/libcanberra-0.30-r5::gentoo [0.30-r1::gentoo] USE="alsa gnome gtk gtk3 sound udev -gstreamer -oss -pulseaudio -tdb" ABI_X86="32%* (64%*) (-x32)" 312 KiB
[ebuild 	U  ] xfce-base/libxfce4ui-4.12.1-r2::gentoo [4.11.1::gentoo] USE="gtk3%* startup-notification -debug (-glade%)" 651 KiB
[ebuild 	U  ] xfce-base/exo-0.10.6-r1::gentoo [0.10.2-r1::gentoo] USE="-debug" 1,247 KiB
[ebuild  NS	] net-libs/webkit-gtk-2.8.5:4/37::gentoo [2.4.4:3/25::gentoo] USE="(X) egl geoloc gstreamer introspection jit opengl spell webgl -coverage -doc -gles2 -libsecret {-test} (-wayland)" 10,211 KiB
[ebuild 	U  ] net-dns/avahi-0.6.31-r8::gentoo [0.6.31-r5::gentoo] USE="autoipd dbus gdbm gtk gtk3 introspection ipv6 mdnsresponder-compat* nls qt4 -bookmarks -doc -howl-compat -mono -python (-selinux) {-test} -utils" ABI_X86="32* (64) (-x32)" PYTHON_TARGETS="python2_7 (-python2_6%)" 1,239 KiB
[ebuild   R	] x11-libs/libwnck-2.31.0:1::gentoo  USE="introspection startup-notification (-doc%)" 617 KiB
[ebuild   R	] gnome-base/libglade-2.6.4-r2:2.0::gentoo  USE="-static-libs {-test} -tools" ABI_X86="32* (64) (-x32)" PYTHON_SINGLE_TARGET="python2_7 -pypy" PYTHON_TARGETS="python2_7 -pypy" 348 KiB
[ebuild   R	] dev-python/pygtk-2.24.0-r4:2::gentoo  USE="-doc -examples {-test}" PYTHON_TARGETS="python2_7 (-python2_6%)" 2,306 KiB
[ebuild 	U  ] x11-themes/gnome-themes-standard-3.16.2::gentoo [3.12.0::gentoo] USE="gtk" ABI_X86="32%* (64%*) (-x32)" 2,800 KiB
[blocks b  	] <x11-themes/gnome-themes-standard-3.14 ("<x11-themes/gnome-themes-standard-3.14" is blocking games-board/iagno-3.16.1, games-board/gnome-mines-3.16.1, x11-themes/adwaita-icon-theme-3.16.2.1, x11-themes/gnome-backgrounds-3.16.0, games-puzzle/five-or-more-3.16.1)                                                                                                    	
[ebuild 	U  ] gnome-base/gnome-settings-daemon-3.16.3::gentoo [3.12.2::gentoo] USE="colord cups policykit short-touchpad-timeout udev -debug -networkmanager% (-openrc-force) -smartcard {-test} -wayland% (-i18n%*) (-packagekit%)" INPUT_DEVICES="-wacom" PYTHON_TARGETS="python2_7%* python3_4%* -python3_3%" 1,614 KiB
[ebuild 	U  ] gnome-base/gnome-session-3.16.0::gentoo [3.12.1::gentoo] USE="ipv6 -debug -doc -gconf -systemd" 747 KiB
[ebuild 	U  ] xfce-base/garcon-0.5.0-r2::gentoo [0.3.0::gentoo] USE="-debug" 447 KiB
[ebuild 	U  ] xfce-base/xfce4-panel-4.12.0-r1::gentoo [4.11.1::gentoo] USE="-debug" 1,082 KiB
[ebuild 	U  ] net-libs/webkit-gtk-2.4.9:3/25::gentoo [2.4.4:3/25::gentoo] USE="X egl geoloc gstreamer introspection jit opengl spell webgl (-aqua) -coverage -debug -gles2 -libsecret {-test} -wayland" 9,611 KiB
[ebuild 	U  ] app-cdr/brasero-3.12.1:0/3.1::gentoo [3.11.3:0/3.1::gentoo] USE="css introspection libburn mp3* nautilus (-packagekit) -playlist {-test} -tracker" 3,598 KiB
[ebuild   R	] gnome-base/libgnomecanvas-2.30.3-r1::gentoo  USE="-glade {-test}" ABI_X86="32* (64) (-x32)" 561 KiB
[ebuild 	U  ] gnome-extra/libgsf-1.14.34:0/114::gentoo [1.14.30:0/114::gentoo] USE="bzip2 gtk introspection" 596 KiB
[ebuild 	U  ] app-i18n/ibus-1.5.11::gentoo [1.5.5::gentoo] USE="X gtk gtk3 introspection nls python -deprecated -gconf {-test} -vala -wayland" PYTHON_SINGLE_TARGET="(-python2_6%) (-python2_7%*)" PYTHON_TARGETS="python2_7 (-python2_6%)" 2,127 KiB
[ebuild   R	] gnome-base/libgnome-2.32.1-r1::gentoo  USE="branding -debug (-doc%)" 2,137 KiB
[ebuild 	U  ] gnome-extra/sushi-3.16.0::gentoo [3.12.0::gentoo] USE="-office" 276 KiB
[ebuild 	U  ] net-dialup/ppp-2.4.7-r1:0/2.4.7::gentoo [2.4.6-r3:0/2.4.6::gentoo] USE="atm gtk ipv6 pam -activefilter -dhcp -eap-tls -radius" 742 KiB
[blocks b  	] <net-dialup/ppp-2.4.7-r1 ("<net-dialup/ppp-2.4.7-r1" is blocking net-dialup/ppp-scripts-0)
[ebuild 	U  ] dev-cpp/gtkmm-2.24.4-r2:2.4::gentoo [2.24.4:2.4::gentoo] USE="-doc -examples {-test}" ABI_X86="32%* (64%*) (-x32)" 10,022 KiB
[ebuild 	U  ] app-accessibility/caribou-0.4.18.1::gentoo [0.4.13::gentoo] PYTHON_TARGETS="python2_7" 401 KiB
[ebuild 	U  ] gnome-extra/zenity-3.16.3::gentoo [3.12.1::gentoo] USE="libnotify webkit -debug {-test}" 3,788 KiB
[ebuild 	U  ] x11-wm/mutter-3.16.3::gentoo [3.12.2::gentoo] USE="introspection kms%* -debug {-test} -wayland%" 1,514 KiB
[ebuild 	U  ] x11-libs/goffice-0.10.23:0.10::gentoo [0.10.17:0.10::gentoo] USE="introspection" 2,302 KiB
[ebuild 	U  ] xfce-base/thunar-1.6.10-r1::gentoo [1.6.3::gentoo] USE="dbus exif libnotify pcre udisks -debug {-test} (-startup-notification%*)" XFCE_PLUGINS="-trash" 1,904 KiB
[ebuild 	U  ] x11-misc/xscreensaver-5.33::gentoo [5.29::gentoo] USE="jpeg opengl pam perl -gdm -new-login (-selinux) -suid -xinerama" 10,475 KiB
[ebuild 	U  ] net-dialup/rp-pppoe-3.11-r3::gentoo [3.11-r1::gentoo] USE="-tk% (-X%*)" 219 KiB
[ebuild 	U  ] net-misc/networkmanager-1.0.6::gentoo [0.9.8.10-r1::gentoo] USE="bluetooth connection-sharing consolekit dhclient* introspection modemmanager ncurses%* nss ppp resolvconf wext wifi -dhcpcd* -gnutls (-selinux) -systemd -teamd% {-test} -vala -zeroconf% (-avahi%*)" ABI_X86="32%* (64%*) (-x32)" 3,302 KiB
[ebuild 	U  ] x11-libs/vte-0.28.2-r207::gentoo [0.28.2-r206::gentoo] USE="introspection -debug -python (-glade%)" PYTHON_TARGETS="python2_7 (-python2_6%)" 940 KiB
[ebuild 	U  ] gnome-extra/nm-applet-1.0.6::gentoo [0.9.8.10-r1::gentoo] USE="bluetooth introspection -modemmanager (-gconf%)" 1,309 KiB
[ebuild 	U  ] media-gfx/gnome-screenshot-3.16.2::gentoo [3.12.0::gentoo] 274 KiB
[ebuild 	U  ] media-gfx/shotwell-0.22.0::gentoo [0.18.1::gentoo] LINGUAS="af ar as ast bg bn ca cs da de el en_GB eo es et eu fi fr gd%* gl gu he hi hr hu ia id it ja kk km kn ko lt lv mk ml mr nb nl nn or pa pl pt pt_BR ro ru sk sl sr sv ta te th tr uk vi zh_CN zh_HK zh_TW -bn_IN -ky" 1,891 KiB
[ebuild 	U  ] www-client/epiphany-3.16.3::gentoo [3.12.1::gentoo] USE="jit nss -debug {-test}" 3,011 KiB
[ebuild  N 	] sys-apps/gnome-disk-utility-3.16.2::gentoo  USE="gnome -fat -systemd" 1,399 KiB
[ebuild 	U  ] www-apache/mod_dnssd-0.6-r1::gentoo [0.6::gentoo] USE="(-doc%)" 85 KiB
[ebuild 	U  ] gnome-extra/gnome-user-share-3.14.2::gentoo [3.10.2::gentoo] USE="bluetooth" 383 KiB
[ebuild 	U  ] net-libs/gtk-vnc-0.5.4::gentoo [0.5.3::gentoo] USE="gtk3 introspection -examples -pulseaudio -python -sasl -vala" PYTHON_TARGETS="python2_7 (-python2_6%)" 409 KiB
[ebuild 	U  ] gnome-extra/yelp-3.16.1::gentoo [3.12.0::gentoo] USE="(-debug%)" 1,384 KiB
[ebuild 	U  ] dev-perl/gtk2-perl-1.249.500::gentoo [1.247.0::gentoo] 727 KiB
[ebuild   R	] gnome-base/libgnomeprintui-2.18.6-r1:2.2::gentoo  ABI_X86="32* (64) (-x32)" 666 KiB
[ebuild 	U  ] x11-libs/wxGTK-2.8.12.1-r2:2.8::gentoo [2.8.12.1-r1:2.8::gentoo] USE="X gnome opengl sdl tiff (-aqua) -debug -doc -gstreamer -odbc -pch" ABI_X86="32%* (64%*) (-x32)" 30,578 KiB
[ebuild 	U  ] app-arch/p7zip-9.38.1-r2::gentoo [9.20.1-r5::gentoo] USE="pch wxwidgets -doc -kde* -rar (-static)" ABI_X86="(-x32)" 3,827 KiB
[ebuild   R	] sci-chemistry/openbabel-2.3.2::gentoo  USE="openmp wxwidgets -doc {-test} (-perl%) (-python%)" 20,029 KiB
[ebuild   R	] media-plugins/libvisual-plugins-0.4.0-r3:0.4::gentoo  USE="alsa gtk opengl -debug -jack -mplayer" ABI_X86="32* (64) (-x32)" 822 KiB
[ebuild 	U  ] dev-libs/libdbusmenu-12.10.2-r2::gentoo [12.10.2::gentoo] USE="gtk gtk3%* introspection -debug" ABI_X86="32%* (64%*) (-x32)" PYTHON_SINGLE_TARGET="(-python2_6%) (-python2_7%*)" PYTHON_TARGETS="python2_7 (-python2_6%)" 719 KiB
[ebuild 	U  ] dev-libs/libindicate-12.10.1-r2:3::gentoo [12.10.1:3::gentoo] USE="gtk introspection" 538 KiB
[ebuild 	U  ] x11-themes/gtk-engines-xfce-3.2.0-r200::gentoo [3.0.1-r201::gentoo] USE="-debug" ABI_X86="32* (64) (-x32)" 368 KiB
[ebuild 	U  ] xfce-base/xfce4-appfinder-4.12.0-r1::gentoo [4.11.0::gentoo] USE="-debug" 449 KiB
[ebuild 	U  ] xfce-base/xfce4-session-4.12.1::gentoo [4.11.0-r2::gentoo] USE="nls policykit%* upower xscreensaver -debug -systemd" 1,260 KiB
[ebuild 	U  ] xfce-base/xfwm4-4.12.3-r1::gentoo [4.11.1::gentoo] USE="dri startup-notification xcomposite -debug" 1,164 KiB
[ebuild 	U  ] xfce-base/xfdesktop-4.12.3::gentoo [4.11.6::gentoo] USE="libnotify thunar -debug" 1,388 KiB
[ebuild 	U  ] xfce-base/xfce4-settings-4.12.0::gentoo [4.11.2-r1::gentoo] USE="libnotify upower xklavier -debug -libcanberra -libinput%" 951 KiB
[ebuild 	U  ] gnome-base/libbonoboui-2.24.5-r1::gentoo [2.24.5::gentoo] USE="-examples {-test} (-doc%)" 954 KiB
[ebuild 	U  ] gnome-base/libgnomeui-2.24.5-r1::gentoo [2.24.5::gentoo] USE="{-test} (-doc%)" 1,407 KiB
[ebuild 	U  ] media-gfx/graphviz-2.38.0::gentoo [2.36.0::gentoo] USE="X cairo gtk nls pdf qt4 svg -devil -doc -examples -gdk-pixbuf -gts -guile -java -lasi -perl -postscript -python -ruby -static-libs -tcl" PYTHON_TARGETS="python2_7" 25,244 KiB
[ebuild 	U  ] app-i18n/ibus-qt-1.3.3::gentoo [1.3.2::gentoo] USE="-doc" 139 KiB
[ebuild 	U  ] x11-libs/gtkglext-1.2.0-r3::gentoo [1.2.0-r2::gentoo] USE="-debug" ABI_X86="32* (64) (-x32)" 688 KiB
[ebuild 	U  ] media-libs/opencv-2.4.10:0/2.4::gentoo [2.4.9:0/2.4::gentoo] USE="eigen gtk jpeg opengl openmp png python qt4 tiff -cuda -doc -examples -ffmpeg -gstreamer -ieee1394 (-ipp) -java -jpeg2k -libav% -opencl -openexr -pch -testprograms -threads -v4l -vtk -xine" PYTHON_SINGLE_TARGET="(-python2_6%) (-python2_7%*)" PYTHON_TARGETS="python2_7 (-python2_6%)" 89,544 KiB
[ebuild 	U  ] x11-libs/gtksourceview-2.10.5-r3:2.0::gentoo [2.10.5-r2:2.0::gentoo] USE="{-test} (-glade%)" 1,224 KiB
[ebuild 	U  ] media-gfx/sane-backends-1.0.25_pre20150628::gentoo [1.0.24-r5::gentoo] USE="avahi ipv6 nls%* usb -doc -gphoto2 -snmp -systemd -threads -v4l -xinetd" ABI_X86="32* (64) (-x32)" SANE_BACKENDS="abaton agfafocus apple artec artec_eplus48u as6e avision bh canon canon630u canon_dr cardscan coolscan coolscan2 coolscan3 dc210 dc240 dc25 dell1600n_net dmc epjitsu epson epson2 fujitsu genesys gt68xx hp hp3500 hp3900 hp4200 hp5400 hp5590 hpljm1005 hs2p ibm kodak kodakaio kvs1025 kvs20xx leo lexmark ma1509 magicolor matsushita microtek microtek2 mustek mustek_usb nec net niash p5 pie pixma plustek plustek_pp qcam ricoh rts8891 s9036 sceptre sharp sm3600 sm3840 snapscan sp15c st400 stv680 tamarack teco1 teco2 teco3 {test} u12 umax umax1220u umax_pp xerox_mfp -canon_pp -hpsj5s -kvs40xx -mustek_pp -mustek_usb2 -pnm" 5,631 KiB
[ebuild 	U  ] net-wireless/spectools-2011.08.1_p20140618-r1::gentoo [2011.08.1_p20140618::gentoo] USE="gtk ncurses -debug" 141 KiB
[ebuild 	U  ] net-libs/gnome-online-accounts-3.16.3-r1:0/1::gentoo [3.12.4:0/1::gentoo] USE="gnome introspection -debug -kerberos" 1,388 KiB
[ebuild 	U  ] dev-libs/libgdata-0.17.2:0/22::gentoo [0.14.3:0/13::gentoo] USE="gnome introspection -debug -static-libs {-test%} -vala" 1,487 KiB
[ebuild 	U  ] gnome-extra/evolution-data-server-3.16.5:0/52::gentoo [3.12.11:0/49::gentoo] USE="gnome-online-accounts gtk introspection ipv6 ldap vala weather -api-doc-extras -kerberos {-test}" 5,239 KiB
[ebuild 	U  ] mail-client/evolution-3.16.5:2.0::gentoo [3.12.11:2.0::gentoo] USE="bogofilter crypt ldap spell ssl weather -highlight -map -spamassassin" 11,683 KiB
[ebuild 	U  ] net-libs/libgfbgraph-0.2.3:0.2::gentoo [0.2.2:0.2::gentoo] USE="introspection" 265 KiB
[ebuild 	U  ] dev-libs/folks-0.11.1:0/25::gentoo [0.9.7.1:0/25::gentoo] USE="bluetooth eds telepathy -debug {-test} -tracker -utils -zeitgeist (-socialweb%)" 1,934 KiB
[ebuild 	U  ] gnome-extra/gnome-contacts-3.16.2::gentoo [3.12.0::gentoo] USE="-v4l" 750 KiB
[ebuild 	U  ] gnome-base/gnome-shell-3.16.3::gentoo [3.12.2::gentoo] USE="bluetooth i18n -networkmanager (-openrc-force)" PYTHON_TARGETS="python3_4%* -python3_3% (-python2_6%) (-python2_7%*)" 1,556 KiB
[ebuild 	U  ] gnome-extra/gnome-shell-extensions-3.16.2::gentoo [3.12.2::gentoo] USE="-examples" 226 KiB
[ebuild 	U  ] gnome-extra/gnome-tweak-tool-3.16.2::gentoo [3.12.0::gentoo] PYTHON_TARGETS="python2_7" 238 KiB
[ebuild 	U  ] x11-terms/gnome-terminal-3.16.2-r2::gentoo [3.12.3::gentoo] USE="gnome-shell nautilus -debug% -vanilla%" 1,757 KiB
[ebuild  N 	] app-misc/tracker-1.4.1:0/100::gentoo  USE="exif flac gif gstreamer gtk iso jpeg miner-fs mp3 nautilus pdf tiff upnp-av upower vorbis xml -cue (-eds) -ffmpeg -firefox-bookmarks -gsf -iptc -libav -networkmanager -playlist -rss -stemmer {-test} -thunderbird -xmp -xps" 5,799 KiB
[ebuild 	U  ] gnome-extra/nautilus-tracker-tags-1.4.1::gentoo [1.0.2::gentoo] 0 KiB
[ebuild 	U  ] media-plugins/grilo-plugins-0.2.14:0.2::gentoo [0.2.12:0.2::gentoo] USE="dvd tracker* upnp-av* vimeo youtube -daap -flickr -freebox -gnome-online-accounts (-lua) -pocket -subtitles% -thetvdb%" 1,013 KiB
[ebuild  N 	] media-gfx/gnome-photos-3.16.2::gentoo  USE="{-test}" 745 KiB
[ebuild  N 	] media-sound/gnome-music-3.16.2::gentoo  PYTHON_TARGETS="python3_4 -python3_3" 1,446 KiB
[ebuild 	U  ] net-misc/gnome-online-miners-3.14.3-r1::gentoo [3.12.0::gentoo] USE="-flickr%" 253 KiB
[ebuild 	U  ] gnome-extra/gnome-documents-3.16.3::gentoo [3.12.1::gentoo] 2,228 KiB
[ebuild 	U  ] media-sound/audacious-3.6.2::gentoo [3.4.1::gentoo] USE="nls -chardet -gtk3% -qt5%" 578 KiB
[ebuild 	U  ] media-plugins/audacious-plugins-3.6.2-r1::gentoo [3.4.1::gentoo] USE="aac alsa cdda flac gnome libnotify mp3* nls sdl vorbis -adplug -bs2b -cue -ffmpeg -fluidsynth -gtk3% -http% -jack -lame -libsamplerate -lirc -mms -pulseaudio -qt5% -scrobbler -sid -sndfile -wavpack (-ipv6%*) (-midi%)" 1,745 KiB
[ebuild  N 	] dev-libs/appstream-glib-0.5.0:0/7::gentoo  USE="introspection nls" 1,776 KiB
[ebuild 	U  ] dev-util/appdata-tools-0.1.8-r1::gentoo [0.1.7::gentoo] USE="(-nls%*)" 0 KiB
[blocks b  	] <dev-util/appdata-tools-0.1.8-r1 ("<dev-util/appdata-tools-0.1.8-r1" is blocking dev-libs/appstream-glib-0.5.0)
[ebuild 	U  ] media-video/cheese-3.16.1:0/7::gentoo [3.12.2:0/7::gentoo] USE="introspection {-test}" 1,782 KiB
[ebuild 	U  ] media-video/totem-3.16.3::gentoo [3.12.1::gentoo] USE="introspection nautilus python -debug -lirc {-test} -zeitgeist (-flash%) (-nsplugin%)" PYTHON_SINGLE_TARGET="(-python2_7%*)" PYTHON_TARGETS="python2_7" 3,098 KiB
[ebuild 	U  ] gnome-extra/gnome-color-manager-3.16.0::gentoo [3.12.3::gentoo] USE="(-packagekit) -raw {-test}" 2,571 KiB
[ebuild  N 	] games-puzzle/gnome-taquin-3.16.1::gentoo  5,386 KiB
[ebuild 	U  ] games-arcade/gnome-nibbles-3.16.1::gentoo [3.12.2::gentoo] 1,605 KiB
[ebuild 	U  ] net-misc/vinagre-3.16.1::gentoo [3.12.2::gentoo] USE="ssh telepathy -rdp -spice -zeroconf% (-avahi%*)" 794 KiB
[ebuild 	U  ] games-puzzle/swell-foop-3.16.2::gentoo [3.12.2::gentoo] 2,339 KiB
[ebuild 	U  ] games-board/tali-3.16.1::gentoo [3.12.2::gentoo] 1,469 KiB
[ebuild 	U  ] games-board/iagno-3.16.1::gentoo [3.12.2::gentoo] 1,826 KiB
[ebuild 	U  ] games-board/gnome-mahjongg-3.16.1::gentoo [3.12.2::gentoo] 4,023 KiB
[ebuild  N 	] games-puzzle/hitori-3.16.1::gentoo  484 KiB
[ebuild 	U  ] games-puzzle/gnome-sudoku-3.16.0::gentoo [3.12.3::gentoo] PYTHON_SINGLE_TARGET="(-python3_2%) (-python3_3%*)" PYTHON_TARGETS="(-python3_2%) (-python3_3%*)" 2,992 KiB
[ebuild 	U  ] games-puzzle/gnome-klotski-3.16.1::gentoo [3.12.2::gentoo] 1,381 KiB
[ebuild 	U  ] media-sound/sound-juicer-3.16.1::gentoo [3.12.0::gentoo] USE="flac vorbis -debug {-test}" 793 KiB
[ebuild 	U  ] games-puzzle/quadrapassel-3.16.1::gentoo [3.12.2::gentoo] 1,703 KiB
[ebuild 	U  ] games-puzzle/gnome-tetravex-3.16.0::gentoo [3.12.3::gentoo] 2,178 KiB
[ebuild 	U  ] games-puzzle/lightsoff-3.16.1.1::gentoo [3.12.2::gentoo] 1,912 KiB
[ebuild  N 	] gnome-extra/gnome-weather-3.16.2.1::gentoo  USE="{-test}" 10,103 KiB
[ebuild 	U  ] games-arcade/gnome-robots-3.16.1::gentoo [3.12.3::gentoo] 1,553 KiB
[ebuild 	U  ] games-board/gnome-mines-3.16.1::gentoo [3.12.2::gentoo] 3,132 KiB
[ebuild 	U  ] games-board/gnome-chess-3.16.2::gentoo [3.12.3::gentoo] 2,549 KiB
[ebuild 	U  ] games-puzzle/five-or-more-3.16.1::gentoo [3.12.2::gentoo] 3,112 KiB
[ebuild 	U  ] gnome-extra/gnome-power-manager-3.16.1::gentoo [3.12.2::gentoo] USE="{-test}" 423 KiB
[ebuild 	U  ] games-board/four-in-a-row-3.16.2::gentoo [3.12.3::gentoo] 1,889 KiB
[ebuild 	U  ] gnome-base/gnome-extra-apps-3.16.0:3.0::gentoo [3.12.0:3.0::gentoo] USE="games share%* shotwell tracker" 0 KiB
[ebuild 	U  ] net-im/empathy-3.12.10::gentoo [3.12.4::gentoo] USE="geoloc gnome map spell v4l -debug -gnome-online-accounts {-test}" 4,946 KiB
[ebuild  NS	] kde-apps/oxygen-icons-15.04.3:5::gentoo [4.14.3:4/4.14::gentoo] USE="-debug -sources" 28,637 KiB
[uninstall 	] kde-apps/oxygen-icons-4.14.3:4/4.14::gentoo  USE="bindist (-aqua)" 
[blocks b  	] kde-apps/oxygen-icons:4 ("kde-apps/oxygen-icons:4" is blocking kde-apps/oxygen-icons-15.04.3)
[ebuild 	U  ] app-crypt/qca-2.1.0.3:2::gentoo [2.0.3:2::gentoo] USE="openssl%* qt4%* qt5%* -botan% -debug -doc -examples -gcrypt% -gpg% -logger% -nss% -pkcs11% -sasl% -softstore% {-test%} (-aqua%)" 670 KiB
[uninstall 	] app-crypt/qca-ossl-2.0.0_beta3-r2:2::gentoo  USE="-debug" 
[blocks b  	] app-crypt/qca-ossl ("app-crypt/qca-ossl" is blocking app-crypt/qca-2.1.0.3)
[ebuild  NS	] sys-block/partitionmanager-1.2.1:5::gentoo [1.1.0:0::gentoo] USE="handbook -debug" 1,753 KiB
[uninstall 	] sys-block/partitionmanager-1.1.0::gentoo  USE="handbook (-aqua) -debug" LINGUAS="ar bg bs ca ca@valencia cs da de el en_GB es et fr gl it lt nb nds nl pa pl pt pt_BR ro ru sk sl sr sv tr uk zh_CN zh_TW -sr@ijekavian -sr@ijekavianlatin -sr@latin" 
[blocks b  	] sys-block/partitionmanager:0 ("sys-block/partitionmanager:0" is blocking sys-block/partitionmanager-1.2.1)
[ebuild  N 	] kde-plasma/polkit-kde-agent-5.4.0:5::gentoo  USE="-debug" 39 KiB
[uninstall 	] sys-auth/polkit-kde-agent-0.99.0-r1:4::gentoo  USE="(-aqua) -debug" LINGUAS="ca ca@valencia cs da de en_GB eo es et fi fr ga gl hr hu is it ja km lt mai ms nb nds nl pa pt pt_BR ro ru sk sr sv th tr uk zh_TW -sr@ijekavian -sr@ijekavianlatin -sr@latin" 
[blocks b  	] sys-auth/polkit-kde-agent:4[-minimal(-)] ("sys-auth/polkit-kde-agent:4[-minimal(-)]" is blocking kde-plasma/polkit-kde-agent-5.4.0)
[ebuild  NS	] net-irc/konversation-1.6:5::gentoo [1.5:4::gentoo] USE="crypt handbook -debug" 3,367 KiB
[uninstall 	] net-irc/konversation-1.5:4::gentoo  USE="crypt handbook (-aqua) -debug" LINGUAS="bg bs ca ca@valencia cs da de el en_GB es et fi fr gl he hu it kk km lt nb nds nl pl pt pt_BR ru si sk sl sr sv tr uk zh_CN zh_TW -sr@ijekavian -sr@ijekavianlatin -sr@latin" 
[blocks b  	] net-irc/konversation:4 ("net-irc/konversation:4" is blocking net-irc/konversation-1.6)
[ebuild 	U  ] dev-db/mysql-5.6.26-r1:0/18::gentoo [5.5.40:0/0::gentoo] USE="client-libs%* community embedded perl server%* ssl tools%* (-cluster) -debug -extraengine -jemalloc -latin1 -profiling (-selinux) -static -static-libs -systemtap -tcmalloc {-test} (-bindist%*) (-max-idx-128%) (-minimal%)" ABI_X86="32%* (64%*) (-x32)" 33,956 KiB
[ebuild  N 	] virtual/libmysqlclient-18:0/18::gentoo  USE="-static-libs" ABI_X86="32 (64) (-x32)" 0 KiB
[ebuild 	U  ] virtual/mysql-5.6-r6:0/18::gentoo [5.5:0/0::gentoo] USE="embedded -static -static-libs (-minimal%)" ABI_X86="32%* (64%*) (-x32)" 0 KiB
[blocks b  	] <virtual/mysql-5.6-r4 ("<virtual/mysql-5.6-r4" is blocking dev-db/mysql-5.6.26-r1)
[ebuild 	U  ] dev-qt/qtsql-4.8.7:4::gentoo [4.8.5:4::gentoo] USE="exceptions mysql qt3support sqlite (-aqua) -debug -freetds -oci8 -odbc -pch -postgres (-firebird%)" ABI_X86="32%* (64%*) (-x32)" 0 KiB
[blocks b  	] <dev-qt/qtsql-4.8.6:4 ("<dev-qt/qtsql-4.8.6:4" is blocking dev-qt/qtchooser-0_p20150102)
[ebuild 	U  ] dev-qt/qt3support-4.8.7:4::gentoo [4.8.5:4::gentoo] USE="accessibility exceptions (-aqua) -debug -pch" ABI_X86="32%* (64%*) (-x32)" 0 KiB
[blocks b  	] <dev-qt/qt3support-4.8.6:4 ("<dev-qt/qt3support-4.8.6:4" is blocking dev-qt/qtchooser-0_p20150102)
[ebuild 	U  ] net-print/cups-filters-1.0.74::gentoo [1.0.54::gentoo] USE="dbus foomatic jpeg png tiff -perl -static-libs -zeroconf" 1,321 KiB
[ebuild 	U  ] dev-perl/DBD-mysql-4.31.0::gentoo [4.20.0::gentoo] USE="-embedded {-test%}" 142 KiB
[ebuild 	U  ] dev-qt/designer-4.8.7:4::gentoo [4.8.5:4::gentoo] USE="exceptions qt3support (-aqua) -debug -declarative -kde% -pch -phonon -webkit" ABI_X86="32%* (64%*) (-x32)" 0 KiB
[blocks b  	] <dev-qt/designer-4.8.6:4 ("<dev-qt/designer-4.8.6:4" is blocking dev-qt/qtchooser-0_p20150102)
[ebuild 	U  ] dev-qt/qtdeclarative-4.8.7:4::gentoo [4.8.5:4::gentoo] USE="accessibility exceptions qt3support webkit (-aqua) -debug -pch" ABI_X86="32%* (64%*) (-x32)" 0 KiB
[blocks b  	] <dev-qt/qtdeclarative-4.8.6:4 ("<dev-qt/qtdeclarative-4.8.6:4" is blocking dev-qt/qtchooser-0_p20150102)
[ebuild   R	] net-irc/telepathy-idle-0.2.0::gentoo  USE="{-test}" PYTHON_SINGLE_TARGET="(-python2_6%) (-python2_7%*)" PYTHON_TARGETS="python2_7 (-python2_6%)" 554 KiB
[ebuild 	U  ] net-analyzer/nmap-6.49_beta2::gentoo [6.25::gentoo] USE="ipv6 nls nse%* ssl -ncat -ndiff -nmap-update -nping (-system-lua) -zenmap% (-gtk%*) (-lua%*)" LINGUAS="de fr hr it ja pl pt_BR ru (-es%*) (-hu%*) (-id%*) (-pt_PT%) (-ro%*) (-sk%*) (-zh%)" PYTHON_TARGETS="python2_7%*" 8,608 KiB
[ebuild 	U  ] x11-apps/xhost-1.0.7::gentoo [1.0.6::gentoo] USE="ipv6" 133 KiB
[ebuild 	U  ] x11-misc/lightdm-gtk-greeter-2.0.1::gentoo [1.9.0::gentoo] USE="branding" 1,136 KiB
[ebuild 	U  ] app-vim/gentoo-syntax-20150823::gentoo [20130619::gentoo] USE="-ignore-glep31" 26 KiB
[ebuild 	U  ] dev-perl/GraphViz-2.180.0::gentoo [2.140.0::gentoo] USE="{-test}" 113 KiB
[ebuild  NS	] dev-qt/qtsql-5.4.2:5::gentoo [4.8.5:4::gentoo] USE="mysql sqlite -debug -freetds -oci8 -odbc -postgres {-test}" 0 KiB
[ebuild   R	] x11-themes/gtk-engines-murrine-0.98.2-r1::gentoo  USE="themes -animation-rtl" ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild   R	] dev-python/pygtksourceview-2.10.1-r1:2::gentoo  USE="-doc" PYTHON_TARGETS="python2_7 (-python2_6%)" 284 KiB
[ebuild 	U  ] dev-java/icedtea-bin-7.2.6.1:7::gentoo [7.2.5.3:7::gentoo] USE="alsa awt%* cups gtk%* -cjk -doc -examples -nsplugin -pulseaudio% (-selinux) -source* -webstart (-X%*)" 51,618 KiB
[ebuild 	U  ] net-wireless/kismet-2013.03.1-r2:0/2013.03.1::gentoo [2013.03.1-r1:0/2013.03.1::gentoo] USE="client pcre plugin-autowep plugin-btscan plugin-ptw plugin-spectools plugin-syslog ruby suid -plugin-dot15d4 (-selinux) -speech" 879 KiB
[ebuild 	U  ] www-client/firefox-40.0.3::gentoo [34.0.5-r1::gentoo] USE="bindist dbus gmp-autoupdate jemalloc3%* jit minimal startup-notification -custom-cflags -custom-optimization -debug -egl% -gstreamer -gstreamer-0% -hardened (-neon) (-pgo) -pulseaudio (-selinux) -system-cairo -system-icu -system-jpeg -system-libvpx -system-sqlite {-test} -wifi" LINGUAS="af ar as ast be bg br bs ca cs cy da de el en_GB en_ZA eo et eu fa fi fr gd gl gu_IN he hr hu id is it ja kk km kn ko lt lv mai mk ml mr nl or pa_IN pl pt_BR ro ru si sk sl sq sr ta te th tr uk vi xh zh_CN zh_TW -bn_BD -bn_IN -es_AR -es_CL -es_ES -es_MX -fy_NL -ga_IE -hi_IN -hy_AM -nb_NO -nn_NO -pt_PT -rm -son -sv_SE (-csb%*)" 204,237 KiB
[ebuild   R	] media-plugins/gst-plugins-pango-0.10.36-r1:0.10::gentoo  ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] media-gfx/xsane-0.999-r1::gentoo [0.999::gentoo] USE="jpeg lcms nls png tiff -gimp -ocr" 2,935 KiB
[ebuild 	U  ] sys-apps/pmount-0.9.99_alpha-r5::gentoo [0.9.99_alpha-r4::gentoo] USE="crypt" 356 KiB
[ebuild 	U  ] sys-fs/mdadm-3.3.4::gentoo [3.3.1-r2::gentoo] USE="-static" 529 KiB
[ebuild 	U  ] app-office/dia-0.97.3::gentoo [0.97.3_pre20140417-r1::gentoo] USE="cairo -debug -doc -python" PYTHON_SINGLE_TARGET="(-python2_6%) (-python2_7%*)" PYTHON_TARGETS="python2_7 (-python2_6%)" 5,419 KiB
[ebuild 	U  ] app-misc/mc-4.8.14::gentoo [4.8.12::gentoo] USE="X edit gpm nls slang spell xdg -mclib -samba -sftp {-test}" 2,252 KiB
[ebuild 	U  ] media-gfx/feh-2.13.1::gentoo [2.12::gentoo] USE="exif -curl* -debug {-test} -xinerama" 2,068 KiB
[ebuild 	U  ] media-gfx/inkscape-0.91::gentoo [0.48.5::gentoo] USE="cdr%* dbus%* exif%* gnome jpeg%* lcms nls openmp%* spell -dia -imagemagick% -inkjar -postscript -static-libs% -visio% -wpg% (-wmf%)" PYTHON_SINGLE_TARGET="(-python2_7%*)" PYTHON_TARGETS="python2_7" 25,253 KiB
[ebuild 	U  ] sys-fs/zfs-0.6.4.2::gentoo [0.6.3::gentoo] USE="rootfs -bash-completion -custom-cflags -debug (-kernel-builtin) -static-libs -test-suite" PYTHON_TARGETS="python2_7 python3_4%* -python3_3* (-python2_6%) (-python3_2%)" 0 KiB
[ebuild  N 	] games-simulation/searchandrescue-1.5.0::gentoo  0 KiB
[ebuild 	U  ] app-text/acroread-9.5.5-r3::gentoo [9.5.5-r2::gentoo] USE="ldap -html -nsplugin" LINGUAS="ja ko zh_CN zh_TW" 0 KiB
[ebuild   R	] media-sound/audacity-2.0.5::gentoo  USE="alsa flac libsoxr mp3* vorbis (-ffmpeg) -id3tag -jack -ladspa -libsamplerate -midi -sbsms -soundtouch -twolame -vamp" 5,190 KiB
[ebuild 	U  ] x11-misc/grsync-1.2.5::gentoo [1.2.4::gentoo] USE="-debug" 318 KiB
[ebuild 	U  ] sys-devel/distcc-3.2_rc1-r3::gentoo [3.1-r9::gentoo] USE="avahi gnome%* gtk ipv6 -crossdev% -gssapi% -hardened (-selinux) -xinetd" PYTHON_SINGLE_TARGET="(-python2_6%) (-python2_7%*)" PYTHON_TARGETS="python2_7 (-python2_6%)" 596 KiB
[ebuild 	U  ] app-admin/gkrellm-2.3.5-r3:2::gentoo [2.3.5-r2:2::gentoo] USE="X nls ssl -gnutls -hddtemp -lm_sensors -ntlm" 748 KiB
[ebuild   R	] app-admin/conky-1.9.0-r3::gentoo  USE="X hddtemp* imlib lua lua-cairo lua-imlib ncurses portmon truetype wifi -apcupsd -audacious -curl* -debug -eve -iostats -math -moc -mpd -nano-syntax -nvidia -rss -thinkpad -vim-syntax -weather-metar -weather-xoap -xmms2" 0 KiB
[ebuild 	U  ] app-editors/bluefish-2.2.7::gentoo [2.2.3::gentoo] USE="nls spell -gucharmap% -python" PYTHON_TARGETS="python2_7%*" 3,747 KiB
[ebuild  N 	] games-simulation/simutrans-0.120.0.1::gentoo  7,775 KiB
[ebuild 	U  ] media-video/xine-ui-0.99.9::gentoo [0.99.8::gentoo] USE="X nls readline -aalib -curl -debug -libcaca -lirc -vdr -xinerama" 1,719 KiB
[ebuild 	U  ] x11-terms/xterm-320::gentoo [304::gentoo] USE="openpty truetype unicode -Xaw3d -toolbar" 1,189 KiB
[ebuild 	U  ] net-analyzer/wireshark-1.12.7:0/1.12.7::gentoo [1.12.0_rc3:0/1.12.0_rc3::gentoo] USE="caps crypt filecaps gtk3 ipv6 netlink pcap portaudio ssl zlib -adns -doc -doc-pdf -geoip -kerberos -lua -qt4 -qt5% -sbc% (-selinux) -smi" 28,519 KiB
[ebuild 	U  ] sys-power/powertop-2.7-r2::gentoo [2.6::gentoo] USE="X nls%* unicode" 639 KiB
[ebuild 	U  ] x11-misc/i3status-2.9::gentoo [2.8::gentoo] USE="filecaps" 46 KiB
[ebuild 	U  ] media-plugins/gst-plugins-libpng-1.4.5:1.0::gentoo [1.2.4-r1:1.0::gentoo] ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] net-misc/dhcpcd-6.9.3::gentoo [6.4.3::gentoo] USE="embedded%* ipv6 udev" 173 KiB
[ebuild 	U  ] net-fs/nfs-utils-1.3.2-r6::gentoo [1.3.0::gentoo] USE="ipv6 libmount nfsidmap nfsv4 tcpd uuid -caps -kerberos -nfsdcld -nfsv41 (-selinux)" 772 KiB
[ebuild 	U  ] app-editors/scite-3.5.5::gentoo [3.4.1::gentoo] USE="-lua" 2,249 KiB
[ebuild 	U  ] net-analyzer/arping-2.15-r2:2::gentoo [2.14:2::gentoo] 146 KiB
[ebuild 	U  ] media-plugins/gst-plugins-speex-1.4.5:1.0::gentoo [1.2.4-r1:1.0::gentoo] ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] app-cdr/xfburn-0.5.4::gentoo [0.5.2::gentoo] USE="udev -debug -gstreamer" 756 KiB
[ebuild 	U  ] app-admin/testdisk-7.0-r3::gentoo [6.14::gentoo] USE="jpeg qt4%* -ewf% -ntfs -reiserfs -static" 662 KiB
[ebuild 	U  ] sys-boot/syslinux-6.03::gentoo [6.03_pre18::gentoo] USE="-custom-cflags" 6,695 KiB
[ebuild 	U  ] net-analyzer/snort-2.9.7.5::gentoo [2.9.6.1::gentoo] USE="active-response flexresp3 gre mpls non-ether-decoders normalizer perfprofiling ppm react targetbased threads -control-socket -debug -file-inspect -high-availability -inline-init-failopen -large-pcap-64bit -linux-smp-stats -reload-error-restart (-selinux) -shared-rep -side-channel -sourcefire -static (-zlib%*)" 6,165 KiB
[ebuild   R	] media-libs/imlib-1.9.15-r4::gentoo  USE="-doc -static-libs" ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] www-client/seamonkey-2.35::gentoo [2.31-r1::gentoo] USE="chatzilla crypt dbus gmp-autoupdate ipc jemalloc3%* jit roaming startup-notification -custom-cflags -custom-optimization -debug -gstreamer -gstreamer-0% -minimal -pulseaudio (-selinux) -system-cairo -system-icu -system-jpeg -system-libvpx -system-sqlite {-test} -wifi" LINGUAS="be ca cs de en_GB fi fr gl hu it ja lt nl pl ru sk tr uk zh_CN zh_TW -es_AR -es_ES -nb_NO -pt_PT -sv_SE" 218,056 KiB
[ebuild 	U  ] net-ftp/gftp-2.0.19-r2::gentoo [2.0.19-r1::gentoo] USE="gtk ssl" 1,648 KiB
[ebuild 	U  ] net-misc/rdesktop-1.8.3::gentoo [1.8.2::gentoo] USE="alsa ipv6 -ao -debug -kerberos -libsamplerate -oss -pcsc-lite" 313 KiB
[ebuild 	U  ] app-office/texmaker-4.4.1-r1::gentoo [4.2::gentoo] USE="qt4%* -qt5%" 11,011 KiB
[ebuild 	U  ] media-sound/qmmp-0.8.8::gentoo [0.8.0::gentoo] USE="aac alsa cdda dbus flac mad udisks vorbis -bs2b -cover -crossfade -enca -ffmpeg -game -jack -kde* -ladspa -libsamplerate -lyrics -midi -mms -modplug -mplayer -mpris -musepack -notifier -opus -oss -projectm -pulseaudio -scrobbler -sndfile -stereo -tray -wavpack" 971 KiB
[ebuild 	U  ] net-misc/putty-0.65::gentoo [0.63_p20140416::gentoo] USE="gtk ipv6 -doc -kerberos" 1,898 KiB
[ebuild 	U  ] sys-apps/hwsetup-1.2-r3::gentoo [1.2-r2::gentoo] USE="zlib" 11 KiB
[ebuild 	U  ] xfce-extra/thunar-volman-0.8.1::gentoo [0.8.0::gentoo] USE="libnotify -debug" 464 KiB
[ebuild 	U  ] app-office/orage-4.12.1::gentoo [4.10.0::gentoo] USE="berkdb dbus libnotify -debug" XFCE_PLUGINS="-clock" 2,531 KiB
[ebuild   R	] app-office/planner-0.14.6_p20130520::gentoo  USE="eds -examples -python" PYTHON_SINGLE_TARGET="(-python2_6%) (-python2_7%*)" PYTHON_TARGETS="python2_7 (-python2_6%)" 4,103 KiB
[ebuild 	U  ] app-laptop/laptop-mode-tools-1.68::gentoo [1.66::gentoo] USE="acpi bluetooth -apm -scsi" 111 KiB
[ebuild   R	] app-emulation/virtualbox-5.0.2::gentoo  USE="alsa* opengl pam qt4 sdk udev -doc -headless -java -pulseaudio -python -vboxwebsrv -vnc" PYTHON_TARGETS="python2_7" 0 KiB
[ebuild 	U  ] dev-util/geany-1.25::gentoo [1.24.1::gentoo] USE="vte -gtk3%" 4,053 KiB
[ebuild 	U  ] dev-vcs/subversion-1.9.1::gentoo [1.8.9::gentoo] USE="berkdb dso gnome-keyring http nls -apache2 -ctypes-python -debug -doc -extras -java -kde* -perl -python -ruby -sasl {-test} -vim-syntax" PYTHON_TARGETS="python2_7 (-python2_6%)" 7,566 KiB
[ebuild 	U  ] app-office/abiword-3.0.1:2::gentoo [3.0.0-r2:2::gentoo] USE="cups eds goffice introspection plugins readline spell -calendar -collab -debug -grammar -latex -map -math -ots -redland -thesaurus -wmf -wordperfect" 10,884 KiB
[ebuild 	U  ] xfce-extra/xfce4-places-plugin-1.7.0::gentoo [1.6.0::gentoo] USE="libnotify -debug" 363 KiB
[ebuild 	U  ] app-editors/gvim-7.4.827::gentoo [7.4.326::gentoo] USE="acl gnome gtk nls session (-aqua) -cscope -debug -lua -luajit -motif -neXt -netbeans -perl -python -racket -ruby (-selinux) -tcl" PYTHON_SINGLE_TARGET="(-python2_6%) (-python2_7%*) (-python3_2%) (-python3_3%) (-python3_4%)" PYTHON_TARGETS="python2_7 python3_4* -python3_3* (-python2_6%) (-python3_2%)" 0 KiB
[ebuild 	U  ] media-sound/easytag-2.2.6::gentoo [2.2.2::gentoo] USE="flac gtk3 mp3* vorbis -gtk2 -mp4 -opus -speex {-test} -wavpack" 993 KiB
[ebuild 	U  ] xfce-base/xfce4-meta-4.12::gentoo [4.10::gentoo] USE="svg -minimal" 0 KiB
[ebuild 	U  ] media-sound/rhythmbox-3.2.1::gentoo [3.0.3::gentoo] USE="cdr dbus libnotify libsecret python udev upnp-av* -daap -html -ipod -lirc -mtp -nsplugin {-test} -visualizer -webkit -zeitgeist" PYTHON_SINGLE_TARGET="(-python3_2%) (-python3_3%*)" PYTHON_TARGETS="python3_4%* -python3_3* (-python3_2%)" 6,673 KiB
[ebuild 	U  ] app-misc/emelfm2-0.9.1-r1::gentoo [0.9.1::gentoo] USE="acl nls policykit spell udisks -ansi -gimp -gtk3" LINGUAS="de fr ja pl ru zh_CN" 1,189 KiB
[ebuild 	U  ] media-gfx/gimp-2.8.14-r1:2::gentoo [2.8.10-r1:2::gentoo] USE="alsa bzip2 dbus exif gnome jpeg lcms mng pdf png svg tiff udev -aalib (-altivec) (-aqua) -curl -debug -doc -jpeg2k -postscript -python -smp -webkit -wmf -xpm (-mmx%*) (-sse%*)" CPU_FLAGS_X86="mmx%* sse%*" LINGUAS="ar ast az be bg br ca ca@valencia cs csb da de dz el 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 sv ta te th tr tt uk vi xh zh_CN zh_HK zh_TW -am -en_CA -sr@latin -yi" PYTHON_SINGLE_TARGET="(-python2_6%) (-python2_7%*)" PYTHON_TARGETS="python2_7 (-python2_6%)" 19,962 KiB
[ebuild 	U  ] xfce-extra/xfce4-screenshooter-1.8.2::gentoo [1.8.1::gentoo] USE="-debug" 481 KiB
[ebuild 	U  ] app-emulation/winetricks-20150706::gentoo [20140302::gentoo] USE="gtk -kde -rar" 168 KiB
[ebuild  N 	] games-simulation/dangerdeep-0.3.0::gentoo  USE="-debug" CPU_FLAGS_X86="sse" 0 KiB
[ebuild 	U  ] mail-client/claws-mail-3.11.1-r1::gentoo [3.10.1::gentoo] USE="dbus gnutls imap ipv6 ldap libcanberra libindicate libnotify notification pdf pgp session spell startup-notification -archive -bogofilter -calendar -clamav -debug -doc -gdata (-gtk3) -networkmanager -nntp -pda -perl -python -rss -smime -spam-report -spamassassin -valgrind -webkit -xface" PYTHON_SINGLE_TARGET="(-python2_7%*)" PYTHON_TARGETS="python2_7" 6,747 KiB
[ebuild 	U  ] media-plugins/gst-plugins-libvisual-1.4.5:1.0::gentoo [1.2.4-r1:1.0::gentoo] ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] xfce-extra/xfce4-notes-plugin-1.8.1::gentoo [1.7.7::gentoo] 469 KiB
[ebuild   R	] net-im/licq-1.8.2:2::gentoo  USE="nls qt4 socks5 ssl -aosd -debug -doc -msn -xmpp% -xosd (-jabber%)" LINGUAS="he" 2,208 KiB
[ebuild   R	] app-pda/gtkpod-2.1.4::gentoo  USE="aac cdr flac gstreamer mp3* vorbis -clutter -curl -webkit" 3,635 KiB
[ebuild 	U  ] app-office/gnumeric-1.12.23::gentoo [1.12.17::gentoo] USE="introspection -libgda -perl -python" PYTHON_SINGLE_TARGET="(-python2_7%*)" PYTHON_TARGETS="python2_7" 18,082 KiB
[ebuild 	U  ] x11-misc/tint2-0.12_rc2::rasdark [0.11-r1::gentoo] USE="startup-notification%* -battery -examples -tint2conf" 164 KiB
[ebuild 	U  ] net-analyzer/iftop-1.0_pre4-r2::gentoo [1.0_pre4::gentoo] 200 KiB
[ebuild   R	] sci-chemistry/avogadro-1.1.0::gentoo  USE="glsl -python {-test} (-sse2%*)" CPU_FLAGS_X86="sse2%*" PYTHON_SINGLE_TARGET="(-python2_6%) (-python2_7%*)" PYTHON_TARGETS="python2_7 (-python2_6%)" 10,491 KiB
[ebuild  N 	] games-simulation/lincity-ng-2.0::gentoo  38,551 KiB
[ebuild   R   *] sys-kernel/genkernel-9999::gentoo  USE="cryptsetup (-ibm) (-selinux) (-crypt%*)" 0 KiB
[ebuild 	U  ] x11-themes/oxygen-gtk-1.4.6:2::gentoo [1.4.5:2::gentoo] USE="-debug -doc" 197 KiB
[ebuild 	U  ] net-p2p/bittorrent-4.4.0-r3::gentoo [4.4.0-r2::gentoo] USE="gtk (-aqua)" PYTHON_TARGETS="python2_7%*" 1,226 KiB
[ebuild 	U  ] sys-fs/xfsdump-3.1.4::gentoo [3.1.3::gentoo] 829 KiB
[ebuild 	U  ] www-plugins/adobe-flash-11.2.202.508::gentoo [11.2.202.442::gentoo] USE="(-debug) -kde (-selinux)" ABI_X86="32* 64 (-x32)" CPU_FLAGS_X86="sse2" 13,881 KiB
[ebuild 	UD ] app-antivirus/clamtk-4.45::sunrise [5.09::sabayon] USE="nls%*" LINGUAS="af ar ast bg bs ca cs da de el%* en_GB es eu fi fo fr gl he hr hu id it ja ko lt mr ms nb nl nn pl pt pt_BR ro ru sk sl sv te th tr ug uk uz zh_CN zh_TW (-az%*) (-el_GR%) (-en_AU%) (-en_CA%) (-ga%*) (-lv%*) (-nl_BE%) (-pa%*) (-sr@latin%) (-ta%*)" 539 KiB
[ebuild   R	] x11-themes/tango-icon-theme-0.8.90::gentoo  USE="png -minimal%" 1,749 KiB
[ebuild 	U  ] mail-client/sylpheed-3.4.3::gentoo [3.4.2::gentoo] USE="crypt ipv6 ldap nls spell ssl -oniguruma -pda -xface" 3,393 KiB
[ebuild 	U  ] xfce-extra/xfce4-sensors-plugin-1.2.6::gentoo [1.2.5::gentoo] USE="acpi libnotify -debug -hddtemp -lm_sensors" VIDEO_CARDS="-nvidia" 444 KiB
[ebuild 	U  ] net-analyzer/ettercap-0.8.2::gentoo [0.8.0-r1::gentoo] USE="gtk ipv6 ncurses plugins" 7,894 KiB
[ebuild   R	] media-plugins/gst-plugins-soup-0.10.31-r1:0.10::gentoo  ABI_X86="32* (64) (-x32)" 0 KiB
[ebuild 	U  ] net-irc/hexchat-2.10.2::gentoo [2.10.0-r1::gentoo] USE="dbus gtk ipv6 libnotify nls plugins spell ssl -libcanberra -libproxy -ntlm -perl -plugin-checksum -plugin-doat -plugin-fishlim -plugin-sysinfo -python -theme-manager" PYTHON_SINGLE_TARGET="python2_7 -python3_3 -python3_4" PYTHON_TARGETS="python2_7 python3_4* -python3_3*" 1,494 KiB
[ebuild 	U  ] dev-util/devhelp-3.16.1:0/3-1::gentoo [3.12.1:0/3-1::gentoo] USE="-gedit" PYTHON_SINGLE_TARGET="-python3_3 -python3_4% (-python3_2%)" PYTHON_TARGETS="python3_4%* -python3_3* (-python3_2%)" 459 KiB
[ebuild 	U  ] net-p2p/transmission-2.84-r1::gentoo [2.84::gentoo] USE="gtk qt4 -ayatana -lightweight -qt5% -systemd -xfs" 3,006 KiB
[ebuild 	U  ] net-wireless/aircrack-ng-1.2_rc2::gentoo [1.2_rc1-r1::gentoo] USE="airdrop-ng airgraph-ng experimental%* netlink pcre sqlite (-unstable%*)" PYTHON_TARGETS="python2_7" 1,999 KiB
[ebuild  N 	] games-simulation/openttd-1.5.0::gentoo  USE="iconv openmedia png timidity truetype zlib -aplaymidi -debug -dedicated -icu -lzo" CPU_FLAGS_X86="sse" 9,785 KiB
[ebuild 	U  ] sys-block/gparted-0.23.0::gentoo [0.20.0::gentoo] USE="policykit -btrfs -dmraid -f2fs -fat -hfs -jfs -kde -mdadm -ntfs -reiser4 -reiserfs -xfs" 2,212 KiB
[ebuild   R	] media-sound/xmms2-0.8-r2::gentoo  USE="aac alsa avahi* cdda cxx flac mad mp3 server vorbis xml -airplay -ao -asf -curl -ffmpeg* -gvfs -ices -jack -mac -mlib-update -mms -modplug -mp4* -musepack -ofa -oss -perl -phonehome -pulseaudio -python -ruby -samba -sid -sndfile -speex {-test} -vocoder -wavpack" 0 KiB
[ebuild 	U  ] net-analyzer/tcpdump-4.7.4::gentoo [4.6.2-r1::gentoo] USE="drop-root ipv6 ssl -samba -smi -suid {-test}" 1,127 KiB
[ebuild 	U  ] www-client/opera-31.0.1889.174::gentoo [12.16_p1860-r1::gentoo] USE="(-gstreamer%*) (-gtk%*) (-kde%*) (-multilib%*)" LINGUAS="af az be bg bn ca%* cs da de el en_GB es%* fi fr fy gd hi hr hu id it ja kk ko lt lv mk ms nb nl nn pa pl pt_BR ro ru sk sr sv sw ta te th tr uk uz vi zh_CN zh_TW zu -en_US% -es_419% -fil% -fr_CA -me -pt_PT% (-ar%*) (-es_ES%) (-es_LA%) (-et%*) (-fa%*) (-he%*) (-ka%*) (-pt%*) (-tl%) (-ur%)" 40,994 KiB
[ebuild 	U  ] net-im/pidgin-2.10.11::gentoo [2.10.9-r1::gentoo] USE="dbus eds gstreamer gtk ncurses nls spell xscreensaver (-aqua) -debug -doc -gadu -gnutls -groupwise -idn -meanwhile -mxit -networkmanager -perl -prediction -python -sasl -silc -tcl -tk -zephyr -zeroconf" PYTHON_SINGLE_TARGET="python2_7 -python3_3 -python3_4% (-python3_2%)" PYTHON_TARGETS="python2_7 python3_4%* -python3_3* (-python3_2%)" 9,239 KiB
[ebuild 	U  ] sys-apps/pcsc-lite-1.8.14::gentoo [1.8.11-r1::gentoo] USE="policykit udev -libusb (-selinux)" ABI_X86="32%* (64%*) (-x32)" PYTHON_TARGETS="python2_7%*" 674 KiB
[ebuild 	U  ] app-office/libreoffice-5.0.1.2::gentoo [4.3.5.2::gentoo] USE="bluetooth branding cups dbus eds gnome gtk (-aqua) -coinmp -collada -debug (-firebird) -gltf -gstreamer -gtk3 -java -jemalloc -kde -mysql -odk -postgres (-telepathy) {-test} -vlc (-opengl%*)" LIBREOFFICE_EXTENSIONS="-nlpsolver -scripting-beanshell -scripting-javascript -wiki-publisher" PYTHON_SINGLE_TARGET="python2_7 -python3_3 -python3_4" PYTHON_TARGETS="python2_7 python3_4* -python3_3*" 165,282 KiB
[ebuild 	U  ] x11-apps/x11perf-1.6.0::gentoo [1.5.4::gentoo] 187 KiB
[ebuild 	U  ] x11-apps/xdriinfo-1.0.5::gentoo [1.0.4::gentoo] 119 KiB
[ebuild 	U  ] x11-apps/bitmap-1.0.8::gentoo [1.0.7::gentoo] 174 KiB
[ebuild 	U  ] x11-apps/smproxy-1.0.6::gentoo [1.0.5::gentoo] 129 KiB
[ebuild 	U  ] dev-libs/keybinder-0.3.0-r201::gentoo [0.3.0-r200::gentoo] USE="introspection -lua -python" PYTHON_TARGETS="python2_7%*" 369 KiB
[ebuild 	U  ] media-libs/openal-1.16.0::gentoo [1.15.1-r2::gentoo] USE="alsa portaudio qt4%* (-coreaudio) -debug (-neon) -oss -pulseaudio (-sse%*)" ABI_X86="32* (64) (-x32)" CPU_FLAGS_X86="sse%* sse2%* -sse4_1%" 385 KiB
[ebuild   R	] media-libs/qimageblitz-0.0.6-r1::gentoo  USE="(-altivec) -debug (-3dnow%) (-mmx%*) (-sse%*) (-sse2%*)" CPU_FLAGS_X86="3dnow%* mmx%* sse%* sse2%*" 57 KiB
[ebuild 	U  ] app-arch/engrampa-1.8.1-r1::gentoo [1.8.1::gentoo] USE="-caja -debug" 0 KiB
[ebuild   R	] mate-extra/mate-media-1.8.0::gentoo  USE="aac flac mp3* vorbis -debug -pulseaudio -speex -twolame" 0 KiB
[ebuild 	U  ] x11-themes/gtk-engines-2.20.2-r2:2::gentoo [2.20.2-r1:2::gentoo] USE="accessibility -lua" ABI_X86="32* (64) (-x32)" 673 KiB
[ebuild 	U  ] media-video/mplayer-1.2_pre20150730::gentoo [1.2_pre20130729::gentoo] USE="X alsa cdio dts dvd enca encode gif iconv ipv6 jpeg libass mad mng mp3* network opengl osdmenu png sdl shm truetype unicode vorbis xscreensaver xv -a52 -aalib (-altivec) (-aqua) -bidi -bl -bluray -bs2b -cddb -cdparanoia -cpudetection -debug -dga -directfb -doc -dv -dvb -dvdnav -faac -faad -fbcon -ftp -ggi -gsm -jack -joystick -jpeg2k -ladspa -libcaca -libmpeg2 -lirc -live -lzo -md5sum -nas -nut -openal -oss -pnm -pulseaudio -pvr -radio -rar -rtc -rtmp -samba (-selinux) -speex -tga -theora -toolame -tremor -twolame -v4l -vdpau (-vidix) -x264 -xanim -xinerama -xvid -xvmc -zoran (-3dnow%) (-3dnowext%) (-bindist%*) (-mmx%*) (-mmxext%) (-sse%*) (-sse2%*) (-ssse3%)" CPU_FLAGS_X86="3dnow%* 3dnowext%* mmx%* mmxext%* sse%* sse2%* -ssse3%" VIDEO_CARDS="-mga* -s3virge* -tdfx*" 5,129 KiB
[ebuild 	U  ] kde-base/kdelibs-4.14.11:4/4.14::gentoo [4.14.7:4/4.14::gentoo] USE="acl alsa bzip2 crypt handbook nls opengl policykit spell ssl udev udisks upower (-altivec) (-aqua) -debug -doc (-fam*) -jpeg2k -kerberos -lzma -openexr {-test} -zeroconf (-nepomuk%)" CPU_FLAGS_X86="3dnow mmx sse sse2" 11,359 KiB
[ebuild   R	] x11-libs/qtscriptgenerator-0.2.0::gentoo  USE="-debug -kde*" 371 KiB
[ebuild  NS	] dev-qt/qtwebkit-5.4.2:5::gentoo [4.8.5:4::gentoo] USE="opengl udev -debug -gstreamer -gstreamer010 -multimedia -printsupport -qml {-test} -webp" 32,677 KiB
[ebuild 	U  ] kde-apps/kde4-l10n-15.08.0-r1:4/15.08::gentoo [4.13.3:4/4.13::gentoo] USE="handbook (-aqua) -minimal%" LINGUAS="ar bg bs ca ca@valencia cs da de el en_GB eo%* es et eu fa%* fi fr ga gl he hi hr hu ia id is it ja kk km ko lt lv mr nb nds nl nn pa pl pt pt_BR ro ru sk sl sr sv tr ug uk wa zh_CN zh_TW (-vi%*)" 738,950 KiB
[ebuild 	U  ] kde-apps/libkcddb-15.08.0:4/15.08::gentoo [4.13.3:4/4.13::gentoo] USE="handbook%* (-aqua) -debug -musicbrainz" 155 KiB
[ebuild 	U  ] kde-apps/libkexiv2-4.14.3:4/4.14::gentoo [4.13.3:4/4.13::gentoo] USE="xmp (-aqua) -debug" 134 KiB
[ebuild 	U  ] kde-apps/libkcompactdisc-15.08.0:4/15.08::gentoo [4.13.3:4/4.13::gentoo] USE="alsa (-aqua) -debug" 75 KiB
[ebuild 	U  ] kde-apps/libkipi-4.14.3:4/4.14::gentoo [4.13.3:4/4.13::gentoo] USE="(-aqua) -debug" 93 KiB
[ebuild 	U  ] kde-apps/marble-4.14.3:4/4.14::gentoo [4.13.3:4/4.13::gentoo] USE="handbook kde plasma zip* (-aqua) -debug -designer-plugin -gps -phonon% (-python) -shapefile {-test}" PYTHON_SINGLE_TARGET="(-python2_7%*)" PYTHON_TARGETS="python2_7" 19,248 KiB
[ebuild 	U  ] kde-apps/libkdcraw-4.14.3-r1:4/4.14::gentoo [4.13.3:4/4.13::gentoo] USE="(-aqua) -debug" 98 KiB
[ebuild 	U  ] kde-base/libkworkspace-4.11.22:4/4.11::gentoo [4.11.14:4/4.11::gentoo] USE="(-aqua) -debug" 13,237 KiB
[ebuild 	U  ] kde-apps/kdialog-15.08.0:4/15.08::gentoo [4.13.3:4/4.13::gentoo] USE="(-aqua) -debug" 2,014 KiB
[ebuild 	U  ] kde-base/ksysguard-4.11.22:4/4.11::gentoo [4.11.11:4/4.11::gentoo] USE="handbook (-aqua) -debug -lm_sensors {-test}" 0 KiB
[ebuild 	U  ] kde-apps/kapptemplate-4.14.3:4/4.14::gentoo [4.13.3:4/4.13::gentoo] USE="handbook (-aqua) -debug" 694 KiB
[ebuild 	U  ] kde-apps/libkonq-15.08.0:4/15.08::gentoo [4.13.3:4/4.13::gentoo] USE="(-aqua) -debug {-test}" 0 KiB
[ebuild 	U  ] kde-apps/kcmshell-15.08.0:4/15.08::gentoo [4.13.3:4/4.13::gentoo] USE="(-aqua) -debug" 7,719 KiB
[ebuild 	U  ] kde-apps/kreadconfig-15.08.0:4/15.08::gentoo [4.13.3:4/4.13::gentoo] USE="(-aqua) -debug" 0 KiB
[ebuild 	U  ] media-libs/libkface-4.12.0:4/3::gentoo [4.0.0:4/4::gentoo] USE="(-aqua)" 67,899 KiB
[ebuild 	U  ] kde-apps/phonon-kde-15.08.0:4/15.08::gentoo [4.13.3:4/4.13::gentoo] USE="alsa (-aqua) -debug -pulseaudio" 0 KiB
[ebuild 	U  ] kde-apps/kdesu-15.08.0:4/15.08::gentoo [4.14.3:4/4.14::gentoo] USE="handbook (-aqua) -debug" 0 KiB
[ebuild 	U  ] app-office/scribus-1.5.0-r1::gentoo [1.4.4::gentoo] USE="boost%* minimal pdf -debug -examples -graphicsmagick% -hunspell -osg% -scripts -templates -tk (-cairo%*)" LINGUAS="af ar bg br ca cs%* cy da%* de el en_GB eo%* es%* et eu fi fr gl he%* hr%* hu ia%* id is%* it ja ko ku%* lt%* nl pl%* pt pt_BR ro%* ru sk%* sl sq sr sv tr uk zh_CN zh_TW -ca_ES% -cs_CZ -cy_GB% -da_DK -de_1901 -de_CH -de_DE% -en_AU -en_EN% -en_US -es_ES -fi_FI% -hu_HU% -id_ID% -is_IS% -la% -lt_LT -nb_NO -nn_NO% -pl_PL -pt_PT% -ro_RO% -ru_RU_0% -sa -sk_SK -sl_SI% -sv_SE% -th_TH -uk_UA%" PYTHON_SINGLE_TARGET="(-python2_7%*)" PYTHON_TARGETS="python2_7" 74,090 KiB
[ebuild 	U  ] kde-base/krosspython-4.14.3:4/4.14::gentoo [4.13.3:4/4.13::gentoo] USE="(-aqua) -debug" PYTHON_SINGLE_TARGET="(-python2_7%*)" PYTHON_TARGETS="python2_7" 128 KiB
[ebuild  N 	] kde-apps/kdebase-kioslaves-15.08.0:4/15.08::gentoo  USE="bzip2 exif handbook sftp (-aqua) -debug -lzma -minimal -openexr -samba" 0 KiB
[ebuild 	U  ] kde-apps/konsole-4.14.3:4/4.14::gentoo [4.13.3:4/4.13::gentoo] USE="handbook (-aqua) -debug -minimal% {-test}" 445 KiB
[ebuild 	U  ] kde-apps/audiocd-kio-15.08.0:4/15.08::gentoo [4.13.3:4/4.13::gentoo] USE="flac handbook vorbis (-aqua) -debug" 51 KiB
[ebuild 	U  ] app-cdr/k3b-2.0.3-r2:4::gentoo [2.0.2_p20140225:4::gentoo] USE="dvd encode flac handbook mad mp3* vorbis (-aqua) -debug -emovix -ffmpeg -libav% -musepack -sndfile -sox -taglib -vcd" LINGUAS="ast%* be%* bg%* bs%* ca%* ca@valencia%* cs%* csb%* da%* de%* el%* en_GB%* eo%* es%* et%* eu%* fi%* fr%* ga%* gl%* he%* hi%* hr%* hu%* is%* it%* ja%* kk%* km%* ko%* ku%* lt%* lv%* mai%* mr%* ms%* nb%* nds%* nl%* nn%* oc%* pa%* pl%* pt%* pt_BR%* ro%* ru%* se%* sk%* sl%* sr%* sv%* th%* tr%* ug%* uk%* zh_CN%* zh_TW%* -hne% -sr@ijekavian% -sr@ijekavianlatin% -sr@latin%" 9,634 KiB
[ebuild 	U  ] media-libs/libkgeomap-4.12.0:4/2.1::gentoo [4.0.0:4/4::gentoo] USE="(-aqua) {-test}" 0 KiB
[ebuild 	U  ] media-plugins/kipi-plugins-4.12.0:4::gentoo [4.0.0:4::gentoo] USE="cdr crypt handbook imagemagick opengl (-aqua) -calendar -debug -expoblending -gpssync -ipod -mediawiki -panorama -redeyes -scanner -upnp -videoslideshow -vkontakte (-mjpeg%)" LINGUAS="af%* ar az be bg bn br bs ca cs csb cy da de 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 -sr@Latn% -uz@cyrillic%" 0 KiB
[ebuild 	U  ] media-sound/amarok-2.8.0-r3:4::gentoo [2.8.0-r2:4::gentoo] USE="cdda embedded handbook opengl utils (-aqua) -debug -ipod -lastfm -mp3tunes -mtp -ofa {-test} (-nepomuk%)" LINGUAS="bs ca ca@valencia cs da de el en_GB es et eu fi fr ga gl hu it ja lt lv nb nl pa pl pt pt_BR ro ru sl sr sv tr uk zh_CN zh_TW -sr@ijekavian -sr@ijekavianlatin -sr@latin" 39,014 KiB
[ebuild 	U  ] media-gfx/digikam-4.12.0:4::gentoo [4.0.0:4::gentoo] USE="handbook thumbnails -addressbook (-aqua) -debug -doc -gphoto2 -mysql -semantic-desktop% -video (-nepomuk%) (-themedesigner%)" LINGUAS="af ar az be bg bn br bs ca cs csb cy da de 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 -sr@Latn -uz@cyrillic" 0 KiB
[ebuild 	U  ] dev-util/kdevplatform-1.7.1:4::gentoo [1.6.0:4::gentoo] USE="classbrowser%* konsole%* (-aqua) -cvs -debug -reviewboard -subversion {-test}" LINGUAS="bs ca ca@valencia da de el en_GB%* es et fi fr gl it kk nb nl pl pt pt_BR ru sk sl sv th tr%* uk zh_CN zh_TW" 1,886 KiB
[ebuild 	U  ] dev-util/kdevelop-4.7.1-r1:4::gentoo [4.6.0:4::gentoo] USE="cmake cxx gdbui%* (-aqua) -debug -okteta -qthelp {-test}" LINGUAS="bs ca ca@valencia da de el en_GB es et fi fr gl hu it kk nb nds nl pl pt pt_BR ru sk sl sv th tr%* uk zh_CN zh_TW" 4,338 KiB
[blocks b  	] <dev-util/kdevelop-4.7.1:4 ("<dev-util/kdevelop-4.7.1:4" is blocking dev-util/kdevplatform-1.7.1)
[ebuild  N 	] app-admin/system-config-printer-1.4.8::gentoo  USE="gnome-keyring policykit -doc" LINGUAS="ar as bg bn br bs ca cs cy da de el en_GB es et fa fi fr gu he hi hr hu 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 sv ta te th tr uk vi zh_CN zh_TW -bn_IN -hy -sr@latin" PYTHON_TARGETS="python2_7" 883 KiB
[uninstall 	] app-admin/system-config-printer-gnome-1.4.3-r1::gentoo  USE="gnome-keyring" LINGUAS="ar as bg bn br bs ca cs cy da de el en_GB es et fa fi fr gu he hi hr hu 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 sv ta te th tr uk vi zh_CN zh_TW -bn_IN -hy -sr@latin" PYTHON_SINGLE_TARGET="python2_7 -python2_6" PYTHON_TARGETS="python2_7 -python2_6" 
[blocks b  	] app-admin/system-config-printer-gnome ("app-admin/system-config-printer-gnome" is blocking app-admin/system-config-printer-1.4.8)
[uninstall 	] app-admin/system-config-printer-common-1.4.3::gentoo  USE="policykit -doc" PYTHON_SINGLE_TARGET="python2_7 -python2_6" PYTHON_TARGETS="python2_7 -python2_6" 
[blocks b  	] app-admin/system-config-printer-common ("app-admin/system-config-printer-common" is blocking app-admin/system-config-printer-1.4.8)
[ebuild 	U  ] x11-base/xorg-server-1.17.2-r1:0/1.17.2::gentoo [1.16.0:0/1.16.0::gentoo] USE="glamor* ipv6 nptl suid udev xorg -dmx -doc -kdrive -minimal (-selinux) -static-libs -systemd -tslib -unwind -wayland -xephyr% -xnest -xvfb" 5,633 KiB
[uninstall 	] x11-libs/glamor-0.6.0-r1::gentoo  USE="xv -gles -static-libs" 
[blocks b  	] x11-libs/glamor ("x11-libs/glamor" is blocking x11-base/xorg-server-1.17.2-r1)
[uninstall 	] x11-drivers/xf86-video-modesetting-0.9.0::gentoo 
[blocks b  	] x11-drivers/xf86-video-modesetting ("x11-drivers/xf86-video-modesetting" is blocking x11-base/xorg-server-1.17.2-r1)
[ebuild 	U  ] x11-drivers/xf86-video-virtualbox-5.0.2::gentoo [4.3.14::gentoo] USE="dri" PYTHON_SINGLE_TARGET="(-python2_7%*)" PYTHON_TARGETS="python2_7" 0 KiB
[ebuild 	U  ] x11-drivers/xf86-input-synaptics-1.8.2::gentoo [1.7.6::gentoo] 473 KiB
[ebuild 	U  ] x11-drivers/xf86-input-keyboard-1.8.1::gentoo [1.7.0::gentoo] 312 KiB
[ebuild 	U  ] x11-drivers/xf86-input-evdev-2.9.2::gentoo [2.8.4::gentoo] 379 KiB
[ebuild 	U  ] x11-drivers/xf86-video-ati-7.5.0::gentoo [7.4.0::gentoo] USE="glamor udev" 791 KiB
[ebuild 	U  ] x11-drivers/xf86-input-mouse-1.9.1::gentoo [1.9.0::gentoo] 341 KiB
[ebuild 	U  ] app-emulation/virtualbox-guest-additions-5.0.2::gentoo [4.3.14::gentoo] USE="X" 0 KiB
[ebuild 	U  ] app-text/texlive-core-2015::gentoo [2013-r1::gentoo] USE="X luajittex%* -cjk -doc -source -tk -xetex" 1,057 KiB
[uninstall 	] dev-tex/luatex-0.76.0::gentoo  USE="-doc" 
[blocks b  	] dev-tex/luatex ("dev-tex/luatex" is blocking app-text/texlive-core-2015)
[ebuild 	U  ] dev-texlive/texlive-basic-2015::gentoo [2013::gentoo] USE="luajittex%* -doc -source" 5,547 KiB
[blocks b  	] <dev-texlive/texlive-basic-2014 ("<dev-texlive/texlive-basic-2014" is blocking app-text/texlive-core-2015)
[ebuild 	U  ] dev-texlive/texlive-fontutils-2015::gentoo [2013::gentoo] USE="-doc -source" 208 KiB
[ebuild 	U  ] dev-texlive/texlive-latex-2015::gentoo [2013::gentoo] USE="-doc -source" 994 KiB
[ebuild 	U  ] dev-texlive/texlive-latexrecommended-2015::gentoo [2013::gentoo] USE="-doc -source" 12,111 KiB
[blocks b  	] <dev-texlive/texlive-latexrecommended-2014 ("<dev-texlive/texlive-latexrecommended-2014" is blocking dev-texlive/texlive-latex-2015)
[ebuild 	U  ] dev-dotnet/libgdiplus-3.12::gentoo [2.10.9-r2::gentoo] USE="cairo" 672 KiB
[ebuild 	U  ] dev-lang/mono-4.0.3.20::gentoo [3.2.8::gentoo] USE="nls (-doc) -minimal -pax_kernel -xen (-debug%)" 93,738 KiB
[ebuild 	U  ] lxqt-base/lxqt-panel-0.9.0::gentoo [0.7.0-r1::gentoo] USE="alsa clock desktopswitch kbindicator mainmenu mount quicklaunch showdesktop taskbar tray volume -colorpicker -cpuload -dom -networkmonitor -pulseaudio -screensaver -sensors -sysstat -worldclock (-teatime%)" 272 KiB
[ebuild 	U  ] lxqt-base/lxqt-runner-0.9.0::gentoo [0.7.0-r1::gentoo] 189 KiB
[ebuild 	U  ] x11-misc/pcmanfm-qt-0.9.0::gentoo [0.7.0::gentoo] 185 KiB
[ebuild 	U  ] lxqt-base/lxqt-meta-0.9.0-r2::gentoo [0.7.0-r1::gentoo] USE="filemanager%* icons oxygen%* policykit -admin% -lightdm -lximage -minimal -powermanagement -sddm -ssh-askpass" 0 KiB
[ebuild  N 	] x11-libs/libfm-extra-1.2.3:0/4.3.0::gentoo  878 KiB
[ebuild 	U  ] lxde-base/menu-cache-1.0.0-r1:0/2::gentoo [0.5.1:0/2::gentoo] 256 KiB
[ebuild 	U  ] x11-libs/libfm-1.2.3-r1:0/4.3.0::gentoo [1.2.0:0/4.0.0::gentoo] USE="automount exif%* gtk%* udisks -debug -doc -examples -vala" 0 KiB
[ebuild  N 	] sys-libs/ntdb-1.0-r1::gentoo  USE="python" ABI_X86="32 (64) (-x32)" PYTHON_TARGETS="python2_7" 776 KiB
[ebuild 	U  ] net-fs/samba-4.1.20-r1::gentoo [3.6.24::gentoo] USE="acl avahi client* cups fam ldap -addns -ads -aio* -cluster -dmapi -gnutls% -iprint% -quota (-selinux) -syslog -systemd% {-test%} -winbind* (-caps%) (-debug%) (-doc%) (-examples%) (-ldb%) (-netapi%*) (-pam%*) (-readline%*) (-server%*) (-smbclient%*) (-smbsharemodes%) (-swat%)" ABI_X86="(-32%) (-64%*) (-x32%)" PYTHON_TARGETS="python2_7%*" 19,103 KiB
[ebuild 	U  ] gnome-base/gnome-control-center-3.16.3:2::gentoo [3.12.1-r1:2::gentoo] USE="bluetooth colord cups gnome-online-accounts i18n networkmanager%* -debug -kerberos -v4l -wayland%" INPUT_DEVICES="-wacom" 6,903 KiB
[ebuild 	U  ] gnome-base/gnome-core-apps-3.16.0:3.0::gentoo [3.12.0:3.0::gentoo] USE="bluetooth cdr cups" 0 KiB
[ebuild 	U  ] gnome-base/gnome-3.16.0:2.0::gentoo [3.12.0:2.0::gentoo] USE="accessibility bluetooth cdr classic cups extras" 0 KiB
[blocks B  	] sys-apps/systemd ("sys-apps/systemd" is blocking sys-fs/udev-225)
[blocks B  	] <net-fs/samba-4.1.7 ("<net-fs/samba-4.1.7" is hard blocking sys-libs/ntdb-1.0-r1)
[blocks B  	] sys-apps/gentoo-systemd-integration ("sys-apps/gentoo-systemd-integration" is blocking sys-fs/udev-225)
[blocks B  	] sys-fs/udev ("sys-fs/udev" is blocking sys-apps/systemd-225, sys-apps/systemd-215-r3, sys-apps/gentoo-systemd-integration-4)
[blocks B  	] <=x11-libs/libfm-1.2.3 ("<=x11-libs/libfm-1.2.3" is hard blocking x11-libs/libfm-extra-1.2.3)

Total: 1505 packages (1041 upgrades, 2 downgrades, 175 new, 33 in new slots, 254 reinstalls, 35 uninstalls), Size of downloads: 5,204,989 KiB
Fetch Restriction: 1 package (1 unsatisfied)
Conflict: 78 blocks (5 unsatisfied)

Fetch instructions for dev-java/oracle-jdk-bin-1.8.0.60:
 * 
 * Oracle requires you to download the needed files manually after
 * accepting their license through a javascript capable web browser.
 * 
 * Download the following files:
 *   jdk-8u60-linux-x64.tar.gz
 * at 'http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html'
 * and move them to '/usr/portage/distfiles'
 * 
 * If the above mentioned urls do not point to the correct version anymore,
 * please download the files from Oracle's java download archive:
 * 
 *	http://www.oracle.com/technetwork/java/javase/downloads/java-archive-javase8-2177648.html#jdk-8u60-oth-JPR
 * 

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

dev-lang/perl:0

  (dev-lang/perl-5.22.0:0/5.22::gentoo, ebuild scheduled for merge) pulled in by
	=dev-lang/perl-5.22* required by (virtual/perl-Compress-Raw-Bzip2-2.68.0:0/0::gentoo, ebuild scheduled for merge)
	^          	^^^^^                                                                                                                                                	
	(and 41 more with the same problem)

  (dev-lang/perl-5.18.2-r1:0/5.18::gentoo, installed) pulled in by
	dev-lang/perl:0/5.18=[-build(-)] required by (dev-perl/PlRPC-0.202.0-r2:0/0::gentoo, installed)
             	^^^^^^^^                                                                                                          	
	(and 31 more with the same problem)

dev-libs/icu:0

  (dev-libs/icu-55.1:0/55::gentoo, ebuild scheduled for merge) pulled in by
	>=dev-libs/icu-51.2-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] required by (dev-libs/libxml2-2.9.2-r1:2/2::gentoo, ebuild scheduled for merge)
                                                                                                                                                                                                                                                                                         	
	>=dev-libs/icu-51.2-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] required by (media-libs/harfbuzz-0.9.41:0/0.9.18::gentoo, ebuild scheduled for merge)
                                                                                                                                                                                                                                                                                               	

  (dev-libs/icu-52.1:0/52::gentoo, installed) pulled in by
	dev-libs/icu:0/52= required by (media-libs/libcdr-0.1.1:0/0::gentoo, installed)
            	^^^^^^                                                                                             	

app-text/poppler:0

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

  (app-text/poppler-0.26.2:0/46::gentoo, installed) pulled in by
	>=app-text/poppler-0.14:0/46=[cairo] required by (app-text/atril-1.8.1:0/0::gentoo, installed)
                       	^^^^^^                                                                                                 	


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.

  (x11-libs/libfm-extra-1.2.3:0/4.3.0::gentoo, ebuild scheduled for merge) pulled in by
	x11-libs/libfm-extra required by (lxde-base/menu-cache-1.0.0-r1:0/2::gentoo, ebuild scheduled for merge)
	~x11-libs/libfm-extra-1.2.3 required by (x11-libs/libfm-1.2.3-r1:0/4.3.0::gentoo, ebuild scheduled for merge)

  (sys-fs/udev-225:0/0::gentoo, ebuild scheduled for merge) pulled in by
	>=sys-fs/udev-208-r1:0/0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?,static-libs?] (>=sys-fs/udev-208-r1:0/0[abi_x86_32(-),abi_x86_64(-)]) required by (virtual/libudev-215-r1:0/1::gentoo, ebuild scheduled for merge)
	>=sys-fs/udev-217 required by (virtual/udev-217:0/0::gentoo, ebuild scheduled for merge)

  (sys-apps/systemd-225:0/2::gentoo, ebuild scheduled for merge) pulled in by
	>=sys-apps/systemd-207 required by (sys-apps/gentoo-systemd-integration-4:0/0::gentoo, installed)
	>=sys-apps/systemd-204[pam] required by (sys-auth/pambase-20150213:0/0::gentoo, ebuild scheduled for merge)
	>=sys-apps/systemd-31 required by (gnome-base/gnome-shell-3.16.3:0/0::gentoo, ebuild scheduled for merge)
	>=sys-apps/systemd-186:0=[pam] required by (gnome-base/gdm-3.16.2:0/0::gentoo, installed)
	>=sys-apps/systemd-31 required by (gnome-base/gnome-control-center-3.16.3:2/2::gentoo, ebuild scheduled for merge)
	sys-apps/systemd:0= required by (sys-apps/dbus-1.8.20:0/0::gentoo, ebuild scheduled for merge)
	sys-apps/systemd required by (gnome-base/gnome-settings-daemon-3.16.3:0/0::gentoo, ebuild scheduled for merge)
	sys-apps/systemd required by (x11-wm/mutter-3.16.3:0/0::gentoo, ebuild scheduled for merge)
	>=sys-apps/systemd-186:0/2=[pam] required by (gnome-base/gdm-3.16.2:0/0::gentoo, installed)

  (sys-libs/ntdb-1.0-r1:0/0::gentoo, ebuild scheduled for merge) pulled in by
	>=sys-libs/ntdb-1.0[python,python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_single_target_python2_7(+)] (>=sys-libs/ntdb-1.0[python,python_targets_python2_7(-),-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_single_target_python2_7(+)]) required by (net-fs/samba-4.1.20-r1:0/0::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):

https://wiki.gentoo.org/wiki/Handbook:X86/Working/Portage#Blocked_packages

4

11.09.2015, 00:33

Naja beim kurzen rüber gucken ist mir aufgefallen das du hier "stabile" mit "maskierte" Paketen mischt...

Quellcode

1
zb. udev-225 oder lxde-base/menu-cache-1.0.0-r1:0/2::gentoo


Guck doch mal nach ob deine package.mask alles passt und du auch alle maskierten Pakete drinnen stehen hast :) und schau mal ob auch bei den use flags alles passt ... sicher ist sicher ....

Dann hoffe du hast das hier auch runter geladen und am richtigen platz gespeichert wie es hier steht..

Quellcode

1
2
3
4
5
6
7
8
9
Download the following files:
 *   jdk-8u60-linux-x64.tar.gz
 * at 'http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html'
 * and move them to '/usr/portage/distfiles'
 * 
 * If the above mentioned urls do not point to the correct version anymore,
 * please download the files from Oracle's java download archive:
 * 
 *	http://www.oracle.com/technetwork/java/javase/downloads/java-archive-javase8-2177648.html#jdk-8u60-oth-JPR


Soweit ich das jetzt weiss solltest du auch gucken wegen 32 oder 64 Bit bei

Quellcode

1
dev-libs/icu:0   // in der make.conf   ABI_X86="64 32" hinzufügen falls noch nicht geschen


Eventuell finde ich noch paar Tipps wenn ich nach dem Nachtdienst draufguck ^^ (alles aber ohne Gewehr ;-) )

lg
Schatti
''''''''''''''''''''''''''''''''''''''''''''''''
Gentoo-Linux
der G-Punkt eines Pc´s

''''''''''''''''''''''''''''''''''''''''''''''''

5

11.09.2015, 12:56

"Guck doch mal nach ob deine package.mask alles passt und du auch alle maskierten Pakete drinnen stehen hast :) und schau mal ob auch bei den use flags alles passt ... sicher ist sicher ...."

hmm... bin bei Gentoo Neuling, deswegen tu ich mich mit denen noch sehr schwer.

Die beiden anderen Sachen hab ich gemacht, hat aber nix gebracht. ((

In den News stand was mit Multilib einstellen. Evtl. koennte das weiterhelfen?

Hast Du noch nen Tip?
hab auch mal ein gemacht, das gibts garnicht irgendwie.

Quellcode

1
2
3
emerge --depclean x11-libs/libfm-extra
--- Couldn't find 'x11-libs/libfm-extra' to depclean.
>>> No packages selected for removal by depclean

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »rabo« (11.09.2015, 13:07)


6

11.09.2015, 21:15

Aso ups sorry ...

Ja also am besten damit wir auf einen grünen Zweig hier kommen.

1) Was für einen Desktop hast du den am System installiert ? (Xfce4, Gnome, Kde ?? )

2) Poste am besten deine make.config hier mal und deine package.mask, package.accept_keywords hier ( unter /etc/portage/ zu finden .... ( dort rauskopieren und die kopie dann auf package-mask.txt umbennenen und hier hoch laden)
damit kann ich oder andere hier sicher dir mehr helfen.

3) Ist es ein reines Gentoo System was du hast ? oder ist es eventuell ein Sabyon Linux ??

Da sind ja viele QT und GTK use flags ... hmmm ich würde mich für eine Oberfläche entscheiden ... entweder QT oder GTK.

lg
schatti
''''''''''''''''''''''''''''''''''''''''''''''''
Gentoo-Linux
der G-Punkt eines Pc´s

''''''''''''''''''''''''''''''''''''''''''''''''

7

11.09.2015, 21:36

ok.
zu 1. Mate und openbox

zu3. das war eine Gentoo-Live-DVD, die ich nach und nach bereinigt habe, bzw immernoch dabei bin Balast abzuwerfen

zu 2. angehaengt

ich weis, das alles noch etwas Wirrwar ist bin aber dabei das zu entwirren. Hab schon einiges weg :-)
ging auch zwischendurch schonmal. wollte auf die Multilib umstellen wie in den news beschrieben aber das sollte ich erstmal lassen ;-)

Wie ist das mit QT und GTK das liegt doch an den unterschiedlichen Programmen oder?
»rabo« hat folgende Dateien angehängt:
  • keywords.txt (2,02 kB - 3 mal heruntergeladen - zuletzt: 11.10.2015, 18:19)
  • make.conf.txt (2,17 kB - 3 mal heruntergeladen - zuletzt: 15.02.2016, 16:44)

8

11.09.2015, 23:23

Puh ... also Wirr warr ist harmlos sorry ... aber nach der Install - Anleitung hast du das mit Sicherheit nicht installiert oder ?
Wenn du Mate und Openbox hast verstehe ich nicht wieso er lxde Dinge installieren will ?? Für meinen Geschmack passt da vieles nicht zusammen ...

Jedenfalls hast du viele Abhängigkeiten ich denk mal in der package.mask wird auch ein Haufen stehen (leider nicht mit gepostet aber egal) jedenfalls glaub ich das du bei deiner reinigungs- Aktion div. Abhängigkeiten gelöscht oder kaputt gemacht hast ...
Außerdem muss man normalerweise nichts bereinigen wenn man Gentoo installiert ... da man ja mit dem Grundgerüst anfängt also mit Kernel und Konsole ... danach kommt erst der Desktop und das X System an die reihe und wenn das alles klappt installiert man erst seine Lieblings tools zb. Libreoffice usw.. halt.


Mate und openbox sind beide auf GTK ( http://www.gtk.org/ ) ausgelegt ... wieso du dann viele QT Dinge hast keine Ahnung ... hast du viele KDE Programme installiert ?

Ich würde dir fast schon empfehlen neu anzufangen ... einfach eine wiederbeschreibbare CD/DVD nehmen (http://distfiles.gentoo.org/releases/amd…al-20150910.iso) <-- das drauf brennen und nach
dieser Anleitung arbeiten --> https://wiki.gentoo.org/wiki/Handbook:AMD64/de

Eventuell haben andere hier eine bessere Idee oder wissen einen anderen Weg aus dem Wirr warr heraus ....
Ich werde mir das ganze nochmal angucken vieleicht fällt mir noch was ein ...

(zb. könntest du mal probieren revdep-rebuild probieren

lg
schatti
''''''''''''''''''''''''''''''''''''''''''''''''
Gentoo-Linux
der G-Punkt eines Pc´s

''''''''''''''''''''''''''''''''''''''''''''''''

9

11.09.2015, 23:56

ja das haengt an der live dvd, da auf der alles drauf ist. gnome/kde/lxde etc.
dann habe ich angefangen das, was ich nicht wirklich brauche runterzuschmeissen. naja war doch keine so gute idee scheinbar, da er da fragmente dagelassen hat.
dann sollte das system schon x86 und amd64 koennen nebeneinander.

vielleicht war auch die gentoo-live-dvd muell. keine ahnung hab die letzten 20 jahre mit debian gearbeitet. gentoo hat mich eben mal gereizt. :-)

werd meine tests noch etwas betreiben, wenns nix wird und es nicht relat. einfach zu handhaben ist,gibts eben wieder debian. ;-)

Danke fuers helfen.

warum ist es bei Gentoo so ein Problem Programme zu testen und dann ggf. wieder zu entsorgen ohne das was zurueckbleibt. Verstehe ich nicht wirklich.

kann es auch sein, das es damit zusammenhaengt, das ich das profil gewechselt habe?

qt wird glaube ich von KDevelop benoetigt und das brauche ich zum arbeiten, genauso wie eclipse und netbeans.
»rabo« hat folgende Datei angehängt:
  • package.mask.txt (31,37 kB - 1 mal heruntergeladen - zuletzt: 11.10.2015, 18:23)

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »rabo« (12.09.2015, 00:02)


10

12.09.2015, 03:17

Es ist nicht schwer Programme unter Gentoo zu testen, sofern man ein sauber installiertes System hat. Es kann schon mal vorkommen das man bei Gentoo 1 - 2 Tage braucht fürs Grundsystem ..

Gentoo ist eben kein vorkompiliertes System man baut es sich selber zusammen. Dafür werden zb. die USE Flags verwendet. Und man muss halt vieles selber einstellen in den config Files ... Gentoo ist halt für Leute die gern viel Lesen ... (müssen) ob sie wollen oder nicht ^^ :D
Wie schon gesagt man fängt ganz von vorne an und arbeitet sich nach oben .... das man Gentoo von einer DVD so komisch installieren kann wusste ich gar nicht ....

Ich würde dir echt empfehlen die Install Anleitung zu lesen was ich im Vorpost reingestellt habe den Link ...

Gentoo ist nicht ganz einfach am Anfang ... aber wenn man das ganze halbwegs verstanden hat will man es nicht mehr missen :)

lg
schatti
''''''''''''''''''''''''''''''''''''''''''''''''
Gentoo-Linux
der G-Punkt eines Pc´s

''''''''''''''''''''''''''''''''''''''''''''''''