blob: ca427e42450f47df7d63315261af23282d9f272a (
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
|
# $FreeBSD$
#
COMMENT = Graphics tools and libraries
SUBDIR += 4va
SUBDIR += Cgraph
SUBDIR += Coin
SUBDIR += EZWGL
SUBDIR += GraphicsMagick
SUBDIR += GraphicsMagick12
SUBDIR += GraphicsMagick13
SUBDIR += Hermes
SUBDIR += IPA
SUBDIR += ImageMagick
SUBDIR += ImageMagick-nox11
SUBDIR += O2-tools
SUBDIR += OpenEXR
SUBDIR += SciPlot
SUBDIR += a2png
SUBDIR += aalib
SUBDIR += aaphoto
SUBDIR += acidwarp
SUBDIR += aeskulap
SUBDIR += agave
SUBDIR += agg
SUBDIR += albumshaper
SUBDIR += ale
SUBDIR += allegrogl
SUBDIR += alpng
SUBDIR += amanith
SUBDIR += amide
SUBDIR += ampasCTL
SUBDIR += animorph
SUBDIR += aoi
SUBDIR += aolserver-nsgd
SUBDIR += apngasm
SUBDIR += apvlv
SUBDIR += aqsis
SUBDIR += asciio
SUBDIR += autopano-sift
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 += bmp-rootvis
SUBDIR += bmp2html
SUBDIR += box
SUBDIR += boxer
SUBDIR += bugle
SUBDIR += c-a-i-r
SUBDIR += cadubi
SUBDIR += cairo
SUBDIR += cairo-java
SUBDIR += cairo-reference
SUBDIR += cairomm
SUBDIR += cal3d
SUBDIR += cal3d-devel
SUBDIR += camediaplay
SUBDIR += camera
SUBDIR += camerakit
SUBDIR += cbrpager
SUBDIR += cbview
SUBDIR += cegui
SUBDIR += cenon
SUBDIR += cfdg
SUBDIR += chbg
SUBDIR += cimg
SUBDIR += cinepaint
SUBDIR += claraocr
SUBDIR += clutter
SUBDIR += clutter-box2d
SUBDIR += clutter-gtk
SUBDIR += clutter-qt
SUBDIR += comical
SUBDIR += comix
SUBDIR += commons-utilities
SUBDIR += compupic
SUBDIR += corona
SUBDIR += cosmoplayer
SUBDIR += crw
SUBDIR += crystalentitylayer
SUBDIR += crystalspace
SUBDIR += cthumb
SUBDIR += cuneiform
SUBDIR += curator
SUBDIR += cuttlefish
SUBDIR += danpei
SUBDIR += darknock
SUBDIR += darktable
SUBDIR += dataplot
SUBDIR += dc20ctrl
SUBDIR += dc20pack
SUBDIR += dcraw
SUBDIR += deegree-csw
SUBDIR += deegree-igeoportal
SUBDIR += deegree-wcs
SUBDIR += deegree-wfs
SUBDIR += deegree-wms
SUBDIR += deegree-wps
SUBDIR += deegree-wpvs
SUBDIR += devil
SUBDIR += dia
SUBDIR += diacanvas2
SUBDIR += digikam
SUBDIR += digikam-doc
SUBDIR += digikam-kde4
SUBDIR += ditaa
SUBDIR += divxcalc
SUBDIR += djview4
SUBDIR += djvulibre
SUBDIR += djvulibre-nox11
SUBDIR += dmtx-utils
SUBDIR += dri
SUBDIR += driconf
SUBDIR += duhdraw
SUBDIR += dynamechs
SUBDIR += ecg2png
SUBDIR += ecore-evas
SUBDIR += ecore-sdl
SUBDIR += edje
SUBDIR += edje_viewer
SUBDIR += electriceyes
SUBDIR += enblend
SUBDIR += enfle
SUBDIR += eog
SUBDIR += eog-plugins
SUBDIR += epdfview
SUBDIR += epeg
SUBDIR += epix
SUBDIR += eps2png
SUBDIR += epstool
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-engine-xrender
SUBDIR += evas-loader-bmp
SUBDIR += evas-loader-edb
SUBDIR += evas-loader-eet
SUBDIR += evas-loader-gif
SUBDIR += evas-loader-jpeg
SUBDIR += evas-loader-pmaps
SUBDIR += evas-loader-png
SUBDIR += evas-loader-svg
SUBDIR += evas-loader-tga
SUBDIR += evas-loader-tiff
SUBDIR += evas-loader-xpm
SUBDIR += evince
SUBDIR += evolvotron
SUBDIR += exact-image
SUBDIR += exif
SUBDIR += exifprobe
SUBDIR += exiftags
SUBDIR += exiftran
SUBDIR += exiv2
SUBDIR += exrtools
SUBDIR += f-spot
SUBDIR += f90gl
SUBDIR += fbm
SUBDIR += feh
SUBDIR += ffff
SUBDIR += fig2sxd
SUBDIR += figurine
SUBDIR += flam3
SUBDIR += flashplayer
SUBDIR += flasm
SUBDIR += fli2gif
SUBDIR += flip
SUBDIR += flphoto
SUBDIR += fly
SUBDIR += fnlib
SUBDIR += fortytwo
SUBDIR += fotofix
SUBDIR += fotoxx
SUBDIR += fpc-cairo
SUBDIR += fpc-fpgtk
SUBDIR += fpc-fpvectorial
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 += fractorama
SUBDIR += fraqtive
SUBDIR += freeglut
SUBDIR += freeimage
SUBDIR += frei0r
SUBDIR += frontline
SUBDIR += ftgl
SUBDIR += fujiplay
SUBDIR += fusefs-gphotofs
SUBDIR += fv
SUBDIR += fyre
SUBDIR += g2
SUBDIR += gambas2-gb-gtk-svg
SUBDIR += gambas2-gb-image
SUBDIR += gambas2-gb-opengl
SUBDIR += gambas2-gb-pdf
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 += geglmm
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 += giftrans
SUBDIR += gimageview
SUBDIR += gimmage
SUBDIR += gimp
SUBDIR += gimp-app
SUBDIR += gimp-data-extras
SUBDIR += gimp-focusblur-plugin
SUBDIR += gimp-gap
SUBDIR += gimp-gmic-plugin
SUBDIR += gimp-help
SUBDIR += gimp-lqr-plugin
SUBDIR += gimp-manual-html
SUBDIR += gimp-manual-pdf
SUBDIR += gimp-resynthesizer
SUBDIR += gimp-save-for-web
SUBDIR += gimpfx-foundry
SUBDIR += gimpshop
SUBDIR += gir-repository-goocanvas
SUBDIR += gir-repository-poppler
SUBDIR += giram
SUBDIR += gkrellkam
SUBDIR += gkrellkam2
SUBDIR += gle
SUBDIR += gle-graphics
SUBDIR += glew
SUBDIR += glexcess
SUBDIR += glfw
SUBDIR += glide3
SUBDIR += glitz
SUBDIR += gliv
SUBDIR += glosm
SUBDIR += glpng
SUBDIR += gltt
SUBDIR += gmt
SUBDIR += gnash
SUBDIR += gnash-devel
SUBDIR += gnofract4d
SUBDIR += gnomecanvas
SUBDIR += gnomeiconedit
SUBDIR += gnustep-slideshow
SUBDIR += gnustep-slideshowkit
SUBDIR += gocr
SUBDIR += goocanvas
SUBDIR += goocanvasmm
SUBDIR += goom
SUBDIR += gource
SUBDIR += gozer
SUBDIR += gpaint
SUBDIR += gphoto2
SUBDIR += gpicview
SUBDIR += gplot
SUBDIR += gpsmanshp
SUBDIR += gqview
SUBDIR += gqview-devel
SUBDIR += gracula
SUBDIR += grads
SUBDIR += grafx2
SUBDIR += graphopt
SUBDIR += graphviz
SUBDIR += grx
SUBDIR += gscan2pdf
SUBDIR += gsculpt
SUBDIR += gsnapshot
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 += gthumb
SUBDIR += gtkam
SUBDIR += gtkdps
SUBDIR += gtkgraph
SUBDIR += gtksee
SUBDIR += gts
SUBDIR += guilib
SUBDIR += gwenview
SUBDIR += gx
SUBDIR += hobbes-icons-xpm
SUBDIR += horde4-image
SUBDIR += hppsmtools
SUBDIR += hs-cairo
SUBDIR += hs-HGL
SUBDIR += hs-soegtk
SUBDIR += hs-svgcairo
SUBDIR += hsetroot
SUBDIR += hugin
SUBDIR += icoconvert
SUBDIR += icon-slicer
SUBDIR += icontact
SUBDIR += icoutils
SUBDIR += ida
SUBDIR += iec16022
SUBDIR += iiview
SUBDIR += ilmbase
SUBDIR += imageindex
SUBDIR += imagesort
SUBDIR += imageviewer
SUBDIR += imc
SUBDIR += imgseek
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 += jpeg2pdf
SUBDIR += jpeg2ps-a4
SUBDIR += jpeg2ps-letter
SUBDIR += jpeginfo
SUBDIR += jpegoptim
SUBDIR += jpegpixi
SUBDIR += jpg2pdf
SUBDIR += jpgraph
SUBDIR += jpgraph2
SUBDIR += jpgtn
SUBDIR += jslice
SUBDIR += jumpgis
SUBDIR += jumpgis-postgis
SUBDIR += k3d
SUBDIR += kalbum
SUBDIR += kallery
SUBDIR += kamera
SUBDIR += kbarcode
SUBDIR += kcoloredit
SUBDIR += kdc2tiff
SUBDIR += kdegraphics3
SUBDIR += kdegraphics4
SUBDIR += kgraphviewer
SUBDIR += kiconedit
SUBDIR += kipi-plugins
SUBDIR += kipi-plugins-kde4
SUBDIR += kisomandel
SUBDIR += kix-kmod
SUBDIR += klatexformula
SUBDIR += kludge3d
SUBDIR += kooka
SUBDIR += kphotoalbum
SUBDIR += kphotoalbum-kde4
SUBDIR += kpovmodeler
SUBDIR += kradview
SUBDIR += kudu
SUBDIR += kuickshow
SUBDIR += kuickshow-kde4
SUBDIR += l2p
SUBDIR += landscape
SUBDIR += laternamagica
SUBDIR += lcdtest
SUBDIR += lcms
SUBDIR += lcms-python
SUBDIR += lcms2
SUBDIR += leafpak
SUBDIR += lensfun
SUBDIR += leptonlib
SUBDIR += lfview
SUBDIR += lib3ds
SUBDIR += libGL
SUBDIR += libGLU
SUBDIR += libGLw
SUBDIR += libafterimage
SUBDIR += libart
SUBDIR += libart_lgpl
SUBDIR += libaux
SUBDIR += libboard
SUBDIR += libcaca
SUBDIR += libchamplain
SUBDIR += libdmtx
SUBDIR += libdrm
SUBDIR += libecwj2
SUBDIR += libemf
SUBDIR += libexif
SUBDIR += libexif-gtk
SUBDIR += libflash
SUBDIR += libfpx
SUBDIR += libgeotiff
SUBDIR += libgfx
SUBDIR += libggi
SUBDIR += libggigcp
SUBDIR += libggimisc
SUBDIR += libggiwmh
SUBDIR += libgltext
SUBDIR += libglut
SUBDIR += libgnomecanvas
SUBDIR += libgnomecanvas-reference
SUBDIR += libgnomecanvasmm
SUBDIR += libgnomecanvasmm26
SUBDIR += libgphoto2
SUBDIR += libimg
SUBDIR += libiptcdata
SUBDIR += libjpeg-turbo
SUBDIR += libkdcraw
SUBDIR += libkexif
SUBDIR += libkexiv2
SUBDIR += libkipi
SUBDIR += liblqr-1
SUBDIR += liblug
SUBDIR += libmng
SUBDIR += libmorph
SUBDIR += libopenraw
SUBDIR += libosmesa
SUBDIR += libpano12
SUBDIR += libpano13
SUBDIR += libpcd
SUBDIR += libprojectm
SUBDIR += libpuzzle
SUBDIR += libqglviewer
SUBDIR += libqrencode
SUBDIR += libraw
SUBDIR += librsvg
SUBDIR += librsvg2
SUBDIR += libspiro
SUBDIR += libsvg
SUBDIR += libsvg-cairo
SUBDIR += libungif
SUBDIR += libvisual
SUBDIR += libvisual04
SUBDIR += libvisual04-plugins
SUBDIR += libwmf
SUBDIR += libwpg
SUBDIR += libwpg01
SUBDIR += libx3dtk
SUBDIR += lightspark-devel
SUBDIR += linplasma
SUBDIR += linux-XnViewMP
SUBDIR += linux-ac3d
SUBDIR += linux-adobesvg
SUBDIR += linux-cairo
SUBDIR += linux-dri74
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-png10
SUBDIR += linux-f10-sdl_image
SUBDIR += linux-f10-tiff
SUBDIR += linux-f10-ungif
SUBDIR += linux-gdk-pixbuf
SUBDIR += linux-imlib
SUBDIR += linux-jpeg
SUBDIR += linux-libGLU
SUBDIR += linux-libmng
SUBDIR += linux-panorama-tools
SUBDIR += linux-png
SUBDIR += linux-png10
SUBDIR += linux-sdl_image
SUBDIR += linux-sdl_ttf
SUBDIR += linux-tiff
SUBDIR += linux-ungif
SUBDIR += linux_dri
SUBDIR += linux_glide
SUBDIR += long-exposure-tools
SUBDIR += lprof-devel
SUBDIR += luminance
SUBDIR += luxrender
SUBDIR += mahotas
SUBDIR += makehuman
SUBDIR += mapnik
SUBDIR += mapserver
SUBDIR += mapyrus
SUBDIR += maverik
SUBDIR += megapov
SUBDIR += mesa-demos
SUBDIR += mesagl
SUBDIR += meshviewer
SUBDIR += metacam
SUBDIR += metapixel
SUBDIR += mhgui
SUBDIR += ming
SUBDIR += mingplot
SUBDIR += mirage
SUBDIR += mmrecover
SUBDIR += morpheus
SUBDIR += moth
SUBDIR += mscgen
SUBDIR += mtpaint
SUBDIR += multivideo
SUBDIR += mupdf
SUBDIR += mxp
SUBDIR += mypaint
SUBDIR += nathive
SUBDIR += netpbm
SUBDIR += nip2
SUBDIR += npretty
SUBDIR += nurbs++
SUBDIR += nvidia-texture-tools
SUBDIR += ocaml-images
SUBDIR += ocaml-lablgl
SUBDIR += ocrad
SUBDIR += ocre
SUBDIR += ocropus
SUBDIR += ogre3d
SUBDIR += openclipart
SUBDIR += opencv
SUBDIR += opendis
SUBDIR += opendx
SUBDIR += openexr_ctl
SUBDIR += opengl-man
SUBDIR += opengtl
SUBDIR += openjpeg
SUBDIR += openjump
SUBDIR += openrm
SUBDIR += optar
SUBDIR += optipng
SUBDIR += orca
SUBDIR += osg
SUBDIR += osg-devel
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-Clicker
SUBDIR += p5-Chart-Graph
SUBDIR += p5-Chart-PNGgraph
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-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-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-Caa
SUBDIR += p5-Image-Compare
SUBDIR += p5-Image-ExifTool
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-Magick-Iterator
SUBDIR += p5-Image-Math-Constrain
SUBDIR += p5-Image-MetaData-GQview
SUBDIR += p5-Image-MetaData-JPEG
SUBDIR += p5-Image-PBMlib
SUBDIR += p5-Image-Pngslimmer
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-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-chart
SUBDIR += p5-clutter
SUBDIR += p5-ming
SUBDIR += panoglview
SUBDIR += panomatic
SUBDIR += passepartout
SUBDIR += pdf2svg
SUBDIR += pear-Image_3D
SUBDIR += pear-Image_Barcode
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 += pgperl
SUBDIR += pgplot
SUBDIR += pho
SUBDIR += photoclip
SUBDIR += photopc
SUBDIR += php-facedetect
SUBDIR += php-libpuzzle
SUBDIR += php-magickwand
SUBDIR += php4-chartdirector
SUBDIR += php4-exif
SUBDIR += php4-gd
SUBDIR += php5-chartdirector
SUBDIR += php5-exif
SUBDIR += php5-ffmpeg
SUBDIR += php5-gd
SUBDIR += php5-swfed
SUBDIR += php52-exif
SUBDIR += php52-gd
SUBDIR += php52-ming
SUBDIR += phplot
SUBDIR += phpsview
SUBDIR += picpuz
SUBDIR += picturebook
SUBDIR += picviz
SUBDIR += piddle
SUBDIR += pixelize
SUBDIR += pixen
SUBDIR += pixie
SUBDIR += pixmap
SUBDIR += plasma-kmod
SUBDIR += plotmtv
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-gtk
SUBDIR += poppler-qt
SUBDIR += poppler-qt4
SUBDIR += poppler-utils
SUBDIR += popplerkit
SUBDIR += pornview
SUBDIR += potrace
SUBDIR += potracegui
SUBDIR += povray-meta
SUBDIR += povray31
SUBDIR += povray36
SUBDIR += povray37
SUBDIR += ppmcaption
SUBDIR += ppminfo
SUBDIR += ppsei
SUBDIR += pqiv
SUBDIR += preview
SUBDIR += price
SUBDIR += processing
SUBDIR += proj
SUBDIR += projectm-libvisual
SUBDIR += pstoedit
SUBDIR += pstoepsi
SUBDIR += pvmpov
SUBDIR += py-PyX
SUBDIR += py-aafigure
SUBDIR += py-amanith
SUBDIR += py-cairo
SUBDIR += py-cgkit
SUBDIR += py-chart
SUBDIR += py-clutter
SUBDIR += py-clutter-gtk
SUBDIR += py-editobj
SUBDIR += py-exif
SUBDIR += py-exiv2
SUBDIR += py-freeimagepy
SUBDIR += py-gchartwrapper
SUBDIR += py-gd
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-ming
SUBDIR += py-openexr
SUBDIR += py-opengl
SUBDIR += py-paint
SUBDIR += py-poppler
SUBDIR += py-pycha
SUBDIR += py-pydot
SUBDIR += py-pyglet
SUBDIR += py-pygooglechart
SUBDIR += py-pyproj
SUBDIR += py-qt4-svg
SUBDIR += py-rabbyt
SUBDIR += py-sorl-thumbnail
SUBDIR += py-soya3d
SUBDIR += py-visual
SUBDIR += pygts
SUBDIR += pymorph
SUBDIR += pyro
SUBDIR += pysvg
SUBDIR += q-graph
SUBDIR += qcamview
SUBDIR += qcomicbook
SUBDIR += qcread
SUBDIR += qgis
SUBDIR += qiv
SUBDIR += qiviewer
SUBDIR += qslim
SUBDIR += qt4-iconengines
SUBDIR += qt4-imageformats
SUBDIR += qt4-pixeltool
SUBDIR += qt4-svg
SUBDIR += qtgtl
SUBDIR += quat
SUBDIR += quat-gui
SUBDIR += quesa
SUBDIR += quesoglc
SUBDIR += qvplay
SUBDIR += raster3d
SUBDIR += rawstudio
SUBDIR += rawtherapee
SUBDIR += rayshade
SUBDIR += reallyslick
SUBDIR += recoverjpeg
SUBDIR += repng2jpeg
SUBDIR += rgbpaint
SUBDIR += ristretto
SUBDIR += ruby-cairo
SUBDIR += ruby-gd
SUBDIR += ruby-gdk_pixbuf2
SUBDIR += ruby-gnomecanvas2
SUBDIR += ruby-graph
SUBDIR += ruby-image_size
SUBDIR += ruby-imlib2
SUBDIR += ruby-libart2
SUBDIR += ruby-libpng
SUBDIR += ruby-ming
SUBDIR += ruby-opengl
SUBDIR += ruby-pgplot
SUBDIR += ruby-rmagick
SUBDIR += ruby-rsvg2
SUBDIR += ruby-svg
SUBDIR += ruby-tgif
SUBDIR += rubygem-captcha
SUBDIR += rubygem-dragonfly
SUBDIR += rubygem-exifr
SUBDIR += rubygem-ezprint
SUBDIR += rubygem-gd2
SUBDIR += rubygem-geokit
SUBDIR += rubygem-graphviz
SUBDIR += rubygem-gruff
SUBDIR += rubygem-imagesize
SUBDIR += rubygem-image_science
SUBDIR += rubygem-objectdetect
SUBDIR += rubygem-opengl
SUBDIR += rubygem-pdfkit
SUBDIR += rubygem-railroad
SUBDIR += rubygem-scruffy
SUBDIR += rubygem-turing
SUBDIR += rubyphoto
SUBDIR += s10sh
SUBDIR += sage
SUBDIR += sam2p
SUBDIR += sane-backends
SUBDIR += sane-epkowa
SUBDIR += sane-frontends
SUBDIR += scale2x
SUBDIR += scantailor
SUBDIR += scr2png
SUBDIR += scrot
SUBDIR += scwm-icons
SUBDIR += sdl_gfx
SUBDIR += sdl_image
SUBDIR += sdl_ttf
SUBDIR += seam-carving-gui
SUBDIR += seejpeg
SUBDIR += seom
SUBDIR += separate
SUBDIR += sharpconstruct
SUBDIR += shiva-collections
SUBDIR += shotwell
SUBDIR += show
SUBDIR += showimg
SUBDIR += silgraphite
SUBDIR += simage
SUBDIR += simpleviewer
SUBDIR += sk1libs
SUBDIR += skanlite
SUBDIR += skencil
SUBDIR += sketch
SUBDIR += sng
SUBDIR += sodipodi
SUBDIR += solang
SUBDIR += spcaview
SUBDIR += springgraph
SUBDIR += sswf
SUBDIR += stamp
SUBDIR += stl2pov
SUBDIR += structuresynth
SUBDIR += svg2pdf
SUBDIR += svg2png
SUBDIR += svg2swf
SUBDIR += svgalib
SUBDIR += svgfig
SUBDIR += svgviewer
SUBDIR += swfdec
SUBDIR += swfmill
SUBDIR += swftools
SUBDIR += synaesthesia
SUBDIR += synfigstudio
SUBDIR += telak
SUBDIR += tesseract
SUBDIR += tesseract-data
SUBDIR += tgif
SUBDIR += tif22pnm
SUBDIR += tiff
SUBDIR += tiff2png
SUBDIR += tifmerge
SUBDIR += timeless
SUBDIR += tintfu
SUBDIR += tkpng
SUBDIR += togl
SUBDIR += tonicpoint-viewer
SUBDIR += truevision
SUBDIR += tulip
SUBDIR += tumble
SUBDIR += tumbler
SUBDIR += uDrawGraph
SUBDIR += ufraw
SUBDIR += uniconvertor
SUBDIR += uniconvw
SUBDIR += unpaper
SUBDIR += urt
SUBDIR += vcg
SUBDIR += vid
SUBDIR += view3ds
SUBDIR += vigra
SUBDIR += vindaloo
SUBDIR += vips
SUBDIR += visionworkbench
SUBDIR += visprint
SUBDIR += vp
SUBDIR += vrml2pov
SUBDIR += webp
SUBDIR += whirlgif
SUBDIR += white_dune
SUBDIR += wildmagic
SUBDIR += wings
SUBDIR += wings-devel
SUBDIR += wmgrabimage
SUBDIR += wmicons
SUBDIR += wxsvg
SUBDIR += xaos
SUBDIR += xbmbrowser
SUBDIR += xd3d
SUBDIR += xdgagrab
SUBDIR += xenomorph
SUBDIR += xface.el
SUBDIR += xfig
SUBDIR += xfig-devel
SUBDIR += xfpovray
SUBDIR += xfractint
SUBDIR += xglurbules
SUBDIR += xgrasp
SUBDIR += xli
SUBDIR += xmagv
SUBDIR += xmandel
SUBDIR += xmedcon
SUBDIR += xmfract
SUBDIR += xmlgraphics-commons
SUBDIR += xmms-blursk
SUBDIR += xmms-dancingparticles
SUBDIR += xmms-dflowers
SUBDIR += xmms-dscope
SUBDIR += xmms-dspectogram
SUBDIR += xmms-dspectral
SUBDIR += xmms-finespectrum
SUBDIR += xmms-fishmatic
SUBDIR += xmms-gdancer
SUBDIR += xmms-iris
SUBDIR += xmms-jess
SUBDIR += xmms-msa
SUBDIR += xmms-nebulus
SUBDIR += xmms-paranormal
SUBDIR += xmms-plazma
SUBDIR += xmms-scivi
SUBDIR += xmms-vumeter
SUBDIR += xmms-waterfall
SUBDIR += xmorph
SUBDIR += xmountains
SUBDIR += xmrm
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 += yap
SUBDIR += yed
SUBDIR += yukon
SUBDIR += zathura
SUBDIR += zbar
SUBDIR += zgv
SUBDIR += zimg
SUBDIR += zint
SUBDIR += zphoto
.include <bsd.port.subdir.mk>
|