blob: 337b64808a0cf36d28645cfde8466a62f2baf171 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
|
# $FreeBSD$
#
COMMENT = Graphics tools and libraries
SUBDIR += 4va
SUBDIR += Cgraph
SUBDIR += Coin
SUBDIR += EZWGL
SUBDIR += GraphicsMagick
SUBDIR += Hermes
SUBDIR += IPA
SUBDIR += ImageMagick
SUBDIR += ImageMagick-nox11
SUBDIR += O2-tools
SUBDIR += OpenEXR
SUBDIR += R-cran-GDD
SUBDIR += R-cran-RColorBrewer
SUBDIR += R-cran-colorspace
SUBDIR += R-cran-diagram
SUBDIR += R-cran-dichromat
SUBDIR += R-cran-ggplot2
SUBDIR += R-cran-munsell
SUBDIR += R-cran-pixmap
SUBDIR += R-cran-png
SUBDIR += R-cran-rgdal
SUBDIR += R-cran-rtiff
SUBDIR += R-cran-scales
SUBDIR += R-cran-shape
SUBDIR += SciPlot
SUBDIR += a2png
SUBDIR += aalib
SUBDIR += aaphoto
SUBDIR += acidwarp
SUBDIR += aeskulap
SUBDIR += agave
SUBDIR += agg
SUBDIR += alpng
SUBDIR += amide
SUBDIR += ampasACES-container
SUBDIR += ampasCTL
SUBDIR += animorph
SUBDIR += aoi
SUBDIR += apngasm
SUBDIR += apngdis
SUBDIR += apvlv
SUBDIR += aqsis
SUBDIR += asciio
SUBDIR += autopano-sift-c
SUBDIR += autoq3d
SUBDIR += autotrace
SUBDIR += aview
SUBDIR += ayam
SUBDIR += backfract
SUBDIR += barbecue
SUBDIR += barcode
SUBDIR += batik
SUBDIR += bbrb
SUBDIR += blender
SUBDIR += blender-doc
SUBDIR += bmeps
SUBDIR += bmp2html
SUBDIR += box
SUBDIR += boxer
SUBDIR += bugle
SUBDIR += burplex
SUBDIR += c-a-i-r
SUBDIR += cadubi
SUBDIR += cairo
SUBDIR += cairo-reference
SUBDIR += cairomm
SUBDIR += cal3d
SUBDIR += cal3d-devel
SUBDIR += camera
SUBDIR += camerakit
SUBDIR += cbrpager
SUBDIR += cbview
SUBDIR += cbviewer
SUBDIR += cegui
SUBDIR += cenon
SUBDIR += cfdg
SUBDIR += chbg
SUBDIR += cimg
SUBDIR += cinepaint
SUBDIR += clutter
SUBDIR += clutter-box2d
SUBDIR += clutter-gtk
SUBDIR += colord
SUBDIR += colord-gtk
SUBDIR += comical
SUBDIR += commons-utilities
SUBDIR += compupic
SUBDIR += converseen
SUBDIR += corona
SUBDIR += cosmoplayer
SUBDIR += crw
SUBDIR += cthumb
SUBDIR += cuneiform
SUBDIR += curator
SUBDIR += cuttlefish
SUBDIR += danpei
SUBDIR += darknock
SUBDIR += darktable
SUBDIR += dataplot
SUBDIR += dc20pack
SUBDIR += dcraw
SUBDIR += dcraw-m
SUBDIR += deegree-csw
SUBDIR += deegree-igeoportal
SUBDIR += deegree-wcs
SUBDIR += deegree-wfs
SUBDIR += deegree-wms
SUBDIR += deegree-wps
SUBDIR += deegree-wpvs
SUBDIR += delaboratory
SUBDIR += devil
SUBDIR += dia
SUBDIR += diacanvas2
SUBDIR += digikam-kde4
SUBDIR += digikam-kde4-doc
SUBDIR += digikam-kde4-l10n
SUBDIR += ditaa
SUBDIR += djview4
SUBDIR += djvulibre
SUBDIR += dmtx-utils
SUBDIR += dri
SUBDIR += driconf
SUBDIR += duhdraw
SUBDIR += dynamechs
SUBDIR += easypaint
SUBDIR += ecore-evas
SUBDIR += ecore-sdl
SUBDIR += edje
SUBDIR += edje_viewer
SUBDIR += electrix
SUBDIR += enblend
SUBDIR += ender
SUBDIR += enesim
SUBDIR += entangle
SUBDIR += eog
SUBDIR += eog-plugins
SUBDIR += eos-movrec
SUBDIR += epdfview
SUBDIR += epeg
SUBDIR += epix
SUBDIR += eps2png
SUBDIR += epstool
SUBDIR += etch
SUBDIR += eterm-bg
SUBDIR += ethumb
SUBDIR += evas
SUBDIR += evas-core
SUBDIR += evas-engine-buffer
SUBDIR += evas-engine-opengl
SUBDIR += evas-engine-sdl
SUBDIR += evas-engine-x11
SUBDIR += evas-loader-bmp
SUBDIR += evas-loader-eet
SUBDIR += evas-loader-generic
SUBDIR += evas-loader-gif
SUBDIR += evas-loader-ico
SUBDIR += evas-loader-jpeg
SUBDIR += evas-loader-pmaps
SUBDIR += evas-loader-png
SUBDIR += evas-loader-psd
SUBDIR += evas-loader-svg
SUBDIR += evas-loader-tga
SUBDIR += evas-loader-tiff
SUBDIR += evas-loader-wbmp
SUBDIR += evas-loader-xpm
SUBDIR += evas_generic_loaders-gst
SUBDIR += evas_generic_loaders-pdf
SUBDIR += evas_generic_loaders-ps
SUBDIR += evas_generic_loaders-raw
SUBDIR += evas_generic_loaders-svg
SUBDIR += evas_generic_loaders-xcf
SUBDIR += evince
SUBDIR += evolvotron
SUBDIR += exact-image
SUBDIR += exif
SUBDIR += exifprobe
SUBDIR += exiftags
SUBDIR += exiftran
SUBDIR += exiv2
SUBDIR += exrtools
SUBDIR += feh
SUBDIR += ffff
SUBDIR += fig2sxd
SUBDIR += figurine
SUBDIR += flam3
SUBDIR += flasm
SUBDIR += fli2gif
SUBDIR += flphoto
SUBDIR += fly
SUBDIR += fortytwo
SUBDIR += fotofix
SUBDIR += fotoxx
SUBDIR += founts
SUBDIR += fpc-cairo
SUBDIR += fpc-fpgtk
SUBDIR += fpc-ggi
SUBDIR += fpc-graph
SUBDIR += fpc-hermes
SUBDIR += fpc-imagemagick
SUBDIR += fpc-imlib
SUBDIR += fpc-libgd
SUBDIR += fpc-libpng
SUBDIR += fpc-ncurses
SUBDIR += fpc-opengl
SUBDIR += fpc-pasjpeg
SUBDIR += fpc-proj4
SUBDIR += fpc-rsvg
SUBDIR += fpc-svgalib
SUBDIR += fracplanet
SUBDIR += fraqtive
SUBDIR += freeglut
SUBDIR += freeimage
SUBDIR += frei0r
SUBDIR += frei0r-plugins
SUBDIR += frei0r-plugins-gavl
SUBDIR += frei0r-plugins-opencv
SUBDIR += ftgl
SUBDIR += fujiplay
SUBDIR += fusefs-gphotofs
SUBDIR += fv
SUBDIR += fyre
SUBDIR += g2
SUBDIR += gauche-gl
SUBDIR += gcolor
SUBDIR += gcolor2
SUBDIR += gd
SUBDIR += gdal
SUBDIR += gdal-grass
SUBDIR += gdchart
SUBDIR += gdk-pixbuf
SUBDIR += gdk-pixbuf2
SUBDIR += gdtclft
SUBDIR += geeqie
SUBDIR += gegl
SUBDIR += generic_image_decoder
SUBDIR += geoapi
SUBDIR += geomorph
SUBDIR += geomview
SUBDIR += geos
SUBDIR += geoserver
SUBDIR += gexiv2
SUBDIR += giblib
SUBDIR += gif2png
SUBDIR += giflib
SUBDIR += gifmerge
SUBDIR += gifsicle
SUBDIR += giftool
SUBDIR += gimageview
SUBDIR += gimmage
SUBDIR += gimp
SUBDIR += gimp-app
SUBDIR += gimp-beautify-plugin
SUBDIR += gimp-data-extras
SUBDIR += gimp-elsamuko-script
SUBDIR += gimp-ez-perspective-plugin
SUBDIR += gimp-focusblur-plugin
SUBDIR += gimp-gmic-plugin
SUBDIR += gimp-help
SUBDIR += gimp-jagged-border-script
SUBDIR += gimp-lensfun-plugin
SUBDIR += gimp-lqr-plugin
SUBDIR += gimp-manual-html
SUBDIR += gimp-refocus-plugin
SUBDIR += gimp-resynthesizer
SUBDIR += gimp-save-for-web
SUBDIR += gimp-wavelet-decompose-plugin
SUBDIR += gimp-wavelet-denoise-plugin
SUBDIR += gimp-wavelet-sharpen-plugin
SUBDIR += gimpfx-foundry
SUBDIR += giram
SUBDIR += gkrellkam2
SUBDIR += gle
SUBDIR += gle-graphics
SUBDIR += glew
SUBDIR += glexcess
SUBDIR += glfw
SUBDIR += glfw2
SUBDIR += glide3
SUBDIR += glitz
SUBDIR += gliv
SUBDIR += glosm
SUBDIR += glpng
SUBDIR += gltt
SUBDIR += gmt
SUBDIR += gnash
SUBDIR += gnofract4d
SUBDIR += gnustep-slideshow
SUBDIR += gnustep-slideshowkit
SUBDIR += gocr
SUBDIR += goocanvas
SUBDIR += goocanvas2
SUBDIR += goocanvasmm
SUBDIR += goocanvasmm2
SUBDIR += goom
SUBDIR += gource
SUBDIR += gpaint
SUBDIR += gphoto2
SUBDIR += gpicview
SUBDIR += gplot
SUBDIR += gpsmanshp
SUBDIR += gqview
SUBDIR += gracula
SUBDIR += grads
SUBDIR += grafx2
SUBDIR += graphite2
SUBDIR += graphopt
SUBDIR += graphos
SUBDIR += graphviz
SUBDIR += grx
SUBDIR += gscan2pdf
SUBDIR += gsculpt
SUBDIR += gstreamer-plugins-aalib
SUBDIR += gstreamer-plugins-cairo
SUBDIR += gstreamer-plugins-gdkpixbuf
SUBDIR += gstreamer-plugins-gl
SUBDIR += gstreamer-plugins-jpeg
SUBDIR += gstreamer-plugins-libcaca
SUBDIR += gstreamer-plugins-libpng
SUBDIR += gstreamer-plugins-libvisual
SUBDIR += gstreamer-plugins-opencv
SUBDIR += gstreamer1-plugins-aalib
SUBDIR += gstreamer1-plugins-cairo
SUBDIR += gstreamer1-plugins-gdkpixbuf
SUBDIR += gstreamer1-plugins-jpeg
SUBDIR += gstreamer1-plugins-libcaca
SUBDIR += gstreamer1-plugins-libvisual
SUBDIR += gstreamer1-plugins-opencv
SUBDIR += gstreamer1-plugins-openjpeg
SUBDIR += gstreamer1-plugins-png
SUBDIR += gstreamer1-plugins-webp
SUBDIR += gstreamer1-plugins-zbar
SUBDIR += gthumb
SUBDIR += gtimelapse
SUBDIR += gtk-update-icon-cache
SUBDIR += gtkam
SUBDIR += gtkdps
SUBDIR += gtkgraph
SUBDIR += gts
SUBDIR += guilib
SUBDIR += gwenview-kde4
SUBDIR += gx
SUBDIR += hobbes-icons-xpm
SUBDIR += hppsmtools
SUBDIR += hs-HGL
SUBDIR += hs-cairo
SUBDIR += hs-dia-base
SUBDIR += hs-dia-functions
SUBDIR += hs-soegtk
SUBDIR += hs-svgcairo
SUBDIR += hsetroot
SUBDIR += hugin
SUBDIR += hugin-devel
SUBDIR += icat
SUBDIR += icc-profiles-basiccolor
SUBDIR += icc-profiles-openicc
SUBDIR += iccexamin
SUBDIR += iccxml
SUBDIR += icoconvert
SUBDIR += icon-slicer
SUBDIR += icontact
SUBDIR += icoutils
SUBDIR += ida
SUBDIR += iec16022
SUBDIR += iiview
SUBDIR += ilmbase
SUBDIR += imageindex
SUBDIR += imagesort
SUBDIR += imageviewer
SUBDIR += imageworsener
SUBDIR += imc
SUBDIR += imgtops
SUBDIR += imgv
SUBDIR += imlib
SUBDIR += imlib2
SUBDIR += imlib2_loaders
SUBDIR += import-pictures
SUBDIR += impressive
SUBDIR += inkscape
SUBDIR += intergif
SUBDIR += inventor
SUBDIR += ipe
SUBDIR += iulib
SUBDIR += ivtools
SUBDIR += jalbum
SUBDIR += jasper
SUBDIR += jave6
SUBDIR += jbig2dec
SUBDIR += jbigkit
SUBDIR += jdraw
SUBDIR += jgraph
SUBDIR += jhead
SUBDIR += jogamp-jogl
SUBDIR += jogl
SUBDIR += jp2a
SUBDIR += jpatch
SUBDIR += jpeg
SUBDIR += jpeg2ps
SUBDIR += jpeginfo
SUBDIR += jpegoptim
SUBDIR += jpg2pdf
SUBDIR += jpgraph2
SUBDIR += jpgtn
SUBDIR += jslice
SUBDIR += kamera-kde4
SUBDIR += kcolorchooser
SUBDIR += kcoloredit
SUBDIR += kdegraphics4
SUBDIR += kdegraphics4-mobipocket
SUBDIR += kdegraphics4-strigi-analyzer
SUBDIR += kdegraphics4-svgpart
SUBDIR += kdegraphics4-thumbnailers
SUBDIR += kiconedit
SUBDIR += kipi-plugin-acquireimages
SUBDIR += kipi-plugin-advancedslideshow
SUBDIR += kipi-plugin-batchprocess
SUBDIR += kipi-plugin-calendar
SUBDIR += kipi-plugin-debianscreenshots
SUBDIR += kipi-plugin-dngconverter
SUBDIR += kipi-plugin-expoblending
SUBDIR += kipi-plugin-facebook
SUBDIR += kipi-plugin-flashexport
SUBDIR += kipi-plugin-flickrexport
SUBDIR += kipi-plugin-galleryexport
SUBDIR += kipi-plugin-gpssync
SUBDIR += kipi-plugin-htmlexport
SUBDIR += kipi-plugin-imageshackexport
SUBDIR += kipi-plugin-imageviewer
SUBDIR += kipi-plugin-imgurexport
SUBDIR += kipi-plugin-ipodexport
SUBDIR += kipi-plugin-jalbumexport
SUBDIR += kipi-plugin-jpeglossless
SUBDIR += kipi-plugin-kioexport
SUBDIR += kipi-plugin-kmlexport
SUBDIR += kipi-plugin-kopete
SUBDIR += kipi-plugin-mediawiki
SUBDIR += kipi-plugin-metadataedit
SUBDIR += kipi-plugin-panorama
SUBDIR += kipi-plugin-photolayoutseditor
SUBDIR += kipi-plugin-picasawebexport
SUBDIR += kipi-plugin-piwigoexport
SUBDIR += kipi-plugin-printimages
SUBDIR += kipi-plugin-rajceexport
SUBDIR += kipi-plugin-rawconverter
SUBDIR += kipi-plugin-removeredeyes
SUBDIR += kipi-plugin-sendimages
SUBDIR += kipi-plugin-shwup
SUBDIR += kipi-plugin-smug
SUBDIR += kipi-plugin-timeadjust
SUBDIR += kipi-plugin-videoslideshow
SUBDIR += kipi-plugin-vkontakte
SUBDIR += kipi-plugin-yandexfotki
SUBDIR += kipi-plugins-kde4
SUBDIR += kix-kmod
SUBDIR += klatexformula
SUBDIR += kludge3d
SUBDIR += kolourpaint
SUBDIR += kphotoalbum-kde4
SUBDIR += kpovmodeler
SUBDIR += ksaneplugin
SUBDIR += ksnapshot
SUBDIR += kudu
SUBDIR += kuickshow-kde4
SUBDIR += l2p
SUBDIR += laternamagica
SUBDIR += lcdtest
SUBDIR += lcms
SUBDIR += lcms-python
SUBDIR += lcms2
SUBDIR += leafpak
SUBDIR += lensfun
SUBDIR += leptonica
SUBDIR += lfview
SUBDIR += lib3ds
SUBDIR += libEGL
SUBDIR += libGL
SUBDIR += libGLU
SUBDIR += libGLw
SUBDIR += libafterimage
SUBDIR += libart_lgpl
SUBDIR += libaux
SUBDIR += libboard
SUBDIR += libcaca
SUBDIR += libcdr
SUBDIR += libchamplain
SUBDIR += libdmtx
SUBDIR += libdrm
SUBDIR += libecwj2
SUBDIR += libemf
SUBDIR += libetonyek
SUBDIR += libexif
SUBDIR += libexif-gtk
SUBDIR += libfpx
SUBDIR += libfreehand
SUBDIR += libfreehand00
SUBDIR += libgaiagraphics
SUBDIR += libgeotiff
SUBDIR += libgfx
SUBDIR += libggi
SUBDIR += libglapi
SUBDIR += libglesv2
SUBDIR += libgltext
SUBDIR += libgnomecanvas
SUBDIR += libgnomecanvas-reference
SUBDIR += libgnomecanvasmm26
SUBDIR += libgphoto2
SUBDIR += libimg
SUBDIR += libiptcdata
SUBDIR += libjpeg-turbo
SUBDIR += libkdcraw-kde4
SUBDIR += libkexiv2-kde4
SUBDIR += libkface
SUBDIR += libkipi-kde4
SUBDIR += libkipiplugins
SUBDIR += libksane
SUBDIR += liblqr-1
SUBDIR += liblug
SUBDIR += libmng
SUBDIR += libmorph
SUBDIR += libopenraw
SUBDIR += libosmesa
SUBDIR += libpano12
SUBDIR += libpano13
SUBDIR += libpcd
SUBDIR += libpgf
SUBDIR += libprojectm
SUBDIR += libpuzzle
SUBDIR += libqrencode
SUBDIR += librasterlite
SUBDIR += libraw
SUBDIR += libreatlas
SUBDIR += librsvg2
SUBDIR += libsixel
SUBDIR += libspiro
SUBDIR += libsvg
SUBDIR += libsvg-cairo
SUBDIR += libtxc_dxtn
SUBDIR += libvisual
SUBDIR += libvisual04
SUBDIR += libvisual04-plugins
SUBDIR += libwmf
SUBDIR += libwmf-nox11
SUBDIR += libwpg
SUBDIR += linplasma
SUBDIR += linux-XnViewMP
SUBDIR += linux-adobesvg
SUBDIR += linux-f10-cairo
SUBDIR += linux-f10-dri
SUBDIR += linux-f10-gdk-pixbuf
SUBDIR += linux-f10-glew
SUBDIR += linux-f10-imlib
SUBDIR += linux-f10-jpeg
SUBDIR += linux-f10-libGLU
SUBDIR += linux-f10-libmng
SUBDIR += linux-f10-png
SUBDIR += linux-f10-sdl_image
SUBDIR += linux-f10-tiff
SUBDIR += linux-f10-ungif
SUBDIR += linux-sdl_ttf
SUBDIR += linux_glide
SUBDIR += lprof-devel
SUBDIR += lua-gd
SUBDIR += luminance
SUBDIR += luminance-qt5
SUBDIR += luxrays
SUBDIR += luxrender
SUBDIR += mahotas
SUBDIR += makehuman
SUBDIR += mandelbulber
SUBDIR += mapnik
SUBDIR += mapserver
SUBDIR += mapyrus
SUBDIR += mate-document-viewer
SUBDIR += mate-image-viewer
SUBDIR += megapov
SUBDIR += mesa-demos
SUBDIR += meshviewer
SUBDIR += metacam
SUBDIR += metapixel
SUBDIR += mhgui
SUBDIR += ming
SUBDIR += mingplot
SUBDIR += mirage
SUBDIR += mmrecover
SUBDIR += mozjpeg
SUBDIR += mscgen
SUBDIR += mtpaint
SUBDIR += multican
SUBDIR += multiraw
SUBDIR += mupdf
SUBDIR += mxp
SUBDIR += mypaint
SUBDIR += nathive
SUBDIR += netpbm
SUBDIR += nip2
SUBDIR += nomacs
SUBDIR += npretty
SUBDIR += nvidia-texture-tools
SUBDIR += ocaml-images
SUBDIR += ocaml-lablgl
SUBDIR += ocrad
SUBDIR += ocre
SUBDIR += ocrfeeder
SUBDIR += ocropus
SUBDIR += ogre3d
SUBDIR += okular
SUBDIR += opencollada
SUBDIR += opencolorio
SUBDIR += opencolorio-tools
SUBDIR += opencsg
SUBDIR += opencv
SUBDIR += opencv-core
SUBDIR += opencv-java
SUBDIR += opendx
SUBDIR += opengl-man
SUBDIR += opengtl
SUBDIR += openimageio
SUBDIR += openjpeg
SUBDIR += openjpeg15
SUBDIR += openjump
SUBDIR += opennurbs
SUBDIR += openrm
SUBDIR += openshadinglanguage
SUBDIR += optar
SUBDIR += optipng
SUBDIR += orca
SUBDIR += osg
SUBDIR += osg-devel
SUBDIR += osgearth
SUBDIR += oyranos
SUBDIR += p5-Acme-Steganography-Image-Png
SUBDIR += p5-CAD-Drawing
SUBDIR += p5-CAD-Drawing-Template
SUBDIR += p5-Cairo
SUBDIR += p5-Captcha-reCAPTCHA
SUBDIR += p5-Captcha-reCAPTCHA-Mailhide
SUBDIR += p5-Chart
SUBDIR += p5-Chart-Clicker
SUBDIR += p5-Chart-Graph
SUBDIR += p5-Chart-PNGgraph
SUBDIR += p5-Color-Calc
SUBDIR += p5-Color-Library
SUBDIR += p5-Color-Palette
SUBDIR += p5-Color-Rgb
SUBDIR += p5-Color-Scheme
SUBDIR += p5-Convert-Color
SUBDIR += p5-GD
SUBDIR += p5-GD-Arrow
SUBDIR += p5-GD-Barcode
SUBDIR += p5-GD-Graph
SUBDIR += p5-GD-Graph-histogram
SUBDIR += p5-GD-Graph-ohlc
SUBDIR += p5-GD-Graph3d
SUBDIR += p5-GD-SVG
SUBDIR += p5-GD-TextUtil
SUBDIR += p5-GD-Thumbnail
SUBDIR += p5-Geo-EOP
SUBDIR += p5-Geo-GDAL
SUBDIR += p5-Geo-GML
SUBDIR += p5-Geo-Gpx
SUBDIR += p5-Geo-KML
SUBDIR += p5-Geo-Point
SUBDIR += p5-Geo-Proj4
SUBDIR += p5-Geometry-Primitive
SUBDIR += p5-Google-Chart
SUBDIR += p5-Graph-Easy
SUBDIR += p5-Graph-ReadWrite
SUBDIR += p5-Graph-SocialMap
SUBDIR += p5-Graph-Writer-GraphViz
SUBDIR += p5-GraphViz
SUBDIR += p5-GraphViz-Data-Structure
SUBDIR += p5-GraphViz-Traverse
SUBDIR += p5-GraphViz2
SUBDIR += p5-Graphics-Color
SUBDIR += p5-Graphics-ColorNames
SUBDIR += p5-Graphics-ColorNames-WWW
SUBDIR += p5-Graphics-GnuplotIF
SUBDIR += p5-Graphics-Primitive
SUBDIR += p5-Graphics-Primitive-Driver-Cairo
SUBDIR += p5-Image-Base
SUBDIR += p5-Image-Base-SVG
SUBDIR += p5-Image-Caa
SUBDIR += p5-Image-Compare
SUBDIR += p5-Image-ExifTool
SUBDIR += p5-Image-ExifTool-devel
SUBDIR += p5-Image-Grab
SUBDIR += p5-Image-Heatmap
SUBDIR += p5-Image-IPTCInfo
SUBDIR += p5-Image-Imgur
SUBDIR += p5-Image-Imlib2
SUBDIR += p5-Image-Info
SUBDIR += p5-Image-LibExif
SUBDIR += p5-Image-Magick-Iterator
SUBDIR += p5-Image-Math-Constrain
SUBDIR += p5-Image-MetaData-GQview
SUBDIR += p5-Image-MetaData-JPEG
SUBDIR += p5-Image-ObjectDetect
SUBDIR += p5-Image-PBMlib
SUBDIR += p5-Image-Pngslimmer
SUBDIR += p5-Image-Scale
SUBDIR += p5-Image-Size
SUBDIR += p5-Image-Size-FillFullSelect
SUBDIR += p5-Imager
SUBDIR += p5-Imager-AverageGray
SUBDIR += p5-Imager-Graph
SUBDIR += p5-Imager-Plot
SUBDIR += p5-Imager-QRCode
SUBDIR += p5-Imlib2
SUBDIR += p5-Layout-Manager
SUBDIR += p5-OpenGL
SUBDIR += p5-PGPLOT
SUBDIR += p5-SVG-DOM2
SUBDIR += p5-SVG-Graph
SUBDIR += p5-SVG-Metadata
SUBDIR += p5-SWF-Builder
SUBDIR += p5-SWF-File
SUBDIR += p5-Sane
SUBDIR += p5-SpringGraph
SUBDIR += p5-Tk-JPEG-Lite
SUBDIR += p5-URI-GoogleChart
SUBDIR += p5-VCG
SUBDIR += p5-Visio
SUBDIR += p5-ming
SUBDIR += panoglview
SUBDIR += panomatic
SUBDIR += partio
SUBDIR += passepartout
SUBDIR += pdf2svg
SUBDIR += pear-Horde_Image
SUBDIR += pear-IO_SWF
SUBDIR += pear-Image_3D
SUBDIR += pear-Image_Barcode
SUBDIR += pear-Image_Barcode2
SUBDIR += pear-Image_Canvas
SUBDIR += pear-Image_Color
SUBDIR += pear-Image_Graph
SUBDIR += pear-Image_GraphViz
SUBDIR += pear-Image_Transform
SUBDIR += pecl-gmagick
SUBDIR += pecl-imagick
SUBDIR += pecl-imlib2
SUBDIR += pecl-qrencode
SUBDIR += pecomato
SUBDIR += pencil
SUBDIR += peps
SUBDIR += pfscalibration
SUBDIR += pfstmo
SUBDIR += pfstools
SUBDIR += pgplot
SUBDIR += pho
SUBDIR += photopc
SUBDIR += php-facedetect
SUBDIR += php-gdal
SUBDIR += php-libpuzzle
SUBDIR += php-magickwand
SUBDIR += php5-chartdirector
SUBDIR += php5-exif
SUBDIR += php5-ffmpeg
SUBDIR += php5-gd
SUBDIR += php5-swfed
SUBDIR += php53-exif
SUBDIR += php53-gd
SUBDIR += php55-exif
SUBDIR += php55-gd
SUBDIR += phplot
SUBDIR += picpuz
SUBDIR += picturebook
SUBDIR += picviz
SUBDIR += piddle
SUBDIR += pinpoint
SUBDIR += pinta
SUBDIR += pixelize
SUBDIR += pixen
SUBDIR += pixie
SUBDIR += pixmap
SUBDIR += plasma-kmod
SUBDIR += plotutils
SUBDIR += png
SUBDIR += png2html
SUBDIR += png2ico
SUBDIR += pngcheck
SUBDIR += pngcrush
SUBDIR += pngnq
SUBDIR += pngquant
SUBDIR += pngrewrite
SUBDIR += pngwriter
SUBDIR += podofo
SUBDIR += poppler
SUBDIR += poppler-data
SUBDIR += poppler-glib
SUBDIR += poppler-qt4
SUBDIR += poppler-utils
SUBDIR += pornview
SUBDIR += potrace
SUBDIR += povray-meta
SUBDIR += povray31
SUBDIR += povray36
SUBDIR += povray37
SUBDIR += ppmcaption
SUBDIR += ppminfo
SUBDIR += ppsei
SUBDIR += pqiv
SUBDIR += preview
SUBDIR += price
SUBDIR += prison
SUBDIR += processing
SUBDIR += proj
SUBDIR += projectm-libvisual
SUBDIR += pstoedit
SUBDIR += pstoepsi
SUBDIR += pure-gl
SUBDIR += pvmpov
SUBDIR += py-PyX
SUBDIR += py-PyX12
SUBDIR += py-aafigure
SUBDIR += py-actdiag
SUBDIR += py-blockdiag
SUBDIR += py-blockdiagcontrib-cisco
SUBDIR += py-cairo
SUBDIR += py-chart
SUBDIR += py-django-easy-thumbnails
SUBDIR += py-editobj
SUBDIR += py-exif
SUBDIR += py-exiv2
SUBDIR += py-freeimagepy
SUBDIR += py-gchartwrapper
SUBDIR += py-gd
SUBDIR += py-gdal
SUBDIR += py-gimp
SUBDIR += py-glewpy
SUBDIR += py-goocanvas
SUBDIR += py-graph
SUBDIR += py-graph-core
SUBDIR += py-graph-dot
SUBDIR += py-graphviz
SUBDIR += py-graphy
SUBDIR += py-gvgen
SUBDIR += py-imaging
SUBDIR += py-mcomix
SUBDIR += py-ming
SUBDIR += py-nwdiag
SUBDIR += py-opencv
SUBDIR += py-openexr
SUBDIR += py-opengl
SUBDIR += py-openimageio
SUBDIR += py-paint
SUBDIR += py-pillow
SUBDIR += py-png
SUBDIR += py-poppler
SUBDIR += py-poppler-qt4
SUBDIR += py-pycha
SUBDIR += py-pydot
SUBDIR += py-pygal
SUBDIR += py-pyggel
SUBDIR += py-pyglet
SUBDIR += py-pygooglechart
SUBDIR += py-pyproj
SUBDIR += py-qt4-svg
SUBDIR += py-rabbyt
SUBDIR += py-sane
SUBDIR += py-seqdiag
SUBDIR += py-sorl-thumbnail
SUBDIR += py-soya3d
SUBDIR += py-stltools
SUBDIR += py-wand
SUBDIR += py-webcolors
SUBDIR += py3-cairo
SUBDIR += pygts
SUBDIR += pymorph
SUBDIR += pyro
SUBDIR += pysvg
SUBDIR += qcomicbook
SUBDIR += qcread
SUBDIR += qgis
SUBDIR += qiv
SUBDIR += qiviewer
SUBDIR += qslim
SUBDIR += qt4-iconengines
SUBDIR += qt4-imageformats
SUBDIR += qt4-opengl
SUBDIR += qt4-pixeltool
SUBDIR += qt4-svg
SUBDIR += qt5-graphicaleffects
SUBDIR += qt5-imageformats
SUBDIR += qt5-opengl
SUBDIR += qt5-pixeltool
SUBDIR += qt5-svg
SUBDIR += qtgtl
SUBDIR += quat
SUBDIR += quat-gui
SUBDIR += quesa
SUBDIR += quesoglc
SUBDIR += qxv
SUBDIR += radius-engine
SUBDIR += raster3d
SUBDIR += rawstudio
SUBDIR += rawtherapee
SUBDIR += rayshade
SUBDIR += reallyslick
SUBDIR += recoverjpeg
SUBDIR += renrot
SUBDIR += repng2jpeg
SUBDIR += rgbpaint
SUBDIR += ristretto
SUBDIR += ruby-gd
SUBDIR += ruby-gdal
SUBDIR += ruby-image_size
SUBDIR += ruby-imlib2
SUBDIR += ruby-ming
SUBDIR += ruby-rmagick
SUBDIR += ruby-svg
SUBDIR += ruby-tgif
SUBDIR += rubygem-cairo
SUBDIR += rubygem-captcha
SUBDIR += rubygem-chunky_png
SUBDIR += rubygem-clutter
SUBDIR += rubygem-clutter-gtk
SUBDIR += rubygem-dragonfly
SUBDIR += rubygem-exifr
SUBDIR += rubygem-ezprint
SUBDIR += rubygem-fastimage
SUBDIR += rubygem-gd2
SUBDIR += rubygem-gdk_pixbuf2
SUBDIR += rubygem-geokit
SUBDIR += rubygem-goocanvas
SUBDIR += rubygem-graphviz
SUBDIR += rubygem-gruff
SUBDIR += rubygem-image_science
SUBDIR += rubygem-imagesize
SUBDIR += rubygem-objectdetect
SUBDIR += rubygem-opengl
SUBDIR += rubygem-pdfkit
SUBDIR += rubygem-png
SUBDIR += rubygem-railroad
SUBDIR += rubygem-rmagick
SUBDIR += rubygem-rsvg2
SUBDIR += rubygem-scruffy
SUBDIR += rubyphoto
SUBDIR += s10sh
SUBDIR += sage
SUBDIR += sam2p
SUBDIR += sampleicc
SUBDIR += sane-backends
SUBDIR += sane-epkowa
SUBDIR += sane-frontends
SUBDIR += scale2x
SUBDIR += scantailor
SUBDIR += scr2png
SUBDIR += scrot
SUBDIR += scwm-icons
SUBDIR += sdl2_gfx
SUBDIR += sdl2_image
SUBDIR += sdl2_ttf
SUBDIR += sdl_gfx
SUBDIR += sdl_image
SUBDIR += sdl_ttf
SUBDIR += seam-carving-gui
SUBDIR += seejpeg
SUBDIR += separate
SUBDIR += sharpconstruct
SUBDIR += shiva-collections
SUBDIR += shotwell
SUBDIR += show
SUBDIR += showimage
SUBDIR += silgraphite
SUBDIR += simage
SUBDIR += simpleviewer
SUBDIR += sk1libs
SUBDIR += skanlite
SUBDIR += skencil
SUBDIR += sketch
SUBDIR += sng
SUBDIR += springgraph
SUBDIR += squish
SUBDIR += sswf
SUBDIR += stamp
SUBDIR += structuresynth
SUBDIR += svg2pdf
SUBDIR += svg2png
SUBDIR += svgalib
SUBDIR += svgfig
SUBDIR += swfdec
SUBDIR += swfmill
SUBDIR += swftools
SUBDIR += sxiv
SUBDIR += synaesthesia
SUBDIR += synfigstudio
SUBDIR += telak
SUBDIR += tesseract
SUBDIR += tesseract-data
SUBDIR += tgif
SUBDIR += tif22pnm
SUBDIR += tiff
SUBDIR += tiffgt
SUBDIR += tifmerge
SUBDIR += tilecache
SUBDIR += tiled
SUBDIR += timeless
SUBDIR += tintfu
SUBDIR += tinyows
SUBDIR += tkpng
SUBDIR += togl
SUBDIR += truevision
SUBDIR += tulip
SUBDIR += tumble
SUBDIR += uDrawGraph
SUBDIR += ufraw
SUBDIR += uniconvertor
SUBDIR += uniconvw
SUBDIR += unpaper
SUBDIR += urt
SUBDIR += vcg
SUBDIR += viewnior
SUBDIR += vigra
SUBDIR += vips
SUBDIR += visionworkbench
SUBDIR += visprint
SUBDIR += volpack
SUBDIR += vp
SUBDIR += webp
SUBDIR += whirlgif
SUBDIR += white_dune
SUBDIR += wings
SUBDIR += wmicons
SUBDIR += wxsvg
SUBDIR += xaos
SUBDIR += xbmbrowser
SUBDIR += xd3d
SUBDIR += xdgagrab
SUBDIR += xface.el
SUBDIR += xfig
SUBDIR += xfpovray
SUBDIR += xfractint
SUBDIR += xglurbules
SUBDIR += xgrasp
SUBDIR += xli
SUBDIR += xmandel
SUBDIR += xmedcon
SUBDIR += xmlgraphics-commons
SUBDIR += xmountains
SUBDIR += xnview
SUBDIR += xoris
SUBDIR += xournal
SUBDIR += xpaint
SUBDIR += xpdf
SUBDIR += xpx
SUBDIR += xsane
SUBDIR += xsvg
SUBDIR += xtexcad
SUBDIR += xv
SUBDIR += xv-m17n
SUBDIR += xwpick
SUBDIR += xzgv
SUBDIR += yafray
SUBDIR += yagf
SUBDIR += yed
SUBDIR += zathura
SUBDIR += zathura-djvu
SUBDIR += zathura-pdf-poppler
SUBDIR += zbar
SUBDIR += zgv
SUBDIR += zimg
SUBDIR += zint
SUBDIR += zphoto
.include <bsd.port.subdir.mk>
|