Fix "changlogs" typo
[xorg-util-modular.git] / symlink.sh
blob47a17d503861663d975b2d80b49c108d192aec80
1 #!/bin/sh
4 # A script that symlinks source files from monolithic to modular
6 # Author: Soren Sandmann (sandmann@redhat.com)
7 #
10 # Things we would like to do
12 # - Check that all the relevant files exist
13 # - AUTHORS, autogen.sh, configure.ac, ...
14 # - Check that we have actually linked everything
15 # - if a file doesn't need to be linked, then it needs
16 # to be listed as "not-linked"
17 # - Compute diffs between all the files (shouldn't be necessary)
18 # - possibly check that files are listet in Makefile.am's
19 # - Clean target directory of irrelevant files
22 check_destinations () {
23 # don't do anything - we are relying on the side
24 # effect of dst_dir
25 true
28 check_exist() {
29 # Check whether $1 exists
31 if [ ! -e $1 ] ; then
32 error "$1 not found"
35 if [ -d $1 ] ; then
36 error "$1 is a directory"
41 delete_existing() {
42 # Delete $2
44 rm -f $2
47 link_files() {
48 # Link $1 to $2
50 if [ ! -e $2 ] ; then
51 ln -s $1 $2
55 run_symlink() {
56 run check_destinations "Creating destination directories"
57 run check_exist "Checking that the source files exist"
58 run delete_existing "Deleting existing files"
59 run link_files "Linking files"
63 #########
65 # The proto module
67 #########
69 # Core protocol
71 symlink_proto_core() {
72 src_dir include
73 dst_dir proto/X11
75 action ap_keysym.h # not used anywhere
76 action DECkeysym.h
77 action HPkeysym.h # not used anywhere
78 action keysymdef.h
79 action keysym.h
80 action Sunkeysym.h
81 action Xalloca.h
82 action Xarch.h
83 action Xatom.h
84 action Xdefs.h
85 action XF86keysym.h # only used in server
86 action Xfuncproto.h
87 action Xfuncs.h
88 action X.h
89 action Xmd.h
90 action Xosdefs.h
91 action Xos.h
92 action Xos_r.h
93 action Xpoll.h.in
94 action Xproto.h
95 action Xprotostr.h
96 action Xthreads.h # not used in server
97 action Xw32defs.h
98 action XWDFile.h
99 action Xwindows.h
100 action Xwinsock.h
103 # Extension protocols
105 symlink_proto_applewm() {
106 src_dir lib/apple
107 dst_dir proto/AppleWM
109 action applewm.h
110 action applewmstr.h
113 symlink_proto_bigreq() {
114 src_dir include/extensions
115 dst_dir proto/BigReqs
117 action bigreqstr.h
120 symlink_proto_composite() {
121 src_dir include/extensions
122 dst_dir proto/Composite
124 action composite.h
125 action compositeproto.h
128 symlink_proto_damage() {
129 src_dir include/extensions
130 dst_dir proto/Damage
132 action damageproto.h
133 action damagewire.h
136 symlink_proto_dmx() {
137 src_dir include/extensions
138 dst_dir proto/DMX
140 action dmxext.h
141 action dmxproto.h
144 symlink_proto_evie() {
145 src_dir include/extensions
146 dst_dir proto/EvIE
148 action Xeviestr.h
151 symlink_proto_fixes() {
152 src_dir include/extensions
153 dst_dir proto/Fixes
155 action xfixesproto.h
156 action xfixeswire.h
159 symlink_proto_fontcache() {
160 src_dir include/extensions
161 dst_dir proto/Fontcache
163 action fontcache.h
164 action fontcacheP.h
165 action fontcachstr.h
168 symlink_proto_input() {
169 src_dir include/extensions
170 dst_dir proto/Input
172 action XI.h
173 action XInput.h
174 action XIproto.h
177 symlink_proto_kb() {
178 src_dir include/extensions
179 dst_dir proto/KB
181 action XKBgeom.h
182 action XKB.h
183 action XKBproto.h
184 action XKBsrv.h
185 action XKBstr.h
188 symlink_proto_xinerama() {
189 src_dir include/extensions
190 dst_dir proto/Xinerama
192 action panoramiXext.h
193 action panoramiXproto.h
194 action Xinerama.h # not used in server
197 symlink_proto_pm() {
198 src_dir programs/proxymngr
199 dst_dir proto/PM
201 action PM.h
202 action PMproto.h
205 symlink_proto_print() {
206 src_dir include/extensions
207 dst_dir proto/Print
209 action Print.h
210 action Printstr.h
213 symlink_proto_randr() {
214 src_dir include/extensions
215 dst_dir proto/Randr
217 action randr.h
218 action randrproto.h
221 symlink_proto_record() {
222 src_dir include/extensions
223 dst_dir proto/Record
225 action record.h
226 action recordstr.h
229 symlink_proto_render() {
230 src_dir include/extensions
231 dst_dir proto/Render
233 action render.h
234 action renderproto.h
237 symlink_proto_resource() {
238 src_dir include/extensions
239 dst_dir proto/Resource
241 action XResproto.h
244 symlink_proto_saver() {
245 src_dir include/extensions
246 dst_dir proto/ScrnSaver
248 action saver.h
249 action saverproto.h
250 action scrnsaver.h # not used in server
253 symlink_proto_trap() {
254 src_dir include/extensions
255 dst_dir proto/Trap
257 action xtrapbits.h
258 action xtrapddmi.h # only used in server
259 action xtrapdi.h
260 action xtrapemacros.h # not used in server
261 action xtraplib.h # not used in server
262 action xtraplibp.h # not used in server
263 action xtrapproto.h # only used in server
266 symlink_proto_video() {
267 src_dir include/extensions
268 dst_dir proto/Video
270 action vldXvMC.h # not used in server
271 action Xv.h
272 action Xvproto.h
273 action XvMC.h
274 action XvMCproto.h
277 symlink_proto_windowswm() {
278 src_dir lib/windows
279 dst_dir proto/WindowsWM
281 action windowswm.h
282 action windowswmstr.h
285 symlink_proto_xcmisc() {
286 src_dir include/extensions
287 dst_dir proto/XCMisc
289 action xcmiscstr.h
292 # should these be exploded into individual extension components?
293 symlink_proto_xext() {
294 src_dir include/extensions
295 dst_dir proto/XExt
297 action dpms.h
298 action dpmsstr.h
299 action extutil.h
300 action lbxbuf.h # not used in server
301 action lbxbufstr.h # not used in server
302 action lbxdeltastr.h
303 action lbximage.h
304 action lbxopts.h
305 action lbxstr.h
306 action lbxzlib.h
307 action MITMisc.h
308 action mitmiscstr.h
309 action multibuf.h
310 action multibufst.h
311 action security.h
312 action securstr.h
313 action shape.h
314 action shapestr.h
315 action shmstr.h
316 action sync.h
317 action syncstr.h
318 action Xag.h
319 action Xagsrv.h # only used in server
320 action Xagstr.h
321 action Xcup.h
322 action Xcupstr.h
323 action Xdbe.h # not used in server
324 action Xdbeproto.h
325 action XEVI.h
326 action XEVIstr.h
327 action Xext.h
328 action XLbx.h
329 action XShm.h
330 action xtestext1.h
331 action XTest.h
332 action xteststr.h
335 symlink_proto_xf86bigfont() {
336 src_dir include/extensions
337 dst_dir proto/XF86BigFont
339 action xf86bigfont.h
340 action xf86bigfstr.h
343 symlink_proto_xf86dga() {
344 src_dir include/extensions
345 dst_dir proto/XF86DGA
347 action xf86dga1.h
348 action xf86dga1str.h
349 action xf86dga.h
350 action xf86dgastr.h
353 symlink_proto_xf86dri() {
354 src_dir extras/Mesa/src/glx/x11
355 dst_dir proto/XF86DRI
357 action xf86dri.h
358 action xf86dristr.h
361 symlink_proto_xf86misc() {
362 src_dir include/extensions
363 dst_dir proto/XF86Misc
365 action xf86misc.h
366 action xf86mscstr.h
369 symlink_proto_xf86rush() {
370 src_dir include/extensions
371 dst_dir proto/XF86Rush
373 action xf86rush.h
374 action xf86rushstr.h
377 symlink_proto_xf86vidmode() {
378 src_dir include/extensions
379 dst_dir proto/XF86VidMode
381 action xf86vmode.h
382 action xf86vmstr.h
385 symlink_proto_fonts() {
386 src_dir include/fonts
387 dst_dir proto/Fonts
389 action font.h
390 action fontproto.h
391 action fontstruct.h
392 action FS.h # not used in server
393 action fsmasks.h
394 action FSproto.h # not used in server
397 symlink_proto_gl() {
398 src_dir include/GL
399 dst_dir proto/GL
401 action glxint.h
402 action glxmd.h
403 action glxproto.h
404 action glxtokens.h
406 src_dir extras/Mesa/include/GL/internal
408 action glcore.h
411 symlink_proto() {
412 # Core protocol
413 symlink_proto_core
415 # Extension protocols
416 symlink_proto_applewm
417 symlink_proto_bigreq
418 symlink_proto_composite
419 symlink_proto_damage
420 symlink_proto_dmx
421 symlink_proto_evie
422 symlink_proto_fixes
423 symlink_proto_fontcache
424 symlink_proto_input
425 symlink_proto_kb
426 symlink_proto_pm
427 symlink_proto_print
428 symlink_proto_randr
429 symlink_proto_record
430 symlink_proto_render
431 symlink_proto_resource
432 symlink_proto_saver
433 symlink_proto_trap
434 symlink_proto_video
435 symlink_proto_windowswm
436 symlink_proto_xcmisc
437 symlink_proto_xext
438 symlink_proto_xf86bigfont
439 symlink_proto_xf86dga
440 symlink_proto_xf86dri
441 symlink_proto_xf86misc
442 symlink_proto_xf86rush
443 symlink_proto_xf86vidmode
444 symlink_proto_xinerama
446 # Font protocols
447 symlink_proto_fonts
449 # GL protocols
450 symlink_proto_gl
453 #########
455 # The lib module
457 #########
459 symlink_lib_applewm() {
460 src_dir lib/apple
461 dst_dir lib/AppleWM/src
463 action applewm.c
465 dst_dir lib/AppleWM/man
467 action AppleWM.man AppleWM.3
470 symlink_lib_dmx() {
471 src_dir lib/dmx
472 dst_dir lib/dmx/src
474 action dmx.c
476 src_dir doc/man/DMX
477 dst_dir lib/dmx/man
479 action DMXAddInput.man DMXAddInput.3
480 action DMXAddScreen.man DMXAddScreen.3
481 action DMXChangeDesktopAttributes.man DMXChangeDesktopAttributes.3
482 action DMXChangeScreensAttributes.man DMXChangeScreensAttributes.3
483 action DMXForceWindowCreation.man DMXForceWindowCreation.3
484 action DMXGetDesktopAttributes.man DMXGetDesktopAttributes.3
485 action DMXGetInputAttributes.man DMXGetInputAttributes.3
486 action DMXGetInputCount.man DMXGetInputCount.3
487 action DMXGetScreenAttributes.man DMXGetScreenAttributes.3
488 action DMXGetScreenCount.man DMXGetScreenCount.3
489 action DMXGetWindowAttributes.man DMXGetWindowAttributes.3
490 action DMX.man DMX.3
491 action DMXQueryExtension.man DMXQueryExtension.3
492 action DMXQueryVersion.man DMXQueryVersion.3
493 action DMXRemoveInput.man DMXRemoveInput.3
494 action DMXRemoveScreen.man DMXRemoveScreen.3
495 action DMXSync.man DMXSync.3
498 symlink_lib_composite() {
499 src_dir lib/Xcomposite
500 dst_dir lib/Xcomposite
502 dst_dir lib/Xcomposite/include/X11/extensions
504 action Xcomposite.h
506 dst_dir lib/Xcomposite/src
508 action xcompositeint.h
509 action Xcomposite.c
512 symlink_lib_damage() {
513 src_dir lib/Xdamage
514 dst_dir lib/Xdamage
516 dst_dir lib/Xdamage/include/X11/extensions
518 action Xdamage.h
520 dst_dir lib/Xdamage/src
522 action xdamageint.h
523 action Xdamage.c
526 symlink_lib_evie() {
527 src_dir include/extensions
528 dst_dir lib/Xevie/include/X11/extensions
530 action Xevie.h
532 src_dir lib/Xevie
533 dst_dir lib/Xevie
535 action AUTHORS
536 action xevie.pc.in
538 dst_dir lib/Xevie/src
540 action Xevie.c
542 dst_dir lib/Xevie/man
544 action Xevie.man
547 symlink_lib_fixes() {
548 src_dir lib/Xfixes
549 dst_dir lib/Xfixes
551 dst_dir lib/Xfixes/src
553 action Cursor.c
554 action Region.c
555 action SaveSet.c
556 action Selection.c
557 action Xfixes.c
558 action Xfixesint.h
560 dst_dir lib/Xfixes/include/X11/extensions
562 action Xfixes.h
564 dst_dir lib/Xfixes/man
566 action Xfixes.man Xfixes.3
569 symlink_lib_xau() {
570 src_dir lib/Xau
571 dst_dir lib/Xau
573 action README
575 action AuDispose.c
576 action AuFileName.c
577 action AuGetAddr.c
578 action AuGetBest.c
579 action AuLock.c
580 action AuRead.c
581 action Autest.c
582 action AuUnlock.c
583 action AuWrite.c
584 action k5encode.c
586 dst_dir lib/Xau/include/X11
588 action Xauth.h
590 src_dir doc/man/Xau
591 dst_dir lib/Xau
593 action Xau.man Xau.3
596 symlink_lib_xtrans() {
597 src_dir lib/xtrans
598 dst_dir lib/xtrans
600 action transport.c
601 action Xtrans.c
602 action Xtransdnet.c
603 action Xtrans.h
604 action Xtransint.h
605 action Xtranslcl.c
606 action Xtransos2.c
607 action Xtranssock.c
608 action Xtranstli.c
609 action Xtransutil.c
612 symlink_lib_xdmcp() {
613 src_dir lib/Xdmcp
614 dst_dir lib/Xdmcp
616 action Wrap.h
618 action A8Eq.c
619 action AA16.c
620 action AA32.c
621 action AA8.c
622 action Alloc.c
623 action AofA8.c
624 action CA8.c
625 action CmpKey.c
626 action DA16.c
627 action DA32.c
628 action DA8.c
629 action DAofA8.c
630 action DecKey.c
631 action Fill.c
632 action Flush.c
633 action GenKey.c
634 action IncKey.c
635 action RA16.c
636 action RA32.c
637 action RA8.c
638 action RaA16.c
639 action RaA32.c
640 action RaA8.c
641 action RaAoA8.c
642 action RAofA8.c
643 action RC16.c
644 action RC32.c
645 action RC8.c
646 action RHead.c
647 action RR.c
648 action Unwrap.c
649 action WA16.c
650 action WA32.c
651 action WA8.c
652 action WAofA8.c
653 action WC16.c
654 action WC32.c
655 action WC8.c
656 action Whead.c
657 action Wrap.c
658 action Wraphelp.c
660 action Wraphelp.README.crypto
662 dst_dir lib/Xdmcp/include/X11
664 action Xdmcp.h
667 symlink_lib_xext() {
668 src_dir lib/Xext
669 dst_dir lib/Xext/src
671 action DPMS.c
672 action extutil.c
673 action globals.c
674 action MITMisc.c
675 action XAppgroup.c
676 action Xcup.c
677 action Xdbe.c
678 action XEVI.c
679 action XLbx.c
680 action XMultibuf.c
681 action XSecurity.c
682 action XShape.c
683 action XShm.c
684 action XSync.c
685 action XTestExt1.c
687 src_dir doc/man/Xext
688 dst_dir lib/Xext/man
690 action DPMSCapable.man
691 action DPMSDisable.man
692 action DPMSEnable.man
693 action DPMSForceLevel.man
694 action DPMSGetTimeouts.man
695 action DPMSGetVersion.man
696 action DPMSInfo.man
697 action DPMSQueryExtension.man
698 action DPMSSetTimeouts.man
699 action XcupGetReservedColormapEntries.man
700 action XcupQueryVersion.man
701 action XcupStoreColors.man
702 action Xevi.man
703 action Xmbuf.man
704 action XShape.man
706 src_dir doc/man/Xext/dbe
708 action DBE.man
709 action XdbeAllo.man XdbeAllocateBackBufferName.man
710 action XdbeBegi.man XdbeBeginIdiom.man
711 action XdbeEndI.man XdbeEndIdiom.man
712 action XdbeDeal.man XdbeDeallocateBackBufferName.man
713 action XdbeFree.man XdbeFreeVisualInfo.man
714 action XdbeQuer.man XdbeQueryExtension.man
715 action XdbeSwap.man XdbeSwapBuffers.man
716 action XdbeGetB.man XdbeGetBackBufferAttributes.man
717 action XdbeGetV.man XdbeGetVisualInfo.man
720 symlink_lib_x11() {
721 src_dir lib/X11
723 # public .h files
724 dst_dir lib/X11/include/X11
726 action cursorfont.h
727 action Xregion.h
728 action Xcms.h
729 action XKBlib.h
730 action Xlib.h
731 action Xlibint.h
732 action Xlocale.h
733 action Xresource.h
734 action Xutil.h
735 action ImUtil.h
737 dst_dir lib/X11/src
739 # internal .h files
740 action Cmap.h
741 action Cr.h
742 action Key.h
743 action locking.h
744 action poly.h
745 action Xatomtype.h
746 action Xintatom.h
747 action Xintconn.h
748 action XomGeneric.h
749 action Xresinternal.h
750 action XrmI.h
752 # Misc
754 action XKeysymDB
755 action XErrorDB
757 # source .c files
759 action AllCells.c
760 action AllowEv.c
761 action AllPlanes.c
762 action AutoRep.c
763 action Backgnd.c
764 action BdrWidth.c
765 action Bell.c
766 action Border.c
767 action ChAccCon.c
768 action ChActPGb.c
769 action ChClMode.c
770 action ChCmap.c
771 action ChGC.c
772 action ChKeyCon.c
773 action ChkIfEv.c
774 action ChkMaskEv.c
775 action ChkTypEv.c
776 action ChkTypWEv.c
777 action ChkWinEv.c
778 action ChPntCon.c
779 action ChProp.c
780 action ChSaveSet.c
781 action ChWAttrs.c
782 action ChWindow.c
783 action CirWin.c
784 action CirWinDn.c
785 action CirWinUp.c
786 action ClDisplay.c
787 action ClearArea.c
788 action Clear.c
789 action ConfWind.c
790 action ConnDis.c
791 action Context.c
792 action ConvSel.c
793 action CopyArea.c
794 action CopyCmap.c
795 action CopyGC.c
796 action CopyPlane.c
797 action CrBFData.c
798 action CrCmap.c
799 action CrCursor.c
800 action CrGC.c
801 action CrGlCur.c
802 action CrPFBData.c
803 action CrPixmap.c
804 action CrWindow.c
805 action Cursor.c
806 action DefCursor.c
807 action DelProp.c
808 action Depths.c
809 action DestSubs.c
810 action DestWind.c
811 action DisName.c
812 action DrArc.c
813 action DrArcs.c
814 action DrLine.c
815 action DrLines.c
816 action DrPoint.c
817 action DrPoints.c
818 action DrRect.c
819 action DrRects.c
820 action DrSegs.c
821 action ErrDes.c
822 action ErrHndlr.c
823 action evtomask.c
824 action EvToWire.c
825 action FetchName.c
826 action FillArc.c
827 action FillArcs.c
828 action FillPoly.c
829 action FillRct.c
830 action FillRcts.c
831 action FilterEv.c
832 action Flush.c
833 action Font.c
834 action FontInfo.c
835 action FontNames.c
836 action FreeCmap.c
837 action FreeCols.c
838 action FreeCurs.c
839 action FreeEData.c
840 action FreeGC.c
841 action FreePix.c
842 action FSSaver.c
843 action FSWrap.c
844 action GCMisc.c
845 action Geom.c
846 action GetAtomNm.c
847 action GetColor.c
848 action GetDflt.c
849 action GetFPath.c
850 action GetFProp.c
851 action GetGCVals.c
852 action GetGeom.c
853 action GetHColor.c
854 action GetHints.c
855 action GetIFocus.c
856 action GetImage.c
857 action GetKCnt.c
858 action GetMoEv.c
859 action GetNrmHint.c
860 action GetPCnt.c
861 action GetPntMap.c
862 action GetProp.c
863 action GetRGBCMap.c
864 action GetSOwner.c
865 action GetSSaver.c
866 action GetStCmap.c
867 action GetTxtProp.c
868 action GetWAttrs.c
869 action GetWMCMapW.c
870 action GetWMProto.c
871 action globals.c
872 action GrButton.c
873 action GrKeybd.c
874 action GrKey.c
875 action GrPointer.c
876 action GrServer.c
877 action Host.c
878 action Iconify.c
879 action IfEvent.c
880 action imConv.c
881 action ImText16.c
882 action ImText.c
883 action ImUtil.c
884 action InitExt.c
885 action InsCmap.c
886 action IntAtom.c
887 action KeyBind.c
888 action KeysymStr.c
889 action KillCl.c
890 action LiHosts.c
891 action LiICmaps.c
892 action LiProps.c
893 action ListExt.c
894 action LoadFont.c
895 action LockDis.c
896 action locking.c
897 action LookupCol.c
898 action LowerWin.c
899 action Macros.c
900 action MapRaised.c
901 action MapSubs.c
902 action MapWindow.c
903 action MaskEvent.c
904 action Misc.c
905 action ModMap.c
906 action MoveWin.c
907 action NextEvent.c
908 action OCWrap.c
909 action OMWrap.c
910 action OpenDis.c
911 action os2Stubs.c
912 action ParseCmd.c
913 action ParseCol.c
914 action ParseGeom.c
915 action PeekEvent.c
916 action PeekIfEv.c
917 action Pending.c
918 action PixFormats.c
919 action PmapBgnd.c
920 action PmapBord.c
921 action PolyReg.c
922 action PolyTxt16.c
923 action PolyTxt.c
924 action PropAlloc.c
925 action PutBEvent.c
926 action PutImage.c
927 action Quarks.c
928 action QuBest.c
929 action QuColor.c
930 action QuColors.c
931 action QuCurShp.c
932 action QuExt.c
933 action QuKeybd.c
934 action QuPntr.c
935 action QuStipShp.c
936 action QuTextE16.c
937 action QuTextExt.c
938 action QuTileShp.c
939 action QuTree.c
940 action RaiseWin.c
941 action RdBitF.c
942 action RecolorC.c
943 action ReconfWin.c
944 action ReconfWM.c
945 action Region.c
946 action RegstFlt.c
947 action RepWindow.c
948 action RestackWs.c
949 action RotProp.c
950 action ScrResStr.c
951 action SelInput.c
952 action SendEvent.c
953 action SetBack.c
954 action SetClMask.c
955 action SetClOrig.c
956 action SetCRects.c
957 action SetDashes.c
958 action SetFont.c
959 action SetFore.c
960 action SetFPath.c
961 action SetFunc.c
962 action SetHints.c
963 action SetIFocus.c
964 action SetLocale.c
965 action SetLStyle.c
966 action SetNrmHint.c
967 action SetPMask.c
968 action SetPntMap.c
969 action SetRGBCMap.c
970 action SetSOwner.c
971 action SetSSaver.c
972 action SetState.c
973 action SetStCmap.c
974 action SetStip.c
975 action SetTile.c
976 action SetTSOrig.c
977 action SetTxtProp.c
978 action SetWMCMapW.c
979 action SetWMProto.c
980 action StBytes.c
981 action StColor.c
982 action StColors.c
983 action StName.c
984 action StNColor.c
985 action StrKeysym.c
986 action StrToText.c
987 action Sync.c
988 action Synchro.c
989 action Text16.c
990 action Text.c
991 action TextExt16.c
992 action TextExt.c
993 action TextToStr.c
994 action TrCoords.c
995 action udcInf.c
996 action UIThrStubs.c
997 action UndefCurs.c
998 action UngrabBut.c
999 action UngrabKbd.c
1000 action UngrabKey.c
1001 action UngrabPtr.c
1002 action UngrabSvr.c
1003 action UninsCmap.c
1004 action UnldFont.c
1005 action UnmapSubs.c
1006 action UnmapWin.c
1007 action VisUtil.c
1008 action WarpPtr.c
1009 action Window.c
1010 action WinEvent.c
1011 action Withdraw.c
1012 action WMGeom.c
1013 action WMProps.c
1014 action WrBitF.c
1015 action XlibAsync.c
1016 action XlibInt.c
1017 action Xrm.c
1019 # XCMS files
1020 dst_dir lib/X11/src/xcms
1022 action AddDIC.c
1023 action AddSF.c
1024 action CCC.c
1025 action cmsAllCol.c
1026 action cmsAllNCol.c
1027 action cmsCmap.c
1028 action cmsColNm.c
1029 action cmsGlobls.c
1030 action cmsInt.c
1031 action cmsLkCol.c
1032 action cmsMath.c
1033 action cmsProp.c
1034 action cmsTrig.c
1035 action CvCols.c
1036 action CvColW.c
1037 action Cv.h
1038 action HVC.c
1039 action HVCGcC.c
1040 action HVCGcV.c
1041 action HVCGcVC.c
1042 action HVCMnV.c
1043 action HVCMxC.c
1044 action HVCMxV.c
1045 action HVCMxVC.c
1046 action HVCMxVs.c
1047 action HVCWpAj.c
1048 action IdOfPr.c
1049 action Lab.c
1050 action LabGcC.c
1051 action LabGcL.c
1052 action LabGcLC.c
1053 action LabMnL.c
1054 action LabMxC.c
1055 action LabMxL.c
1056 action LabMxLC.c
1057 action LabWpAj.c
1058 action LRGB.c
1059 action Luv.c
1060 action LuvGcC.c
1061 action LuvGcL.c
1062 action LuvGcLC.c
1063 action LuvMnL.c
1064 action LuvMxC.c
1065 action LuvMxL.c
1066 action LuvMxLC.c
1067 action LuvWpAj.c
1068 action OfCCC.c
1069 action PrOfId.c
1070 action QBlack.c
1071 action QBlue.c
1072 action QGreen.c
1073 action QRed.c
1074 action QuCol.c
1075 action QuCols.c
1076 action QWhite.c
1077 action SetCCC.c
1078 action SetGetCols.c
1079 action StCol.c
1080 action StCols.c
1081 action UNDEFINED.c
1082 action uvY.c
1083 action Xcmsint.h
1084 action XRGB.c
1085 action xyY.c
1086 action XYZ.c
1087 action Xcms.txt
1089 # XKB files
1090 dst_dir lib/X11/src/xkb
1092 action XKBAlloc.c
1093 action XKBBell.c
1094 action XKBBind.c
1095 action XKB.c
1096 action XKBCompat.c
1097 action XKBCtrls.c
1098 action XKBCvt.c
1099 action XKBExtDev.c
1100 action XKBGAlloc.c
1101 action XKBGeom.c
1102 action XKBGetByName.c
1103 action XKBGetMap.c
1104 action XKBleds.c
1105 action XKBlibint.h
1106 action XKBList.c
1107 action XKBMAlloc.c
1108 action XKBMisc.c
1109 action XKBNames.c
1110 action XKBRdBuf.c
1111 action XKBSetGeom.c
1112 action XKBSetMap.c
1113 action XKBUse.c
1115 # Xlib I18n files
1117 dst_dir lib/X11/src/xlibi18n
1119 action ICWrap.c
1120 action imKStoUCS.c
1121 action IMWrap.c
1122 action lcCharSet.c
1123 action lcConv.c
1124 action lcCT.c
1125 action lcDB.c
1126 action lcDynamic.c
1127 action lcFile.c
1128 action lcGeneric.c
1129 action lcInit.c
1130 action lcPrTxt.c
1131 action lcPublic.c
1132 action lcPubWrap.c
1133 action lcRM.c
1134 action lcStd.c
1135 action lcTxtPr.c
1136 action lcUTF8.c
1137 action lcUtil.c
1138 action lcWrap.c
1139 action mbWMProps.c
1140 action mbWrap.c
1141 action utf8WMProps.c
1142 action utf8Wrap.c
1143 action wcWrap.c
1144 action Xaixlcint.h
1145 action XDefaultIMIF.c
1146 action XDefaultOMIF.c
1147 action XimImSw.h
1148 action Ximint.h
1149 action XimintL.h
1150 action XimintP.h
1151 action XimProto.h
1152 action XimThai.h
1153 action XimTrans.h
1154 action XimTrInt.h
1155 action XimTrX.h
1156 action XlcDL.c
1157 action XlcGeneric.h
1158 action Xlcint.h
1159 action XlcPubI.h
1160 action XlcPublic.h
1161 action XlcSL.c
1163 # XIMPC input method files
1165 dst_dir lib/X11/modules/im/ximcp
1167 action imCallbk.c
1168 action imDefFlt.c
1169 action imDefIc.c
1170 action imDefIm.c
1171 action imDefLkup.c
1172 action imDispch.c
1173 action imEvToWire.c
1174 action imExten.c
1175 action imImSw.c
1176 action imInsClbk.c
1177 action imInt.c
1178 action imLcFlt.c
1179 action imLcGIc.c
1180 action imLcIc.c
1181 action imLcIm.c
1182 action imLcLkup.c
1183 action imLcPrs.c
1184 action imLcSIc.c
1185 action imRmAttr.c
1186 action imRm.c
1187 action imThaiFlt.c
1188 action imThaiIc.c
1189 action imThaiIm.c
1190 action imTrans.c
1191 action imTransR.c
1192 action imTrX.c
1194 # default lc files
1196 dst_dir lib/X11/modules/lc/def
1198 action lcDefConv.c
1200 # generic lc files
1202 dst_dir lib/X11/modules/lc/gen
1204 action lcGenConv.c
1206 # UTF-8 lc files
1208 dst_dir lib/X11/modules/lc/Utf8
1210 action lcUTF8Load.c
1212 # Xlocale lc files
1214 dst_dir lib/X11/modules/lc/xlocale
1216 action lcEuc.c
1217 action lcJis.c
1218 action lcSjis.c
1220 # Generic output method files
1222 dst_dir lib/X11/modules/om/generic
1224 action omDefault.c
1225 action omGeneric.c
1226 action omImText.c
1227 action omText.c
1228 action omTextEsc.c
1229 action omTextExt.c
1230 action omTextPer.c
1231 action omXChar.c
1233 # man pages
1235 src_dir doc/man/X11
1236 dst_dir lib/X11/man
1238 action AllPlanes.man AllPlanes.man
1239 action BlkPScrn.man BlackPixelOfScreen.man
1240 action Dis3C.man DisplayOfCCC.man
1241 action ImageOrd.man ImageByteOrder.man
1242 action IsCKey.man IsCursorKey.man
1243 action XACHints.man XAllocClassHint.man
1244 action XAIcSize.man XAllocIconSize.man
1245 action XASCmap.man XAllocStandardColormap.man
1246 action XASHints.man XAllocSizeHints.man
1247 action XAWMHints.man XAllocWMHints.man
1248 action XAddHost.man XAddHost.man
1249 action XAllColor.man XAllocColor.man
1250 action XAllEvnt.man XAllowEvents.man
1251 action XAnyEvent.man XAnyEvent.man
1252 action XButEvent.man XButtonEvent.man
1253 action XCKCntrl.man XChangeKeyboardControl.man
1254 action XCKMping.man XChangeKeyboardMapping.man
1255 action XCMEvent.man XClientMessageEvent.man
1256 action XCPCntrl.man XChangePointerControl.man
1257 action XCSSet.man XChangeSaveSet.man
1258 action XCWAttrib.man XChangeWindowAttributes.man
1259 action XCWEvent.man XCreateWindowEvent.man
1260 action XCirEvent.man XCirculateEvent.man
1261 action XCirREven.man XCirculateRequestEvent.man
1262 action XClrArea.man XClearArea.man
1263 action XCmpEvent.man XColormapEvent.man
1264 action XConEvent.man XConfigureEvent.man
1265 action XConREven.man XConfigureRequestEvent.man
1266 action XConfWin.man XConfigureWindow.man
1267 action XCopyArea.man XCopyArea.man
1268 action XCreCmap.man XCreateColormap.man
1269 action XCreFCur.man XCreateFontCursor.man
1270 action XCreFSet.man XCreateFontSet.man
1271 action XCreGC.man XCreateGC.man
1272 action XCreIC.man XCreateIC.man
1273 action XCreImage.man XInitImage.man
1274 action XCreOC.man XCreateOC.man
1275 action XCrePmap.man XCreatePixmap.man
1276 action XCreReg.man XCreateRegion.man
1277 action XCreWin.man XCreateWindow.man
1278 action XCroEvent.man XCrossingEvent.man
1279 action XDWEvent.man XDestroyWindowEvent.man
1280 action XDefCur.man XDefineCursor.man
1281 action XDesWin.man XDestroyWindow.man
1282 action XDrArc.man XDrawArc.man
1283 action XDrIStr.man XDrawImageString.man
1284 action XDrLine.man XDrawLine.man
1285 action XDrPoint.man XDrawPoint.man
1286 action XDrRect.man XDrawRectangle.man
1287 action XDrString.man XDrawString.man
1288 action XDrText.man XDrawText.man
1289 action XERegion.man XEmptyRegion.man
1290 action XEnumDB.man XrmEnumerateDatabase.man
1291 action XEofFSet.man XExtentsOfFontSet.man
1292 action XErrEvent.man XErrorEvent.man
1293 action XExpEvent.man XExposeEvent.man
1294 action XFCEvent.man XFocusChangeEvent.man
1295 action XFEvent.man XFilterEvent.man
1296 action XFSExt.man XFontSetExtents.man
1297 action XFillRect.man XFillRectangle.man
1298 action XFlush.man XFlush.man
1299 action XFofFSet.man XFontsOfFontSet.man
1300 action XFree.man XFree.man
1301 action XGEEvent.man XGraphicsExposeEvent.man
1302 action XGEvent.man XGravityEvent.man
1303 action XGFDBase.man XrmGetFileDatabase.man
1304 action XGetRes.man XrmGetResource.man
1305 action XGetVInfo.man XGetVisualInfo.man
1306 action XGetWAttr.man XGetWindowAttributes.man
1307 action XGetWProp.man XGetWindowProperty.man
1308 action XGrButton.man XGrabButton.man
1309 action XGrKey.man XGrabKey.man
1310 action XGrKeybrd.man XGrabKeyboard.man
1311 action XGrPntr.man XGrabPointer.man
1312 action XGrServer.man XGrabServer.man
1313 action XIcWin.man XIconifyWindow.man
1314 action XIfEvent.man XIfEvent.man
1315 action XInitial.man XrmInitialize.man
1316 action XInstCmap.man XInstallColormap.man
1317 action XIntConn.man XAddConnectionWatch.man
1318 action XInterReg.man XIntersectRegion.man
1319 action XInternA.man XInternAtom.man
1320 action XKMapEven.man XKeymapEvent.man
1321 action XListFont.man XListFonts.man
1322 action XLoadFont.man XLoadFont.man
1323 action XLookKsym.man XLookupKeysym.man
1324 action XMDBases.man XrmMergeDatabases.man
1325 action XMEvent.man XMapEvent.man
1326 action XMREvent.man XMapRequestEvent.man
1327 action XMapWin.man XMapWindow.man
1328 action XNEvent.man XNextEvent.man
1329 action XNoOp.man XNoOp.man
1330 action XOpDsply.man XOpenDisplay.man
1331 action XOpenIM.man XOpenIM.man
1332 action XOpenOM.man XOpenOM.man
1333 action XPEvent.man XPropertyEvent.man
1334 action XParGeom.man XParseGeometry.man
1335 action XPolyReg.man XPolygonRegion.man
1336 action XPutBEvnt.man XPutBackEvent.man
1337 action XPutImage.man XPutImage.man
1338 action XPutRes.man XrmPutResource.man
1339 action XQBSize.man XQueryBestSize.man
1340 action XQColor.man XQueryColor.man
1341 action XQExtension.man XQueryExtension.man
1342 action XQPointer.man XQueryPointer.man
1343 action XQTree.man XQueryTree.man
1344 action XREvent.man XReparentEvent.man
1345 action XRMStr.man XResourceManagerString.man
1346 action XRREvent.man XResizeRequestEvent.man
1347 action XRaiseWin.man XRaiseWindow.man
1348 action XReadBF.man XReadBitmapFile.man
1349 action XRecCur.man XRecolorCursor.man
1350 action XReparWin.man XReparentWindow.man
1351 action XSCEvent.man XSelectionClearEvent.man
1352 action XSContext.man XSaveContext.man
1353 action XSEvent.man XSelectionEvent.man
1354 action XSICFoc.man XSetICFocus.man
1355 action XSICVals.man XSetICValues.man
1356 action XSInput.man XSelectInput.man
1357 action XSLTTProp.man XStringListToTextProperty.man
1358 action XSREvent.man XSelectionRequestEvent.man
1359 action XSeArcMod.man XSetArcMode.man
1360 action XSeClipO.man XSetClipOrigin.man
1361 action XSeClosDM.man XSetCloseDownMode.man
1362 action XSeCmd.man XSetCommand.man
1363 action XSeErrHan.man XSetErrorHandler.man
1364 action XSeEvent.man XSendEvent.man
1365 action XSeFillS.man XSetFillStyle.man
1366 action XSeFont.man XSetFont.man
1367 action XSeFontP.man XSetFontPath.man
1368 action XSeInFoc.man XSetInputFocus.man
1369 action XSeLAttr.man XSetLineAttributes.man
1370 action XSePMap.man XSetPointerMapping.man
1371 action XSeScSav.man XSetScreenSaver.man
1372 action XSeSelOwn.man XSetSelectionOwner.man
1373 action XSeState.man XSetState.man
1374 action XSeTFHint.man XSetTransientForHint.man
1375 action XSeTProp.man XSetTextProperty.man
1376 action XSeTile.man XSetTile.man
1377 action XSeWMCMac.man XSetWMClientMachine.man
1378 action XSeWMCWin.man XSetWMColormapWindows.man
1379 action XSeWMINam.man XSetWMIconName.man
1380 action XSeWMName.man XSetWMName.man
1381 action XSeWMProp.man XSetWMProperties.man
1382 action XSeWMProt.man XSetWMProtocols.man
1383 action XStBytes.man XStoreBytes.man
1384 action XStColors.man XStoreColors.man
1385 action XStTKsym.man XStringToKeysym.man
1386 action XSupLoc.man XSupportsLocale.man
1387 action XSync.man XSynchronize.man
1388 action XTLTTProp.man XmbTextListToTextProperty.man
1389 action XTextExt.man XTextExtents.man
1390 action XTextWid.man XTextWidth.man
1391 action XThreads.man XInitThreads.man
1392 action XTranWCo.man XTranslateCoordinates.man
1393 action XUQuark.man XrmUniqueQuark.man
1394 action XUmapEven.man XUnmapEvent.man
1395 action XUnmapWin.man XUnmapWindow.man
1396 action XVCNList.man XVaCreateNestedList.man
1397 action XVEvent.man XVisibilityEvent.man
1398 action XWarpPntr.man XWarpPointer.man
1399 action Xcms3CoC.man XcmsCCCOfColormap.man
1400 action XcmsAClr.man XcmsAllocColor.man
1401 action XcmsCClrs.man XcmsConvertColors.man
1402 action XcmsClr.man XcmsColor.man
1403 action XcmsCre3C.man XcmsCreateCCC.man
1404 action XcmsD3C.man XcmsDefaultCCC.man
1405 action XcmsLaQMC.man XcmsCIELabQueryMaxC.man
1406 action XcmsLuQMC.man XcmsCIELuvQueryMaxC.man
1407 action XcmsQBlk.man XcmsQueryBlack.man
1408 action XcmsQClr.man XcmsQueryColor.man
1409 action XcmsSClr.man XcmsStoreColor.man
1410 action XcmsSWP.man XcmsSetWhitePoint.man
1411 action XcmsTQMC.man XcmsTekHVCQueryMaxC.man
1412 action XmbDIStr.man XmbDrawImageString.man
1413 action XmbDStr.man XmbDrawString.man
1414 action XmbDTxt.man XmbDrawText.man
1415 action XmbLStr.man XmbLookupString.man
1416 action XmbRIC.man XmbResetIC.man
1417 action XmbTEsc.man XmbTextEscapement.man
1418 action XmbTExt.man XmbTextExtents.man
1419 action XmbTPCEx.man XmbTextPerCharExtents.man
1421 # src/util
1423 src_dir lib/X11/util
1424 dst_dir lib/X11/src/util
1426 action makekeys.c
1427 action mkks.sh
1429 #---------------------
1431 # NLS
1433 #---------------------
1435 src_dir nls
1436 dst_dir lib/X11/nls
1438 action compose.dir compose.dir.pre
1439 action locale.dir locale.dir.pre
1440 action locale.alias locale.alias.pre
1442 # armscii-8
1443 dst_dir lib/X11/nls/armscii-8
1444 src_dir nls/XLC_LOCALE
1445 action armscii-8 XLC_LOCALE.pre
1446 src_dir nls/XI18N_OBJS
1447 action armscii-8 XI18N_OBJS
1448 src_dir nls/Compose
1449 action armscii-8 Compose.pre
1452 dst_dir lib/X11/nls/C
1453 src_dir nls/XLC_LOCALE
1454 action C XLC_LOCALE.pre
1455 src_dir nls/XI18N_OBJS
1456 action C XI18N_OBJS
1457 #src_dir nls/Compose
1458 #action C Compose.pre
1460 # en_US.UTF-8
1461 dst_dir lib/X11/nls/en_US.UTF-8
1462 src_dir nls/XLC_LOCALE
1463 action en_US.UTF-8 XLC_LOCALE.pre
1464 src_dir nls/XI18N_OBJS
1465 action en_US.UTF-8 XI18N_OBJS
1466 src_dir nls/Compose
1467 action en_US.UTF-8 Compose.pre
1469 # georgian-academy
1470 dst_dir lib/X11/nls/georgian-academy
1471 src_dir nls/XLC_LOCALE
1472 action georgian-academy XLC_LOCALE.pre
1473 src_dir nls/XI18N_OBJS
1474 action georgian-academy XI18N_OBJS
1475 src_dir nls/Compose
1476 action georgian-academy Compose.pre
1478 # georgian-ps
1479 dst_dir lib/X11/nls/georgian-ps
1480 src_dir nls/XLC_LOCALE
1481 action georgian-ps XLC_LOCALE.pre
1482 src_dir nls/XI18N_OBJS
1483 action georgian-ps XI18N_OBJS
1484 src_dir nls/Compose
1485 action georgian-ps Compose.pre
1487 # ibm-cp1133
1488 dst_dir lib/X11/nls/ibm-cp1133
1489 src_dir nls/XLC_LOCALE
1490 action ibm-cp1133 XLC_LOCALE.pre
1491 src_dir nls/XI18N_OBJS
1492 action ibm-cp1133 XI18N_OBJS
1493 src_dir nls/Compose
1494 action ibm-cp1133 Compose.pre
1496 # iscii-dev
1497 dst_dir lib/X11/nls/iscii-dev
1498 src_dir nls/XLC_LOCALE
1499 action iscii-dev XLC_LOCALE.pre
1500 src_dir nls/XI18N_OBJS
1501 action iscii-dev XI18N_OBJS
1502 #src_dir nls/Compose
1503 #action iscii-dev Compose.pre
1505 # isiri-3342
1506 dst_dir lib/X11/nls/isiri-3342
1507 src_dir nls/XLC_LOCALE
1508 action isiri-3342 XLC_LOCALE.pre
1509 src_dir nls/XI18N_OBJS
1510 action isiri-3342 XI18N_OBJS
1511 #src_dir nls/Compose
1512 #action isiri-3342 Compose.pre
1514 # iso8859-1
1515 dst_dir lib/X11/nls/iso8859-1
1516 src_dir nls/XLC_LOCALE
1517 action iso8859-1 XLC_LOCALE.pre
1518 src_dir nls/XI18N_OBJS
1519 action iso8859-1 XI18N_OBJS
1520 src_dir nls/Compose
1521 action iso8859-1 Compose.pre
1523 # iso8859-10
1524 dst_dir lib/X11/nls/iso8859-10
1525 src_dir nls/XLC_LOCALE
1526 action iso8859-10 XLC_LOCALE.pre
1527 src_dir nls/XI18N_OBJS
1528 action iso8859-10 XI18N_OBJS
1529 src_dir nls/Compose
1530 action iso8859-10 Compose.pre
1532 # iso8859-11
1533 dst_dir lib/X11/nls/iso8859-11
1534 src_dir nls/XLC_LOCALE
1535 action iso8859-11 XLC_LOCALE.pre
1536 src_dir nls/XI18N_OBJS
1537 action iso8859-11 XI18N_OBJS
1538 #src_dir nls/Compose
1539 #action iso8859-11 Compose.pre
1541 # iso8859-13
1542 dst_dir lib/X11/nls/iso8859-13
1543 src_dir nls/XLC_LOCALE
1544 action iso8859-13 XLC_LOCALE.pre
1545 src_dir nls/XI18N_OBJS
1546 action iso8859-13 XI18N_OBJS
1547 src_dir nls/Compose
1548 action iso8859-13 Compose.pre
1550 # iso8859-14
1551 dst_dir lib/X11/nls/iso8859-14
1552 src_dir nls/XLC_LOCALE
1553 action iso8859-14 XLC_LOCALE.pre
1554 src_dir nls/XI18N_OBJS
1555 action iso8859-14 XI18N_OBJS
1556 src_dir nls/Compose
1557 action iso8859-14 Compose.pre
1559 # iso8859-15
1560 dst_dir lib/X11/nls/iso8859-15
1561 src_dir nls/XLC_LOCALE
1562 action iso8859-15 XLC_LOCALE.pre
1563 src_dir nls/XI18N_OBJS
1564 action iso8859-15 XI18N_OBJS
1565 src_dir nls/Compose
1566 action iso8859-15 Compose.pre
1568 # iso8859-2
1569 dst_dir lib/X11/nls/iso8859-2
1570 src_dir nls/XLC_LOCALE
1571 action iso8859-2 XLC_LOCALE.pre
1572 src_dir nls/XI18N_OBJS
1573 action iso8859-2 XI18N_OBJS
1574 src_dir nls/Compose
1575 action iso8859-2 Compose.pre
1577 # iso8859-3
1578 dst_dir lib/X11/nls/iso8859-3
1579 src_dir nls/XLC_LOCALE
1580 action iso8859-3 XLC_LOCALE.pre
1581 src_dir nls/XI18N_OBJS
1582 action iso8859-3 XI18N_OBJS
1583 src_dir nls/Compose
1584 action iso8859-3 Compose.pre
1586 # iso8859-4
1587 dst_dir lib/X11/nls/iso8859-4
1588 src_dir nls/XLC_LOCALE
1589 action iso8859-4 XLC_LOCALE.pre
1590 src_dir nls/XI18N_OBJS
1591 action iso8859-4 XI18N_OBJS
1592 src_dir nls/Compose
1593 action iso8859-4 Compose.pre
1595 # iso8859-5
1596 dst_dir lib/X11/nls/iso8859-5
1597 src_dir nls/XLC_LOCALE
1598 action iso8859-5 XLC_LOCALE.pre
1599 src_dir nls/XI18N_OBJS
1600 action iso8859-5 XI18N_OBJS
1601 src_dir nls/Compose
1602 action iso8859-5 Compose.pre
1604 # iso8859-6
1605 dst_dir lib/X11/nls/iso8859-6
1606 src_dir nls/XLC_LOCALE
1607 action iso8859-6 XLC_LOCALE.pre
1608 src_dir nls/XI18N_OBJS
1609 action iso8859-6 XI18N_OBJS
1610 src_dir nls/Compose
1611 action iso8859-6 Compose.pre
1613 # iso8859-7
1614 dst_dir lib/X11/nls/iso8859-7
1615 src_dir nls/XLC_LOCALE
1616 action iso8859-7 XLC_LOCALE.pre
1617 src_dir nls/XI18N_OBJS
1618 action iso8859-7 XI18N_OBJS
1619 src_dir nls/Compose
1620 action iso8859-7 Compose.pre
1622 # iso8859-8
1623 dst_dir lib/X11/nls/iso8859-8
1624 src_dir nls/XLC_LOCALE
1625 action iso8859-8 XLC_LOCALE.pre
1626 src_dir nls/XI18N_OBJS
1627 action iso8859-8 XI18N_OBJS
1628 src_dir nls/Compose
1629 action iso8859-8 Compose.pre
1631 # iso8859-9
1632 dst_dir lib/X11/nls/iso8859-9
1633 src_dir nls/XLC_LOCALE
1634 action iso8859-9 XLC_LOCALE.pre
1635 src_dir nls/XI18N_OBJS
1636 action iso8859-9 XI18N_OBJS
1637 src_dir nls/Compose
1638 action iso8859-9 Compose.pre
1640 # iso8859-9e
1641 dst_dir lib/X11/nls/iso8859-9e
1642 src_dir nls/XLC_LOCALE
1643 action iso8859-9e XLC_LOCALE.pre
1644 src_dir nls/XI18N_OBJS
1645 action iso8859-9e XI18N_OBJS
1646 src_dir nls/Compose
1647 action iso8859-9e Compose.pre
1649 # ja
1650 dst_dir lib/X11/nls/ja
1651 src_dir nls/XLC_LOCALE
1652 action ja XLC_LOCALE.pre
1653 src_dir nls/XI18N_OBJS
1654 action ja XI18N_OBJS
1655 src_dir nls/Compose
1656 action ja Compose.pre
1658 # ja.JIS
1659 dst_dir lib/X11/nls/ja.JIS
1660 src_dir nls/XLC_LOCALE
1661 action ja.JIS XLC_LOCALE.pre
1662 src_dir nls/XI18N_OBJS
1663 action ja.JIS XI18N_OBJS
1664 src_dir nls/Compose
1665 action ja.JIS Compose.pre
1667 # ja_JP.UTF-8
1668 dst_dir lib/X11/nls/ja_JP.UTF-8
1669 src_dir nls/XLC_LOCALE
1670 action ja_JP.UTF-8 XLC_LOCALE.pre
1671 src_dir nls/XI18N_OBJS
1672 action ja_JP.UTF-8 XI18N_OBJS
1673 #src_dir nls/Compose
1674 #action ja_JP.UTF-8 Compose.pre
1676 # ja.S90
1677 dst_dir lib/X11/nls/ja.S90
1678 src_dir nls/XLC_LOCALE
1679 action ja.S90 XLC_LOCALE.pre
1680 src_dir nls/XI18N_OBJS
1681 action ja.S90 XI18N_OBJS
1682 #src_dir nls/Compose
1683 #action ja.S90 Compose.pre
1685 # ja.SJIS
1686 dst_dir lib/X11/nls/ja.SJIS
1687 src_dir nls/XLC_LOCALE
1688 action ja.SJIS XLC_LOCALE.pre
1689 src_dir nls/XI18N_OBJS
1690 action ja.SJIS XI18N_OBJS
1691 src_dir nls/Compose
1692 action ja.SJIS Compose.pre
1694 # ja.U90
1695 dst_dir lib/X11/nls/ja.U90
1696 src_dir nls/XLC_LOCALE
1697 action ja.U90 XLC_LOCALE.pre
1698 src_dir nls/XI18N_OBJS
1699 action ja.U90 XI18N_OBJS
1700 #src_dir nls/Compose
1701 #action ja.U90 Compose.pre
1703 # ko
1704 dst_dir lib/X11/nls/ko
1705 src_dir nls/XLC_LOCALE
1706 action ko XLC_LOCALE.pre
1707 src_dir nls/XI18N_OBJS
1708 action ko XI18N_OBJS
1709 src_dir nls/Compose
1710 action ko Compose.pre
1712 # koi8-c
1713 dst_dir lib/X11/nls/koi8-c
1714 src_dir nls/XLC_LOCALE
1715 action koi8-c XLC_LOCALE.pre
1716 src_dir nls/XI18N_OBJS
1717 action koi8-c XI18N_OBJS
1718 src_dir nls/Compose
1719 action koi8-c Compose.pre
1721 # koi8-r
1722 dst_dir lib/X11/nls/koi8-r
1723 src_dir nls/XLC_LOCALE
1724 action koi8-r XLC_LOCALE.pre
1725 src_dir nls/XI18N_OBJS
1726 action koi8-r XI18N_OBJS
1727 src_dir nls/Compose
1728 action koi8-r Compose.pre
1730 # koi8-u
1731 dst_dir lib/X11/nls/koi8-u
1732 src_dir nls/XLC_LOCALE
1733 action koi8-u XLC_LOCALE.pre
1734 src_dir nls/XI18N_OBJS
1735 action koi8-u XI18N_OBJS
1736 src_dir nls/Compose
1737 action koi8-u Compose.pre
1739 # ko_KR.UTF-8
1740 dst_dir lib/X11/nls/ko_KR.UTF-8
1741 src_dir nls/XLC_LOCALE
1742 action ko_KR.UTF-8 XLC_LOCALE.pre
1743 src_dir nls/XI18N_OBJS
1744 action ko_KR.UTF-8 XI18N_OBJS
1745 #src_dir nls/Compose
1746 #action ko_KR.UTF-8 Compose.pre
1748 # microsoft-cp1251
1749 dst_dir lib/X11/nls/microsoft-cp1251
1750 src_dir nls/XLC_LOCALE
1751 action microsoft-cp1251 XLC_LOCALE.pre
1752 src_dir nls/XI18N_OBJS
1753 action microsoft-cp1251 XI18N_OBJS
1754 #src_dir nls/Compose
1755 #action microsoft-cp1251 Compose.pre
1757 # microsoft-cp1255
1758 dst_dir lib/X11/nls/microsoft-cp1255
1759 src_dir nls/XLC_LOCALE
1760 action microsoft-cp1255 XLC_LOCALE.pre
1761 src_dir nls/XI18N_OBJS
1762 action microsoft-cp1255 XI18N_OBJS
1763 #src_dir nls/Compose
1764 #action microsoft-cp1255 Compose.pre
1766 # microsoft-cp1256
1767 dst_dir lib/X11/nls/microsoft-cp1256
1768 src_dir nls/XLC_LOCALE
1769 action microsoft-cp1256 XLC_LOCALE.pre
1770 src_dir nls/XI18N_OBJS
1771 action microsoft-cp1256 XI18N_OBJS
1772 #src_dir nls/Compose
1773 #action microsoft-cp1256 Compose.pre
1775 # mulelao-1
1776 dst_dir lib/X11/nls/mulelao-1
1777 src_dir nls/XLC_LOCALE
1778 action mulelao-1 XLC_LOCALE.pre
1779 src_dir nls/XI18N_OBJS
1780 action mulelao-1 XI18N_OBJS
1781 src_dir nls/Compose
1782 action mulelao-1 Compose.pre
1784 # nokhchi-1
1785 dst_dir lib/X11/nls/nokhchi-1
1786 src_dir nls/XLC_LOCALE
1787 action nokhchi-1 XLC_LOCALE.pre
1788 src_dir nls/XI18N_OBJS
1789 action nokhchi-1 XI18N_OBJS
1790 #src_dir nls/Compose
1791 #action nokhchi-1 Compose.pre
1793 # pt_BR.UTF-8
1794 dst_dir lib/X11/nls/pt_BR.UTF-8
1795 src_dir nls/XLC_LOCALE
1796 action pt_BR.UTF-8 XLC_LOCALE.pre
1797 src_dir nls/XI18N_OBJS
1798 action pt_BR.UTF-8 XI18N_OBJS
1799 src_dir nls/Compose
1800 action pt_BR.UTF-8 Compose.pre
1802 # tatar-cyr
1803 dst_dir lib/X11/nls/tatar-cyr
1804 src_dir nls/XLC_LOCALE
1805 action tatar-cyr XLC_LOCALE.pre
1806 src_dir nls/XI18N_OBJS
1807 action tatar-cyr XI18N_OBJS
1808 #src_dir nls/Compose
1809 #action tatar-cyr Compose.pre
1811 # th_TH
1812 dst_dir lib/X11/nls/th_TH
1813 src_dir nls/XLC_LOCALE
1814 action th_TH XLC_LOCALE.pre
1815 src_dir nls/XI18N_OBJS
1816 action th_TH XI18N_OBJS
1817 #src_dir nls/Compose
1818 #action th_TH Compose.pre
1820 # th_TH.UTF-8
1821 dst_dir lib/X11/nls/th_TH.UTF-8
1822 src_dir nls/XLC_LOCALE
1823 action th_TH.UTF-8 XLC_LOCALE.pre
1824 src_dir nls/XI18N_OBJS
1825 action th_TH.UTF-8 XI18N_OBJS
1826 #src_dir nls/Compose
1827 #action th_TH.UTF-8 Compose.pre
1829 # tscii-0
1830 dst_dir lib/X11/nls/tscii-0
1831 src_dir nls/XLC_LOCALE
1832 action tscii-0 XLC_LOCALE.pre
1833 src_dir nls/XI18N_OBJS
1834 action tscii-0 XI18N_OBJS
1835 #src_dir nls/Compose
1836 #action tscii-0 Compose.pre
1838 # vi_VN.tcvn
1839 dst_dir lib/X11/nls/vi_VN.tcvn
1840 src_dir nls/XLC_LOCALE
1841 action vi_VN.tcvn XLC_LOCALE.pre
1842 src_dir nls/XI18N_OBJS
1843 action vi_VN.tcvn XI18N_OBJS
1844 src_dir nls/Compose
1845 action vi_VN.tcvn Compose.pre
1847 # vi_VN.viscii
1848 dst_dir lib/X11/nls/vi_VN.viscii
1849 src_dir nls/XLC_LOCALE
1850 action vi_VN.viscii XLC_LOCALE.pre
1851 src_dir nls/XI18N_OBJS
1852 action vi_VN.viscii XI18N_OBJS
1853 src_dir nls/Compose
1854 action vi_VN.viscii Compose.pre
1856 # zh_CN
1857 dst_dir lib/X11/nls/zh_CN
1858 src_dir nls/XLC_LOCALE
1859 action zh_CN XLC_LOCALE.pre
1860 src_dir nls/XI18N_OBJS
1861 action zh_CN XI18N_OBJS
1862 #src_dir nls/Compose
1863 #action zh_CN Compose.pre
1865 # zh_CN.gb18030
1866 dst_dir lib/X11/nls/zh_CN.gb18030
1867 src_dir nls/XLC_LOCALE
1868 action zh_CN.gb18030 XLC_LOCALE.pre
1869 src_dir nls/XI18N_OBJS
1870 action zh_CN.gb18030 XI18N_OBJS
1871 src_dir nls/Compose
1872 action zh_CN.gb18030 Compose.pre
1874 # zh_CN.gbk
1875 dst_dir lib/X11/nls/zh_CN.gbk
1876 src_dir nls/XLC_LOCALE
1877 action zh_CN.gbk XLC_LOCALE.pre
1878 src_dir nls/XI18N_OBJS
1879 action zh_CN.gbk XI18N_OBJS
1880 src_dir nls/Compose
1881 action zh_CN.gbk Compose.pre
1883 # zh_CN.UTF-8
1884 dst_dir lib/X11/nls/zh_CN.UTF-8
1885 src_dir nls/XLC_LOCALE
1886 action zh_CN.UTF-8 XLC_LOCALE.pre
1887 src_dir nls/XI18N_OBJS
1888 action zh_CN.UTF-8 XI18N_OBJS
1889 #src_dir nls/Compose
1890 #action zh_CN.UTF-8 Compose.pre
1892 # zh_HK.big5
1893 dst_dir lib/X11/nls/zh_HK.big5
1894 src_dir nls/XLC_LOCALE
1895 action zh_HK.big5 XLC_LOCALE.pre
1896 src_dir nls/XI18N_OBJS
1897 action zh_HK.big5 XI18N_OBJS
1898 src_dir nls/Compose
1899 action zh_HK.big5 Compose.pre
1901 # zh_HK.big5hkscs
1902 dst_dir lib/X11/nls/zh_HK.big5hkscs
1903 src_dir nls/XLC_LOCALE
1904 action zh_HK.big5hkscs XLC_LOCALE.pre
1905 src_dir nls/XI18N_OBJS
1906 action zh_HK.big5hkscs XI18N_OBJS
1907 src_dir nls/Compose
1908 action zh_HK.big5hkscs Compose.pre
1910 # zh_HK.UTF-8
1911 dst_dir lib/X11/nls/zh_HK.UTF-8
1912 src_dir nls/XLC_LOCALE
1913 action zh_HK.UTF-8 XLC_LOCALE.pre
1914 src_dir nls/XI18N_OBJS
1915 action zh_HK.UTF-8 XI18N_OBJS
1916 #src_dir nls/Compose
1917 #action zh_HK.UTF-8 Compose.pre
1919 # zh_TW
1920 dst_dir lib/X11/nls/zh_TW
1921 src_dir nls/XLC_LOCALE
1922 action zh_TW XLC_LOCALE.pre
1923 src_dir nls/XI18N_OBJS
1924 action zh_TW XI18N_OBJS
1925 src_dir nls/Compose
1926 action zh_TW Compose.pre
1928 # zh_TW.big5
1929 dst_dir lib/X11/nls/zh_TW.big5
1930 src_dir nls/XLC_LOCALE
1931 action zh_TW.big5 XLC_LOCALE.pre
1932 src_dir nls/XI18N_OBJS
1933 action zh_TW.big5 XI18N_OBJS
1934 src_dir nls/Compose
1935 action zh_TW.big5 Compose.pre
1937 # zh_TW.UTF-8
1938 dst_dir lib/X11/nls/zh_TW.UTF-8
1939 src_dir nls/XLC_LOCALE
1940 action zh_TW.UTF-8 XLC_LOCALE.pre
1941 src_dir nls/XI18N_OBJS
1942 action zh_TW.UTF-8 XI18N_OBJS
1943 #src_dir nls/Compose
1944 #action zh_TW.UTF-8 Compose.pre
1947 # lcuniconv
1949 src_dir lib/X11/lcUniConv
1950 dst_dir lib/X11/src/xlibi18n/lcUniConv
1952 action README
1954 action 8bit_tab_to_h.c
1955 action armscii_8.h
1956 action ascii.h
1957 action big5_emacs.h
1958 action big5.h
1959 action cjk_tab_to_h.c
1960 action COPYRIGHT
1961 action cp1133.h
1962 action cp1251.h
1963 action cp1255.h
1964 action cp1256.h
1965 action gb2312.h
1966 action georgian_academy.h
1967 action georgian_ps.h
1968 action iso8859_10.h
1969 action iso8859_11.h
1970 action iso8859_13.h
1971 action iso8859_14.h
1972 action iso8859_15.h
1973 action iso8859_16.h
1974 action iso8859_1.h
1975 action iso8859_2.h
1976 action iso8859_3.h
1977 action iso8859_4.h
1978 action iso8859_5.h
1979 action iso8859_6.h
1980 action iso8859_7.h
1981 action iso8859_8.h
1982 action iso8859_9e.h
1983 action iso8859_9.h
1984 action jisx0201.h
1985 action jisx0208.h
1986 action jisx0212.h
1987 action koi8_c.h
1988 action koi8_r.h
1989 action koi8_u.h
1990 action ksc5601.h
1991 action mulelao.h
1992 action tatar_cyr.h
1993 action tcvn.h
1994 action tis620.h
1995 action ucs2be.h
1996 action utf8.h
1997 action viscii.h
2000 symlink_lib_ice() {
2001 src_dir lib/ICE
2002 dst_dir lib/ICE/src
2004 action accept.c
2005 action authutil.c
2006 action connect.c
2007 action error.c
2008 action getauth.c
2009 action iceauth.c
2010 action listen.c
2011 action listenwk.c
2012 action locking.c
2013 action misc.c
2014 action ping.c
2015 action process.c
2016 action protosetup.c
2017 action register.c
2018 action replywait.c
2019 action setauth.c
2020 action shutdown.c
2021 action watch.c
2023 action globals.h
2024 action ICElibint.h
2026 dst_dir lib/ICE/include/X11/ICE
2028 action ICEconn.h
2029 action ICE.h
2030 action ICElib.h
2031 action ICEmsg.h
2032 action ICEproto.h
2033 action ICEutil.h
2036 symlink_lib_sm() {
2037 src_dir lib/SM
2038 dst_dir lib/SM/src
2040 action sm_auth.c
2041 action sm_client.c
2042 action sm_error.c
2043 action sm_genid.c
2044 action sm_manager.c
2045 action sm_misc.c
2046 action sm_process.c
2048 action globals.h
2049 action SMlibint.h
2051 dst_dir lib/SM/include/X11/SM
2053 action SM.h
2054 action SMlib.h
2055 action SMproto.h
2058 symlink_lib_xt() {
2059 src_dir lib/Xt
2061 # Public headers
2063 dst_dir lib/Xt/include/X11
2065 action Composite.h
2066 action CompositeP.h
2067 action Constraint.h
2068 action ConstrainP.h
2069 action Core.h
2070 action CoreP.h
2071 action Intrinsic.h
2072 action IntrinsicP.h
2073 action Object.h
2074 action ObjectP.h
2075 action RectObj.h
2076 action RectObjP.h
2077 action ShellP.h
2078 action Vendor.h
2079 action VendorP.h
2081 # Private headers - they are used by XTrap
2083 dst_dir lib/Xt/include/X11
2085 action CallbackI.h
2086 action ConvertI.h
2087 action CreateI.h
2088 action EventI.h
2089 action HookObjI.h
2090 action InitialI.h
2091 action IntrinsicI.h
2092 action PassivGraI.h
2093 action ResConfigP.h
2094 action ResourceI.h
2095 action SelectionI.h
2096 action ShellI.h
2097 action ThreadsI.h
2098 action TranslateI.h
2099 action VarargsI.h
2100 action Xtos.h
2102 # Source
2104 dst_dir lib/Xt/src
2106 action ActionHook.c
2107 action Alloc.c
2108 action ArgList.c
2109 action Callback.c
2110 action ClickTime.c
2111 action Composite.c
2112 action Constraint.c
2113 action Convert.c
2114 action Converters.c
2115 action Core.c
2116 action Create.c
2117 action Destroy.c
2118 action Display.c
2119 action Error.c
2120 action Event.c
2121 action EventUtil.c
2122 action Functions.c
2123 action GCManager.c
2124 action Geometry.c
2125 action GetActKey.c
2126 action GetResList.c
2127 action GetValues.c
2128 action HookObj.c
2129 action Hooks.c
2130 action Initialize.c
2131 action Intrinsic.c
2132 action Keyboard.c
2133 action Manage.c
2134 action NextEvent.c
2135 action Object.c
2136 action PassivGrab.c
2137 action Pointer.c
2138 action Popup.c
2139 action PopupCB.c
2140 action RectObj.c
2141 action ResConfig.c
2142 action Resources.c
2143 action Selection.c
2144 action SetSens.c
2145 action SetValues.c
2146 action SetWMCW.c
2147 action sharedlib.c
2148 action Shell.c
2149 action Threads.c
2150 action TMaction.c
2151 action TMgrab.c
2152 action TMkey.c
2153 action TMparse.c
2154 action TMprint.c
2155 action TMstate.c
2156 action Varargs.c
2157 action VarCreate.c
2158 action VarGet.c
2159 action Vendor.c
2161 # utils
2163 src_dir lib/Xt/util
2164 dst_dir lib/Xt/util
2166 action Shell.ht
2167 action StrDefs.ct
2168 action StrDefs.ht
2169 action string.list
2171 src_dir config/util
2173 action makestrs.c
2175 # man pages
2177 src_dir doc/man/Xt
2178 dst_dir lib/Xt/man
2180 action XtAddCbk.man XtAddCallback.man
2181 action XtAddEHand.man XtAddEventHandler.man
2182 action XtAddETReg.man XtAddExposureToRegion.man
2183 action XtAddGrab.man XtAddGrab.man
2184 action XtAppAAct.man XtAppAddActions.man
2185 action XtAddAct.man XtAddActions.man
2186 action XtAppAC.man XtAppAddConverter.man
2187 action XtAppAI.man XtAppAddInput.man
2188 action XtAppATO.man XtAppAddTimeOut.man
2189 action XtAppAWP.man XtAppAddWorkProc.man
2190 action XtAppCSh.man XtAppCreateShell.man
2191 action XtAppE.man XtAppError.man
2192 action XtAppEM.man XtAppErrorMsg.man
2193 action XtAppGEDB.man XtAppGetErrorDatabase.man
2194 action XtAppGSTO.man XtAppGetSelectionTimeout.man
2195 action XtAppNEv.man XtAppNextEvent.man
2196 action XtNextEv.man XtNextEvent.man
2197 action XtBEMask.man XtBuildEventMask.man
2198 action XtCallAFoc.man XtCallAcceptFocus.man
2199 action XtCallCbks.man XtCallCallbacks.man
2200 action XtClass.man XtClass.man
2201 action XtConfWid.man XtConfigureWidget.man
2202 action XtConvert.man XtConvert.man
2203 action XtConvSt.man XtConvertAndStore.man
2204 action XtCreACon.man XtCreateApplicationContext.man
2205 action XtCrePSh.man XtCreatePopupShell.man
2206 action XtCreWid.man XtCreateWidget.man
2207 action XtCreWin.man XtCreateWindow.man
2208 action XtDisplay.man XtDisplay.man
2209 action XtDisplayI.man XtDisplayInitialize.man
2210 action XtGetGC.man XtGetGC.man
2211 action XtGetRList.man XtGetResourceList.man
2212 action XtGetSVal.man XtGetSelectionValue.man
2213 action XtGetSres.man XtGetSubresources.man
2214 action XtGetAres.man XtGetApplicationResources.man
2215 action XtMakGReq.man XtMakeGeometryRequest.man
2216 action XtMalloc.man XtMalloc.man
2217 action XtManChild.man XtManageChildren.man
2218 action XtMapWid.man XtMapWidget.man
2219 action XtNameTWid.man XtNameToWidget.man
2220 action XtOffset.man XtOffset.man
2221 action XtOwnSel.man XtOwnSelection.man
2222 action XtParATab.man XtParseAcceleratorTable.man
2223 action XtParTTab.man XtParseTranslationTable.man
2224 action XtPopdown.man XtPopdown.man
2225 action XtPopup.man XtPopup.man
2226 action XtQueryGeo.man XtQueryGeometry.man
2227 action XtRealize.man XtRealizeWidget.man
2228 action XtSetArg.man XtSetArg.man
2229 action XtSetKFoc.man XtSetKeyboardFocus.man
2230 action XtSetKTr.man XtSetKeyTranslator.man
2231 action XtSetSens.man XtSetSensitive.man
2232 action XtSetVal.man XtSetValues.man
2233 action XtStrCW.man XtStringConversionWarning.man
2234 action XtDStrCW.man XtDisplayStringConversionWarning.man
2235 action XtTransC.man XtTranslateCoords.man
2236 action XtKeysym.man XtGetKeysymTable.man
2237 action XtAppSTC.man XtAppSetTypeConverter.man
2238 action XtActHook.man XtAppAddActionHook.man
2239 action XtGetActL.man XtGetActionList.man
2240 action XtCallActP.man XtCallActionProc.man
2241 action XtRegGA.man XtRegisterGrabAction.man
2242 action XtClickT.man XtSetMultiClickTime.man
2243 action XtGetActK.man XtGetActionKeysym.man
2244 action XtExtEvDis.man XtInsertEventTypeHandler.man
2245 action XtGetKFoc.man XtGetKeyboardFocusWidget.man
2246 action XtLastProc.man XtLastEventProcessed.man
2247 action XtAppASig.man XtAppAddSignal.man
2248 action XtAddIn.man XtAddInput.man
2249 action XtBlockH.man XtAppAddBlockHook.man
2250 action XtGetClExt.man XtGetClassExtension.man
2251 action XtVaCrArgL.man XtVaCreateArgsList.man
2252 action XtParent.man XtParent.man
2253 action XtName.man XtName.man
2254 action XtCreASh.man XtCreateApplicationShell.man
2255 action XtSetLangP.man XtSetLanguageProc.man
2256 action XtAppInit.man XtAppInitialize.man
2257 action XtInit.man XtInitialize.man
2258 action XtAppSetFR.man XtAppSetFallbackResources.man
2259 action XtInitWC.man XtInitializeWidgetClass.man
2260 action XtDisACon.man XtDisplayToApplicationContext.man
2261 action XtSession.man XtSessionGetToken.man
2262 action XtErrM.man XtErrorMsg.man
2263 action XtErr.man XtError.man
2264 action XtGEDB.man XtGetErrorDatabase.man
2265 action XtAllocGC.man XtAllocateGC.man
2266 action XtAppRCR.man XtAppReleaseCacheRefs.man
2267 action XtSetWMC.man XtSetWMColormapWindows.man
2268 action XtFindF.man XtFindFile.man
2269 action XtResPath.man XtResolvePathname.man
2270 action XtGetSValI.man XtGetSelectionValueIncremental.man
2271 action XtGetSTO.man XtGetSelectionTimeout.man
2272 action XtGetSR.man XtGetSelectionRequest.man
2273 action XtSetSP.man XtSetSelectionParameters.man
2274 action XtGetSP.man XtGetSelectionParameters.man
2275 action XtCreateSR.man XtCreateSelectionRequest.man
2276 action XtResPA.man XtReservePropertyAtom.man
2277 action XtGrabKey.man XtGrabKey.man
2278 action XtGetANC.man XtGetApplicationNameAndClass.man
2279 action XtRegDraw.man XtRegisterDrawable.man
2280 action XtHookOD.man XtHooksOfDisplay.man
2281 action XtGetDisp.man XtGetDisplays.man
2282 action XtThreadI.man XtToolkitThreadInitialize.man
2283 action XtAppSEF.man XtAppSetExitFlag.man
2284 action XtAppLock.man XtAppLock.man
2285 action XtProcLock.man XtProcessLock.man
2286 action XtOpenApp.man XtOpenApplication.man
2289 symlink_lib_xmu() {
2290 src_dir lib/Xmu
2291 dst_dir lib/Xmu/include/X11/Xmu
2293 action Atoms.h
2294 action CharSet.h
2295 action CloseHook.h
2296 action Converters.h
2297 action CurUtil.h
2298 action CvtCache.h
2299 action DisplayQue.h
2300 action Drawing.h
2301 action Editres.h
2302 action EditresP.h
2303 action Error.h
2304 action ExtAgent.h
2305 action Initer.h
2306 action Lookup.h
2307 action Misc.h
2308 action StdCmap.h
2309 action StdSel.h
2310 action SysUtil.h
2311 action WhitePoint.h
2312 action WidgetNode.h
2313 action WinUtil.h
2314 action Xct.h
2315 action Xmu.h
2317 dst_dir lib/Xmu
2318 action README
2320 dst_dir lib/Xmu/src
2322 action AllCmap.c
2323 action Atoms.c
2324 action ClientWin.c
2325 action Clip.c
2326 action CloseHook.c
2327 action CmapAlloc.c
2328 action CrCmap.c
2329 action CrPixFBit.c
2330 action CursorName.c
2331 action CvtCache.c
2332 action CvtStdSel.c
2333 action DefErrMsg.c
2334 action DelCmap.c
2335 action DisplayQue.c
2336 action Distinct.c
2337 action DrawLogo.c
2338 action DrRndRect.c
2339 action EditresCom.c
2340 action ExtAgent.c
2341 action FToCback.c
2342 action GetHost.c
2343 action GrayPixmap.c
2344 action Initer.c
2345 action LocBitmap.c
2346 action Lookup.c
2347 action LookupCmap.c
2348 action Lower.c
2349 action RdBitF.c
2350 action ScrOfWin.c
2351 action ShapeWidg.c
2352 action sharedlib.c
2353 action StdCmap.c
2354 action StrToBmap.c
2355 action StrToBS.c
2356 action StrToCurs.c
2357 action StrToGrav.c
2358 action StrToJust.c
2359 action StrToLong.c
2360 action StrToOrnt.c
2361 action StrToShap.c
2362 action StrToWidg.c
2363 action UpdMapHint.c
2364 action VisCmap.c
2365 action WidgetNode.c
2366 action Xct.c
2369 symlink_lib_xp() {
2370 src_dir lib/Xp
2371 dst_dir lib/Xp/src
2373 action XpAttr.c
2374 action XpContext.c
2375 action XpDoc.c
2376 action XpExtUtil.c
2377 action XpExtVer.c
2378 action XpGetData.c
2379 action XpImageRes.c
2380 action XpInput.c
2381 action XpJob.c
2382 action XpLocale.c
2383 action XpNotifyPdm.c
2384 action XpPage.c
2385 action XpPageDim.c
2386 action XpPrinter.c
2387 action XpPutData.c
2388 action XpScreens.c
2390 action XpExtUtil.h
2392 # man pages
2393 src_dir doc/man/Xp
2394 dst_dir lib/Xp/man
2396 action libXp.man libXp.3
2397 action XpCancelDoc.man XpCancelDoc.3
2398 action XpCancelJob.man XpCancelJob.3
2399 action XpCancelPage.man XpCancelPage.3
2400 action XpCreateContext.man XpCreateContext.3
2401 action XpDestroyContext.man XpDestroyContext.3
2402 action XpEndDoc.man XpEndDoc.3
2403 action XpEndJob.man XpEndJob.3
2404 action XpEndPage.man XpEndPage.3
2405 action XpFreePrinterList.man XpFreePrinterList.3
2406 action XpGetAttributes.man XpGetAttributes.3
2407 action XpGetContext.man XpGetContext.3
2408 action XpGetDocumentData.man XpGetDocumentData.3
2409 action XpGetImageResolution.man XpGetImageResolution.3
2410 action XpGetLocaleHinter.man XpGetLocaleHinter.3
2411 action XpGetOneAttribute.man XpGetOneAttribute.3
2412 action XpGetPageDimensions.man XpGetPageDimensions.3
2413 action XpGetPdmStartParams.man XpGetPdmStartParams.3
2414 action XpGetPrinterList.man XpGetPrinterList.3
2415 action XpGetScreenOfContext.man XpGetScreenOfContext.3
2416 action XpInputSelected.man XpInputSelected.3
2417 action XpPutDocumentData.man XpPutDocumentData.3
2418 action XpQueryExtension.man XpQueryExtension.3
2419 action XpQueryScreens.man XpQueryScreens.3
2420 action XpQueryVersion.man XpQueryVersion.3
2421 action XpRehashPrinterList.man XpRehashPrinterList.3
2422 action XpSelectInput.man XpSelectInput.3
2423 action XpSetAttributes.man XpSetAttributes.3
2424 action XpSetContext.man XpSetContext.3
2425 action XpSetImageResolution.man XpSetImageResolution.3
2426 action XpSetLocaleHinter.man XpSetLocaleHinter.3
2427 action XpStartDoc.man XpStartDoc.3
2428 action XpStartJob.man XpStartJob.3
2429 action XpStartPage.man XpStartPage.3
2432 symlink_lib_xpm() {
2433 src_dir extras/Xpm
2434 dst_dir lib/Xpm
2436 action CHANGES
2437 action COPYRIGHT
2438 action FAQ.html
2439 action FILES
2440 action README.AMIGA
2441 action README.html
2442 action README.MSW
2444 src_dir extras/Xpm/doc
2446 action xpm.PS.gz
2448 src_dir extras/Xpm/lib
2451 # Library
2454 # Public header
2455 dst_dir lib/Xpm/include/X11
2457 action xpm.h
2459 # Source
2461 dst_dir lib/Xpm/src
2463 # headers
2464 action amigax.h
2465 action rgbtab.h
2466 action simx.h
2467 action XpmI.h
2469 action amigax.c
2470 action Attrib.c
2471 action CrBufFrI.c
2472 action CrBufFrP.c
2473 action CrDatFrI.c
2474 action CrDatFrP.c
2475 action create.c
2476 action CrIFrBuf.c
2477 action CrIFrDat.c
2478 action CrIFrP.c
2479 action CrPFrBuf.c
2480 action CrPFrDat.c
2481 action CrPFrI.c
2482 action data.c
2483 action hashtab.c
2484 action Image.c
2485 action Info.c
2486 action misc.c
2487 action parse.c
2488 action RdFToBuf.c
2489 action RdFToDat.c
2490 action RdFToI.c
2491 action RdFToP.c
2492 action rgb.c
2493 action scan.c
2494 action simx.c
2495 action WrFFrBuf.c
2496 action WrFFrDat.c
2497 action WrFFrI.c
2498 action WrFFrP.c
2501 # Apps
2503 src_dir extras/Xpm/cxpm
2504 dst_dir lib/Xpm/cxpm
2506 action cxpm.c
2507 action cxpm.man cxpm.1
2509 src_dir extras/Xpm/sxpm
2510 dst_dir lib/Xpm/sxpm
2512 action sxpm.c
2513 action sxpm.man sxpm.1
2514 action plaid_ext.xpm
2515 action plaid_mask.xpm
2516 action plaid.xpm
2519 symlink_lib_xrender() {
2520 src_dir lib/Xrender
2521 dst_dir lib/Xrender/src
2523 action AddTrap.c
2524 action Color.c
2525 action Composite.c
2526 action Cursor.c
2527 action FillRect.c
2528 action FillRects.c
2529 action Filter.c
2530 action Glyph.c
2531 action Picture.c
2532 action Poly.c
2533 action Trap.c
2534 action Tri.c
2535 action Xrender.c
2537 action Xrenderint.h
2539 dst_dir lib/Xrender/include/X11/extensions
2541 action Xrender.h
2544 symlink_lib_xi() {
2545 src_dir lib/Xi
2546 dst_dir lib/Xi/src
2548 action XIint.h
2549 action XAllowDv.c
2550 action XChgDCtl.c
2551 action XChgFCtl.c
2552 action XChgKMap.c
2553 action XChgKbd.c
2554 action XChgPnt.c
2555 action XChgProp.c
2556 action XCloseDev.c
2557 action XDevBell.c
2558 action XExtInt.c
2559 action XExtToWire.c
2560 action XFreeLst.c
2561 action XGMotion.c
2562 action XGetBMap.c
2563 action XGetDCtl.c
2564 action XGetFCtl.c
2565 action XGetKMap.c
2566 action XGetMMap.c
2567 action XGetProp.c
2568 action XGetVers.c
2569 action XGrDvBut.c
2570 action XGrDvKey.c
2571 action XGrabDev.c
2572 action XGtFocus.c
2573 action XGtSelect.c
2574 action XListDev.c
2575 action XOpenDev.c
2576 action XQueryDv.c
2577 action XSelect.c
2578 action XSetBMap.c
2579 action XSetDVal.c
2580 action XSetMMap.c
2581 action XSetMode.c
2582 action XSndExEv.c
2583 action XStFocus.c
2584 action XUngrDev.c
2585 action XUngrDvB.c
2586 action XUngrDvK.c
2588 src_dir doc/man/Xi
2589 dst_dir lib/Xi/man
2591 action XAllDvEv.man XAllowDeviceEvents.man
2592 action XChDCtl.man XGetDeviceControl.man
2593 action XChFCtl.man XGetFeedbackControl.man
2594 action XChKMap.man XGetDeviceKeyMapping.man
2595 action XChMMap.man XGetDeviceModifierMapping.man
2596 action XChProp.man XChangeDeviceDontPropagateList.man
2597 action XChgKbd.man XChangeKeyboardDevice.man
2598 action XChgPtr.man XChangePointerDevice.man
2599 action XDevBell.man XDeviceBell.man
2600 action XGetDvMo.man XGetDeviceMotionEvents.man
2601 action XGetExtV.man XGetExtensionVersion.man
2602 action XGrDvBut.man XGrabDeviceButton.man
2603 action XGrDvKey.man XGrabDeviceKey.man
2604 action XGrabDev.man XGrabDevice.man
2605 action XListDev.man XListInputDevices.man
2606 action XOpenDev.man XOpenDevice.man
2607 action XQueryDv.man XQueryDeviceState.man
2608 action XSExEvnt.man XSendExtensionEvent.man
2609 action XSeBMap.man XSetDeviceButtonMapping.man
2610 action XSeDvFoc.man XSetDeviceFocus.man
2611 action XSelExtEv.man XSelectExtensionEvent.man
2612 action XSetDVal.man XSetDeviceValuators.man
2613 action XSetMode.man XSetDeviceMode.man
2617 symlink_lib_xfont() {
2618 src_dir lib/font/FreeType
2619 dst_dir lib/Xfont/src/FreeType
2621 action ft.h
2622 action ftenc.c
2623 action ftfuncs.c
2624 action ftfuncs.h
2625 action ftsystem.c
2626 action fttools.c
2627 action xttcap.c
2628 action xttcap.h
2630 src_dir lib/font/bitmap
2631 dst_dir lib/Xfont/src/bitmap
2633 action bdfread.c
2634 action bdfutils.c
2635 action bitmap.c
2636 action bitmapfunc.c
2637 action bitmaputil.c
2638 action bitscale.c
2639 action fontink.c
2640 action pcfread.c
2641 action pcfwrite.c
2642 action snfread.c
2643 action snfstr.h
2645 src_dir lib/font/bitmap
2646 dst_dir lib/Xfont/include/X11/fonts
2648 action bdfint.h
2649 action pcf.h
2651 src_dir lib/font/builtins
2652 dst_dir lib/Xfont/src/builtins
2654 action buildfont
2655 action builtin.h
2656 action dir.c
2657 action file.c
2658 action fonts.c
2659 action fpe.c
2660 action render.c
2662 src_dir lib/font/fc
2663 dst_dir lib/Xfont/src/fc
2665 action fsconvert.c
2666 action fserve.c
2667 action fserve.h
2668 action fservestr.h
2669 action fsio.c
2670 action fsio.h
2671 action fslibos.h
2673 src_dir lib/font/fontcache
2674 dst_dir lib/Xfont/src/fontcache
2676 action fcqueue.h
2677 action fontcache.c
2678 action fontcache.h
2680 src_dir lib/font/fontfile
2681 dst_dir lib/Xfont/src/fontfile
2683 action bitsource.c
2684 action bufio.c
2685 action decompress.c
2686 action defaults.c
2687 action dirfile.c
2688 action ffcheck.c
2689 action fileio.c
2690 action filewr.c
2691 action fontdir.c
2692 action fontencc.c
2693 action fontfile.c
2694 action fontscale.c
2695 action gunzip.c
2696 action printerfont.c
2697 action register.c
2698 action renderers.c
2700 src_dir lib/font/include
2701 dst_dir lib/Xfont/include/X11/fonts
2703 action bitmap.h
2704 action bufio.h
2705 action fntfil.h
2706 action fntfilio.h
2707 action fntfilst.h
2708 action fontencc.h
2709 action fontmisc.h
2710 action fontmod.h
2711 action fontshow.h
2712 action fontutil.h
2713 action fontxlfd.h
2715 src_dir lib/font/stubs
2716 dst_dir lib/Xfont/src/stubs
2718 action cauthgen.c
2719 action csignal.c
2720 action delfntcid.c
2721 action errorf.c
2722 action fatalerror.c
2723 action findoldfnt.c
2724 action getcres.c
2725 action getdefptsize.c
2726 action getnewfntcid.c
2727 action gettime.c
2728 action initfshdl.c
2729 action regfpefunc.c
2730 action rmfshdl.c
2731 action servclient.c
2732 action setfntauth.c
2733 action stfntcfnt.c
2734 action stubs.h
2735 action xpstubs.c
2737 src_dir lib/font/util
2738 dst_dir lib/Xfont/src/util
2740 action atom.c
2741 action fontaccel.c
2742 action fontnames.c
2743 action fontutil.c
2744 action fontxlfd.c
2745 action format.c
2746 action miscutil.c
2747 action patcache.c
2748 action private.c
2749 action utilbitmap.c
2751 src_dir lib/font/Speedo
2752 dst_dir lib/Xfont/src/Speedo
2754 action adobe-iso.h
2755 action bics-iso.h
2756 action bics-unicode.c
2757 action bics-unicode.h
2758 action do_char.c
2759 action do_trns.c
2760 action keys.h
2761 action out_bl2d.c
2762 action out_blk.c
2763 action out_outl.c
2764 action out_scrn.c
2765 action out_util.c
2766 action reset.c
2767 action set_spcs.c
2768 action set_trns.c
2769 action spdo_prv.h
2770 action speedo.h
2771 action spencode.c
2772 action sperr.c
2773 action spfile.c
2774 action spfont.c
2775 action spfuncs.c
2776 action spglyph.c
2777 action spinfo.c
2778 action spint.h
2779 action useropt.h
2781 src_dir lib/font/Type1
2782 dst_dir lib/Xfont/src/Type1
2784 action afm.c
2785 action AFM.h
2786 action arith.c
2787 action arith.h
2788 action blues.h
2789 action cidchar.c
2790 action cluts.h
2791 action curves.c
2792 action curves.h
2793 action digit.h
2794 action fontfcn.c
2795 action fontfcn.h
2796 action fonts.h
2797 action hdigit.h
2798 action hints.c
2799 action hints.h
2800 action lines.c
2801 action lines.h
2802 action objects.c
2803 action objects.h
2804 action paths.c
2805 action paths.h
2806 action pictures.h
2807 action range.h
2808 action regions.c
2809 action regions.h
2810 action scanfont.c
2811 action spaces.c
2812 action spaces.h
2813 action strokes.h
2814 action t1funcs.c
2815 action t1hdigit.h
2816 action t1imager.h
2817 action t1info.c
2818 action t1intf.h
2819 action t1io.c
2820 action t1malloc.c
2821 action t1snap.c
2822 action t1stdio.h
2823 action t1stub.c
2824 action t1unicode.c
2825 action t1unicode.h
2826 action token.c
2827 action token.h
2828 action tokst.h
2829 action trig.h
2830 action type1.c
2831 action util.c
2832 action util.h
2835 symlink_lib_fontenc() {
2836 src_dir lib/font/fontfile
2837 dst_dir lib/fontenc/src
2839 action fontenc.c
2840 action encparse.c
2841 action fontencI.h
2843 src_dir lib/font/include
2844 dst_dir lib/fontenc/include/X11/fonts
2846 action fontenc.h
2849 symlink_lib_xaw() {
2850 src_dir lib/Xaw
2852 dst_dir lib/Xaw/old-doc
2854 action CHANGES
2855 action Changelog
2857 dst_dir lib/Xaw/src
2859 action Actions.c
2860 action AllWidgets.c
2861 action AsciiSink.c
2862 action AsciiSrc.c
2863 action AsciiText.c
2864 action Box.c
2865 action Command.c
2866 action Converters.c
2867 action Dialog.c
2868 action DisplayList.c
2869 action Form.c
2870 action Grip.c
2871 action Label.c
2872 action List.c
2873 action MenuButton.c
2874 action MultiSink.c
2875 action MultiSrc.c
2876 action OS.c
2877 action Paned.c
2878 action Panner.c
2879 action Pixmap.c
2880 action Porthole.c
2881 action PrintShell.c
2882 action Repeater.c
2883 action Scrollbar.c
2884 action sharedlib.c
2885 action Simple.c
2886 action SimpleMenu.c
2887 action SmeBSB.c
2888 action Sme.c
2889 action SmeLine.c
2890 action StripChart.c
2891 action Template.c
2892 action TextAction.c
2893 action Text.c
2894 action TextPop.c
2895 action TextSink.c
2896 action TextSrc.c
2897 action TextTr.c
2898 action Tip.c
2899 action Toggle.c
2900 action Tree.c
2901 action Vendor.c
2902 action Viewport.c
2903 action XawI18n.c
2904 action XawIm.c
2905 action XawInit.c
2907 action Private.h
2908 action XawI18n.h
2910 dst_dir lib/Xaw/include/X11/Xaw
2912 action AllWidgets.h
2913 action AsciiSink.h
2914 action AsciiSinkP.h
2915 action AsciiSrc.h
2916 action AsciiSrcP.h
2917 action AsciiText.h
2918 action AsciiTextP.h
2919 action Box.h
2920 action BoxP.h
2921 action Cardinals.h
2922 action Command.h
2923 action CommandP.h
2924 action Dialog.h
2925 action DialogP.h
2926 action Form.h
2927 action FormP.h
2928 action Grip.h
2929 action GripP.h
2930 action Label.h
2931 action LabelP.h
2932 action List.h
2933 action ListP.h
2934 action MenuButton.h
2935 action MenuButtoP.h
2936 action MultiSink.h
2937 action MultiSinkP.h
2938 action MultiSrc.h
2939 action MultiSrcP.h
2940 action Paned.h
2941 action PanedP.h
2942 action Panner.h
2943 action PannerP.h
2944 action Porthole.h
2945 action PortholeP.h
2946 action Print.h
2947 action PrintSP.h
2948 action Repeater.h
2949 action RepeaterP.h
2950 action Reports.h
2951 action Scrollbar.h
2952 action ScrollbarP.h
2953 action Simple.h
2954 action SimpleMenP.h
2955 action SimpleMenu.h
2956 action SimpleP.h
2957 action SmeBSB.h
2958 action SmeBSBP.h
2959 action Sme.h
2960 action SmeLine.h
2961 action SmeLineP.h
2962 action SmeP.h
2963 action StripCharP.h
2964 action StripChart.h
2965 action Template.h
2966 action TemplateP.h
2967 action Text.h
2968 action TextP.h
2969 action TextSink.h
2970 action TextSinkP.h
2971 action TextSrc.h
2972 action TextSrcP.h
2973 action Tip.h
2974 action TipP.h
2975 action Toggle.h
2976 action ToggleP.h
2977 action Tree.h
2978 action TreeP.h
2979 action VendorEP.h
2980 action Viewport.h
2981 action ViewportP.h
2982 action XawImP.h
2983 action XawInit.h
2985 dst_dir lib/Xaw/man
2987 action Xaw.man
2990 symlink_lib_fs() {
2991 src_dir lib/FS
2992 dst_dir lib/FS/src
2994 action FSCloseFt.c
2995 action FSClServ.c
2996 action FSConnServ.c
2997 action FSErrDis.c
2998 action FSErrHndlr.c
2999 action FSFlush.c
3000 action FSFontInfo.c
3001 action FSFtNames.c
3002 action FSGetCats.c
3003 action FSlibInt.c
3004 action FSListCats.c
3005 action FSListExt.c
3006 action FSMisc.c
3007 action FSNextEv.c
3008 action FSOpenFont.c
3009 action FSOpenServ.c
3010 action FSQGlyphs.c
3011 action FSQuExt.c
3012 action FSQXExt.c
3013 action FSQXInfo.c
3014 action FSServName.c
3015 action FSSetCats.c
3016 action FSSync.c
3017 action FSSynchro.c
3019 action FSlibint.h
3020 action FSlibos.h
3022 dst_dir lib/FS/include/X11/fonts
3024 action FSlib.h
3027 symlink_lib_xres() {
3028 src_dir lib/XRes
3029 dst_dir lib/XRes/src
3031 action XRes.c
3033 src_dir include/extensions
3034 dst_dir lib/XRes/include/X11/extensions
3036 action XRes.h
3038 src_dir lib/XRes
3039 dst_dir lib/XRes/man
3041 action XRes.man
3044 symlink_lib_randr()
3046 src_dir lib/Xrandr
3047 dst_dir lib/Xrandr/src
3049 action Xrandrint.h
3050 action Xrandr.c
3052 dst_dir lib/Xrandr/include/X11/extensions
3054 action Xrandr.h
3056 dst_dir lib/Xrandr/man
3058 action Xrandr.man Xrandr.3
3061 symlink_lib_windowswm() {
3062 src_dir lib/windows
3063 dst_dir lib/WindowsWM/src
3065 action windowswm.c
3067 dst_dir lib/WindowsWM/man
3069 action WindowsWM.man WindowsWM.3
3072 symlink_lib_xcursor()
3074 src_dir lib/Xcursor
3076 dst_dir lib/Xcursor/include/X11/Xcursor
3078 action Xcursor.h
3080 dst_dir lib/Xcursor/src
3082 action xcursorint.h
3083 action cursor.c
3084 action display.c
3085 action file.c
3086 action library.c
3087 action xlib.c
3089 dst_dir lib/Xcursor/man
3091 action Xcursor.man Xcursor.3
3094 symlink_lib_xtrap()
3096 src_dir lib/XTrap
3097 dst_dir lib/XTrap/src
3099 action XECallBcks.c
3100 action XEConTxt.c
3101 action XEDsptch.c
3102 action XEPrInfo.c
3103 action XERqsts.c
3104 action XEStrMap.c
3105 action XETrapInit.c
3106 action XEWrappers.c
3109 symlink_lib_xfontcache()
3111 src_dir lib/Xfontcache
3112 dst_dir lib/Xfontcache/src
3114 action FontCache.c
3116 dst_dir lib/Xfontcache/man
3118 action Xfontcache.man Xfontcache.3
3121 symlink_lib_xinerama()
3123 src_dir lib/Xinerama
3124 dst_dir lib/Xinerama/src
3126 action Xinerama.c
3129 symlink_lib_xprint_util()
3131 src_dir lib/XprintUtil
3132 dst_dir lib/XprintUtil/src
3134 action xprintutil.c
3135 action xprintutil_printtofile.c
3137 dst_dir lib/XprintUtil/include/X11/XprintUtil
3139 action xprintutil.h
3142 symlink_lib_xprint_app_util()
3144 src_dir lib/XprintAppUtil
3145 dst_dir lib/XprintAppUtil/src
3147 action xpapputil.c
3149 dst_dir lib/XprintAppUtil/include/X11/XprintAppUtil
3151 action xpapputil.h
3154 symlink_lib_xss()
3156 src_dir lib/Xss
3157 dst_dir lib/XScrnSaver/src
3159 action XScrnSaver.c
3161 dst_dir lib/XScrnSaver/man
3163 action Xss.man Xss.3
3166 symlink_lib_xxf86dga() {
3167 src_dir lib/Xxf86dga
3168 dst_dir lib/Xxf86dga/src
3170 action XF86DGA.c
3171 action XF86DGA2.c
3173 dst_dir lib/Xxf86dga/man
3175 action XDGA.man XDGA.3
3178 symlink_lib_xxf86misc() {
3179 src_dir lib/Xxf86misc
3180 dst_dir lib/Xxf86misc/src
3182 action XF86Misc.c
3184 dst_dir lib/Xxf86misc/man
3186 action XF86Misc.man XF86Misc.3
3189 symlink_lib_xxf86vm() {
3190 src_dir lib/Xxf86vm
3191 dst_dir lib/Xxf86vm/src
3193 action XF86VMode.c
3195 dst_dir lib/Xxf86vm/man
3197 action XF86VM.man XF86VM.3
3200 symlink_lib_xtst() {
3201 src_dir lib/Xtst
3202 dst_dir lib/Xtst/src
3204 action XRecord.c
3205 action XTest.c
3208 symlink_lib_xv() {
3209 src_dir lib/Xv
3210 dst_dir lib/Xv/src
3212 action Xv.c
3213 action Xvlibint.h
3215 src_dir include/extensions
3216 dst_dir lib/Xv/include/X11/extensions
3218 action Xvlib.h
3220 src_dir doc/man/Xv
3221 dst_dir lib/Xv/man
3223 action XvFreeAdaptorInfo.man XvFreeAdaptorInfo.3
3224 action XvFreeEncodingInfo.man XvFreeEncodingInfo.3
3225 action XvGetPortAttribute.man XvGetPortAttribute.3
3226 action XvGetStill.man XvGetStill.3
3227 action XvGetVideo.man XvGetVideo.3
3228 action XvGrabPort.man XvGrabPort.3
3229 action Xv.man Xv.3
3230 action XvPortNotify.man XvPortNotify.3
3231 action XvPutStill.man XvPutStill.3
3232 action XvPutVideo.man XvPutVideo.3
3233 action XvQueryAdaptors.man XvQueryAdaptors.3
3234 action XvQueryBestSize.man XvQueryBestSize.3
3235 action XvQueryEncodings.man XvQueryEncodings.3
3236 action XvQueryExtension.man XvQueryExtension.3
3237 action XvSelectPortNotify.man XvSelectPortNotify.3
3238 action XvSelectVideoNotify.man XvSelectVideoNotify.3
3239 action XvSetPortAttribute.man XvSetPortAttribute.3
3240 action XvStopVideo.man XvStopVideo.3
3241 action XvUngrabPort.man XvUngrabPort.3
3242 action XvVideoNotify.man XvVideoNotify.3
3245 symlink_lib_xvmc() {
3246 src_dir lib/XvMC
3247 dst_dir lib/XvMC/src
3249 action XvMC.c
3250 action XvMClibint.h
3252 src_dir lib/XvMC/wrapper
3254 action XvMCWrapper.c
3256 src_dir include/extensions
3257 dst_dir lib/XvMC/include/X11/extensions
3259 action XvMClib.h
3262 symlink_lib_xxf86rush() {
3263 src_dir lib/Xxf86rush
3264 dst_dir lib/Xxf86rush/src
3266 action XF86Rush.c
3269 symlink_lib_xkbfile() {
3270 src_dir lib/xkbfile
3271 dst_dir lib/xkbfile/src
3273 action cout.c
3274 action maprules.c
3275 action srvmisc.c
3276 action xkbatom.c
3277 action xkbbells.c
3278 action xkbconfig.c
3279 action xkbdraw.c
3280 action xkberrs.c
3281 action xkbmisc.c
3282 action xkbout.c
3283 action xkbtext.c
3284 action xkmout.c
3285 action xkmread.c
3286 action XKBfileInt.h
3287 action magic
3289 dst_dir lib/xkbfile/include/X11/extensions
3291 action XKBbells.h
3292 action XKBconfig.h
3293 action XKBfile.h
3294 action XKBrules.h
3295 action XKMformat.h
3296 action XKM.h
3299 symlink_lib_xkbui() {
3300 src_dir lib/xkbui
3301 dst_dir lib/xkbui/src
3303 action XKBui.c
3304 action XKBuiPriv.h
3306 dst_dir lib/xkbui/include/X11/extensions
3308 action XKBui.h
3311 symlink_lib_oldx() {
3312 src_dir lib/oldX
3313 dst_dir lib/oldX/src
3315 action XCrAssoc.c
3316 action XDelAssoc.c
3317 action XDestAssoc.c
3318 action XDraw.c
3319 action XLookAssoc.c
3320 action XMakeAssoc.c
3322 dst_dir lib/oldX/include/X11
3324 action X10.h
3328 symlink_lib_lbxutil() {
3329 src_dir lib/lbxutil/image
3330 dst_dir lib/lbxutil/src/image
3332 action dfaxg42d.c
3333 action dpackbits.c
3334 action efaxg42d.c
3335 action epackbits.c
3336 action lbxbwcodes.h
3337 action lbxfax.h
3338 action misc.c
3339 action mkg3states.c
3341 src_dir lib/lbxutil/delta
3342 dst_dir lib/lbxutil/src/delta
3344 action lbxdelta.c
3346 src_dir lib/lbxutil/lbx_zlib
3347 dst_dir lib/lbxutil/src/lbx_zlib
3349 action lbx_zlib.c
3350 action lbx_zlib.h
3351 action lbx_zlib_io.c
3352 action reqstats.c
3353 action reqstats.h
3356 symlink_lib_xft() {
3357 src_dir lib/Xft
3358 dst_dir lib/Xft
3360 action NEWS
3361 action README
3362 action AUTHORS
3363 action ChangeLog
3364 action COPYING
3365 action INSTALL
3367 action xft.pc.in
3368 action xft-config.in
3370 dst_dir lib/Xft/man
3372 action Xft.3.in
3373 action xft-config.1.in
3374 action xft-config.in
3376 dst_dir lib/Xft/include/X11/Xft
3378 action Xft.h
3379 action XftCompat.h
3381 dst_dir lib/Xft/src
3383 action xftcolor.c
3384 action xftcore.c
3385 action xftdbg.c
3386 action xftdpy.c
3387 action xftdraw.c
3388 action xftextent.c
3389 action xftfont.c
3390 action xftfreetype.c
3391 action xftglyphs.c
3392 action xftinit.c
3393 action xftint.h
3394 action xftlist.c
3395 action xftname.c
3396 action xftrender.c
3397 action xftstr.c
3398 action xftswap.c
3399 action xftxlfd.c
3402 symlink_lib() {
3403 symlink_lib_xft
3404 symlink_lib_applewm
3405 symlink_lib_windowswm
3406 symlink_lib_dmx
3407 symlink_lib_composite
3408 symlink_lib_damage
3409 symlink_lib_evie
3410 symlink_lib_fixes
3411 symlink_lib_xau
3412 symlink_lib_xtrans
3413 symlink_lib_xdmcp
3414 symlink_lib_x11
3415 symlink_lib_ice
3416 symlink_lib_sm
3417 symlink_lib_xt
3418 symlink_lib_xext
3419 symlink_lib_xmu
3420 symlink_lib_xp
3421 symlink_lib_xpm
3422 symlink_lib_fontenc
3423 symlink_lib_xfont
3424 symlink_lib_xrender
3425 symlink_lib_xi
3426 symlink_lib_xaw
3427 symlink_lib_fs
3428 symlink_lib_xres
3429 symlink_lib_randr
3430 symlink_lib_xcursor
3431 symlink_lib_xtrap
3432 symlink_lib_xfontcache
3433 symlink_lib_xinerama
3434 symlink_lib_xprint_util
3435 symlink_lib_xprint_app_util
3436 symlink_lib_xss
3437 symlink_lib_xxf86dga
3438 symlink_lib_xxf86misc
3439 symlink_lib_xxf86vm
3440 symlink_lib_xtst
3441 symlink_lib_xv
3442 symlink_lib_xxf86rush
3443 symlink_lib_xkbfile
3444 symlink_lib_xkbui
3445 symlink_lib_oldx
3446 symlink_lib_xvmc
3447 symlink_lib_lbxutil
3450 #########
3452 # The app module
3454 #########
3456 symlink_app_twm() {
3457 src_dir programs/twm
3458 dst_dir app/twm/src
3460 action add_window.c
3461 action add_window.h
3462 action cursor.c
3463 action deftwmrc.sed
3464 action events.c
3465 action events.h
3466 action gc.c
3467 action gc.h
3468 action gram.y
3469 action iconmgr.c
3470 action iconmgr.h
3471 action icons.c
3472 action icons.h
3473 action lex.l
3474 action list.c
3475 action list.h
3476 action menus.c
3477 action menus.h
3478 action parse.c
3479 action parse.h
3480 action resize.c
3481 action resize.h
3482 action screen.h
3483 action session.c
3484 action session.h
3485 action siconify.bm
3486 action system.twmrc
3487 action twm.c
3488 action twm.h
3489 action util.c
3490 action util.h
3491 action version.c
3492 action version.h
3494 dst_dir app/twm/man
3496 action twm.man
3498 src_dir programs/twm/sample-twmrc
3499 dst_dir app/twm/sample-twmrc
3501 action jim.twmrc
3502 action keith.twmrc
3503 action lemke.twmrc
3506 symlink_app_xdpyinfo() {
3507 src_dir programs/xdpyinfo
3508 dst_dir app/xdpyinfo
3510 action xdpyinfo.c
3511 action xdpyinfo.man
3514 symlink_app_xhost() {
3515 src_dir programs/xhost
3516 dst_dir app/xhost
3518 action xhost.c
3519 action xhost.man
3522 symlink_app_appres() {
3523 src_dir programs/appres
3524 dst_dir app/appres
3526 action appres.c
3528 action appres.man
3532 symlink_app_bdftopcf() {
3533 src_dir programs/bdftopcf
3534 dst_dir app/bdftopcf
3536 action bdftopcf.c
3538 action bdftopcf.man
3542 symlink_app_beforelight() {
3543 src_dir programs/beforelight
3544 dst_dir app/beforelight
3546 action B4light.ad
3548 action b4light.c
3550 action b4light.man
3554 symlink_app_bitmap() {
3555 src_dir programs/bitmap
3556 dst_dir app/bitmap
3558 action Bitmap.ad
3559 action Bitmap-co.ad Bitmap-color.ad
3560 action Bitmap-nocase.ad
3562 action atobm.c
3563 action BitEdit.c
3564 action Bitmap.c
3565 action bmtoa.c
3566 action CutPaste.c
3567 action Dialog.c
3568 action Graphics.c
3569 action Handlers.c
3570 action ReqMach.c
3572 action Bitmap.h
3573 action BitmapP.h
3574 action Dialog.h
3575 action Requests.h
3577 action bitmap.man
3579 action Dashes
3580 action Down
3581 action Excl
3582 action FlipHoriz
3583 action FlipVert
3584 action Fold
3585 action Left
3586 action Right
3587 action RotateLeft
3588 action RotateRight
3589 action Stipple
3590 action Term
3591 action Up
3593 action bitmap.icon
3596 symlink_app_editres() {
3597 src_dir programs/editres
3598 dst_dir app/editres
3600 action Edit-col.ad
3601 action Editres.ad
3603 action actions.c
3604 action comm.c
3605 action editres.c
3606 action geometry.c
3607 action handler.c
3608 action setvalues.c
3609 action svpopup.c
3610 action utils.c
3611 action widgets.c
3612 action wtree.c
3614 action README
3616 action editresP.h
3618 action editres.man
3622 symlink_app_fonttosfnt() {
3623 src_dir programs/fonttosfnt
3624 dst_dir app/fonttosfnt
3626 action env.c
3627 action fonttosfnt.c
3628 action read.c
3629 action struct.c
3630 action util.c
3631 action write.c
3633 action fonttosfnt.h
3635 action fonttosfnt.man
3639 symlink_app_fslsfonts() {
3640 src_dir programs/fslsfonts
3641 dst_dir app/fslsfonts
3643 action fslsfonts.c
3645 action fslsfonts.man
3649 symlink_app_fstobdf() {
3650 src_dir programs/fstobdf
3651 dst_dir app/fstobdf
3653 action chars.c
3654 action fstobdf.c
3655 action header.c
3656 action props.c
3658 action fstobdf.h
3660 action fstobdf.man
3664 symlink_app_iceauth() {
3665 src_dir programs/iceauth
3666 dst_dir app/iceauth
3668 action iceauth.c
3669 action process.c
3671 action iceauth.h
3673 action iceauth.man
3677 symlink_app_ico() {
3678 src_dir programs/ico
3679 dst_dir app/ico
3681 action ico.c
3683 action allobjs.h
3684 action objcube.h
3685 action objico.h
3686 action objocta.h
3687 action objplane.h
3688 action objpyr.h
3689 action polyinfo.h
3691 action ico.man
3695 symlink_app_listres() {
3696 src_dir programs/listres
3697 dst_dir app/listres
3699 action listres.c
3701 action listres.man
3705 symlink_app_luit() {
3706 src_dir programs/luit
3707 dst_dir app/luit
3709 action charset.c
3710 action iso2022.c
3711 action locale.c
3712 action luit.c
3713 action other.c
3714 action parser.c
3715 action sys.c
3717 action charset.h
3718 action iso2022.h
3719 action luit.h
3720 action other.h
3721 action parser.h
3722 action sys.h
3724 action luit.man
3728 symlink_app_makepsres() {
3729 src_dir programs/makepsres
3730 dst_dir app/makepsres
3732 action makepsres.c
3734 action makepsres.man
3738 symlink_app_mkfontdir() {
3739 src_dir programs/mkfontdir
3740 dst_dir app/mkfontdir
3742 action mkfontdir.cpp
3744 action mkfontdir.man
3748 symlink_app_mkfontscale() {
3749 src_dir programs/mkfontscale
3750 dst_dir app/mkfontscale
3752 action hash.c
3753 action ident.c
3754 action list.c
3755 action mkfontscale.c
3757 action data.h
3758 action hash.h
3759 action ident.h
3760 action list.h
3762 action mkfontscale.man
3766 symlink_app_oclock() {
3767 src_dir programs/oclock
3768 dst_dir app/oclock
3770 action Clock-col.ad
3772 action Clock.c
3773 action oclock.c
3774 action transform.c
3776 action Clock.h
3777 action ClockP.h
3778 action transform.h
3780 action oclock.man
3782 action oclock.bit
3783 action oclmask.bit
3786 symlink_app_pclcomp() {
3787 src_dir programs/pclcomp
3788 dst_dir app/pclcomp
3790 action pclcomp.c
3792 action README
3793 action printer.note
3795 action pclcomp.man
3799 symlink_app_proxymngr() {
3800 src_dir programs/proxymngr
3801 dst_dir app/proxymngr
3803 action config.c
3804 action main.c
3805 action pmdb.c
3807 action config.h
3808 action pmdb.h
3809 action pmint.h
3811 action proxymngr.man
3813 action pmconfig.cpp
3816 symlink_app_rgb() {
3817 src_dir programs/rgb
3818 dst_dir app/rgb
3820 action rgb.c
3821 action showrgb.c
3822 action showrgb.man
3823 action rgb.txt
3825 src_dir programs/rgb/others
3826 dst_dir app/rgb/others
3828 action old-rgb.txt
3829 action raveling.txt
3830 action README
3831 action thomas.txt
3835 symlink_app_setxkbmap() {
3836 src_dir programs/setxkbmap
3837 dst_dir app/setxkbmap
3839 action setxkbmap.c
3841 action setxkbmap.man
3844 symlink_app_showfont() {
3845 src_dir programs/showfont
3846 dst_dir app/showfont
3848 action showfont.c
3850 action showfont.man
3853 symlink_app_smproxy() {
3854 src_dir programs/smproxy
3855 dst_dir app/smproxy
3857 action save.c
3858 action smproxy.c
3860 action smproxy.h
3862 action smproxy.man
3865 symlink_app_viewres() {
3866 src_dir programs/viewres
3867 dst_dir app/viewres
3869 action Viewres.ad
3871 action viewres.c
3873 action viewres.man
3876 symlink_app_x11perf() {
3877 src_dir programs/x11perf
3878 dst_dir app/x11perf
3880 action bitmaps.c
3881 action do_arcs.c
3882 action do_blt.c
3883 action do_complex.c
3884 action do_dots.c
3885 action do_lines.c
3886 action do_movewin.c
3887 action do_rects.c
3888 action do_segs.c
3889 action do_simple.c
3890 action do_tests.c
3891 action do_text.c
3892 action do_traps.c
3893 action do_tris.c
3894 action do_valgc.c
3895 action do_windows.c
3896 action x11perf.c
3898 action bitmaps.h
3899 action x11perf.h
3901 action x11pcomp.man
3902 action x11perf.man
3903 action Xmark.man
3905 action fillblnk.sh
3906 action perfboth.sh
3907 action perfratio.sh
3908 action Xmark.sh
3910 action x11pcomp.cpp
3913 symlink_app_xauth() {
3914 src_dir programs/xauth
3915 dst_dir app/xauth
3917 action gethost.c
3918 action parsedpy.c
3919 action process.c
3920 action xauth.c
3922 action xauth.h
3924 action xauth.man
3927 symlink_app_xbiff() {
3928 src_dir programs/xbiff
3929 dst_dir app/xbiff
3931 action Mailbox.c
3932 action xbiff.c
3934 action Mailbox.h
3935 action MailboxP.h
3937 action xbiff.man
3939 src_dir programs/xbiff/bitmaps
3940 dst_dir app/xbiff/bitmaps
3942 action mail-down
3943 action mail-down-mask
3944 action mail-up
3945 action mail-up-mask
3948 symlink_app_xcalc() {
3949 src_dir programs/xcalc
3950 dst_dir app/xcalc
3952 action XCalc.ad
3953 action XCalc-col.ad
3955 action actions.c
3956 action math.c
3957 action xcalc.c
3959 action actions.h
3960 action xcalc.h
3962 action xcalc.man
3966 symlink_app_xclipboard() {
3967 src_dir programs/xclipboard
3968 dst_dir app/xclipboard
3970 action XClipboard.ad
3972 action xclipboard.c
3973 action xcutsel.c
3975 action xclipboard.man
3976 action xcutsel.man
3980 symlink_app_xclock() {
3981 src_dir programs/xclock
3982 dst_dir app/xclock
3984 action XClk-col.ad
3985 action XClock.ad
3987 action Clock.c
3988 action xclock.c
3990 action Clock.h
3991 action ClockP.h
3993 action xclock.man
3995 action clmask.bit
3996 action clock.bit
4000 symlink_app_xcmsdb() {
4001 src_dir programs/xcmsdb
4002 dst_dir app/xcmsdb
4004 action loadData.c
4005 action xcmsdb.c
4007 action SCCDFile.h
4009 action xcmsdb.man
4011 src_dir programs/xcmsdb/datafiles
4012 dst_dir app/xcmsdb/datafiles
4014 action sample1.dcc
4015 action sample2.dcc
4018 symlink_app_xconsole() {
4019 src_dir programs/xconsole
4020 dst_dir app/xconsole
4022 action XConsole.ad
4024 action xconsole.c
4026 action xconsole.man
4030 symlink_app_xcursorgen() {
4031 src_dir programs/xcursorgen
4032 dst_dir app/xcursorgen
4034 action xcursorgen.c
4035 action xcursorgen.man
4038 symlink_app_xdbedizzy() {
4039 src_dir programs/xdbedizzy
4040 dst_dir app/xdbedizzy
4042 action xdbedizzy.c
4044 action xdbedizzy.man
4046 action xdbedizzy.sgml
4049 symlink_app_xditview() {
4050 src_dir programs/xditview
4051 dst_dir app/xditview
4053 action Xdit-chrtr.ad Xditview-chrtr.ad
4054 action Xditview.ad
4056 action draw.c
4057 action Dvi.c
4058 action DviChar.c
4059 action font.c
4060 action lex.c
4061 action page.c
4062 action parse.c
4063 action xditview.c
4064 action XFontName.c
4066 action DviChar.h
4067 action Dvi.h
4068 action DviP.h
4069 action Menu.h
4070 action XFontName.h
4072 action xditview.man
4074 action xdit.bm
4075 action xdit_mask.bm
4077 action ldblarrow
4078 action rdblarrow
4081 symlink_app_xdriinfo() {
4082 src_dir programs/xdriinfo
4083 dst_dir app/xdriinfo
4085 action xdriinfo.c
4087 action xdriinfo.man
4091 symlink_app_xev() {
4092 src_dir programs/xev
4093 dst_dir app/xev
4095 action xev.c
4097 action xev.man
4101 symlink_app_xeyes() {
4102 src_dir programs/xeyes
4103 dst_dir app/xeyes
4105 action Eyes.c
4106 action transform.c
4107 action xeyes.c
4109 action Eyes.h
4110 action EyesP.h
4111 action transform.h
4113 action xeyes.man
4115 action eyes.bit
4116 action eyesmask.bit
4119 symlink_app_xf86dga() {
4120 src_dir programs/xf86dga
4121 dst_dir app/xf86dga
4123 action dga.c
4125 action dga.man
4129 symlink_app_xfd() {
4130 src_dir programs/xfd
4131 dst_dir app/xfd
4133 action Xfd.ad
4135 action grid.c
4136 action xfd.c
4138 action grid.h
4139 action gridP.h
4141 action xfd.man
4145 symlink_app_xfindproxy() {
4146 src_dir programs/xfindproxy
4147 dst_dir app/xfindproxy
4149 action xfindproxy.c
4151 action xfindproxy.h
4153 action xfindproxy.man
4157 symlink_app_xfontsel() {
4158 src_dir programs/xfontsel
4159 dst_dir app/xfontsel
4161 action XFontSel.ad
4163 action ULabel.c
4164 action xfontsel.c
4166 action ULabel.h
4167 action ULabelP.h
4169 action xfontsel.man
4173 symlink_app_xfsinfo() {
4174 src_dir programs/xfsinfo
4175 dst_dir app/xfsinfo
4177 action xfsinfo.c
4179 action xfsinfo.man
4183 symlink_app_xfwp() {
4184 src_dir programs/xfwp
4185 dst_dir app/xfwp
4187 action io.c
4188 action misc.c
4189 action pm.c
4190 action transport.c
4191 action xfwp.c
4193 action io.h
4194 action misc.h
4195 action pm.h
4196 action transport.h
4197 action xfwp.h
4199 action xfwp.man
4203 symlink_app_xgamma() {
4204 src_dir programs/xgamma
4205 dst_dir app/xgamma
4207 action xgamma.c
4209 action xgamma.man
4213 symlink_app_xgc() {
4214 src_dir programs/xgc
4215 dst_dir app/xgc
4217 action Xgc.ad
4219 action choice.c
4220 action dashlist.c
4221 action getfile.c
4222 action gram.y
4223 action interpret.c
4224 action lex.l
4225 action main.c
4226 action planemask.c
4227 action record.c
4228 action testfrac.c
4229 action tests.c
4230 action text.c
4232 action constants.h
4233 action main.h
4234 action xgc.h
4236 action xgc.man
4238 action Bugs
4239 action tile
4241 src_dir programs/xgc/Written
4242 dst_dir app/xgc/Written
4244 action FilledRects
4245 action Interface
4246 action Jim
4247 action Notes
4248 action Notes2
4249 action Outline
4250 action Widget
4253 symlink_app_xinit() {
4254 src_dir programs/xinit
4255 dst_dir app/xinit
4257 action xinit.c
4259 action README
4261 action startx.man
4262 action xinit.man
4264 action startx.cmd
4265 action xinitrc.cmd
4266 action xinit.def
4267 action startx.cpp
4268 action xinitrc.cpp
4271 symlink_app_xkbcomp() {
4272 src_dir programs/xkbcomp
4273 dst_dir app/xkbcomp
4275 action action.c
4276 action alias.c
4277 action compat.c
4278 action expr.c
4279 action geometry.c
4280 action indicators.c
4281 action keycodes.c
4282 action keymap.c
4283 action keytypes.c
4284 action listing.c
4285 action misc.c
4286 action parseutils.c
4287 action symbols.c
4288 action utils.c
4289 action vmod.c
4290 action xkbcomp.c
4291 action xkbparse.y
4292 action xkbpath.c
4293 action xkbscan.c
4295 action README
4296 action README.config
4297 action README.enhancing
4299 action action.h
4300 action alias.h
4301 action compat.h
4302 action expr.h
4303 action indicators.h
4304 action keycodes.h
4305 action misc.h
4306 action parseutils.h
4307 action tokens.h
4308 action utils.h
4309 action vmod.h
4310 action xkbcomp.h
4311 action xkbpath.h
4313 action xkbcomp.man
4317 symlink_app_xkbevd() {
4318 src_dir programs/xkbevd
4319 dst_dir app/xkbevd
4321 action cfgparse.y
4322 action cfgscan.c
4323 action evargs.c
4324 action printev.c
4325 action utils.c
4326 action xkbevd.c
4328 action tokens.h
4329 action utils.h
4330 action xkbevd.h
4332 action xkbevd.man
4334 action example.cf
4337 symlink_app_xkbprint() {
4338 src_dir programs/xkbprint
4339 dst_dir app/xkbprint
4341 action psgeom.c
4342 action utils.c
4343 action xkbprint.c
4345 action isokeys.h
4346 action utils.h
4347 action xkbprint.h
4349 action xkbprint.man
4353 symlink_app_xkbutils() {
4354 src_dir programs/xkbutils
4355 dst_dir app/xkbutils
4357 action LED.c
4358 action utils.c
4359 action xkbbell.c
4360 action xkbvleds.c
4361 action xkbwatch.c
4363 action LED.h
4364 action LEDP.h
4365 action utils.h
4369 symlink_app_xkill() {
4370 src_dir programs/xkill
4371 dst_dir app/xkill
4373 action xkill.c
4375 action xkill.man
4379 symlink_app_xload() {
4380 src_dir programs/xload
4381 dst_dir app/xload
4383 action XLoad.ad
4385 action get_load.c
4386 action get_rload.c
4387 action xload.c
4389 action xload.h
4391 action xload.man
4393 action xload.bit
4396 symlink_app_xlogo() {
4397 src_dir programs/xlogo
4398 dst_dir app/xlogo
4400 action XLogo.ad
4401 action XLogo-co.ad
4403 action Logo.c
4404 action print.c
4405 action RenderLogo.c
4406 action xlogo.c
4408 action Logo.h
4409 action LogoP.h
4410 action print.h
4411 action RenderLogo.h
4412 action xlogo.h
4414 action xlogo.man
4418 symlink_app_xlsatoms() {
4419 src_dir programs/xlsatoms
4420 dst_dir app/xlsatoms
4422 action xlsatoms.c
4424 action xlsatoms.man
4428 symlink_app_xlsclients() {
4429 src_dir programs/xlsclients
4430 dst_dir app/xlsclients
4432 action xlsclients.c
4434 action xlscli.man
4438 symlink_app_xlsfonts() {
4439 src_dir programs/xlsfonts
4440 dst_dir app/xlsfonts
4442 action dsimple.c
4443 action xlsfonts.c
4445 action dsimple.h
4447 action xlsfonts.man
4448 action xlsfonts.sgml
4451 symlink_app_xmag() {
4452 src_dir programs/xmag
4453 dst_dir app/xmag
4455 action Xmag.ad
4457 action CutPaste.c
4458 action RootWin.c
4459 action Scale.c
4460 action xmag.c
4462 action CutPaste.h
4463 action RootWin.h
4464 action RootWinP.h
4465 action Scale.h
4466 action ScaleP.h
4468 action Scale.doc Scale.txt
4470 action xmag.man
4472 action xmag.icon
4475 symlink_app_xman() {
4476 src_dir programs/xman
4477 dst_dir app/xman
4479 action Xman-noxprint.ad
4480 action Xman-xprint.ad
4482 action buttons.c
4483 action globals.c
4484 action handler.c
4485 action help.c
4486 action main.c
4487 action man.c
4488 action misc.c
4489 action print.c
4490 action ScrollByL.c
4491 action search.c
4492 action tkfuncs.c
4493 action vendor.c
4495 action defs.h
4496 action globals.h
4497 action iconclosed.h
4498 action icon_help.h
4499 action icon_open.h
4500 action man.h
4501 action print.h
4502 action ScrollByL.h
4503 action ScrollByLP.h
4504 action vendor.h
4505 action version.h
4507 action xman.help
4508 action xman.man
4512 symlink_app_xmessage() {
4513 src_dir programs/xmessage
4514 dst_dir app/xmessage
4516 action Xmessage.ad
4517 action Xmessage-color.ad
4519 action makeform.c
4520 action readfile.c
4521 action xmessage.c
4523 action README
4525 action readfile.h
4526 action xmessage.h
4528 action xmessage.man
4530 action Tests
4533 symlink_app_xmh() {
4534 src_dir programs/xmh
4535 dst_dir app/xmh
4537 action Xmh.ad
4539 action bbox.c
4540 action command.c
4541 action compfuncs.c
4542 action folder.c
4543 action init.c
4544 action main.c
4545 action menu.c
4546 action miscfuncs.c
4547 action mlist.c
4548 action msg.c
4549 action pick.c
4550 action popup.c
4551 action screen.c
4552 action toc.c
4553 action tocfuncs.c
4554 action tocutil.c
4555 action tsource.c
4556 action util.c
4557 action viewfuncs.c
4559 action actions.h
4560 action bbox.h
4561 action bboxint.h
4562 action externs.h
4563 action globals.h
4564 action mlist.h
4565 action msg.h
4566 action toc.h
4567 action tocintrnl.h
4568 action tocutil.h
4569 action tsource.h
4570 action tsourceP.h
4571 action version.h
4572 action xmh.h
4574 action xmh.man
4576 action black6
4577 action box6
4578 action Xmh.sample
4581 symlink_app_xmodmap() {
4582 src_dir programs/xmodmap
4583 dst_dir app/xmodmap
4585 action exec.c
4586 action handle.c
4587 action pf.c
4588 action xmodmap.c
4590 action wq.h
4591 action xmodmap.h
4593 action xmodmap.man
4595 action swap.km
4598 symlink_app_xmore() {
4599 src_dir programs/xmore
4600 dst_dir app/xmore
4602 action XMore.ad
4604 action print.c
4605 action printdialog.c
4606 action xmore.c
4608 action printdialog.h
4609 action printdialogprivates.h
4610 action print.h
4611 action xmore.h
4613 action xmore.man
4614 action xmore.sgml
4617 symlink_app_xplsprinters() {
4618 src_dir programs/xplsprinters
4619 dst_dir app/xplsprinters
4621 action xplsprinters.c
4623 action xplsprinters.man
4625 action xplsprinters.sgml
4628 symlink_app_xpr() {
4629 src_dir programs/xpr
4630 dst_dir app/xpr
4632 action x2jet.c
4633 action x2pmp.c
4634 action xpr.c
4636 action lncmd.h
4637 action pmp.h
4638 action xpr.h
4640 action xdpr.man
4641 action xpr.man
4643 action xdpr.script
4646 symlink_app_xprehashprinterlist() {
4647 src_dir programs/xprehashprinterlist
4648 dst_dir app/xprehashprinterlist
4650 action xprehashprinterlist.c
4652 action xprehashprinterlist.man
4654 action xprehashprinterlist.sgml
4657 symlink_app_xrandr() {
4658 src_dir programs/xrandr
4659 dst_dir app/xrandr
4661 action xrandr.c
4663 action xrandr.man
4667 symlink_app_xrdb() {
4668 src_dir programs/xrdb
4669 dst_dir app/xrdb
4671 action xrdb.c
4673 action xrdb.man
4677 symlink_app_xrefresh() {
4678 src_dir programs/xrefresh
4679 dst_dir app/xrefresh
4681 action xrefresh.c
4683 action xrefresh.man
4687 symlink_app_xset() {
4688 src_dir programs/xset
4689 dst_dir app/xset
4691 action xset.c
4693 action xset.man
4697 symlink_app_xsetmode() {
4698 src_dir programs/xsetmode
4699 dst_dir app/xsetmode
4701 action xsetmode.c
4703 action xsetmode.man
4707 symlink_app_xsetpointer() {
4708 src_dir programs/xsetpointer
4709 dst_dir app/xsetpointer
4711 action xsetpointer.c
4713 action xsetpnt.man xsetpointer.man
4717 symlink_app_xsetroot() {
4718 src_dir programs/xsetroot
4719 dst_dir app/xsetroot
4721 action xsetroot.c
4723 action xsetroot.man
4727 symlink_app_xsm() {
4728 src_dir programs/xsm
4729 dst_dir app/xsm
4731 action XSm.ad
4733 action auth.c
4734 action choose.c
4735 action globals.c
4736 action info.c
4737 action list.c
4738 action lock.c
4739 action log.c
4740 action mainwin.c
4741 action misc.c
4742 action popup.c
4743 action printhex.c
4744 action prop.c
4745 action remote.c
4746 action restart.c
4747 action save.c
4748 action saveutil.c
4749 action signals.c
4750 action xsm.c
4751 action xtwatch.c
4753 action README
4755 action system.xsm
4757 action auth.h
4758 action choose.h
4759 action info.h
4760 action list.h
4761 action lock.h
4762 action log.h
4763 action mainwin.h
4764 action popup.h
4765 action prop.h
4766 action restart.h
4767 action save.h
4768 action saveutil.h
4769 action xsm.h
4770 action xtwatch.h
4772 action xsm.man
4776 symlink_app_xstdcmap() {
4777 src_dir programs/xstdcmap
4778 dst_dir app/xstdcmap
4780 action xstdcmap.c
4782 action xstdcmap.man
4786 symlink_app_xtrap() {
4787 src_dir programs/xtrap
4788 dst_dir app/xtrap
4790 action chparse.c
4791 action XEKeybCtrl.c
4792 action xtrapchar.c
4793 action xtrapin.c
4794 action xtrapinfo.c
4795 action xtrapout.c
4796 action xtrapproto.c
4797 action xtrapreset.c
4798 action xtrapstats.c
4800 action chparse.h
4801 action XEKeybCtrl.h
4803 action xtrap.man
4807 symlink_app_xvidtune() {
4808 src_dir programs/xvidtune
4809 dst_dir app/xvidtune
4811 action Xvidtune.cpp
4813 action xvidtune.c
4815 action xvidtune.man
4819 symlink_app_xvinfo() {
4820 src_dir programs/xvinfo
4821 dst_dir app/xvinfo
4823 action xvinfo.c
4825 action xvinfo.man
4828 symlink_app_xwud() {
4829 src_dir programs/xwud
4830 dst_dir app/xwud
4832 action xwud.c
4834 action xwud.man
4837 symlink_app_scripts() {
4838 src_dir programs/scripts
4839 dst_dir app/scripts
4841 action fontname.sh
4842 action fontprop.sh
4843 action xauth_switch_to_sun-des-1.cpp
4844 action xon.sh
4846 action xon.man
4849 symlink_app_rstart() {
4850 src_dir programs/rstart
4851 dst_dir app/rstart
4853 action auth.c
4854 action server.c
4856 action rstartd.man
4857 action rstart.man
4859 action client.cpp
4860 action server.cpp
4861 action config.cpp
4863 action server.os2
4865 # commands
4867 src_dir programs/rstart/commands
4868 dst_dir app/rstart/commands
4870 action ListContexts
4871 action ListGenericCommands
4872 action @List
4874 # x11r6
4876 src_dir programs/rstart/commands/x11r6
4877 dst_dir app/rstart/commands/x11r6
4879 action @List
4880 action LoadMonitor
4881 action Terminal
4883 # contexts
4885 src_dir programs/rstart/contexts
4886 dst_dir app/rstart/contexts
4888 action @List
4889 action @Aliases
4890 action default
4891 action x11r6
4893 # samples
4895 # commands
4897 src_dir programs/rstart/samples/commands
4898 dst_dir app/rstart/samples/commands
4900 action @List
4901 action ListContexts
4902 action ListGenericCommands
4904 # odt1
4906 src_dir programs/rstart/samples/commands/odt1
4907 dst_dir app/rstart/samples/commands/odt1
4909 action @List
4910 action LoadMonitor
4911 action Terminal
4913 # openwindows2
4915 src_dir programs/rstart/samples/commands/openwindows2
4916 dst_dir app/rstart/samples/commands/openwindows2
4918 action @List
4919 action LoadMonitor
4920 action Terminal
4922 # openwindow3
4924 src_dir programs/rstart/samples/commands/openwindows3
4925 dst_dir app/rstart/samples/commands/openwindows3
4927 action @List
4928 action LoadMonitor
4929 action Terminal
4931 # x11r5
4933 src_dir programs/rstart/samples/commands/x11r5
4934 dst_dir app/rstart/samples/commands/x11r5
4936 action @List
4937 action LoadMonitor
4938 action Terminal
4940 # contexts.odt1
4942 src_dir programs/rstart/samples/contexts.odt1
4943 dst_dir app/rstart/samples/contexts.odt1
4945 action @Aliases
4946 action @List
4947 action default
4948 action odt1
4950 # contexts.sun
4952 src_dir programs/rstart/samples/contexts.sun
4953 dst_dir app/rstart/samples/contexts.odt1
4955 action @Aliases
4956 action @List
4957 action default
4958 action openwindows2
4959 action openwindows3
4960 action x11r5
4961 action x11r6
4964 symlink_app_sessreg() {
4965 src_dir programs/xdm
4966 dst_dir app/sessreg
4968 action sessreg.c
4969 action sessreg.man
4972 symlink_app_xdm() {
4973 src_dir programs/xdm
4974 dst_dir app/xdm
4976 action access.c
4977 action auth.c
4978 action choose.c
4979 action chooser.c
4980 action daemon.c
4981 action dm.c
4982 action dpylist.c
4983 action error.c
4984 action file.c
4985 action genauth.c
4986 action krb5auth.c
4987 action mitauth.c
4988 action netaddr.c
4989 action policy.c
4990 action prngc.c
4991 action protodpy.c
4992 action reset.c
4993 action resource.c
4994 action rpcauth.c
4995 action server.c
4996 action session.c
4997 action socket.c
4998 action streams.c
4999 action util.c
5000 action xdmauth.c
5001 action xdmcp.c
5002 action xdmshell.c
5004 action dm_auth.h
5005 action dm_error.h
5006 action dm.h
5007 action dm_socket.h
5008 action greet.h
5010 action Chooser.ad
5012 action xdm.man xdm.man.cpp
5014 src_dir programs/xdm/greeter
5015 dst_dir app/xdm/greeter
5017 action greet.c
5018 action Login.c
5019 action Login.h
5020 action LoginP.h
5021 action verify.c
5023 src_dir programs/xdm/config
5024 dst_dir app/xdm/config
5026 action README
5028 action GiveConsole
5029 action TakeConsole
5031 action xorg-bw.xpm
5032 action xorg.xpm
5034 action Xreset
5035 action Xaccess
5036 action Xservers.fs
5037 action Xsession
5038 action Xsetup_0
5039 action Xstartup
5040 action Xwilling
5042 action Xres.cpp Xresources.cpp
5043 action Xserv.ws.cpp Xservers.ws.cpp
5044 action xdm-conf.cpp xdm-config.cpp
5047 symlink_app_xprop() {
5048 src_dir programs/xprop
5049 dst_dir app/xprop
5051 action xprop.c
5053 action xprop.man
5055 src_dir programs/xlsfonts
5057 action dsimple.c
5058 action dsimple.h
5061 symlink_app_xwd() {
5062 src_dir programs/xwd
5063 dst_dir app/xwd
5065 action list.c
5066 action multiVis.c
5067 action xwd.c
5069 action list.h
5070 action multiVis.h
5071 action wsutils.h
5073 action xwd.man
5075 src_dir programs/xlsfonts
5077 action dsimple.c
5078 action dsimple.h
5081 symlink_app_xwininfo() {
5082 src_dir programs/xwininfo
5083 dst_dir app/xwininfo
5085 action xwininfo.c
5087 action xwininfo.man
5089 src_dir programs/xlsfonts
5091 action dsimple.c
5092 action dsimple.h
5095 symlink_app_xphelloworld() {
5096 src_dir programs/xphelloworld/xpxmhelloworld
5097 dst_dir app/xphelloworld/xpxmhelloworld
5099 action xpxmhelloworld.man
5100 action xpxmhelloworld.c
5101 action xpxmhelloworld.sgml
5103 src_dir programs/xphelloworld/xpsimplehelloworld
5104 dst_dir app/xphelloworld/xpsimplehelloworld
5106 action xpsimplehelloworld.sgml
5107 action xpsimplehelloworld.c
5108 action xpsimplehelloworld.man
5110 src_dir programs/xphelloworld/xpxthelloworld
5111 dst_dir app/xphelloworld/xpxthelloworld
5113 action xpxthelloworld.man
5114 action xpxthelloworld.sgml
5115 action xpxthelloworld.c
5117 src_dir programs/xphelloworld/xpawhelloworld
5118 dst_dir app/xphelloworld/xpawhelloworld
5120 action xpawhelloworld.c
5121 action xpawhelloworld.man
5123 src_dir programs/xphelloworld/xphelloworld
5124 dst_dir app/xphelloworld/xphelloworld
5126 action xphelloworld.sgml
5127 action xphelloworld.c
5128 action xphelloworld.man
5131 symlink_app_lbxproxy() {
5132 src_dir programs/lbxproxy
5133 dst_dir app/lbxproxy
5135 action design
5136 action lbxproxy.def
5137 action lbxproxy.man
5139 src_dir programs/lbxproxy/config
5140 dst_dir app/lbxproxy/config
5142 action AtomControl
5144 src_dir programs/lbxproxy/di
5145 dst_dir app/lbxproxy/di
5147 action atomcache.c
5148 action cache.c
5149 action cmap.c
5150 action cmaputil.c
5151 action dispatch.c
5152 action extensions.c
5153 action gfx.c
5154 action globals.c
5155 action init.c
5156 action lbxfuncs.c
5157 action lbxutil.c
5158 action main.c
5159 action options.c
5160 action pm.c
5161 action props.c
5162 action reqtype.c
5163 action resource.c
5164 action swaprep.c
5165 action swapreq.c
5166 action tables.c
5167 action tags.c
5168 action unsquish.c
5169 action utils.c
5170 action wire.c
5171 action zeropad.c
5173 src_dir programs/lbxproxy/include
5174 dst_dir app/lbxproxy/include
5176 action assert.h
5177 action atomcache.h
5178 action cache.h
5179 action colormap.h
5180 action init.h
5181 action lbxext.h
5182 action lbx.h
5183 action misc.h
5184 action os.h
5185 action pm.h
5186 action pmP.h
5187 action proxyopts.h
5188 action reqtype.h
5189 action resource.h
5190 action swap.h
5191 action tags.h
5192 action util.h
5193 action wire.h
5195 src_dir programs/lbxproxy/os
5196 dst_dir app/lbxproxy/os
5198 action connection.c
5199 action io.c
5200 action osdep.h
5201 action osinit.c
5202 action WaitFor.c
5205 symlink_app_xedit() {
5206 src_dir programs/xedit
5207 dst_dir app/xedit
5209 action xedit.h
5210 action commands.c
5211 action hook.c
5212 action ispell.c
5213 action lisp.c
5214 action options.c
5215 action realpath.c
5216 action strcasecmp.c
5217 action util.c
5218 action xedit.c
5220 action Xedit-color.ad
5221 action Xedit-noxprint.ad
5222 action Xedit-xprint.ad
5224 action Xedit-sample
5226 dst_dir app/xedit/man
5227 action xedit.man xedit.1
5229 src_dir programs/xedit/lisp
5230 dst_dir app/xedit/lisp
5232 action bytecode.c
5233 action bytecode.h
5234 action compile.c
5235 action core.c
5236 action core.h
5237 action debugger.c
5238 action debugger.h
5239 action env.c
5240 action format.c
5241 action format.h
5242 action hash.c
5243 action hash.h
5244 action helper.c
5245 action helper.h
5246 action internal.h
5247 action io.c
5248 action io.h
5249 action lisp.c
5250 action lisp.h
5251 action lsp.c
5252 action math.c
5253 action math.h
5254 action mathimp.c
5255 action package.c
5256 action package.h
5257 action pathname.c
5258 action pathname.h
5259 action private.h
5260 action read.c
5261 action read.h
5262 action regex.c
5263 action regex.h
5264 action require.c
5265 action require.h
5266 action stream.c
5267 action stream.h
5268 action string.c
5269 action string.h
5270 action struct.c
5271 action struct.h
5272 action time.c
5273 action time.h
5274 action write.c
5275 action write.h
5276 action xedit.c
5277 action xedit.h
5278 action TODO
5279 action README
5280 action lisp.rules
5282 src_dir programs/xedit/lisp/modules
5283 dst_dir app/xedit/lisp/modules
5285 action indent.lsp
5286 action lisp.lsp
5287 action syntax.lsp
5288 action xedit.lsp
5289 action psql.c
5290 action x11.c
5291 action xaw.c
5292 action xt.c
5294 src_dir programs/xedit/lisp/modules/progmodes
5295 dst_dir app/xedit/lisp/modules/progmodes
5297 action c.lsp
5298 action html.lsp
5299 action imake.lsp
5300 action lisp.lsp
5301 action make.lsp
5302 action man.lsp
5303 action patch.lsp
5304 action rpm.lsp
5305 action sgml.lsp
5306 action sh.lsp
5307 action xconf.lsp
5308 action xlog.lsp
5309 action xrdb.lsp
5311 src_dir programs/xedit/lisp/re
5312 dst_dir app/xedit/lisp/re
5314 action README
5315 action re.c
5316 action rec.c
5317 action re.h
5318 action reo.c
5319 action rep.h
5320 action tests.c
5321 action tests.txt
5323 src_dir programs/xedit/lisp/test
5324 dst_dir app/xedit/lisp/test
5326 action hello.lsp
5327 action list.lsp
5328 action math.lsp
5329 action psql-1.lsp
5330 action psql-2.lsp
5331 action psql-3.lsp
5332 action regex.lsp
5333 action stream.lsp
5334 action widgets.lsp
5336 src_dir programs/xedit/lisp/mp
5337 dst_dir app/xedit/lisp/mp
5339 action mp.c
5340 action mp.h
5341 action mpi.c
5342 action mpr.c
5344 src_dir programs/xmore
5345 dst_dir app/xedit
5347 action print.h
5348 action print.c
5349 action printdialog.h
5350 action printdialog.c
5351 action printdialogprivates.h
5354 symlink_app_xfs() {
5355 src_dir programs/xfs
5356 dst_dir app/xfs
5358 action xfs.def
5359 action xfs.man
5360 action README
5361 action config.cpp
5363 src_dir programs/xfs/difs
5364 dst_dir app/xfs/difs
5366 action atom.c
5367 action cache.c
5368 action charinfo.c
5369 action difsutils.c
5370 action dispatch.c
5371 action events.c
5372 action extensions.c
5373 action fontinfo.c
5374 action fonts.c
5375 action globals.c
5376 action initfonts.c
5377 action main.c
5378 action resource.c
5379 action swaprep.c
5380 action swapreq.c
5381 action tables.c
5383 src_dir programs/xfs/include
5384 dst_dir app/xfs/include
5386 action access.h
5387 action accstr.h
5388 action assert.h
5389 action auth.h
5390 action authstr.h
5391 action cache.h
5392 action cachestr.h
5393 action client.h
5394 action clientstr.h
5395 action closestr.h
5396 action closure.h
5397 action difsfn.h
5398 action difsfnst.h
5399 action difs.h
5400 action difsutils.h
5401 action dispatch.h
5402 action extentst.h
5403 action fsevents.h
5404 action fsresource.h
5405 action globals.h
5406 action misc.h
5407 action os.h
5408 action osstruct.h
5409 action servermd.h
5410 action site.h
5411 action swaprep.h
5412 action swapreq.h
5414 src_dir programs/xfs/os
5415 dst_dir app/xfs/os
5417 action access.c
5418 action config.c
5419 action config.h
5420 action configstr.h
5421 action connection.c
5422 action daemon.c
5423 action error.c
5424 action io.c
5425 action osdep.h
5426 action osglue.c
5427 action osinit.c
5428 action utils.c
5429 action waitfor.c
5432 symlink_app_xrx()
5434 src_dir programs/xrx/helper
5435 dst_dir app/xrx/helper
5437 action GetUrl.c
5438 action GetUrl.h
5439 action helper.c
5440 action xrx.man
5442 src_dir programs/xrx/libxplugin
5443 dst_dir app/xrx/libxplugin
5445 action README
5447 src_dir programs/xrx/rx
5448 dst_dir app/xrx/rx
5450 action XDpyName.h
5451 action XUrls.h
5452 action RxI.h
5453 action BuildReq.c
5454 action XDpyName.c
5455 action Rx.h
5456 action Prefs.c
5457 action Prefs.h
5458 action XAuth.c
5459 action PParse.c
5460 action XAuth.h
5461 action PRead.c
5462 action XUrls.c
5464 src_dir programs/xrx/xnest-plugin
5465 dst_dir app/xrx/xnest-plugin
5467 action PProcess.c
5468 action XnestDis.c
5469 action SetWin.c
5470 action RxPlugin.h
5471 action NewNDest.c
5473 src_dir programs/xrx/htdocs
5474 dst_dir app/xrx/htdocs
5476 action xclock
5477 action dtcm.html
5478 action excel.html
5479 action bitmap
5480 action bitmap.html
5481 action xclock.html
5482 action xload
5483 action dtcm
5484 action xload.html
5485 action excel
5487 src_dir programs/xrx/testplugin
5488 dst_dir app/xrx/testplugin
5490 action testplugin.man
5491 action testplugin.c
5493 src_dir programs/xrx/plugin
5494 dst_dir app/xrx/plugin
5496 action PProcess.c
5497 action stubs.c
5498 action libxrx.man
5499 action SetWin.c
5500 action Global.c
5501 action Main.c
5502 action RxPlugin.h
5503 action NewNDest.c
5505 src_dir programs/xrx/plugin/common
5506 dst_dir app/xrx/plugin/common
5508 action npunix.c
5510 src_dir programs/xrx/plugin/include
5511 dst_dir app/xrx/plugin/include
5513 action npapi.h
5514 action npupp.h
5515 action jri.h
5516 action jri_md.h
5517 action jritypes.h
5519 src_dir programs/xrx/cgi-bin
5520 dst_dir app/xrx/cgi-bin
5522 action xclock
5523 action dtcm.sh
5524 action bitmap
5525 action xload
5526 action dtcm
5527 action excel
5530 symlink_app() {
5531 symlink_app_xfs
5532 symlink_app_xedit
5533 symlink_app_lbxproxy
5534 symlink_app_xphelloworld
5535 symlink_app_xwininfo
5536 symlink_app_xwd
5537 symlink_app_xprop
5538 symlink_app_xwud
5539 symlink_app_xvinfo
5540 symlink_app_xvidtune
5541 symlink_app_xtrap
5542 symlink_app_xstdcmap
5543 symlink_app_xsm
5544 symlink_app_xsetroot
5545 symlink_app_xsetpointer
5546 symlink_app_xsetmode
5547 symlink_app_xset
5548 symlink_app_xrefresh
5549 symlink_app_xrdb
5550 symlink_app_xrandr
5551 symlink_app_xprehashprinterlist
5552 symlink_app_xpr
5553 symlink_app_xplsprinters
5554 symlink_app_xmore
5555 symlink_app_xmodmap
5556 symlink_app_xmh
5557 symlink_app_xmessage
5558 symlink_app_xman
5559 symlink_app_xmag
5560 symlink_app_xlsfonts
5561 symlink_app_xlsclients
5562 symlink_app_xlsatoms
5563 symlink_app_xlogo
5564 symlink_app_xload
5565 symlink_app_xkill
5566 symlink_app_xkbutils
5567 symlink_app_xkbprint
5568 symlink_app_xkbevd
5569 symlink_app_xkbcomp
5570 symlink_app_xinit
5571 symlink_app_xgc
5572 symlink_app_xgamma
5573 symlink_app_xfwp
5574 symlink_app_xfsinfo
5575 symlink_app_xfontsel
5576 symlink_app_xfindproxy
5577 symlink_app_xfd
5578 symlink_app_xf86dga
5579 symlink_app_xeyes
5580 symlink_app_xev
5581 symlink_app_xdriinfo
5582 symlink_app_xditview
5583 symlink_app_xdbedizzy
5584 symlink_app_xconsole
5585 symlink_app_xcmsdb
5586 symlink_app_xclock
5587 symlink_app_xclipboard
5588 symlink_app_xcalc
5589 symlink_app_xbiff
5590 symlink_app_xauth
5591 symlink_app_x11perf
5592 symlink_app_viewres
5593 symlink_app_smproxy
5594 symlink_app_showfont
5595 symlink_app_setxkbmap
5596 symlink_app_rstart
5597 symlink_app_rgb
5598 symlink_app_proxymngr
5599 symlink_app_pclcomp
5600 symlink_app_oclock
5601 symlink_app_mkfontdir
5602 symlink_app_mkfontscale
5603 symlink_app_makepsres
5604 symlink_app_luit
5605 symlink_app_listres
5606 symlink_app_ico
5607 symlink_app_iceauth
5608 symlink_app_fstobdf
5609 symlink_app_fslsfonts
5610 symlink_app_fonttosfnt
5611 symlink_app_editres
5612 symlink_app_bitmap
5613 symlink_app_beforelight
5614 symlink_app_bdftopcf
5615 symlink_app_appres
5616 symlink_app_twm
5617 symlink_app_xdpyinfo
5618 symlink_app_xhost
5619 symlink_app_xcursorgen
5620 symlink_app_scripts
5621 symlink_app_xdm
5622 symlink_app_sessreg
5623 symlink_app_xrx
5624 # ...
5628 #########
5630 # The xserver module
5632 #########
5635 symlink_xserver_GL_apple() {
5636 src_dir programs/Xserver/GL/apple
5637 dst_dir xserver/xorg/GL/apple
5639 action aglGlx.c
5640 action indirect.c
5643 symlink_xserver_GL_dri() {
5644 src_dir programs/Xserver/GL/dri
5645 dst_dir xserver/xorg/hw/xfree86/dri
5647 action dri.c
5648 action dri.h
5649 action drimodule.c
5650 action dristruct.h
5651 action sarea.h
5652 action xf86dri.c
5654 # don't hate me
5655 # src_dir extras/drm/shared-core
5656 # action drm.h
5659 symlink_xserver_GL_glx() {
5660 src_dir programs/Xserver/GL/glx
5661 dst_dir xserver/xorg/GL/glx
5663 action g_disptab.c
5664 action g_disptab.h
5665 action g_disptab_EXT.c
5666 action g_disptab_EXT.h
5667 action g_render.c
5668 action g_renderswap.c
5669 action g_single.c
5670 action g_singleswap.c
5671 action global.c
5672 action glxbuf.c
5673 action glxbuf.h
5674 action glxcmds.c
5675 action glxcmdsswap.c
5676 action glxcontext.h
5677 action glxdrawable.h
5678 action glxerror.h
5679 action glxext.c
5680 action glxext.h
5681 action glxfb.c
5682 action glxfb.h
5683 action glximports.c
5684 action glximports.h
5685 action glxmem.c
5686 action glxmem.h
5687 action glxpix.c
5688 action glxpix.h
5689 action glxscreens.c
5690 action glxscreens.h
5691 action glxserver.h
5692 action glxutil.c
5693 action glxutil.h
5694 action impsize.h
5695 action render2.c
5696 action render2swap.c
5697 action renderpix.c
5698 action renderpixswap.c
5699 action rensize.c
5700 action rensizetab.c
5701 action single2.c
5702 action single2swap.c
5703 action singlepix.c
5704 action singlepixswap.c
5705 action singlesize.c
5706 action singlesize.h
5707 action unpack.h
5708 action xfont.c
5711 symlink_xserver_GL_include_GL() {
5712 src_dir programs/Xserver/GL/include/GL
5713 dst_dir xserver/xorg/GL/include/GL
5715 action glx_ansic.h
5716 action xf86glx.h
5719 symlink_xserver_GL_mesa_X() {
5720 src_dir programs/Xserver/GL/mesa/X
5721 dst_dir xserver/xorg/GL/mesa/X
5723 action xf86glx.c
5724 action xf86glx_util.c
5725 action xf86glx_util.h
5726 action xf86glxint.h
5729 symlink_xserver_GL_windows() {
5730 src_dir programs/Xserver/GL/windows
5731 dst_dir xserver/xorg/GL/windows
5733 action glwindows.h
5734 action glwrap.c
5735 action indirect.c
5737 action ChangeLog
5740 symlink_xserver_XTrap() {
5741 src_dir programs/Xserver/XTrap
5742 dst_dir xserver/xorg/XTrap
5744 action xf86XTrapModule.c
5745 action xtrapddmi.c
5746 action xtrapdi.c
5747 action xtrapdiswp.c
5748 action xtrapditbl.c
5751 symlink_xserver_Xext() {
5752 src_dir programs/Xserver/Xext
5753 dst_dir xserver/xorg/Xext
5755 action EVI.c
5756 action EVIstruct.h
5757 action appgroup.c
5758 action appgroup.h
5759 action bigreq.c
5760 action cup.c
5761 action dpms.c
5762 action dpmsproc.h
5763 action dpmsstubs.c
5764 action fontcache.c
5765 action mbuf.c
5766 action mbufbf.c
5767 action mbufpx.c
5768 action mitmisc.c
5769 action panoramiX.c
5770 action panoramiX.h
5771 action panoramiXSwap.c
5772 action panoramiXh.h
5773 action panoramiXprocs.c
5774 action panoramiXsrv.h
5775 action sampleEVI.c
5776 action saver.c
5777 action security.c
5778 action shape.c
5779 action shm.c
5780 action sleepuntil.c
5781 action sleepuntil.h
5782 action sync.c
5783 action xcmisc.c
5784 action xevie.c
5785 action xf86bigfont.c
5786 action xprint.c
5787 action xres.c
5788 action xtest.c
5789 action xtest1dd.c
5790 action xtest1dd.h
5791 action xtest1di.c
5792 action xvdisp.c
5793 action xvdisp.h
5794 action xvdix.h
5795 action xvmain.c
5796 action xvmc.c
5797 action xvmcext.h
5798 action SecurityPolicy
5799 action xtest1.frags README.xtest1-ddx
5801 # some of these are really DDX-specific despite being in Xext
5803 dst_dir xserver/xorg/hw/xfree86/dixmods/extmod
5804 action dgaproc.h
5805 action vidmodeproc.h
5806 action xf86dga.c
5807 action xf86dga2.c
5808 action xf86dgaext.h
5809 action xf86misc.c
5810 action xf86miscproc.h
5811 action xf86vmode.c
5812 action xvmod.c
5813 action xvmodproc.h
5815 dst_dir xserver/xorg/hw/dmx
5816 action dmx.c
5819 symlink_xserver_Xext_extmod() {
5820 src_dir programs/Xserver/Xext/extmod
5821 dst_dir xserver/xorg/hw/xfree86/dixmods/extmod
5823 action modinit.c
5824 action modinit.h
5827 symlink_xserver_Xi() {
5828 src_dir programs/Xserver/Xi
5829 dst_dir xserver/xorg/Xi
5831 action allowev.c
5832 action allowev.h
5833 action chgdctl.c
5834 action chgdctl.h
5835 action chgfctl.c
5836 action chgfctl.h
5837 action chgkbd.c
5838 action chgkbd.h
5839 action chgkmap.c
5840 action chgkmap.h
5841 action chgprop.c
5842 action chgprop.h
5843 action chgptr.c
5844 action chgptr.h
5845 action closedev.c
5846 action closedev.h
5847 action devbell.c
5848 action devbell.h
5849 action exevents.c
5850 action exglobals.h
5851 action extinit.c
5852 action getbmap.c
5853 action getbmap.h
5854 action getdctl.c
5855 action getdctl.h
5856 action getfctl.c
5857 action getfctl.h
5858 action getfocus.c
5859 action getfocus.h
5860 action getkmap.c
5861 action getkmap.h
5862 action getmmap.c
5863 action getmmap.h
5864 action getprop.c
5865 action getprop.h
5866 action getselev.c
5867 action getselev.h
5868 action getvers.c
5869 action getvers.h
5870 action grabdev.c
5871 action grabdev.h
5872 action grabdevb.c
5873 action grabdevb.h
5874 action grabdevk.c
5875 action grabdevk.h
5876 action gtmotion.c
5877 action gtmotion.h
5878 action listdev.c
5879 action listdev.h
5880 action opendev.c
5881 action opendev.h
5882 action queryst.c
5883 action queryst.h
5884 action selectev.c
5885 action selectev.h
5886 action sendexev.c
5887 action sendexev.h
5888 action setbmap.c
5889 action setbmap.h
5890 action setdval.c
5891 action setdval.h
5892 action setfocus.c
5893 action setfocus.h
5894 action setmmap.c
5895 action setmmap.h
5896 action setmode.c
5897 action setmode.h
5898 action stubs.c
5899 action ungrdev.c
5900 action ungrdev.h
5901 action ungrdevb.c
5902 action ungrdevb.h
5903 action ungrdevk.c
5904 action ungrdevk.h
5907 symlink_xserver_Xprint() {
5908 src_dir programs/Xserver/Xprint
5909 dst_dir xserver/xorg/Xprint
5911 action AttrValid.c
5912 action AttrValid.h
5913 action DiPrint.h
5914 action Init.c
5915 action Oid.c
5916 action Oid.h
5917 action OidDefs.h
5918 action OidStrs.h
5919 action Util.c
5920 action ValTree.c
5921 action attributes.c
5922 action attributes.h
5923 action ddxInit.c
5924 action mediaSizes.c
5925 action spooler.c
5926 action spooler.h
5928 dst_dir xserver/xorg/Xprint/doc
5929 action Xprt.html
5930 action Xprt.man Xprt.man.pre
5931 action Xprt.sgml
5934 symlink_xserver_Xprint_etc() {
5935 src_dir programs/Xserver/Xprint/etc/init.d
5936 dst_dir xserver/xorg/Xprint/etc/init.d
5938 action xprint.cpp
5940 src_dir programs/Xserver/Xprint/etc/profile.d
5941 dst_dir xserver/xorg/Xprint/etc/profile.d
5943 action xprint.csh
5944 action xprint.sh
5946 src_dir programs/Xserver/Xprint/etc/Xsession.d
5947 dst_dir xserver/xorg/Xprint/etc/Xsession.d
5949 action cde_xsessiond_xprint.sh
5952 symlink_xserver_Xprint_ps() {
5953 src_dir programs/Xserver/Xprint/ps
5954 dst_dir xserver/xorg/Xprint/ps
5956 action Ps.h
5957 action PsArc.c
5958 action PsArea.c
5959 action PsAttVal.c
5960 action PsAttr.c
5961 action PsCache.c
5962 action PsColor.c
5963 action PsDef.h
5964 action PsFTFonts.c
5965 action PsFonts.c
5966 action PsGC.c
5967 action PsImageUtil.c
5968 action PsInit.c
5969 action PsLine.c
5970 action PsMisc.c
5971 action PsPixel.c
5972 action PsPixmap.c
5973 action PsPolygon.c
5974 action PsPrint.c
5975 action PsSpans.c
5976 action PsText.c
5977 action PsWindow.c
5978 action psout.c
5979 action psout.h
5980 action psout_ft.c
5981 action psout_ftpstype1.c
5982 action psout_ftpstype3.c
5983 action ttf2pt1wrap.c
5986 symlink_xserver_Xprint_pcl() {
5987 src_dir programs/Xserver/Xprint/pcl
5988 dst_dir xserver/xorg/Xprint/pcl
5990 action Pcl.h
5991 action PclArc.c
5992 action PclArea.c
5993 action PclAttVal.c
5994 action PclAttr.c
5995 action PclColor.c
5996 action PclCursor.c
5997 action PclDef.h
5998 action PclFonts.c
5999 action PclGC.c
6000 action PclInit.c
6001 action PclLine.c
6002 action PclMisc.c
6003 action PclPixel.c
6004 action PclPixmap.c
6005 action PclPolygon.c
6006 action PclPrint.c
6007 action PclSFonts.c
6008 action PclSFonts.h
6009 action PclSpans.c
6010 action PclText.c
6011 action PclWindow.c
6012 action Pclmap.h
6015 symlink_xserver_Xprint_raster() {
6016 src_dir programs/Xserver/Xprint/raster
6017 dst_dir xserver/xorg/Xprint/raster
6019 action Raster.c
6020 action Raster.h
6021 action RasterAttVal.c
6024 symlink_xserver_afb() {
6025 src_dir programs/Xserver/afb
6026 dst_dir xserver/xorg/afb
6028 action afb.h
6029 action afbbitblt.c
6030 action afbblt.c
6031 action afbbres.c
6032 action afbbresd.c
6033 action afbbstore.c
6034 action afbclip.c
6035 action afbcmap.c
6036 action afbfillarc.c
6037 action afbfillrct.c
6038 action afbfillsp.c
6039 action afbfont.c
6040 action afbgc.c
6041 action afbgetsp.c
6042 action afbhrzvert.c
6043 action afbimage.c
6044 action afbimggblt.c
6045 action afbline.c
6046 action afbmisc.c
6047 action afbpixmap.c
6048 action afbply1rct.c
6049 action afbplygblt.c
6050 action afbpntarea.c
6051 action afbpntwin.c
6052 action afbpolypnt.c
6053 action afbpushpxl.c
6054 action afbscrinit.c
6055 action afbsetsp.c
6056 action afbtegblt.c
6057 action afbtile.c
6058 action afbwindow.c
6059 action afbzerarc.c
6061 action README
6062 action Xdaniver.doc
6065 symlink_xserver_cfb() {
6066 src_dir programs/Xserver/cfb
6067 dst_dir xserver/xorg/cfb
6069 action cfb.h
6070 action cfb16.h
6071 action cfb24.h
6072 action cfb32.h
6073 action cfb8bit.c
6074 action cfb8bit.h
6075 action cfb8line.c
6076 action cfballpriv.c
6077 action cfbbitblt.c
6078 action cfbblt.c
6079 action cfbbres.c
6080 action cfbbresd.c
6081 action cfbbstore.c
6082 action cfbcmap.c
6083 action cfbcppl.c
6084 action cfbfillarc.c
6085 action cfbfillrct.c
6086 action cfbfillsp.c
6087 action cfbgc.c
6088 action cfbgetsp.c
6089 action cfbglblt8.c
6090 action cfbhrzvert.c
6091 action cfbigblt8.c
6092 action cfbimage.c
6093 action cfbline.c
6094 action cfbmap.h
6095 action cfbmskbits.c
6096 action cfbmskbits.h
6097 action cfbpixmap.c
6098 action cfbply1rct.c
6099 action cfbpntwin.c
6100 action cfbpolypnt.c
6101 action cfbpush8.c
6102 action cfbrctstp8.c
6103 action cfbrrop.c
6104 action cfbrrop.h
6105 action cfbscrinit.c
6106 action cfbsetsp.c
6107 action cfbsolid.c
6108 action cfbtab.h
6109 action cfbteblt8.c
6110 action cfbtegblt.c
6111 action cfbtile32.c
6112 action cfbtileodd.c
6113 action cfbunmap.h
6114 action cfbwindow.c
6115 action cfbzerarc.c
6116 action stip68kgnu.h
6117 action stipmips.s
6118 action stipsparc.s
6119 action stipsprc32.s
6122 symlink_xserver_cfb24() {
6123 src_dir programs/Xserver/cfb24
6124 dst_dir xserver/xorg/cfb24
6126 action cfbrrop24.h
6129 symlink_xserver_composite() {
6130 src_dir programs/Xserver/composite
6131 dst_dir xserver/xorg/composite
6133 action compalloc.c
6134 action compext.c
6135 action compinit.c
6136 action compint.h
6137 action compwindow.c
6140 symlink_xserver_damageext() {
6141 src_dir programs/Xserver/damageext
6142 dst_dir xserver/xorg/damageext
6144 action damageext.c
6145 action damageext.h
6146 action damageextint.h
6149 symlink_xserver_dbe() {
6150 src_dir programs/Xserver/dbe
6151 dst_dir xserver/xorg/dbe
6153 action dbe.c
6154 action dbestruct.h
6155 action midbe.c
6156 action midbe.h
6157 action midbestr.h
6160 symlink_xserver_dix() {
6161 src_dir programs/Xserver/dix
6162 dst_dir xserver/xorg/dix
6164 action atom.c
6165 action colormap.c
6166 action cursor.c
6167 action devices.c
6168 action dispatch.c
6169 action dispatch.h
6170 action dixfonts.c
6171 action dixutils.c
6172 action events.c
6173 action extension.c
6174 action ffs.c
6175 action gc.c
6176 action globals.c
6177 action glyphcurs.c
6178 action grabs.c
6179 action initatoms.c
6180 action main.c
6181 action pixmap.c
6182 action privates.c
6183 action property.c
6184 action resource.c
6185 action swaprep.c
6186 action swapreq.c
6187 action tables.c
6188 action window.c
6189 action xpstubs.c
6191 action buildatoms
6192 action BuiltInAtoms
6193 action CHANGES
6196 symlink_xserver_fb() {
6197 src_dir programs/Xserver/fb
6198 dst_dir xserver/xorg/fb
6200 action fb.h
6201 action fb24_32.c
6202 action fb24_32.h
6203 action fballpriv.c
6204 action fbarc.c
6205 action fbbits.c
6206 action fbbits.h
6207 action fbblt.c
6208 action fbbltone.c
6209 action fbbstore.c
6210 action fbcmap.c
6211 action fbcompose.c
6212 action fbcopy.c
6213 action fbedge.c
6214 action fbedgeimp.h
6215 action fbfill.c
6216 action fbfillrect.c
6217 action fbfillsp.c
6218 action fbgc.c
6219 action fbgetsp.c
6220 action fbglyph.c
6221 action fbimage.c
6222 action fbline.c
6223 action fbmmx.c
6224 action fbmmx.h
6225 action fboverlay.c
6226 action fboverlay.h
6227 action fbpict.c
6228 action fbpict.h
6229 action fbpixmap.c
6230 action fbpoint.c
6231 action fbpseudocolor.c
6232 action fbpseudocolor.h
6233 action fbpush.c
6234 action fbrop.h
6235 action fbscreen.c
6236 action fbseg.c
6237 action fbsetsp.c
6238 action fbsolid.c
6239 action fbstipple.c
6240 action fbtile.c
6241 action fbtrap.c
6242 action fbutil.c
6243 action fbwindow.c
6246 symlink_xserver_hw_darwin() {
6247 src_dir programs/Xserver/hw/darwin
6248 dst_dir xserver/xorg/hw/darwin
6250 action darwin.c
6251 action darwin.h
6252 action darwinClut8.h
6253 action darwinEvents.c
6254 action darwinKeyboard.c
6255 action darwinKeyboard.h
6256 action darwinXinput.c
6258 action XDarwin.man
6261 symlink_xserver_hw_darwin_bundle() {
6262 src_dir programs/Xserver/hw/darwin/bundle
6263 dst_dir xserver/xorg/hw/darwin/bundle
6265 action startXClients.cpp
6266 action XDarwin.icns
6268 src_dir programs/Xserver/hw/darwin/bundle/Dutch.lproj
6269 dst_dir xserver/xorg/hw/darwin/bundle/Dutch.lproj
6271 action Credits.rtf
6272 action Localizable.strings
6273 action XDarwinHelp.html.cpp
6275 src_dir programs/Xserver/hw/darwin/bundle/Dutch.lproj/MainMenu.nib
6276 dst_dir xserver/xorg/hw/darwin/bundle/Dutch.lproj/MainMenu.nib
6278 action classes.nib
6279 action objects.nib
6281 src_dir programs/Xserver/hw/darwin/bundle/English.lproj
6282 dst_dir xserver/xorg/hw/darwin/bundle/English.lproj
6284 action Credits.rtf
6285 action InfoPlist.strings.cpp
6286 action Localizable.strings
6287 action XDarwinHelp.html.cpp
6289 src_dir programs/Xserver/hw/darwin/bundle/English.lproj/MainMenu.nib
6290 dst_dir xserver/xorg/hw/darwin/bundle/English.lproj/MainMenu.nib
6292 action classes.nib
6293 action objects.nib
6295 src_dir programs/Xserver/hw/darwin/bundle/French.lproj
6296 dst_dir xserver/xorg/hw/darwin/bundle/French.lproj
6298 action Credits.rtf
6299 action Localizable.strings
6300 action XDarwinHelp.html.cpp
6302 src_dir programs/Xserver/hw/darwin/bundle/French.lproj/MainMenu.nib
6303 dst_dir xserver/xorg/hw/darwin/bundle/French.lproj/MainMenu.nib
6305 action classes.nib
6306 action objects.nib
6308 src_dir programs/Xserver/hw/darwin/bundle/German.lproj
6309 dst_dir xserver/xorg/hw/darwin/bundle/German.lproj
6311 action Credits.rtf
6312 action Localizable.strings
6313 action XDarwinHelp.html.cpp
6315 src_dir programs/Xserver/hw/darwin/bundle/German.lproj/MainMenu.nib
6316 dst_dir xserver/xorg/hw/darwin/bundle/German.lproj/MainMenu.nib
6318 action classes.nib
6319 action objects.nib
6321 src_dir programs/Xserver/hw/darwin/bundle/Japanese.lproj
6322 dst_dir xserver/xorg/hw/darwin/bundle/Japanese.lproj
6324 action Credits.rtf
6325 action Localizable.strings
6326 action XDarwinHelp.html.cpp
6328 src_dir programs/Xserver/hw/darwin/bundle/Japanese.lproj/MainMenu.nib
6329 dst_dir xserver/xorg/hw/darwin/bundle/Japanese.lproj/MainMenu.nib
6331 action classes.nib
6332 action objects.nib
6334 src_dir programs/Xserver/hw/darwin/bundle/ko.lproj
6335 dst_dir xserver/xorg/hw/darwin/bundle/ko.lproj
6337 action Credits.rtf
6338 action Localizable.strings
6339 action XDarwinHelp.html.cpp
6341 src_dir programs/Xserver/hw/darwin/bundle/ko.lproj/MainMenu.nib
6342 dst_dir xserver/xorg/hw/darwin/bundle/ko.lproj/MainMenu.nib
6344 action classes.nib
6345 action objects.nib
6347 src_dir programs/Xserver/hw/darwin/bundle/Portuguese.lproj
6348 dst_dir xserver/xorg/hw/darwin/bundle/Portuguese.lproj
6350 action Credits.rtf
6351 action Localizable.strings
6352 action XDarwinHelp.html.cpp
6354 src_dir programs/Xserver/hw/darwin/bundle/Portuguese.lproj/MainMenu.nib
6355 dst_dir xserver/xorg/hw/darwin/bundle/Portuguese.lproj/MainMenu.nib
6357 action classes.nib
6358 action objects.nib
6360 src_dir programs/Xserver/hw/darwin/bundle/Spanish.lproj
6361 dst_dir xserver/xorg/hw/darwin/bundle/Spanish.lproj
6363 action Credits.rtf
6364 action Localizable.strings
6365 action XDarwinHelp.html.cpp
6367 src_dir programs/Xserver/hw/darwin/bundle/Spanish.lproj/MainMenu.nib
6368 dst_dir xserver/xorg/hw/darwin/bundle/Spanish.lproj/MainMenu.nib
6370 action classes.nib
6371 action objects.nib
6373 src_dir programs/Xserver/hw/darwin/bundle/Swedish.lproj
6374 dst_dir xserver/xorg/hw/darwin/bundle/Swedish.lproj
6376 action Credits.rtf
6377 action Localizable.strings
6378 action XDarwinHelp.html.cpp
6380 src_dir programs/Xserver/hw/darwin/bundle/Swedish.lproj/MainMenu.nib
6381 dst_dir xserver/xorg/hw/darwin/bundle/Swedish.lproj/MainMenu.nib
6383 action classes.nib
6384 action objects.nib
6387 symlink_xserver_hw_darwin_iokit() {
6388 src_dir programs/Xserver/hw/darwin/iokit
6389 dst_dir xserver/xorg/hw/darwin/iokit
6391 action xfIOKit.c
6392 action xfIOKit.h
6393 action xfIOKitCursor.c
6394 action xfIOKitStartup.c
6397 symlink_xserver_hw_darwin_quartz() {
6398 src_dir programs/Xserver/hw/darwin/quartz
6399 dst_dir xserver/xorg/hw/darwin/quartz
6401 action Preferences.h
6402 action XApplication.h
6403 action XDarwinStartup.c
6404 action XServer.h
6405 action applewm.c
6406 action applewmExt.h
6407 action keysym2ucs.c
6408 action keysym2ucs.h
6409 action pseudoramiX.c
6410 action pseudoramiX.h
6411 action quartz.c
6412 action quartz.h
6413 action quartzAudio.c
6414 action quartzAudio.h
6415 action quartzCommon.h
6416 action quartzCursor.c
6417 action quartzCursor.h
6418 action quartzKeyboard.c
6419 action quartzPasteboard.c
6420 action quartzPasteboard.h
6421 action quartzStartup.c
6423 action Preferences.m
6424 action quartzCocoa.m
6425 action XApplication.m
6426 action XServer.m
6428 action XDarwinStartup.man
6430 src_dir programs/Xserver/hw/darwin/quartz/XDarwin.pbproj
6431 dst_dir xserver/xorg/hw/darwin/quartz/XDarwin.pbproj
6432 action project.pbxproj
6435 symlink_xserver_hw_darwin_quartz_cr() {
6436 src_dir programs/Xserver/hw/darwin/quartz/cr
6437 dst_dir xserver/xorg/hw/darwin/quartz/cr
6439 action XView.h
6440 action cr.h
6442 action crAppleWM.m
6443 action crFrame.m
6444 action crScreen.m
6445 action XView.m
6448 symlink_xserver_hw_darwin_quartz_fullscreen() {
6449 src_dir programs/Xserver/hw/darwin/quartz/fullscreen
6450 dst_dir xserver/xorg/hw/darwin/quartz/fullscreen
6452 action fullscreen.c
6453 action quartzCursor.c
6454 action quartzCursor.h
6457 symlink_xserver_hw_darwin_quartz_xpr() {
6458 src_dir programs/Xserver/hw/darwin/quartz/xpr
6459 dst_dir xserver/xorg/hw/darwin/quartz/xpr
6461 action Xplugin.h
6462 action appledri.c
6463 action dri.c
6464 action dri.h
6465 action dristruct.h
6466 action x-hash.c
6467 action x-hash.h
6468 action x-hook.c
6469 action x-hook.h
6470 action x-list.c
6471 action x-list.h
6472 action xpr.h
6473 action xprAppleWM.c
6474 action xprCursor.c
6475 action xprFrame.c
6476 action xprScreen.c
6479 symlink_xserver_hw_darwin_utils() {
6480 src_dir programs/Xserver/hw/darwin/utils
6481 dst_dir xserver/xorg/hw/darwin/utils
6483 action dumpkeymap.c
6484 action dumpkeymap.man
6485 action README.txt
6488 symlink_xserver_hw_dmx() {
6489 src_dir programs/Xserver/hw/dmx
6490 dst_dir xserver/xorg/hw/dmx
6492 action dmx.h
6493 action dmx_glxvisuals.c
6494 action dmx_glxvisuals.h
6495 action dmxcb.c
6496 action dmxcb.h
6497 action dmxclient.h
6498 action dmxcmap.c
6499 action dmxcmap.h
6500 action dmxcursor.c
6501 action dmxcursor.h
6502 action dmxdpms.c
6503 action dmxdpms.h
6504 action dmxextension.c
6505 action dmxextension.h
6506 action dmxfont.c
6507 action dmxfont.h
6508 action dmxgc.c
6509 action dmxgc.h
6510 action dmxgcops.c
6511 action dmxgcops.h
6512 action dmxinit.c
6513 action dmxinit.h
6514 action dmxinput.c
6515 action dmxinput.h
6516 action dmxlog.c
6517 action dmxlog.h
6518 action dmxpict.c
6519 action dmxpict.h
6520 action dmxpixmap.c
6521 action dmxpixmap.h
6522 action dmxprop.c
6523 action dmxprop.h
6524 action dmxscrinit.c
6525 action dmxscrinit.h
6526 action dmxshadow.c
6527 action dmxshadow.h
6528 action dmxstat.c
6529 action dmxstat.h
6530 action dmxsync.c
6531 action dmxsync.h
6532 action dmxvisual.c
6533 action dmxvisual.h
6534 action dmxwindow.c
6535 action dmxwindow.h
6537 action Xdmx.man Xdmx.1
6540 symlink_xserver_hw_dmx_config() {
6541 src_dir programs/Xserver/hw/dmx/config
6542 dst_dir xserver/xorg/hw/dmx/config
6544 action Canvas.c
6545 action Canvas.h
6546 action CanvasP.h
6547 action dmxcompat.c
6548 action dmxcompat.h
6549 action dmxconfig.c
6550 action dmxconfig.h
6551 action dmxparse.c
6552 action dmxparse.h
6553 action dmxprint.c
6554 action dmxprint.h
6555 action dmxtodmx.c
6556 action dmxtodmx.man
6557 action parser.y
6558 action scanner.l
6559 action test-a.in
6560 action test-a.out
6561 action test-b.in
6562 action test-b.out
6563 action test-c.in
6564 action test-c.out
6565 action test-d.in
6566 action test-d.out
6567 action test-e.in
6568 action test-e.out
6569 action test-f.in
6570 action test-f.out
6571 action test-g.in
6572 action test-g.out
6573 action test-h.in
6574 action test-h.out
6575 action test-i.in
6576 action test-i.out
6577 action test-j.in
6578 action test-j.out
6579 action test-k.in
6580 action test-k.out
6581 action test-l.in
6582 action test-l.out
6583 action TODO
6584 action vdltodmx.c
6585 action vdltodmx.man
6586 action xdmxconfig.c
6587 action xdmxconfig.man
6590 symlink_xserver_hw_dmx_doc() {
6591 src_dir programs/Xserver/hw/dmx/doc
6592 dst_dir xserver/xorg/hw/dmx/doc
6594 action dmx.sgml
6595 action DMXSpec.txt
6596 action DMXSpec-v1.txt
6597 action dmx.txt
6598 action doxygen.conf
6599 action doxygen.css
6600 action doxygen.foot
6601 action doxygen.head
6602 action scaled.sgml
6603 action scaled.txt
6605 src_dir programs/Xserver/hw/dmx/doc/html
6606 dst_dir xserver/xorg/hw/dmx/doc/html
6608 action annotated.html
6609 action ChkNotMaskEv_8c.html
6610 action ChkNotMaskEv_8h.html
6611 action ChkNotMaskEv_8h-source.html
6612 action classes.html
6613 action dmx_8h.html
6614 action dmx_8h-source.html
6615 action dmxarg_8c.html
6616 action dmxarg_8h.html
6617 action dmxarg_8h-source.html
6618 action dmxbackend_8c.html
6619 action dmxbackend_8h.html
6620 action dmxbackend_8h-source.html
6621 action dmxcb_8c.html
6622 action dmxcb_8h.html
6623 action dmxcb_8h-source.html
6624 action dmxclient_8h.html
6625 action dmxclient_8h-source.html
6626 action dmxcmap_8c.html
6627 action dmxcmap_8h.html
6628 action dmxcmap_8h-source.html
6629 action dmxcommon_8c.html
6630 action dmxcommon_8h.html
6631 action dmxcommon_8h-source.html
6632 action dmxcompat_8c.html
6633 action dmxcompat_8h.html
6634 action dmxcompat_8h-source.html
6635 action dmxconfig_8c.html
6636 action dmxconfig_8h.html
6637 action dmxconfig_8h-source.html
6638 action dmxconsole_8c.html
6639 action dmxconsole_8h.html
6640 action dmxconsole_8h-source.html
6641 action dmxcursor_8c.html
6642 action dmxcursor_8h.html
6643 action dmxcursor_8h-source.html
6644 action dmxdetach_8c.html
6645 action dmxdpms_8c.html
6646 action dmxdpms_8h.html
6647 action dmxdpms_8h-source.html
6648 action dmxdummy_8c.html
6649 action dmxdummy_8h.html
6650 action dmxdummy_8h-source.html
6651 action dmxeq_8c.html
6652 action dmxeq_8h.html
6653 action dmxeq_8h-source.html
6654 action dmxevents_8c.html
6655 action dmxevents_8h.html
6656 action dmxevents_8h-source.html
6657 action dmxext_8h.html
6658 action dmxext_8h-source.html
6659 action dmxextension_8c.html
6660 action dmxextension_8h.html
6661 action dmxextension_8h-source.html
6662 action dmxfont_8c.html
6663 action dmxfont_8h.html
6664 action dmxfont_8h-source.html
6665 action dmxgc_8c.html
6666 action dmxgc_8h.html
6667 action dmxgc_8h-source.html
6668 action dmxgcops_8c.html
6669 action dmxgcops_8h.html
6670 action dmxgcops_8h-source.html
6671 action dmx__glxvisuals_8h-source.html
6672 action dmxinit_8c.html
6673 action dmxinit_8h.html
6674 action dmxinit_8h-source.html
6675 action dmxinput_8c.html
6676 action dmxinput_8h.html
6677 action dmxinput_8h-source.html
6678 action dmxinputinit_8c.html
6679 action dmxinputinit_8h.html
6680 action dmxinputinit_8h-source.html
6681 action dmxlog_8c.html
6682 action dmxlog_8h.html
6683 action dmxlog_8h-source.html
6684 action dmxmap_8c.html
6685 action dmxmap_8h.html
6686 action dmxmap_8h-source.html
6687 action dmxmotion_8c.html
6688 action dmxmotion_8h.html
6689 action dmxmotion_8h-source.html
6690 action dmxparse_8c.html
6691 action dmxparse_8h.html
6692 action dmxparse_8h-source.html
6693 action dmxpict_8c.html
6694 action dmxpict_8h.html
6695 action dmxpict_8h-source.html
6696 action dmxpixmap_8c.html
6697 action dmxpixmap_8h.html
6698 action dmxpixmap_8h-source.html
6699 action dmxprint_8c.html
6700 action dmxprint_8h.html
6701 action dmxprint_8h-source.html
6702 action dmxprop_8c.html
6703 action dmxprop_8h.html
6704 action dmxprop_8h-source.html
6705 action dmxproto_8h.html
6706 action dmxproto_8h-source.html
6707 action dmxscrinit_8c.html
6708 action dmxscrinit_8h.html
6709 action dmxscrinit_8h-source.html
6710 action dmxshadow_8c.html
6711 action dmxshadow_8h.html
6712 action dmxshadow_8h-source.html
6713 action dmxsigio_8c.html
6714 action dmxsigio_8h.html
6715 action dmxsigio_8h-source.html
6716 action dmxstat_8c.html
6717 action dmxstat_8h.html
6718 action dmxstat_8h-source.html
6719 action dmxsync_8c.html
6720 action dmxsync_8h.html
6721 action dmxsync_8h-source.html
6722 action dmxvisual_8c.html
6723 action dmxvisual_8h.html
6724 action dmxvisual_8h-source.html
6725 action dmxwindow_8c.html
6726 action dmxwindow_8h.html
6727 action dmxwindow_8h-source.html
6728 action dmxxinput_8c.html
6729 action doxygen.css
6730 action doxygen.png
6731 action files.html
6732 action ftv2blank.png
6733 action ftv2doc.png
6734 action ftv2folderclosed.png
6735 action ftv2folderopen.png
6736 action ftv2lastnode.png
6737 action ftv2link.png
6738 action ftv2mlastnode.png
6739 action ftv2mnode.png
6740 action ftv2node.png
6741 action ftv2plastnode.png
6742 action ftv2pnode.png
6743 action ftv2vertline.png
6744 action functions.html
6745 action functions_vars.html
6746 action globals_defs.html
6747 action globals_enum.html
6748 action globals_eval.html
6749 action globals_func.html
6750 action globals.html
6751 action globals_type.html
6752 action globals_vars.html
6753 action index.html
6754 action lib_2dmx_2dmx_8c.html
6755 action lnx-keyboard_8c.html
6756 action lnx-keyboard_8h.html
6757 action lnx-keyboard_8h-source.html
6758 action lnx-ms_8c.html
6759 action lnx-ms_8h.html
6760 action lnx-ms_8h-source.html
6761 action lnx-ps2_8c.html
6762 action lnx-ps2_8h.html
6763 action lnx-ps2_8h-source.html
6764 action main.html
6765 action programs_2Xserver_2Xext_2dmx_8c.html
6766 action struct__dmxArg.html
6767 action struct__dmxColormapPriv.html
6768 action structDMXConfigCmdStruct.html
6769 action struct__DMXConfigComment.html
6770 action struct__DMXConfigDisplay.html
6771 action struct__DMXConfigEntry.html
6772 action struct__DMXConfigFullDim.html
6773 action structDMXConfigListStruct.html
6774 action struct__DMXConfigNumber.html
6775 action struct__DMXConfigOption.html
6776 action struct__DMXConfigPair.html
6777 action struct__DMXConfigParam.html
6778 action struct__DMXConfigPartDim.html
6779 action struct__DMXConfigString.html
6780 action struct__DMXConfigSub.html
6781 action struct__DMXConfigToken.html
6782 action struct__DMXConfigVirtual.html
6783 action struct__DMXConfigWall.html
6784 action struct__dmxCursorPriv.html
6785 action structDMXDesktopAttributes.html
6786 action structDMXDesktopAttributesRec.html
6787 action struct__DMXEventMap.html
6788 action struct__dmxFontPriv.html
6789 action struct__dmxGCPriv.html
6790 action structdmxGlxVisualPrivate.html
6791 action struct__dmxGlyphPriv.html
6792 action structDMXInputAttributes.html
6793 action structDMXInputAttributesRec.html
6794 action struct__DMXInputInfo.html
6795 action struct__DMXLocalInitInfo.html
6796 action struct__DMXLocalInputInfo.html
6797 action struct__dmxPictPriv.html
6798 action struct__dmxPixPriv.html
6799 action structDMXScreenAttributes.html
6800 action structDMXScreenAttributesRec.html
6801 action struct__DMXScreenInfo.html
6802 action struct__DMXStatAvg.html
6803 action struct__DMXStatInfo.html
6804 action structDMXWindowAttributes.html
6805 action structDMXWindowAttributesRec.html
6806 action struct__dmxWinPriv.html
6807 action struct__Event.html
6808 action struct__EventQueue.html
6809 action struct__myPrivate.html
6810 action structxDMXAddInputReply.html
6811 action structxDMXAddInputReq.html
6812 action structxDMXAddScreenReply.html
6813 action structxDMXAddScreenReq.html
6814 action structxDMXChangeDesktopAttributesReply.html
6815 action structxDMXChangeDesktopAttributesReq.html
6816 action structxDMXChangeScreensAttributesReply.html
6817 action structxDMXChangeScreensAttributesReq.html
6818 action structxDMXForceWindowCreationReply.html
6819 action structxDMXForceWindowCreationReq.html
6820 action structxDMXGetDesktopAttributesReply.html
6821 action structxDMXGetDesktopAttributesReq.html
6822 action structxDMXGetInputAttributesReply.html
6823 action structxDMXGetInputAttributesReq.html
6824 action structxDMXGetInputCountReply.html
6825 action structxDMXGetInputCountReq.html
6826 action structxDMXGetScreenAttributesReply.html
6827 action structxDMXGetScreenAttributesReq.html
6828 action structxDMXGetScreenCountReply.html
6829 action structxDMXGetScreenCountReq.html
6830 action structxDMXGetWindowAttributesReply.html
6831 action structxDMXGetWindowAttributesReq.html
6832 action structxDMXQueryVersionReply.html
6833 action structxDMXQueryVersionReq.html
6834 action structxDMXRemoveInputReply.html
6835 action structxDMXRemoveInputReq.html
6836 action structxDMXRemoveScreenReply.html
6837 action structxDMXRemoveScreenReq.html
6838 action structxDMXSyncReply.html
6839 action structxDMXSyncReq.html
6840 action tree.html
6841 action usb-common_8c.html
6842 action usb-common_8h.html
6843 action usb-common_8h-source.html
6844 action usb-keyboard_8c.html
6845 action usb-keyboard_8h.html
6846 action usb-keyboard_8h-source.html
6847 action usb-mouse_8c.html
6848 action usb-mouse_8h.html
6849 action usb-mouse_8h-source.html
6850 action usb-other_8c.html
6851 action usb-other_8h.html
6852 action usb-other_8h-source.html
6853 action usb-private_8h.html
6854 action usb-private_8h-source.html
6857 symlink_xserver_hw_dmx_examples() {
6858 src_dir programs/Xserver/hw/dmx/examples
6859 dst_dir xserver/xorg/hw/dmx/examples
6861 action dmxaddinput.c
6862 action dmxaddscreen.c
6863 action dmxreconfig.c
6864 action dmxresize.c
6865 action dmxrminput.c
6866 action dmxrmscreen.c
6867 action dmxwininfo.c
6868 action ev.c
6869 action evi.c
6870 action res.c
6871 action xbell.c
6872 action xdmx.c
6873 action xinput.c
6874 action xled.c
6875 action xtest.c
6878 symlink_xserver_hw_dmx_glxProxy() {
6879 src_dir programs/Xserver/hw/dmx/glxProxy
6880 dst_dir xserver/xorg/hw/dmx/glxProxy
6882 action compsize.c
6883 action g_disptab.c
6884 action g_disptab.h
6885 action g_renderswap.c
6886 action global.c
6887 action glxcmds.c
6888 action glxcmdsswap.c
6889 action glxcontext.h
6890 action glxdrawable.h
6891 action glxerror.h
6892 action glxext.c
6893 action glxext.h
6894 action glxfbconfig.c
6895 action glxfbconfig.h
6896 action glxscreens.c
6897 action glxscreens.h
6898 action glxserver.h
6899 action glxsingle.c
6900 action glxsingle.h
6901 action glxswap.c
6902 action glxswap.h
6903 action glxutil.c
6904 action glxutil.h
6905 action glxvendor.c
6906 action glxvendor.h
6907 action glxvisuals.c
6908 action glxvisuals.h
6909 action render2swap.c
6910 action renderpixswap.c
6911 action unpack.h
6914 symlink_xserver_hw_dmx_input() {
6915 src_dir programs/Xserver/hw/dmx/input
6916 dst_dir xserver/xorg/hw/dmx/input
6918 action ChkNotMaskEv.c
6919 action ChkNotMaskEv.h
6920 action dmxarg.c
6921 action dmxarg.h
6922 action dmxbackend.c
6923 action dmxbackend.h
6924 action dmxcommon.c
6925 action dmxcommon.h
6926 action dmxconsole.c
6927 action dmxconsole.h
6928 action dmxdetach.c
6929 action dmxdummy.c
6930 action dmxdummy.h
6931 action dmxeq.c
6932 action dmxeq.h
6933 action dmxevents.c
6934 action dmxevents.h
6935 action dmxinputinit.c
6936 action dmxinputinit.h
6937 action dmxmap.c
6938 action dmxmap.h
6939 action dmxmotion.c
6940 action dmxmotion.h
6941 action dmxsigio.c
6942 action dmxsigio.h
6943 action dmxxinput.c
6944 action lnx-keyboard.c
6945 action lnx-keyboard.h
6946 action lnx-ms.c
6947 action lnx-ms.h
6948 action lnx-ps2.c
6949 action lnx-ps2.h
6950 action usb-common.c
6951 action usb-common.h
6952 action usb-keyboard.c
6953 action usb-keyboard.h
6954 action usb-mouse.c
6955 action usb-mouse.h
6956 action usb-other.c
6957 action usb-other.h
6958 action usb-private.h
6961 # We skip most of Xserver/hw/sun since it's no longer maintained, but a
6962 # couple of files are useful still
6963 symlink_xserver_hw_sun() {
6964 src_dir programs/Xserver/hw/sun
6966 dst_dir xserver/xorg/hw/xfree86/utils/kbd_mode
6967 action kbd_mode.c sun-kbd_mode.c
6968 action kbd_mode.man sun-kbd_mode.man.pre
6970 dst_dir app/constype
6971 action constype.c
6972 action constype.man
6975 symlink_xserver_hw_vfb() {
6976 src_dir programs/Xserver/hw/vfb
6977 dst_dir xserver/xorg/hw/vfb
6979 action InitInput.c
6980 action InitOutput.c
6981 action lk201kbd.h
6983 action Xvfb.man Xvfb.1
6986 symlink_xserver_hw_xfree86_common() {
6987 src_dir programs/Xserver/hw/xfree86/common
6988 dst_dir xserver/xorg/hw/xfree86/common
6990 action atKeynames.h
6991 action compiler.h
6992 action fourcc.h
6993 action scoasm.h
6994 action xf86.h
6995 action xf86AutoConfig.c
6996 action xf86Bus.c
6997 action xf86Bus.h
6998 action xf86Config.c
6999 action xf86Config.h
7000 action xf86Configure.c
7001 action xf86Cursor.c
7002 action xf86DGA.c
7003 action xf86DPMS.c
7004 action xf86Debug.c
7005 action xf86DefModes.c
7006 action xf86DoProbe.c
7007 action xf86DoScanPci.c
7008 action xf86Events.c
7009 action xf86Globals.c
7010 action xf86Helper.c
7011 action xf86InPriv.h
7012 action xf86Init.c
7013 action xf86Io.c
7014 action xf86Kbd.c
7015 action xf86KbdBSD.c
7016 action xf86KbdLnx.c
7017 action xf86KbdMach.c
7018 action xf86Keymap.h
7019 action xf86MiscExt.c
7020 action xf86Mode.c
7021 action xf86Module.h
7022 action xf86Opt.h
7023 action xf86Option.c
7024 action xf86PM.c
7025 action xf86PciInfo.h
7026 action xf86Priv.h
7027 action xf86Privstr.h
7028 action xf86RandR.c
7029 action xf86Resources.h
7030 action xf86Versions.c
7031 action xf86VidMode.c
7032 action xf86XKB.c
7033 action xf86Xinput.c
7034 action xf86Xinput.h
7035 action xf86cmap.c
7036 action xf86cmap.h
7037 action xf86fbBus.c
7038 action xf86fbman.c
7039 action xf86fbman.h
7040 action xf86isaBus.c
7041 action xf86noBus.c
7042 action xf86pciBus.c
7043 action xf86pciBus.h
7044 action xf86sbusBus.c
7045 action xf86sbusBus.h
7046 action xf86str.h
7047 action xf86xv.c
7048 action xf86xv.h
7049 action xf86xvmc.c
7050 action xf86xvmc.h
7051 action xf86xvpriv.h
7052 action xisb.c
7053 action xisb.h
7054 action xorgHelper.c
7056 action modeline2c.pl
7058 src_dir programs/Xserver/hw/xfree86
7059 action xf86Date.h
7060 action xf86Version.h
7061 action xorgVersion.h
7064 symlink_xserver_hw_xfree86_ddc() {
7065 src_dir programs/Xserver/hw/xfree86/ddc
7066 dst_dir xserver/xorg/hw/xfree86/ddc
7068 action ddcPriv.h
7069 action ddcProperty.c
7070 action edid.c
7071 action edid.h
7072 action interpret_edid.c
7073 action interpret_vdif.c
7074 action print_edid.c
7075 action print_vdif.c
7076 action vdif.h
7077 action xf86DDC.c
7078 action xf86DDC.h
7080 action DDC.HOWTO
7083 symlink_xserver_hw_xfree86_doc() {
7085 # Docs generic to all Xservers in xserver-xorg module:
7086 src_dir programs/Xserver
7087 dst_dir xserver/xorg/doc
7088 action Xserver.man Xserver.man.pre
7090 src_dir programs/Xserver/hw/xfree86/doc
7091 dst_dir xserver/xorg/doc
7092 action smartsched
7094 # Docs specific to XFree86 DDX/Xorg server:
7096 src_dir programs/Xserver/hw/xfree86
7097 dst_dir xserver/xorg/hw/xfree86/doc/man
7099 action Xorg.man Xorg.man.pre
7100 action xorg.conf.man xorg.conf.man.pre
7102 dst_dir xserver/xorg/hw/xfree86/doc/devel
7103 action DebuggingHints
7104 action Domain.note
7105 action RAC.Notes
7106 action Registry
7108 dst_dir xserver/xorg/hw/xfree86/doc/changelogs
7109 action CHANGELOG
7110 action CHANGELOG.ND
7111 action CHANGELOG.R5
7113 src_dir programs/Xserver/hw/xfree86/doc
7114 dst_dir xserver/xorg/hw/xfree86/doc/devel
7115 action exa-driver.txt
7117 src_dir programs/Xserver/hw/xfree86/doc/sgml
7118 dst_dir xserver/xorg/hw/xfree86/doc/sgml
7119 action DESIGN.sgml
7121 # Docs about the entire Xorg distribution:
7123 dst_dir doc/old/sgml
7124 action Darwin.sgml
7125 action Install.sgml
7126 action LICENSE.sgml
7127 action LynxOS.sgml
7128 action NetBSD.sgml
7129 action OS2Notes.sgml
7130 action OpenBSD.sgml
7131 action README.sgml
7132 action RELNOTES.sgml
7133 action SCO.sgml
7134 action Solaris.sgml
7135 action Versions.sgml
7136 action XKB-Config.sgml
7137 action XKB-Enhancing.sgml
7138 action dps.sgml
7139 action fonts.sgml
7140 action index.post
7141 action index.pre
7143 # Entity files and scripts needed for all sgml docs:
7145 dst_dir doc/xorg-sgml-doctools
7146 action add.sh
7147 action defs.ent
7148 action mdefs.cpp mdefs.pre
7150 # Driver-specific docs:
7152 dst_dir driver/xf86-video-tga
7153 action DECtga.sgml README.sgml
7155 dst_dir driver/xf86-video-i128
7156 action I128.sgml README.sgml
7158 dst_dir driver/xf86-video-sis
7159 action SiS.sgml README.sgml
7161 dst_dir driver/xf86-video-apm
7162 action apm.sgml README.sgml
7164 dst_dir driver/xf86-video-ati
7165 action ati.sgml README.ati.sgml
7166 action r128.sgml README.r128.sgml
7168 dst_dir driver/xf86-video-chips
7169 action chips.sgml README.sgml
7171 dst_dir driver/xf86-video-cyrix
7172 action cyrix.sgml README.sgml
7174 dst_dir driver/xf86-video-i740
7175 action i740.sgml README.sgml
7177 dst_dir driver/xf86-video-i810
7178 action i810.sgml README.sgml
7180 dst_dir driver/xf86-input-mouse
7181 action mouse.sgml README.sgml
7183 dst_dir driver/xf86-video-newport
7184 action newport.sgml README.sgml
7186 dst_dir driver/xf86-video-rendition
7187 action rendition.sgml README.sgml
7189 dst_dir driver/xf86-video-s3virge
7190 action s3virge.sgml README.sgml
7193 symlink_xserver_hw_xfree86_etc() {
7194 src_dir programs/Xserver/hw/xfree86/etc
7196 dst_dir xserver/xorg/hw/xfree86/common
7197 action vesamodes
7198 action extramodes
7200 dst_dir xserver/xorg/hw/xfree86/utils/ioport
7201 action ioport.c
7203 dst_dir xserver/xorg/hw/xfree86/utils/kbd_mode
7204 action kbd_mode.c bsd-kbd_mode.c
7205 action kbd_mode.man bsd-kbd_mode.man.pre
7207 dst_dir xserver/xorg/hw/xfree86/utils/pcitweak
7208 action pcitweak.c
7209 action pcitweak.man pcitweak.man.pre
7211 dst_dir xserver/xorg/hw/xfree86/os-support/solaris
7212 action apSolaris.shar
7216 symlink_xserver_hw_xfree86_x86emu() {
7217 src_dir extras/x86emu/include
7218 dst_dir xserver/xorg/hw/xfree86/x86emu
7220 action x86emu.h
7222 src_dir extras/x86emu/src/x86emu
7224 action debug.c
7225 action decode.c
7226 action fpu.c
7227 action ops2.c
7228 action ops.c
7229 action prim_ops.c
7230 action sys.c
7231 action validate.c
7233 dst_dir xserver/xorg/hw/xfree86/x86emu/x86emu
7234 src_dir extras/x86emu/include/x86emu
7236 action fpu_regs.h
7237 action regs.h
7238 action types.h
7240 src_dir extras/x86emu/src/x86emu/x86emu
7242 action debug.h
7243 action decode.h
7244 action fpu.h
7245 action ops.h
7246 action prim_asm.h
7247 action prim_ops.h
7248 action x86emui.h
7252 symlink_xserver_hw_xfree86_dixmods() {
7253 dst_dir xserver/xorg/hw/xfree86/dixmods
7255 src_dir programs/Xserver/GL
7256 action glxmodule.c
7258 src_dir programs/Xserver/GL/mesa/GLcore
7259 action GLcoremodule.c
7261 src_dir programs/Xserver/afb
7262 action afbmodule.c
7264 src_dir lib/font/bitmap/module
7265 action bitmapmod.c
7267 src_dir lib/font/FreeType/module
7268 action ftmodule.c
7270 src_dir lib/font/Type1/module
7271 action type1mod.c
7273 src_dir programs/Xserver/cfb
7274 action cfbmodule.c
7276 src_dir programs/Xserver/cfb16
7277 action cfbmodule.c cfb16module.c
7279 src_dir programs/Xserver/cfb24
7280 action cfbmodule.c cfb24module.c
7282 src_dir programs/Xserver/cfb32
7283 action cfbmodule.c cfb32module.c
7285 src_dir programs/Xserver/dbe
7286 action dbemodule.c
7288 src_dir programs/Xserver/fb
7289 action fbmodule.c
7291 src_dir programs/Xserver/miext/layer
7292 action laymodule.c
7294 src_dir programs/Xserver/miext/shadow
7295 action shmodule.c
7297 src_dir programs/Xserver/mfb
7298 action mfbmodule.c
7300 src_dir programs/Xserver/record
7301 action recordmod.c
7304 symlink_xserver_hw_xfree86_dummylib() {
7305 src_dir programs/Xserver/hw/xfree86/dummylib
7306 dst_dir xserver/xorg/hw/xfree86/dummylib
7308 action README
7309 action dummylib.h
7310 action fatalerror.c
7311 action getvalidbios.c
7312 action logvwrite.c
7313 action pcitestmulti.c
7314 action verrorf.c
7315 action xalloc.c
7316 action xf86addrestolist.c
7317 action xf86allocscripi.c
7318 action xf86drvmsg.c
7319 action xf86drvmsgverb.c
7320 action xf86errorf.c
7321 action xf86errorfverb.c
7322 action xf86getpagesize.c
7323 action xf86getverb.c
7324 action xf86info.c
7325 action xf86msg.c
7326 action xf86msgverb.c
7327 action xf86opt.c
7328 action xf86screens.c
7329 action xf86servisinit.c
7330 action xf86verbose.c
7332 src_dir lib/misc
7333 action strlcat.c
7334 action strlcpy.c
7337 symlink_xserver_hw_xfree86_exa() {
7338 src_dir programs/Xserver/hw/xfree86/exa
7339 dst_dir xserver/xorg/hw/xfree86/exa
7341 action exaasync.c
7342 action exa.c
7343 action exa.h
7344 action exaoffscreen.c
7345 action exapict.c
7346 action exaPriv.h
7349 symlink_xserver_hw_xfree86_fbdevhw() {
7350 src_dir programs/Xserver/hw/xfree86/fbdevhw
7351 dst_dir xserver/xorg/hw/xfree86/fbdevhw
7353 action fbdevhw.c
7354 action fbdevhw.h
7355 action fbdevhwstub.c
7356 action fbpriv.h
7357 action README
7358 action fbdevhw.man fbdevhw.man.pre
7361 symlink_xserver_hw_xfree86_getconfig() {
7362 src_dir programs/Xserver/hw/xfree86/getconfig
7363 dst_dir xserver/xorg/hw/xfree86/getconfig
7365 action cfg.man cfg.man.pre
7366 action cfg.sample
7367 action getconfig.man getconfig.man.pre
7368 action getconfig.pl
7369 action getconfig.sh getconfig
7370 action xorg.cfg
7373 symlink_xserver_hw_xfree86_i2c() {
7374 src_dir programs/Xserver/hw/xfree86/i2c
7375 dst_dir xserver/xorg/hw/xfree86/i2c
7377 action xf86i2c.c
7378 action xf86i2c.h
7379 action xf86i2cmodule.c
7381 src_dir programs/Xserver/hw/xfree86/drivers/i2c
7382 dst_dir xserver/xorg/hw/xfree86/i2c
7384 action i2c_def.h
7386 action bt829.c
7387 action bt829.h
7388 action bt829_module.c
7390 action fi1236.c
7391 action fi1236.h
7392 action fi1236_module.c
7394 action msp3430.c
7395 action msp3430.h
7396 action msp3430_module.c
7398 action tda8425.c
7399 action tda8425.h
7400 action tda8425_module.c
7402 action tda9850.c
7403 action tda9850.h
7404 action tda9850_module.c
7406 action tda9885.c
7407 action tda9885.h
7408 action tda9885_module.c
7410 action uda1380.c
7411 action uda1380.h
7412 action uda1380_module.c
7415 symlink_xserver_hw_xfree86_int10() {
7416 src_dir programs/Xserver/hw/xfree86/int10
7417 dst_dir xserver/xorg/hw/xfree86/int10
7419 action generic.c
7420 action helper_exec.c
7421 action helper_mem.c
7422 action pci.c
7423 action stub.c
7424 action x86emu.c
7425 action xf86int10.c
7426 action xf86int10.h
7427 action xf86int10module.c
7428 action xf86x86emu.c
7429 action xf86x86emu.h
7430 action INT10.HOWTO
7433 symlink_xserver_hw_xfree86_loader() {
7434 src_dir programs/Xserver/hw/xfree86/loader
7435 dst_dir xserver/xorg/hw/xfree86/loader
7437 action SparcMulDiv.S
7438 action aout.h
7439 action aoutloader.c
7440 action aoutloader.h
7441 action ar.h
7442 action coff.h
7443 action coffloader.c
7444 action coffloader.h
7445 action dixsym.c
7446 action dlloader.c
7447 action dlloader.h
7448 action elf.h
7449 action elfloader.c
7450 action elfloader.h
7451 action extsym.c
7452 action fontsym.c
7453 action hash.c
7454 action hash.h
7455 action loader.c
7456 action loader.h
7457 action loaderProcs.h
7458 action loadext.c
7459 action loadfont.c
7460 action loadmod.c
7461 action misym.c
7462 action os.c
7463 action os2funcs.c
7464 action sym.h
7465 action xf86sym.c
7468 symlink_xserver_hw_xfree86_ossupport() {
7469 src_dir programs/Xserver/hw/xfree86/os-support
7470 dst_dir xserver/xorg/hw/xfree86/os-support
7472 action assyntax.h
7473 action int10Defines.h
7474 action xf86OSKbd.h
7475 action xf86OSmouse.h
7476 action xf86OSpriv.h
7477 action xf86_OSlib.h
7478 action xf86_OSproc.h
7479 action xf86_ansic.h
7480 action xf86_libc.h
7481 action xf86drm.h
7482 action xf86drmCompat.h
7484 action README.OS-lib
7487 symlink_xserver_hw_xfree86_ossupport_bsd() {
7488 src_dir programs/Xserver/hw/xfree86/os-support/bsd
7489 dst_dir xserver/xorg/hw/xfree86/os-support/bsd
7491 action alpha_video.c
7492 action arm_video.c
7493 action bsdResource.c
7494 action bsd_KbdMap.c
7495 action bsd_VTsw.c
7496 action bsd_apm.c
7497 action bsd_axp.c
7498 action bsd_ev56.c
7499 action bsd_init.c
7500 action bsd_io.c
7501 action bsd_jstk.c
7502 action bsd_kbd.c
7503 action bsd_kbd.h
7504 action bsd_kmod.c
7505 action bsd_kqueue_apm.c
7506 action bsd_mouse.c
7507 action i386_video.c
7508 action memrange.h
7509 action ppc_video.c
7510 action sparc64_video.c
7513 symlink_xserver_hw_xfree86_ossupport_bsd_libusb() {
7514 src_dir programs/Xserver/hw/xfree86/os-support/bsd/libusb
7515 dst_dir xserver/xorg/hw/xfree86/os-support/bsd/libusb
7517 action data.c
7518 action descr.c
7519 action parse.c
7520 action usage.c
7521 action usb.h
7522 action usbvar.h
7525 symlink_xserver_hw_xfree86_ossupport_bsdi() {
7526 src_dir programs/Xserver/hw/xfree86/os-support/bsdi
7527 dst_dir xserver/xorg/hw/xfree86/os-support/bsdi
7529 action bsdi_init.c
7530 action bsdi_io.c
7531 action bsdi_mouse.c
7532 action bsdi_video.c
7535 symlink_xserver_hw_xfree86_ossupport_bus() {
7536 src_dir programs/Xserver/hw/xfree86/os-support/bus
7537 dst_dir xserver/xorg/hw/xfree86/os-support/bus
7539 action 460gxPCI.c
7540 action 460gxPCI.h
7541 action Pci.c
7542 action Pci.h
7543 action Sbus.c
7544 action altixPCI.c
7545 action altixPCI.h
7546 action axpPci.c
7547 action e8870PCI.c
7548 action e8870PCI.h
7549 action freebsdPci.c
7550 action ix86Pci.c
7551 action linuxPci.c
7552 action netbsdPci.c
7553 action ppcPci.c
7554 action sparcPci.c
7555 action xf86Pci.h
7556 action xf86Sbus.h
7557 action zx1PCI.c
7558 action zx1PCI.h
7561 symlink_xserver_hw_xfree86_ossupport_dgux() {
7562 src_dir programs/Xserver/hw/xfree86/os-support/dgux
7563 dst_dir xserver/xorg/hw/xfree86/os-support/dgux
7565 action bios_DGmmap.c
7566 action dgux_init.c
7567 action dgux_io.c
7568 action dgux_kbd.c
7569 action dgux_kbdEv.c
7570 action dgux_tty.c
7571 action dgux_video.c
7574 symlink_xserver_hw_xfree86_ossupport_drm() {
7575 src_dir programs/Xserver/hw/xfree86/os-support/linux/drm
7576 dst_dir xserver/xorg/hw/xfree86/os-support/drm
7578 action drmmodule.c
7579 action xf86drm.c
7580 action xf86drmHash.c
7581 action xf86drmRandom.c
7582 action xf86drmSL.c
7585 symlink_xserver_hw_xfree86_ossupport_hurd() {
7586 src_dir programs/Xserver/hw/xfree86/os-support/hurd
7587 dst_dir xserver/xorg/hw/xfree86/os-support/hurd
7589 action bios_mmap.c
7590 action hurd_init.c
7591 action hurd_io.c
7592 action hurd_mouse.c
7593 action hurd_video.c
7596 symlink_xserver_hw_xfree86_ossupport_linux() {
7597 src_dir programs/Xserver/hw/xfree86/os-support/linux
7598 dst_dir xserver/xorg/hw/xfree86/os-support/linux
7600 action agpgart.h
7601 action lnx.h
7602 action lnxResource.c
7603 action lnx_KbdMap.c
7604 action lnx_acpi.c
7605 action lnx_agp.c
7606 action lnx_apm.c
7607 action lnx_axp.c
7608 action lnx_ev56.c
7609 action lnx_font.c
7610 action lnx_ia64.c
7611 action lnx_init.c
7612 action lnx_io.c
7613 action lnx_jstk.c
7614 action lnx_kbd.c
7615 action lnx_kbd.h
7616 action lnx_kmod.c
7617 action lnx_mouse.c
7618 action lnx_pci.c
7619 action lnx_video.c
7622 symlink_xserver_hw_xfree86_ossupport_linux_int10() {
7623 src_dir programs/Xserver/hw/xfree86/os-support/linux/int10
7624 dst_dir xserver/xorg/hw/xfree86/os-support/linux/int10
7626 action linux.c
7629 symlink_xserver_hw_xfree86_ossupport_linux_int10_vm86() {
7630 src_dir programs/Xserver/hw/xfree86/os-support/linux/int10/vm86
7631 dst_dir xserver/xorg/hw/xfree86/os-support/linux/int10/vm86
7633 action linux_vm86.c
7636 symlink_xserver_hw_xfree86_ossupport_lynxos() {
7637 src_dir programs/Xserver/hw/xfree86/os-support/lynxos
7638 dst_dir xserver/xorg/hw/xfree86/os-support/lynxos
7640 action lynx_init.c
7641 action lynx_io.c
7642 action lynx_mmap.c
7643 action lynx_mouse.c
7644 action lynx_noinline.c
7645 action lynx_ppc.c
7646 action lynx_video.c
7649 symlink_xserver_hw_xfree86_ossupport_misc() {
7650 src_dir programs/Xserver/hw/xfree86/os-support/misc
7651 dst_dir xserver/xorg/hw/xfree86/os-support/misc
7653 action BUSmemcpy.c
7654 action Delay.c
7655 action IODelay.c
7656 action SlowBcopy.c
7657 action xf86_IlHack.c
7658 action xf86_Util.c
7661 symlink_xserver_hw_xfree86_ossupport_nto() {
7662 src_dir programs/Xserver/hw/xfree86/os-support/nto
7663 dst_dir xserver/xorg/hw/xfree86/os-support/nto
7665 action nto_init.c
7666 action nto_io.c
7667 action nto_ioperm.c
7668 action nto_kbdEv.c
7669 action nto_mouse.c
7670 action nto_video.c
7673 symlink_xserver_hw_xfree86_ossupport_os2() {
7674 src_dir programs/Xserver/hw/xfree86/os-support/os2
7675 dst_dir xserver/xorg/hw/xfree86/os-support/os2
7677 action os2_VTsw.c
7678 action os2_bios.c
7679 action os2_diag.c
7680 action os2_init.c
7681 action os2_io.c
7682 action os2_ioperm.c
7683 action os2_kbd.c
7684 action os2_kbdEv.c
7685 action os2_mouse.c
7686 action os2_select.c
7687 action os2_select.h
7688 action os2_serial.c
7689 action os2_stubs.c
7690 action os2_video.c
7691 action README
7694 symlink_xserver_hw_xfree86_ossupport_os2_int10() {
7695 src_dir programs/Xserver/hw/xfree86/os-support/os2/int10
7696 dst_dir xserver/xorg/hw/xfree86/os-support/os2/int10
7698 action os2.c
7701 symlink_xserver_hw_xfree86_ossupport_pmax() {
7702 src_dir programs/Xserver/hw/xfree86/os-support/pmax
7703 dst_dir xserver/xorg/hw/xfree86/os-support/pmax
7705 action pmax_devs.c
7706 action pmax_init.c
7707 action pmax_map.c
7708 action pmax_mouse.c
7709 action pmax_pci.c
7710 action pmax_ppc.c
7713 symlink_xserver_hw_xfree86_ossupport_qnx4() {
7714 src_dir programs/Xserver/hw/xfree86/os-support/qnx4
7715 dst_dir xserver/xorg/hw/xfree86/os-support/qnx4
7717 action qnx_VTsw.c
7718 action qnx_init.c
7719 action qnx_io.c
7720 action qnx_kbd.c
7721 action qnx_mouse.c
7722 action qnx_select.c
7723 action qnx_utils.c
7724 action qnx_video.c
7727 symlink_xserver_hw_xfree86_ossupport_sco() {
7728 src_dir programs/Xserver/hw/xfree86/os-support/sco
7729 dst_dir xserver/xorg/hw/xfree86/os-support/sco
7731 action VTsw_sco.c
7732 action sco_init.c
7733 action sco_io.c
7734 action sco_iop.c
7735 action sco_mouse.c
7736 action sco_video.c
7739 symlink_xserver_hw_xfree86_ossupport_shared() {
7740 src_dir programs/Xserver/hw/xfree86/os-support/shared
7741 dst_dir xserver/xorg/hw/xfree86/os-support/shared
7743 action VTsw_noop.c
7744 action VTsw_usl.c
7745 action agp_noop.c
7746 action at_scancode.c
7747 action bios_devmem.c
7748 action bios_mmap.c
7749 action ia64Pci.c
7750 action ia64Pci.h
7751 action ioperm_noop.c
7752 action kbd.c
7753 action kmod_noop.c
7754 action libc_wrapper.c
7755 action pm_noop.c
7756 action posix_tty.c
7757 action sigio.c
7758 action sigiostubs.c
7759 action stdPci.c
7760 action stdResource.c
7761 action std_kbdEv.c
7762 action sysv_kbd.c
7763 action vidmem.c
7764 action xf86Axp.c
7765 action xf86Axp.h
7768 symlink_xserver_hw_xfree86_ossupport_sunos() {
7769 src_dir programs/Xserver/hw/xfree86/os-support/sunos
7770 dst_dir xserver/xorg/hw/xfree86/os-support/solaris
7772 action sun_agp.c
7773 action agpgart.h
7774 action sun_bios.c
7775 action sun_init.c
7776 action sun_io.c
7777 action sun_kbd.h
7778 action sun_kbd.c
7779 action sun_kbdEv.c
7780 action sun_mouse.c
7781 action sun_vid.c
7782 action solaris-amd64.S
7783 action solaris-ia32.S
7784 action solaris-sparcv8plus.S
7787 symlink_xserver_hw_xfree86_ossupport_sysv() {
7788 src_dir programs/Xserver/hw/xfree86/os-support/sysv
7789 dst_dir xserver/xorg/hw/xfree86/os-support/sysv
7791 action sysv_init.c
7792 action sysv_io.c
7793 action sysv_mouse.c
7794 action sysv_video.c
7795 action xqueue.c
7796 action xqueue.h
7799 symlink_xserver_hw_xfree86_parser() {
7800 src_dir programs/Xserver/hw/xfree86/parser
7801 dst_dir xserver/xorg/hw/xfree86/parser
7803 action Configint.h
7804 action DRI.c
7805 action Device.c
7806 action Extensions.c
7807 action Files.c
7808 action Flags.c
7809 action Input.c
7810 action Keyboard.c
7811 action Layout.c
7812 action Module.c
7813 action Monitor.c
7814 action Pointer.c
7815 action Screen.c
7816 action Vendor.c
7817 action Video.c
7818 action configProcs.h
7819 action cpconfig.c
7820 action read.c
7821 action scan.c
7822 action write.c
7823 action xf86Optrec.h
7824 action xf86Parser.h
7825 action xf86tokens.h
7828 symlink_xserver_hw_xfree86_rac() {
7829 src_dir programs/Xserver/hw/xfree86/rac
7830 dst_dir xserver/xorg/hw/xfree86/rac
7832 action xf86RAC.c
7833 action xf86RAC.h
7834 action xf86RACmodule.c
7837 symlink_xserver_hw_xfree86_ramdac() {
7838 src_dir programs/Xserver/hw/xfree86/ramdac
7839 dst_dir xserver/xorg/hw/xfree86/ramdac
7841 action BT.c
7842 action BT.h
7843 action BTPriv.h
7844 action IBM.c
7845 action IBM.h
7846 action IBMPriv.h
7847 action TI.c
7848 action TI.h
7849 action TIPriv.h
7850 action xf86Cursor.c
7851 action xf86Cursor.h
7852 action xf86CursorPriv.h
7853 action xf86HWCurs.c
7854 action xf86RamDac.c
7855 action xf86RamDac.h
7856 action xf86RamDacCmap.c
7857 action xf86RamDacMod.c
7858 action xf86RamDacPriv.h
7860 action CURSOR.NOTES
7863 symlink_xserver_hw_xfree86_scanpci() {
7864 src_dir programs/Xserver/hw/xfree86/scanpci
7865 dst_dir xserver/xorg/hw/xfree86/scanpci
7867 action xf86PciData.h
7868 action xf86PciStdIds.h
7869 action xf86PciStr.h
7870 action xf86ScanPci.c
7871 action xf86ScanPci.h
7873 action pciid2c.pl
7875 src_dir programs/Xserver/hw/xfree86/etc
7876 action pci.ids
7877 action extrapci.ids
7879 dst_dir xserver/xorg/hw/xfree86/utils/scanpci
7880 action scanpci.c
7881 action scanpci.man scanpci.man.pre
7884 symlink_xserver_hw_xfree86_shadowfb() {
7885 src_dir programs/Xserver/hw/xfree86/shadowfb
7886 dst_dir xserver/xorg/hw/xfree86/shadowfb
7888 action sfbmodule.c
7889 action shadow.c
7890 action shadowfb.h
7893 symlink_xserver_hw_xfree86_vbe() {
7894 src_dir programs/Xserver/hw/xfree86/vbe
7895 dst_dir xserver/xorg/hw/xfree86/vbe
7897 action vbe.c
7898 action vbe.h
7899 action vbeModes.c
7900 action vbeModes.h
7901 action vbe_module.c
7904 symlink_xserver_hw_xfree86_vgahw() {
7905 src_dir programs/Xserver/hw/xfree86/vgahw
7906 dst_dir xserver/xorg/hw/xfree86/vgahw
7908 action vgaCmap.c
7909 action vgaHW.c
7910 action vgaHW.h
7911 action vgaHWmodule.c
7914 symlink_xserver_hw_xfree86_xaa() {
7915 src_dir programs/Xserver/hw/xfree86/xaa
7916 dst_dir xserver/xorg/hw/xfree86/xaa
7918 action xaa.h
7919 action xaaBitBlt.c
7920 action xaaBitOrder.c
7921 action xaaBitmap.c
7922 action xaaCpyArea.c
7923 action xaaCpyPlane.c
7924 action xaaCpyWin.c
7925 action xaaDashLine.c
7926 action xaaFallback.c
7927 action xaaFillArc.c
7928 action xaaFillPoly.c
7929 action xaaFillRect.c
7930 action xaaGC.c
7931 action xaaGCmisc.c
7932 action xaaImage.c
7933 action xaaInit.c
7934 action xaaInitAccel.c
7935 action xaaLine.c
7936 action xaaLineMisc.c
7937 action xaaNonTEGlyph.c
7938 action xaaNonTEText.c
7939 action xaaOffscreen.c
7940 action xaaOverlay.c
7941 action xaaOverlayDF.c
7942 action xaaPCache.c
7943 action xaaPaintWin.c
7944 action xaaPict.c
7945 action xaaROP.c
7946 action xaaRect.c
7947 action xaaSpans.c
7948 action xaaStateChange.c
7949 action xaaStipple.c
7950 action xaaTEGlyph.c
7951 action xaaTEText.c
7952 action xaaTables.c
7953 action xaaWideLine.c
7954 action xaaWrapper.c
7955 action xaaWrapper.h
7956 action xaacexp.h
7957 action xaalocal.h
7958 action xaarop.h
7959 action xaawrap.h
7961 action XAA.HOWTO
7964 symlink_xserver_hw_xfree86_xf1bpp() {
7965 src_dir programs/Xserver/hw/xfree86/xf1bpp
7966 dst_dir xserver/xorg/hw/xfree86/xf1bpp
7968 action mfbmap.h
7969 action mfbmodule.c
7970 action mfbunmap.h
7971 action xf1bpp.h
7972 action mfbmap.sh
7973 action mfbunmap.sh
7976 symlink_xserver_hw_xfree86_xf4bpp() {
7977 src_dir programs/Xserver/hw/xfree86/xf4bpp
7978 dst_dir xserver/xorg/hw/xfree86/xf4bpp
7980 action OScompiler.h
7981 action emulOpStip.c
7982 action emulRepAre.c
7983 action emulTile.c
7984 action ibmTrace.h
7985 action mfbbres.c
7986 action mfbbresd.c
7987 action mfbfillarc.c
7988 action mfbhrzvert.c
7989 action mfbimggblt.c
7990 action mfbline.c
7991 action mfbzerarc.c
7992 action offscreen.c
7993 action ppcArea.c
7994 action ppcBStore.c
7995 action ppcCReduce.c
7996 action ppcClip.c
7997 action ppcCpArea.c
7998 action ppcDepth.c
7999 action ppcFillRct.c
8000 action ppcGC.c
8001 action ppcGCstr.h
8002 action ppcGetSp.c
8003 action ppcIO.c
8004 action ppcImg.c
8005 action ppcPixFS.c
8006 action ppcPixmap.c
8007 action ppcPntWin.c
8008 action ppcPolyPnt.c
8009 action ppcPolyRec.c
8010 action ppcQuery.c
8011 action ppcRslvC.c
8012 action ppcSetSp.c
8013 action ppcSpMcro.h
8014 action ppcWinFS.c
8015 action ppcWindow.c
8016 action vgaBitBlt.c
8017 action vgaGC.c
8018 action vgaImages.c
8019 action vgaReg.h
8020 action vgaSolid.c
8021 action vgaStipple.c
8022 action vgaVideo.h
8023 action vgamodule.c
8024 action wm3.c
8025 action wm3.h
8026 action xf4bpp.h
8028 action NOTES
8031 symlink_xserver_hw_xfree86_xf8_16bpp() {
8032 src_dir programs/Xserver/hw/xfree86/xf8_16bpp
8033 dst_dir xserver/xorg/hw/xfree86/xf8_16bpp
8035 action cfb8_16.h
8036 action cfb8_16module.c
8037 action cfbscrinit.c
8038 action cfbwindow.c
8041 symlink_xserver_hw_xfree86_xf8_32bpp() {
8042 src_dir programs/Xserver/hw/xfree86/xf8_32bpp
8043 dst_dir xserver/xorg/hw/xfree86/xf8_32bpp
8045 action cfb8_32.h
8046 action cfb8_32module.c
8047 action cfbbstore.c
8048 action cfbcpyarea.c
8049 action cfbcpyplane.c
8050 action cfbgc.c
8051 action cfbgcmisc.c
8052 action cfbgcunder.c
8053 action cfbimage.c
8054 action cfbpntwin.c
8055 action cfbscrinit.c
8056 action cfbwindow.c
8057 action xf86overlay.c
8060 symlink_xserver_hw_xfree86_xf8_32wid() {
8061 src_dir programs/Xserver/hw/xfree86/xf8_32wid
8062 dst_dir xserver/xorg/hw/xfree86/xf8_32wid
8064 action cfb8_32wid.h
8065 action cfb8_32widmodule.c
8066 action cfbscrinit.c
8067 action cfbwid.c
8068 action cfbwindow.c
8071 symlink_xserver_hw_xfree86_xf86cfg() {
8072 src_dir programs/Xserver/hw/xfree86/xf86cfg
8073 dst_dir xserver/xorg/hw/xfree86/utils/xorgcfg
8075 action TODO
8076 action XOrgCfg.cpp XOrgCfg.pre
8077 action accessx.c
8078 action card-cfg.c
8079 action card-cfg.h
8080 action card.xbm
8081 action card.xpm
8082 action cards.c
8083 action cards.h
8084 action computer.xpm
8085 action config.c
8086 action config.h
8087 action down.xbm
8088 action expert.c
8089 action help.c
8090 action help.h
8091 action interface.c
8092 action keyboard-cfg.c
8093 action keyboard-cfg.h
8094 action keyboard.xbm
8095 action keyboard.xpm
8096 action left.xbm
8097 action loader.c
8098 action loader.h
8099 action loadmod.c
8100 action monitor-cfg.c
8101 action monitor-cfg.h
8102 action monitor.xbm
8103 action monitor.xpm
8104 action mouse-cfg.c
8105 action mouse-cfg.h
8106 action mouse.xbm
8107 action mouse.xpm
8108 action narrower.xbm
8109 action options.c
8110 action options.h
8111 action right.xbm
8112 action screen-cfg.c
8113 action screen-cfg.h
8114 action screen.c
8115 action screen.h
8116 action shorter.xbm
8117 action startx.c
8118 action stubs.c
8119 action stubs.h
8120 action taller.xbm
8121 action text-mode.c
8122 action up.xbm
8123 action vidmode.c
8124 action vidmode.h
8125 action wider.xbm
8126 action xf86config.c
8127 action xf86config.h
8128 action xorgcfg.man xorgcfg.man.pre
8132 symlink_xserver_hw_xfree86_xf86config() {
8133 src_dir programs/Xserver/hw/xfree86/xf86config
8134 dst_dir xserver/xorg/hw/xfree86/utils/xorgconfig
8136 action Cards
8137 action Cards98
8138 action cards.c
8139 action cards.h
8140 action xorgconfig.c
8141 action xorgconfig.man xorgconfig.man.pre
8144 symlink_xserver_hw_xnest() {
8145 src_dir programs/Xserver/hw/xnest
8146 dst_dir xserver/xorg/hw/xnest
8148 action Args.c
8149 action Args.h
8150 action Color.c
8151 action Color.h
8152 action Cursor.c
8153 action Display.c
8154 action Display.h
8155 action Drawable.h
8156 action Events.c
8157 action Events.h
8158 action Font.c
8159 action GC.c
8160 action GCOps.c
8161 action GCOps.h
8162 action GetTime.c
8163 action Handlers.c
8164 action Handlers.h
8165 action Init.c
8166 action Init.h
8167 action Keyboard.c
8168 action Keyboard.h
8169 action Pixmap.c
8170 action Pointer.c
8171 action Pointer.h
8172 action Screen.c
8173 action Screen.h
8174 action TestExt.c
8175 action Visual.c
8176 action Visual.h
8177 action Window.c
8178 action XNCursor.h
8179 action XNFont.h
8180 action XNGC.h
8181 action XNPixmap.h
8182 action XNWindow.h
8183 action Xnest.h
8184 action icon
8185 action os2Stub.c
8186 action screensaver
8188 action Xnest.man Xnest.man.pre
8191 symlink_xserver_hw_xwin() {
8192 src_dir programs/Xserver/hw/xwin
8193 dst_dir xserver/xorg/hw/xwin
8195 action InitInput.c
8196 action InitOutput.c
8197 action ddraw.h
8198 action win.h
8199 action winallpriv.c
8200 action winauth.c
8201 action winblock.c
8202 action winclip.c
8203 action winclipboard.h
8204 action winclipboardinit.c
8205 action winclipboardtextconv.c
8206 action winclipboardthread.c
8207 action winclipboardunicode.c
8208 action winclipboardwndproc.c
8209 action winclipboardwrappers.c
8210 action winclipboardxevents.c
8211 action wincmap.c
8212 action winconfig.c
8213 action winconfig.h
8214 action wincreatewnd.c
8215 action wincursor.c
8216 action windialogs.c
8217 action winengine.c
8218 action winerror.c
8219 action winfillsp.c
8220 action winfont.c
8221 action wingc.c
8222 action wingetsp.c
8223 action winglobals.c
8224 action winkeybd.c
8225 action winkeybd.h
8226 action winkeyhook.c
8227 action winkeymap.h
8228 action winkeynames.h
8229 action winlayouts.h
8230 action winmessages.h
8231 action winmisc.c
8232 action winmouse.c
8233 action winms.h
8234 action winmsg.c
8235 action winmsg.h
8236 action winmultiwindowclass.c
8237 action winmultiwindowclass.h
8238 action winmultiwindowicons.c
8239 action winmultiwindowshape.c
8240 action winmultiwindowwindow.c
8241 action winmultiwindowwm.c
8242 action winmultiwindowwndproc.c
8243 action winnativegdi.c
8244 action winpfbdd.c
8245 action winpixmap.c
8246 action winpntwin.c
8247 action winpolyline.c
8248 action winprefs.c
8249 action winprefs.h
8250 action winprefsyacc.y
8251 action winprefslex.l
8252 action winpriv.c
8253 action winpriv.h
8254 action winprocarg.c
8255 action winpushpxl.c
8256 action winrandr.c
8257 action winregistry.c
8258 action winresource.h
8259 action winrop.c
8260 action winscrinit.c
8261 action winsetsp.c
8262 action winshaddd.c
8263 action winshadddnl.c
8264 action winshadgdi.c
8265 action wintrayicon.c
8266 action winvalargs.c
8267 action winvideo.c
8268 action winwakeup.c
8269 action winwin32rootless.c
8270 action winwin32rootlesswindow.c
8271 action winwin32rootlesswndproc.c
8272 action winwindow.c
8273 action winwindow.h
8274 action winwindowswm.c
8275 action winwndproc.c
8277 action XWin.rc
8278 action X.ico
8279 action X-boxed.ico
8281 action XWin.man XWin.1
8282 action XWinrc.man XWinrc.1
8284 action _usr_X11R6_lib_X11_system.XWinrc
8286 action ChangeLog
8287 action README
8290 symlink_xserver_hw_xwin_xlaunch() {
8291 src_dir programs/Xserver/hw/xwin/xlaunch
8292 dst_dir xserver/xorg/hw/xwin/xlaunch
8294 action config.cc
8295 action config.h
8296 action COPYING
8297 action main.cc
8298 action Makefile
8300 src_dir programs/Xserver/hw/xwin/xlaunch/resources
8301 dst_dir xserver/xorg/hw/xwin/xlaunch/resources
8303 action dialog.rc
8304 action fullscreen.bmp
8305 action images.rc
8306 action multiwindow.bmp
8307 action nodecoration.bmp
8308 action resources.h
8309 action resources.rc
8310 action strings.rc
8311 action windowed.bmp
8313 src_dir programs/Xserver/hw/xwin/xlaunch/window
8314 dst_dir xserver/xorg/hw/xwin/xlaunch/window
8316 action dialog.cc
8317 action dialog.h
8318 action util.cc
8319 action util.h
8320 action window.cc
8321 action window.h
8322 action wizard.cc
8323 action wizard.h
8326 symlink_xserver_ilbm() {
8327 src_dir programs/Xserver/ilbm
8328 dst_dir xserver/xorg/ilbm
8330 action ilbm.h
8331 action ilbmbitblt.c
8332 action ilbmblt.c
8333 action ilbmbres.c
8334 action ilbmbresd.c
8335 action ilbmbstore.c
8336 action ilbmclip.c
8337 action ilbmcmap.c
8338 action ilbmfillarc.c
8339 action ilbmfillrct.c
8340 action ilbmfillsp.c
8341 action ilbmfont.c
8342 action ilbmgc.c
8343 action ilbmgetsp.c
8344 action ilbmhrzvert.c
8345 action ilbmimage.c
8346 action ilbmimggblt.c
8347 action ilbmline.c
8348 action ilbmmisc.c
8349 action ilbmpixmap.c
8350 action ilbmply1rct.c
8351 action ilbmplygblt.c
8352 action ilbmpntarea.c
8353 action ilbmpntwin.c
8354 action ilbmpolypnt.c
8355 action ilbmpushpxl.c
8356 action ilbmscrinit.c
8357 action ilbmsetsp.c
8358 action ilbmtegblt.c
8359 action ilbmtile.c
8360 action ilbmwindow.c
8361 action ilbmzerarc.c
8363 action README
8366 symlink_xserver_include() {
8367 src_dir programs/Xserver/include
8368 dst_dir xserver/xorg/include
8370 action bstore.h
8371 action bstorestr.h
8372 action closestr.h
8373 action closure.h
8374 action colormap.h
8375 action colormapst.h
8376 action cursor.h
8377 action cursorstr.h
8378 action dixevents.h
8379 action dixfont.h
8380 action dixfontstr.h
8381 action dixgrabs.h
8382 action dix.h
8383 action dixstruct.h
8384 action exevents.h
8385 action extension.h
8386 action extinit.h
8387 action extnsionst.h
8388 action gc.h
8389 action gcstruct.h
8390 action globals.h
8391 action input.h
8392 action inputstr.h
8393 action misc.h
8394 action miscstruct.h
8395 action opaque.h
8396 action os.h
8397 action pixmap.h
8398 action pixmapstr.h
8399 action property.h
8400 action propertyst.h
8401 action region.h
8402 action regionstr.h
8403 action resource.h
8404 action rgb.h
8405 action screenint.h
8406 action scrnintstr.h
8407 action selection.h
8408 action servermd.h
8409 action site.h
8410 action swaprep.h
8411 action swapreq.h
8412 action validate.h
8413 action window.h
8414 action windowstr.h
8415 action XIstubs.h
8418 symlink_xserver_iplan2p2() {
8419 src_dir programs/Xserver/iplan2p2
8420 dst_dir xserver/xorg/iplan2p2
8423 symlink_xserver_iplan2p4() {
8424 src_dir programs/Xserver/iplan2p4
8425 dst_dir xserver/xorg/iplan2p4
8427 action ipl.h
8428 action iplallpriv.c
8429 action iplbitblt.c
8430 action iplblt.c
8431 action iplbres.c
8432 action iplbresd.c
8433 action iplbstore.c
8434 action iplcmap.c
8435 action iplfillarc.c
8436 action iplfillrct.c
8437 action iplfillsp.c
8438 action iplgc.c
8439 action iplgetsp.c
8440 action iplhrzvert.c
8441 action iplimage.c
8442 action iplline.c
8443 action iplmap.h
8444 action iplmergerop.h
8445 action iplmskbits.c
8446 action iplmskbits.h
8447 action iplpack.c
8448 action iplpack.h
8449 action iplpixmap.c
8450 action iplply1rct.c
8451 action iplpntwin.c
8452 action iplpolypnt.c
8453 action iplrrop.c
8454 action iplrrop.h
8455 action iplscrinit.c
8456 action iplsetsp.c
8457 action iplsolid.c
8458 action ipltegblt.c
8459 action ipltile32.c
8460 action ipltileodd.c
8461 action iplwindow.c
8464 symlink_xserver_iplan2p8() {
8465 src_dir programs/Xserver/iplan2p8
8466 dst_dir xserver/xorg/iplan2p8
8470 symlink_xserver_lbx() {
8471 src_dir programs/Xserver/lbx
8472 dst_dir xserver/xorg/lbx
8474 action lbxcmap.c
8475 action lbxdata.h
8476 action lbxdix.c
8477 action lbxexts.c
8478 action lbxgfx.c
8479 action lbxmain.c
8480 action lbxopts.c
8481 action lbxprop.c
8482 action lbxserve.h
8483 action lbxsquish.c
8484 action lbxsrvopts.h
8485 action lbxswap.c
8486 action lbxtables.c
8487 action lbxtags.c
8488 action lbxtags.h
8489 action lbxzerorep.c
8492 symlink_xserver_mfb() {
8493 src_dir programs/Xserver/mfb
8494 dst_dir xserver/xorg/mfb
8496 action fastblt.h
8497 action maskbits.c
8498 action maskbits.h
8499 action mergerop.h
8500 action mfb.h
8501 action mfbbitblt.c
8502 action mfbblt.c
8503 action mfbbres.c
8504 action mfbbresd.c
8505 action mfbbstore.c
8506 action mfbclip.c
8507 action mfbcmap.c
8508 action mfbfillarc.c
8509 action mfbfillrct.c
8510 action mfbfillsp.c
8511 action mfbfont.c
8512 action mfbgc.c
8513 action mfbgetsp.c
8514 action mfbhrzvert.c
8515 action mfbimage.c
8516 action mfbimggblt.c
8517 action mfbline.c
8518 action mfbmisc.c
8519 action mfbpixmap.c
8520 action mfbply1rct.c
8521 action mfbplygblt.c
8522 action mfbpntarea.c
8523 action mfbpntwin.c
8524 action mfbpolypnt.c
8525 action mfbpushpxl.c
8526 action mfbscrclse.c
8527 action mfbscrinit.c
8528 action mfbsetsp.c
8529 action mfbtegblt.c
8530 action mfbtile.c
8531 action mfbwindow.c
8532 action mfbzerarc.c
8535 symlink_xserver_mi() {
8536 src_dir programs/Xserver/mi
8537 dst_dir xserver/xorg/mi
8539 action cbrt.c
8540 action mi.h
8541 action miarc.c
8542 action mibank.c
8543 action mibank.h
8544 action mibitblt.c
8545 action mibstore.c
8546 action mibstore.h
8547 action mibstorest.h
8548 action miclipn.c
8549 action micmap.c
8550 action micmap.h
8551 action micoord.h
8552 action micursor.c
8553 action midash.c
8554 action midispcur.c
8555 action mieq.c
8556 action miexpose.c
8557 action mifillarc.c
8558 action mifillarc.h
8559 action mifillrct.c
8560 action mifpoly.h
8561 action mifpolycon.c
8562 action migc.c
8563 action migc.h
8564 action miglblt.c
8565 action miinitext.c
8566 action miline.h
8567 action mioverlay.c
8568 action mioverlay.h
8569 action mipointer.c
8570 action mipointer.h
8571 action mipointrst.h
8572 action mipoly.c
8573 action mipoly.h
8574 action mipolycon.c
8575 action mipolygen.c
8576 action mipolypnt.c
8577 action mipolyrect.c
8578 action mipolyseg.c
8579 action mipolytext.c
8580 action mipolyutil.c
8581 action mipushpxl.c
8582 action miregion.c
8583 action miscanfill.h
8584 action miscrinit.c
8585 action mispans.c
8586 action mispans.h
8587 action misprite.c
8588 action misprite.h
8589 action mispritest.h
8590 action mistruct.h
8591 action mivalidate.h
8592 action mivaltree.c
8593 action miwideline.c
8594 action miwideline.h
8595 action miwindow.c
8596 action mizerarc.c
8597 action mizerarc.h
8598 action mizerclip.c
8599 action mizerline.c
8602 symlink_xserver_miext_cw() {
8603 src_dir programs/Xserver/miext/cw
8604 dst_dir xserver/xorg/miext/cw
8606 action cw.c
8607 action cw.h
8608 action cw_ops.c
8609 action cw_render.c
8612 symlink_xserver_miext_damage() {
8613 src_dir programs/Xserver/miext/damage
8614 dst_dir xserver/xorg/miext/damage
8616 action damage.c
8617 action damage.h
8618 action damagestr.h
8621 symlink_xserver_miext_layer() {
8622 src_dir programs/Xserver/miext/layer
8623 dst_dir xserver/xorg/miext/layer
8625 action layer.h
8626 action layergc.c
8627 action layerinit.c
8628 action layerpict.c
8629 action layerstr.h
8630 action layerwin.c
8633 symlink_xserver_miext_rootless() {
8634 src_dir programs/Xserver/miext/rootless
8635 dst_dir xserver/xorg/miext/rootless
8637 action rootless.h
8638 action rootlessCommon.c
8639 action rootlessCommon.h
8640 action rootlessConfig.h
8641 action rootlessGC.c
8642 action rootlessScreen.c
8643 action rootlessValTree.c
8644 action rootlessWindow.c
8645 action rootlessWindow.h
8647 action README.txt
8650 symlink_xserver_miext_rootless_accel() {
8651 src_dir programs/Xserver/miext/rootless/accel
8652 dst_dir xserver/xorg/miext/rootless/accel
8654 action rlAccel.c
8655 action rlAccel.h
8656 action rlBlt.c
8657 action rlCopy.c
8658 action rlFill.c
8659 action rlFillRect.c
8660 action rlFillSpans.c
8661 action rlGlyph.c
8662 action rlSolid.c
8665 symlink_xserver_miext_rootless_safealpha() {
8666 src_dir programs/Xserver/miext/rootless/safeAlpha
8667 dst_dir xserver/xorg/miext/rootless/safeAlpha
8669 action safeAlpha.h
8670 action safeAlphaPicture.c
8671 action safeAlphaWindow.c
8674 symlink_xserver_miext_shadow() {
8675 src_dir programs/Xserver/miext/shadow
8676 dst_dir xserver/xorg/miext/shadow
8678 action shadow.c
8679 action shadow.h
8680 action shalloc.c
8681 action shpacked.c
8682 action shplanar.c
8683 action shplanar8.c
8684 action shrot16pack.c
8685 action shrot16pack_180.c
8686 action shrot16pack_270.c
8687 action shrot16pack_90.c
8688 action shrot32pack.c
8689 action shrot32pack_180.c
8690 action shrot32pack_270.c
8691 action shrot32pack_90.c
8692 action shrot8pack.c
8693 action shrot8pack_180.c
8694 action shrot8pack_270.c
8695 action shrot8pack_90.c
8696 action shrotate.c
8697 action shrotpack.h
8700 symlink_xserver_os() {
8701 src_dir programs/Xserver/os
8702 dst_dir xserver/xorg/os
8704 action WaitFor.c
8705 action access.c
8706 action auth.c
8707 action connection.c
8708 action io.c
8709 action k5auth.c
8710 action lbxio.c
8711 action log.c
8712 action mitauth.c
8713 action oscolor.c
8714 action osdep.h
8715 action osinit.c
8716 action rpcauth.c
8717 action secauth.c
8718 action utils.c
8719 action xalloc.c
8720 action xdmauth.c
8721 action xdmcp.c
8722 action xprintf.c
8725 symlink_xserver_randr() {
8726 src_dir programs/Xserver/randr
8727 dst_dir xserver/xorg/randr
8729 action mirandr.c
8730 action randr.c
8731 action randrstr.h
8734 symlink_xserver_record() {
8735 src_dir programs/Xserver/record
8736 dst_dir xserver/xorg/record
8738 action record.c
8739 action set.c
8740 action set.h
8743 symlink_xserver_render() {
8744 src_dir programs/Xserver/render
8745 dst_dir xserver/xorg/render
8747 action animcur.c
8748 action filter.c
8749 action glyph.c
8750 action glyphstr.h
8751 action miglyph.c
8752 action miindex.c
8753 action mipict.c
8754 action mipict.h
8755 action mirect.c
8756 action mitrap.c
8757 action mitri.c
8758 action picture.c
8759 action picture.h
8760 action picturestr.h
8761 action render.c
8762 action renderedge.c
8763 action renderedge.h
8766 symlink_xserver_xfixes() {
8767 src_dir programs/Xserver/xfixes
8768 dst_dir xserver/xorg/xfixes
8770 action cursor.c
8771 action region.c
8772 action saveset.c
8773 action select.c
8774 action xfixes.c
8775 action xfixes.h
8776 action xfixesint.h
8779 symlink_xserver_xkb() {
8780 src_dir programs/Xserver/xkb
8781 dst_dir xserver/xorg/xkb
8783 action ddxBeep.c
8784 action ddxConfig.c
8785 action ddxCtrls.c
8786 action ddxDevBtn.c
8787 action ddxFakeBtn.c
8788 action ddxFakeMtn.c
8789 action ddxInit.c
8790 action ddxKeyClick.c
8791 action ddxKillSrv.c
8792 action ddxLEDs.c
8793 action ddxList.c
8794 action ddxLoad.c
8795 action ddxPrivate.c
8796 action ddxVT.c
8797 action xkb.c
8798 action xkb.h
8799 action xkbAccessX.c
8800 action xkbActions.c
8801 action xkbDflts.h
8802 action xkbEvents.c
8803 action xkbInit.c
8804 action xkbLEDs.c
8805 action xkbPrKeyEv.c
8806 action xkbPrOtherEv.c
8807 action xkbSwap.c
8808 action xkbUtils.c
8810 src_dir lib/X11
8811 action XKBAlloc.c
8812 action XKBGAlloc.c
8813 action XKBMAlloc.c
8814 action XKBMisc.c
8816 src_dir lib/xkbfile
8817 action maprules.c
8818 action xkbconfig.c
8819 action xkberrs.c
8820 action xkbmisc.c xkbfmisc.c
8821 action xkbout.c
8822 action xkbtext.c
8823 action xkmread.c
8826 symlink_xserver_xprint_config_models() {
8827 # CANONBJ10E-GS
8828 src_dir programs/Xserver/XpConfig/C/print/models/CANONBJ10E-GS
8829 dst_dir xserver/xorg/XpConfig/C/print/models/CANONBJ10E-GS
8831 action model-config
8833 # CANONC3200-PS
8834 src_dir programs/Xserver/XpConfig/C/print/models/CANONC3200-PS
8835 dst_dir xserver/xorg/XpConfig/C/print/models/CANONC3200-PS
8837 action model-config
8839 # GSdefault
8840 src_dir programs/Xserver/XpConfig/C/print/models/GSdefault
8841 dst_dir xserver/xorg/XpConfig/C/print/models/GSdefault
8843 action model-config
8845 # HPDJ1600C
8846 src_dir programs/Xserver/XpConfig/C/print/models/HPDJ1600C
8847 dst_dir xserver/xorg/XpConfig/C/print/models/HPDJ1600C
8849 action model-config
8851 src_dir programs/Xserver/XpConfig/C/print/models/HPDJ1600C/fonts
8852 dst_dir xserver/xorg/XpConfig/C/print/models/HPDJ1600C/fonts
8854 action 9nb00051.pmf
8855 action 9nb00052.pmf
8856 action 9nb00053.pmf
8857 action 9nb00054.pmf
8858 action 9nb00055.pmf
8859 action 9nb00056.pmf
8860 action 9nb00057.pmf
8861 action 9nb00058.pmf
8862 action 9nb00059.pmf
8863 action 9nb00060.pmf
8864 action 9nb00061.pmf
8865 action 9nb00062.pmf
8866 action 9nb00063.pmf
8867 action 9nb00064.pmf
8868 action 9nb00065.pmf
8869 action 9nb00066.pmf
8870 action 9nb00067.pmf
8871 action 9nb00068.pmf
8872 action 9nb00069.pmf
8873 action 9nb00070.pmf
8874 action 9nb00071.pmf
8875 action 9nb00072.pmf
8876 action 9nb00073.pmf
8877 action 9nb00074.pmf
8878 action 9nb00075.pmf
8879 action 9nb00076.pmf
8880 action 9nb00077.pmf
8881 action 9nb00079.pmf
8882 action 9nb00080.pmf
8883 action 9nb00081.pmf
8884 action 9nb00082.pmf
8885 action 9nb00083.pmf
8886 action 9nb00084.pmf
8887 action 9nb00085.pmf
8888 action 9nb00086.pmf
8889 action 9nb00087.pmf
8890 action 9nb00088.pmf
8891 action 9nb00089.pmf
8892 action 9nb00090.pmf
8893 action 9nb00091.pmf
8894 action 9nb00092.pmf
8895 action 9nb00093.pmf
8896 action 9nb00094.pmf
8897 action fonts.alias
8898 action fonts.dir
8899 action lpr0ye1a.pmf
8900 action README
8902 # HPLJ4050-PS
8903 src_dir programs/Xserver/XpConfig/C/print/models/HPLJ4050-PS
8904 dst_dir xserver/xorg/XpConfig/C/print/models/HPLJ4050-PS
8906 action model-config
8908 # HPLJ4family
8909 src_dir programs/Xserver/XpConfig/C/print/models/HPLJ4family
8910 dst_dir xserver/xorg/XpConfig/C/print/models/HPLJ4family
8912 action model-config
8914 src_dir programs/Xserver/XpConfig/C/print/models/HPLJ4family/fonts
8915 dst_dir xserver/xorg/XpConfig/C/print/models/HPLJ4family/fonts
8917 action 9nb00051.pmf
8918 action 9nb00052.pmf
8919 action 9nb00053.pmf
8920 action 9nb00054.pmf
8921 action 9nb00055.pmf
8922 action 9nb00056.pmf
8923 action 9nb00057.pmf
8924 action 9nb00058.pmf
8925 action 9nb00059.pmf
8926 action 9nb00060.pmf
8927 action 9nb00061.pmf
8928 action 9nb00062.pmf
8929 action 9nb00063.pmf
8930 action 9nb00064.pmf
8931 action 9nb00065.pmf
8932 action 9nb00066.pmf
8933 action 9nb00067.pmf
8934 action 9nb00068.pmf
8935 action 9nb00069.pmf
8936 action 9nb00070.pmf
8937 action 9nb00071.pmf
8938 action 9nb00072.pmf
8939 action 9nb00073.pmf
8940 action 9nb00074.pmf
8941 action 9nb00075.pmf
8942 action 9nb00076.pmf
8943 action 9nb00077.pmf
8944 action 9nb00079.pmf
8945 action 9nb00080.pmf
8946 action 9nb00081.pmf
8947 action 9nb00082.pmf
8948 action 9nb00083.pmf
8949 action 9nb00084.pmf
8950 action 9nb00085.pmf
8951 action 9nb00086.pmf
8952 action 9nb00087.pmf
8953 action 9nb00088.pmf
8954 action 9nb00089.pmf
8955 action 9nb00090.pmf
8956 action 9nb00091.pmf
8957 action 9nb00092.pmf
8958 action 9nb00093.pmf
8959 action 9nb00094.pmf
8960 action fonts.alias
8961 action fonts.dir
8962 action lpr0ye1a.pmf
8963 action README
8965 # PS2PDFspooldir-GS
8966 src_dir programs/Xserver/XpConfig/C/print/models/PS2PDFspooldir-GS
8967 dst_dir xserver/xorg/XpConfig/C/print/models/PS2PDFspooldir-GS
8969 action model-config
8970 action ps2pdf_spooltodir.sh
8972 # PSdefault
8973 src_dir programs/Xserver/XpConfig/C/print/models/PSdefault
8974 dst_dir xserver/xorg/XpConfig/C/print/models/PSdefault
8976 action model-config
8978 src_dir programs/Xserver/XpConfig/C/print/models/PSdefault/fonts
8979 dst_dir xserver/xorg/XpConfig/C/print/models/PSdefault/fonts
8981 action AvantGarde-BookOblique.pmf
8982 action AvantGarde-Book.pmf
8983 action AvantGarde-DemiOblique.pmf
8984 action AvantGarde-Demi.pmf
8985 action Courier-BoldOblique.pmf
8986 action Courier-Bold.pmf
8987 action Courier-Oblique.pmf
8988 action Courier.pmf
8989 action Helvetica-BoldOblique.pmf
8990 action Helvetica-Bold.pmf
8991 action Helvetica-Oblique.pmf
8992 action Helvetica.pmf
8993 action LubalinGraph-BookOblique.pmf
8994 action LubalinGraph-Book.pmf
8995 action LubalinGraph-DemiOblique.pmf
8996 action LubalinGraph-Demi.pmf
8997 action NewCenturySchlbk-BoldItalic.pmf
8998 action NewCenturySchlbk-Bold.pmf
8999 action NewCenturySchlbk-Italic.pmf
9000 action NewCenturySchlbk-Roman.pmf
9001 action Souvenir-DemiItalic.pmf
9002 action Souvenir-Demi.pmf
9003 action Souvenir-LightItalic.pmf
9004 action Souvenir-Light.pmf
9005 action Symbol.pmf
9006 action Times-BoldItalic.pmf
9007 action Times-Bold.pmf
9008 action Times-Italic.pmf
9009 action Times-Roman.pmf
9010 action ZapfDingbats.pmf
9012 # PSspooldir
9013 src_dir programs/Xserver/XpConfig/C/print/models/PSspooldir
9014 dst_dir xserver/xorg/XpConfig/C/print/models/PSspooldir
9016 action model-config
9017 action spooltodir.sh
9019 # SPSPARC2
9020 src_dir programs/Xserver/XpConfig/C/print/models/SPSPARC2
9021 dst_dir xserver/xorg/XpConfig/C/print/models/SPSPARC2
9023 action model-config
9028 symlink_xserver_xprint_config() {
9029 src_dir programs/Xserver/XpConfig
9030 dst_dir xserver/xorg/XpConfig
9032 action README
9034 src_dir programs/Xserver/XpConfig/C/print
9035 dst_dir xserver/xorg/XpConfig/C/print
9037 action Xprinters
9039 src_dir programs/Xserver/XpConfig/C/print/attributes
9040 dst_dir xserver/xorg/XpConfig/C/print/attributes
9042 action document
9043 action job
9044 action printer
9046 src_dir programs/Xserver/XpConfig/C/print/ddx-config/raster
9047 dst_dir xserver/xorg/XpConfig/C/print/ddx-config/raster
9049 action pcl
9050 action postscript
9052 src_dir programs/Xserver/XpConfig/en_US/print/attributes
9053 dst_dir xserver/xorg/XpConfig/en_US/print/attributes
9055 action document
9057 symlink_xserver_xprint_config_models
9060 symlink_xserver() {
9061 symlink_xserver_GL_apple
9062 symlink_xserver_GL_dri
9063 symlink_xserver_GL_glx
9064 symlink_xserver_GL_include_GL
9065 symlink_xserver_GL_mesa_X
9066 symlink_xserver_GL_windows
9067 symlink_xserver_XTrap
9068 symlink_xserver_Xext
9069 symlink_xserver_Xext_extmod
9070 symlink_xserver_Xi
9071 symlink_xserver_Xprint
9072 symlink_xserver_Xprint_etc
9073 symlink_xserver_Xprint_ps
9074 symlink_xserver_Xprint_pcl
9075 symlink_xserver_Xprint_raster
9076 symlink_xserver_afb
9077 symlink_xserver_cfb
9078 symlink_xserver_cfb24
9079 symlink_xserver_composite
9080 symlink_xserver_damageext
9081 symlink_xserver_dbe
9082 symlink_xserver_dix
9083 symlink_xserver_fb
9084 symlink_xserver_hw_darwin
9085 symlink_xserver_hw_darwin_bundle
9086 symlink_xserver_hw_darwin_iokit
9087 symlink_xserver_hw_darwin_quartz
9088 symlink_xserver_hw_darwin_quartz_cr
9089 symlink_xserver_hw_darwin_quartz_fullscreen
9090 symlink_xserver_hw_darwin_quartz_xpr
9091 symlink_xserver_hw_darwin_utils
9092 symlink_xserver_hw_dmx
9093 symlink_xserver_hw_dmx_config
9094 symlink_xserver_hw_dmx_doc
9095 symlink_xserver_hw_dmx_examples
9096 symlink_xserver_hw_dmx_glxProxy
9097 symlink_xserver_hw_dmx_input
9098 symlink_xserver_hw_sun
9099 symlink_xserver_hw_vfb
9100 symlink_xserver_hw_xfree86_common
9101 symlink_xserver_hw_xfree86_ddc
9102 symlink_xserver_hw_xfree86_x86emu
9103 symlink_xserver_hw_xfree86_dixmods
9104 symlink_xserver_hw_xfree86_doc
9105 symlink_xserver_hw_xfree86_dummylib
9106 symlink_xserver_hw_xfree86_etc
9107 symlink_xserver_hw_xfree86_exa
9108 symlink_xserver_hw_xfree86_fbdevhw
9109 symlink_xserver_hw_xfree86_getconfig
9110 symlink_xserver_hw_xfree86_i2c
9111 symlink_xserver_hw_xfree86_int10
9112 symlink_xserver_hw_xfree86_loader
9113 symlink_xserver_hw_xfree86_ossupport
9114 symlink_xserver_hw_xfree86_ossupport_bsd
9115 symlink_xserver_hw_xfree86_ossupport_bsd_libusb
9116 symlink_xserver_hw_xfree86_ossupport_bsdi
9117 symlink_xserver_hw_xfree86_ossupport_bus
9118 symlink_xserver_hw_xfree86_ossupport_dgux
9119 symlink_xserver_hw_xfree86_ossupport_drm
9120 symlink_xserver_hw_xfree86_ossupport_hurd
9121 symlink_xserver_hw_xfree86_ossupport_linux
9122 symlink_xserver_hw_xfree86_ossupport_linux_int10
9123 symlink_xserver_hw_xfree86_ossupport_linux_int10_vm86
9124 symlink_xserver_hw_xfree86_ossupport_lynxos
9125 symlink_xserver_hw_xfree86_ossupport_misc
9126 symlink_xserver_hw_xfree86_ossupport_nto
9127 symlink_xserver_hw_xfree86_ossupport_os2
9128 symlink_xserver_hw_xfree86_ossupport_os2_int10
9129 symlink_xserver_hw_xfree86_ossupport_pmax
9130 symlink_xserver_hw_xfree86_ossupport_qnx4
9131 symlink_xserver_hw_xfree86_ossupport_sco
9132 symlink_xserver_hw_xfree86_ossupport_shared
9133 symlink_xserver_hw_xfree86_ossupport_sunos
9134 symlink_xserver_hw_xfree86_ossupport_sysv
9135 symlink_xserver_hw_xfree86_parser
9136 symlink_xserver_hw_xfree86_rac
9137 symlink_xserver_hw_xfree86_ramdac
9138 symlink_xserver_hw_xfree86_scanpci
9139 symlink_xserver_hw_xfree86_shadowfb
9140 symlink_xserver_hw_xfree86_vbe
9141 symlink_xserver_hw_xfree86_vgahw
9142 symlink_xserver_hw_xfree86_xaa
9143 symlink_xserver_hw_xfree86_xf1bpp
9144 symlink_xserver_hw_xfree86_xf4bpp
9145 symlink_xserver_hw_xfree86_xf8_16bpp
9146 symlink_xserver_hw_xfree86_xf8_32bpp
9147 symlink_xserver_hw_xfree86_xf8_32wid
9148 symlink_xserver_hw_xfree86_xf86cfg
9149 symlink_xserver_hw_xfree86_xf86config
9150 symlink_xserver_hw_xnest
9151 symlink_xserver_hw_xwin
9152 symlink_xserver_hw_xwin_xlaunch
9153 symlink_xserver_ilbm
9154 symlink_xserver_include
9155 symlink_xserver_iplan2p2
9156 symlink_xserver_iplan2p4
9157 symlink_xserver_iplan2p8
9158 symlink_xserver_lbx
9159 symlink_xserver_mfb
9160 symlink_xserver_mi
9161 symlink_xserver_miext_cw
9162 symlink_xserver_miext_damage
9163 symlink_xserver_miext_layer
9164 symlink_xserver_miext_rootless
9165 symlink_xserver_miext_rootless_accel
9166 symlink_xserver_miext_rootless_safealpha
9167 symlink_xserver_miext_shadow
9168 symlink_xserver_os
9169 symlink_xserver_randr
9170 symlink_xserver_record
9171 symlink_xserver_render
9172 symlink_xserver_xfixes
9173 symlink_xserver_xkb
9174 symlink_xserver_xprint_config
9175 # ...
9178 #########
9180 # The driver module
9182 #########
9185 symlink_driver_apm() {
9186 src_dir programs/Xserver/hw/xfree86/drivers/apm
9187 dst_dir driver/xf86-video-apm
9189 action README
9191 src_dir programs/Xserver/hw/xfree86/drivers/apm
9192 dst_dir driver/xf86-video-apm/src
9194 action apm.h
9195 action apm_accel.c
9196 action apm_cursor.c
9197 action apm_dga.c
9198 action apm_driver.c
9199 action apm_funcs.c
9200 action apm_i2c.c
9201 action apm_regs.h
9202 action apm_rush.c
9203 action apm_video.c
9205 dst_dir driver/xf86-video-apm/man
9207 action apm.man apm.4
9210 symlink_driver_ark() {
9211 src_dir programs/Xserver/hw/xfree86/drivers/ark
9212 dst_dir driver/xf86-video-ark/src
9214 action ark.h
9215 action ark_accel.c
9216 action ark_driver.c
9217 action ark_reg.h
9219 dst_dir driver/xf86-video-ark/man
9223 symlink_driver_ati() {
9224 src_dir programs/Xserver/hw/xfree86/drivers/ati
9225 dst_dir driver/xf86-video-ati/src
9227 action ati.c
9228 action ati.h
9229 action atiaccel.c
9230 action atiaccel.h
9231 action atiadapter.c
9232 action atiadapter.h
9233 action atiadjust.c
9234 action atiadjust.h
9235 action atiaudio.c
9236 action atiaudio.h
9237 action atibank.c
9238 action atibank.h
9239 action atibus.c
9240 action atibus.h
9241 action atichip.c
9242 action atichip.h
9243 action aticlock.c
9244 action aticlock.h
9245 action aticonfig.c
9246 action aticonfig.h
9247 action aticonsole.c
9248 action aticonsole.h
9249 action aticrtc.h
9250 action aticursor.c
9251 action aticursor.h
9252 action atidac.c
9253 action atidac.h
9254 action atidecoder.c
9255 action atidecoder.h
9256 action atidga.c
9257 action atidga.h
9258 action atidri.c
9259 action atidri.h
9260 action atidripriv.h
9261 action atidsp.c
9262 action atidsp.h
9263 action atifillin.c
9264 action atifillin.h
9265 action atii2c.c
9266 action atii2c.h
9267 action atiident.c
9268 action atiident.h
9269 action atiio.h
9270 action atiload.c
9271 action atiload.h
9272 action atilock.c
9273 action atilock.h
9274 action atimach64.c
9275 action atimach64.h
9276 action atimach64accel.c
9277 action atimach64accel.h
9278 action atimach64cursor.c
9279 action atimach64cursor.h
9280 action atimach64i2c.c
9281 action atimach64i2c.h
9282 action atimach64io.c
9283 action atimach64io.h
9284 action atimach64xv.c
9285 action atimach64xv.h
9286 action atimisc.c
9287 action atimode.c
9288 action atimode.h
9289 action atimodule.c
9290 action atimodule.h
9291 action atimono.h
9292 action atioption.c
9293 action atioption.h
9294 action atipreinit.c
9295 action atipreinit.h
9296 action atiprint.c
9297 action atiprint.h
9298 action atipriv.h
9299 action atiprobe.c
9300 action atiprobe.h
9301 action atiregs.h
9302 action atirgb514.c
9303 action atirgb514.h
9304 action atiscreen.c
9305 action atiscreen.h
9306 action atistruct.h
9307 action atituner.c
9308 action atituner.h
9309 action atiutil.c
9310 action atiutil.h
9311 action ativalid.c
9312 action ativalid.h
9313 action ativersion.h
9314 action ativga.c
9315 action ativga.h
9316 action ativgaio.c
9317 action ativgaio.h
9318 action atividmem.c
9319 action atividmem.h
9320 action atiwonder.c
9321 action atiwonder.h
9322 action atiwonderio.c
9323 action atiwonderio.h
9324 action atixv.c
9325 action atixv.h
9326 action generic_bus.h
9327 action mach64_common.h
9328 action mach64_dri.h
9329 action mach64_sarea.h
9330 action r128.h
9331 action r128_accel.c
9332 action r128_chipset.h
9333 action r128_common.h
9334 action r128_cursor.c
9335 action r128_dga.c
9336 action r128_dri.c
9337 action r128_dri.h
9338 action r128_dripriv.h
9339 action r128_driver.c
9340 action r128_misc.c
9341 action r128_probe.c
9342 action r128_probe.h
9343 action r128_reg.h
9344 action r128_sarea.h
9345 action r128_version.h
9346 action r128_video.c
9347 action radeon.h
9348 action radeon_accel.c
9349 action radeon_accelfuncs.c
9350 action radeon_bios.c
9351 action radeon_chipset.h
9352 action radeon_common.h
9353 action radeon_commonfuncs.c
9354 action radeon_cursor.c
9355 action radeon_dga.c
9356 action radeon_dri.c
9357 action radeon_dri.h
9358 action radeon_dripriv.h
9359 action radeon_driver.c
9360 action radeon_exa.c
9361 action radeon_exa_funcs.c
9362 action radeon_exa_render.c
9363 action radeon_macros.h
9364 action radeon_mergedfb.c
9365 action radeon_mergedfb.h
9366 action radeon_misc.c
9367 action radeon_mm_i2c.c
9368 action radeon_probe.c
9369 action radeon_probe.h
9370 action radeon_reg.h
9371 action radeon_render.c
9372 action radeon_sarea.h
9373 action radeon_version.h
9374 action radeon_video.c
9375 action radeon_video.h
9376 action radeon_vip.c
9377 action theatre.c
9378 action theatre.h
9379 action theatre200.c
9380 action theatre200.h
9381 action theatre200_module.c
9382 action theatre_detect.c
9383 action theatre_detect.h
9384 action theatre_detect_module.c
9385 action theatre_module.c
9386 action theatre_reg.h
9388 dst_dir driver/xf86-video-ati/man
9390 action ati.man ati.4
9391 action r128.man r128.4
9392 action radeon.man radeon.4
9395 symlink_driver_chips() {
9396 src_dir programs/Xserver/hw/xfree86/drivers/chips
9397 dst_dir driver/xf86-video-chips/src
9399 action ct_BlitMM.h
9400 action ct_Blitter.h
9401 action ct_BltHiQV.h
9402 action ct_accel.c
9403 action ct_bank.c
9404 action ct_cursor.c
9405 action ct_ddc.c
9406 action ct_dga.c
9407 action ct_driver.c
9408 action ct_driver.h
9409 action ct_regs.c
9410 action ct_shadow.c
9411 action ct_video.c
9413 dst_dir driver/xf86-video-chips/man
9415 action chips.man chips.4
9417 src_dir programs/Xserver/hw/xfree86/drivers/chips/util
9418 dst_dir driver/xf86-video-chips/util
9420 action AsmMacros.h
9421 action dRegs.c
9422 action modClock.c
9423 action mRegs.c
9426 symlink_driver_cirrus() {
9427 src_dir programs/Xserver/hw/xfree86/drivers/cirrus
9428 dst_dir driver/xf86-video-cirrus
9430 action README.multihead
9432 src_dir programs/Xserver/hw/xfree86/drivers/cirrus
9433 dst_dir driver/xf86-video-cirrus/src
9435 action CirrusClk.c
9436 action alp.h
9437 action alp_driver.c
9438 action alp_hwcurs.c
9439 action alp_i2c.c
9440 action alp_xaa.c
9441 action alp_xaam.c
9442 action cir.h
9443 action cir_dga.c
9444 action cir_driver.c
9445 action cir_shadow.c
9446 action lg.h
9447 action lg_driver.c
9448 action lg_hwcurs.c
9449 action lg_i2c.c
9450 action lg_xaa.c
9451 action lg_xaa.h
9453 dst_dir driver/xf86-video-cirrus/man
9455 action cirrus.man cirrus.4
9458 symlink_driver_cyrix() {
9459 src_dir programs/Xserver/hw/xfree86/drivers/cyrix
9460 dst_dir driver/xf86-video-cyrix
9462 action README
9463 action ChangeLog
9465 src_dir programs/Xserver/hw/xfree86/drivers/cyrix
9466 dst_dir driver/xf86-video-cyrix/src
9468 action cyrix.h
9469 action cyrix_accel.c
9470 action cyrix_bank.c
9471 action cyrix_driver.c
9472 action cyrix_helper.c
9473 action cyrix_shadow.c
9475 dst_dir driver/xf86-video-cyrix/man
9477 action cyrix.man cyrix.4
9480 symlink_driver_dummy() {
9481 src_dir programs/Xserver/hw/xfree86/drivers/dummy
9482 dst_dir driver/xf86-video-dummy/src
9484 action dummy.h
9485 action dummy_cursor.c
9486 action dummy_dga.c
9487 action dummy_driver.c
9489 dst_dir driver/xf86-video-dummy/man
9493 symlink_driver_fbdev() {
9494 src_dir programs/Xserver/hw/xfree86/drivers/fbdev
9495 dst_dir driver/xf86-video-fbdev/src
9497 action fbdev.c
9499 dst_dir driver/xf86-video-fbdev/man
9501 action fbdev.man fbdev.4
9504 symlink_driver_glide() {
9505 src_dir programs/Xserver/hw/xfree86/drivers/glide
9506 dst_dir driver/xf86-video-glide/src
9508 action glide_driver.c
9510 dst_dir driver/xf86-video-glide/man
9512 action glide.man glide.4
9515 symlink_driver_glint() {
9516 src_dir programs/Xserver/hw/xfree86/drivers/glint
9517 dst_dir driver/xf86-video-glint
9519 action DRI.txt
9520 action README.pm3
9522 src_dir programs/Xserver/hw/xfree86/drivers/glint
9523 dst_dir driver/xf86-video-glint/src
9525 action IBMramdac.c
9526 action TIramdac.c
9527 action glint.h
9528 action glint_common.h
9529 action glint_dga.c
9530 action glint_dri.c
9531 action glint_dri.h
9532 action glint_dripriv.h
9533 action glint_driver.c
9534 action glint_regs.h
9535 action glint_shadow.c
9536 action pm2_accel.c
9537 action pm2_dac.c
9538 action pm2_video.c
9539 action pm2ramdac.c
9540 action pm2v_dac.c
9541 action pm2vramdac.c
9542 action pm3_accel.c
9543 action pm3_dac.c
9544 action pm3_regs.h
9545 action pm3_video.c
9546 action pm_accel.c
9547 action pm_dac.c
9548 action sx_accel.c
9549 action tx_accel.c
9550 action tx_dac.c
9552 dst_dir driver/xf86-video-glint/man
9554 action glint.man glint.4
9557 symlink_driver_i128() {
9558 src_dir programs/Xserver/hw/xfree86/drivers/i128
9559 dst_dir driver/xf86-video-i128/src
9561 action IBMRGB.h
9562 action Ti302X.h
9563 action i128.h
9564 action i128IBMDAC.c
9565 action i128_driver.c
9566 action i128accel.c
9567 action i128dga.c
9568 action i128exa.c
9569 action i128init.c
9570 action i128reg.h
9572 dst_dir driver/xf86-video-i128/man
9574 action i128.man i128.4
9577 symlink_driver_i740() {
9578 src_dir programs/Xserver/hw/xfree86/drivers/i740
9579 dst_dir driver/xf86-video-i740/src
9581 action i740.h
9582 action i740_accel.c
9583 action i740_cursor.c
9584 action i740_dga.c
9585 action i740_dga.h
9586 action i740_driver.c
9587 action i740_i2c.c
9588 action i740_io.c
9589 action i740_macros.h
9590 action i740_reg.h
9591 action i740_video.c
9593 dst_dir driver/xf86-video-i740/man
9595 action i740.man i740.4
9598 symlink_driver_i810() {
9599 src_dir programs/Xserver/hw/xfree86/drivers/i810
9600 dst_dir driver/xf86-video-i810/src
9602 action common.h
9603 action i810.h
9604 action i810_accel.c
9605 action i810_common.h
9606 action i810_cursor.c
9607 action i810_dga.c
9608 action i810_dri.c
9609 action i810_dri.h
9610 action i810_driver.c
9611 action i810_hwmc.c
9612 action i810_io.c
9613 action i810_memory.c
9614 action i810_reg.h
9615 action i810_video.c
9616 action i810_wmark.c
9617 action i830.h
9618 action i830_accel.c
9619 action i830_common.h
9620 action i830_cursor.c
9621 action i830_dga.c
9622 action i830_dri.c
9623 action i830_dri.h
9624 action i830_driver.c
9625 action i830_memory.c
9626 action i830_modes.c
9627 action i830_shadow.c
9628 action i830_video.c
9630 dst_dir driver/xf86-video-i810/man
9632 action i810.man i810.4
9634 src_dir lib/XvMC/hw/i810
9635 dst_dir driver/xf86-video-i810/src/xvmc
9637 action I810XvMC.c
9638 action I810XvMC.h
9641 symlink_driver_imstt() {
9642 src_dir programs/Xserver/hw/xfree86/drivers/imstt
9643 dst_dir driver/xf86-video-imstt/src
9645 action imstt.h
9646 action imstt_accel.c
9647 action imstt_driver.c
9648 action imstt_reg.h
9650 dst_dir driver/xf86-video-imstt/man
9652 action imstt.man imstt.4
9655 symlink_driver_mga() {
9656 src_dir programs/Xserver/hw/xfree86/drivers/mga
9657 dst_dir driver/xf86-video-mga
9659 action mga_PInS.txt
9660 action README_HALLIB
9662 src_dir programs/Xserver/hw/xfree86/drivers/mga/util
9663 dst_dir driver/xf86-video-mga/util
9665 action README
9666 action stormdwg.c
9668 src_dir programs/Xserver/hw/xfree86/drivers/mga
9669 dst_dir driver/xf86-video-mga/src
9671 action client.h
9672 action clientlx.c
9673 action mga.h
9674 action mga_arc.c
9675 action mga_bios.c
9676 action mga_common.h
9677 action mga_dac3026.c
9678 action mga_dacG.c
9679 action mga_dga.c
9680 action mga_dh.c
9681 action mga_dri.c
9682 action mga_dri.h
9683 action mga_dripriv.h
9684 action mga_driver.c
9685 action mga_esc.c
9686 action mga_g450pll.c
9687 action mga_halmod.c
9688 action mga_hwcurs.c
9689 action mga_macros.h
9690 action mga_map.h
9691 action mga_maven.h
9692 action mga_merge.c
9693 action mga_merge.h
9694 action mga_reg.h
9695 action mga_sarea.h
9696 action mga_shadow.c
9697 action mga_storm.c
9698 action mga_ucode.h
9699 action mga_video.c
9700 action mgareg_flags.h
9702 src_dir programs/Xserver/hw/xfree86/drivers/mga/HALlib
9704 action binding.h
9706 src_dir programs/Xserver/hw/xfree86/drivers/mga
9707 dst_dir driver/xf86-video-mga/man
9709 action mga.man mga.4
9712 symlink_driver_neomagic() {
9713 src_dir programs/Xserver/hw/xfree86/drivers/neomagic
9714 dst_dir driver/xf86-video-neomagic
9716 action NM-reg.txt
9717 action README
9718 action TODO
9720 src_dir programs/Xserver/hw/xfree86/drivers/neomagic
9721 dst_dir driver/xf86-video-neomagic/src
9723 action neo.h
9724 action neo_2070.c
9725 action neo_2090.c
9726 action neo_2097.c
9727 action neo_2200.c
9728 action neo_bank.c
9729 action neo_cursor.c
9730 action neo_dga.c
9731 action neo_driver.c
9732 action neo_i2c.c
9733 action neo_macros.h
9734 action neo_reg.h
9735 action neo_shadow.c
9736 action neo_video.c
9737 action neo_video.h
9739 dst_dir driver/xf86-video-neomagic/man
9741 action neomagic.man neomagic.4
9744 symlink_driver_newport() {
9745 src_dir programs/Xserver/hw/xfree86/drivers/newport
9746 dst_dir driver/xf86-video-newport
9748 action XF86Config.indy
9750 src_dir programs/Xserver/hw/xfree86/drivers/newport
9751 dst_dir driver/xf86-video-newport/src
9753 action newport.h
9754 action newport_accel.c
9755 action newport_cmap.c
9756 action newport_cursor.c
9757 action newport_driver.c
9758 action newport_regs.c
9759 action newport_regs.h
9760 action newport_shadow.c
9762 dst_dir driver/xf86-video-newport/man
9764 action newport.man newport.4
9767 symlink_driver_nsc() {
9768 src_dir programs/Xserver/hw/xfree86/drivers/nsc
9769 dst_dir driver/xf86-video-nsc/src
9771 action durango.c
9772 action nsc.h
9773 action nsc_driver.c
9774 action nsc_fourcc.h
9775 action nsc_galfns.c
9776 action nsc_galstub.c
9777 action nsc_gx1_accel.c
9778 action nsc_gx1_cursor.c
9779 action nsc_gx1_dga.c
9780 action nsc_gx1_driver.c
9781 action nsc_gx1_shadow.c
9782 action nsc_gx1_video.c
9783 action nsc_gx2_accel.c
9784 action nsc_gx2_cursor.c
9785 action nsc_gx2_dga.c
9786 action nsc_gx2_driver.c
9787 action nsc_gx2_shadow.c
9788 action nsc_gx2_vga.c
9789 action nsc_gx2_video.c
9790 action nsc_regacc.c
9791 action nsc_msr_asm.S
9792 action panel.c
9794 dst_dir driver/xf86-video-nsc/man
9796 action nsc.man nsc.4
9798 src_dir programs/Xserver/hw/xfree86/drivers/nsc/gfx
9799 dst_dir driver/xf86-video-nsc/src/gfx
9801 action disp_gu1.c
9802 action disp_gu2.c
9803 action gfx_dcdr.c
9804 action gfx_defs.h
9805 action gfx_disp.c
9806 action gfx_i2c.c
9807 action gfx_init.c
9808 action gfx_mode.h
9809 action gfx_msr.c
9810 action gfx_regs.h
9811 action gfx_rndr.c
9812 action gfx_rtns.h
9813 action gfx_tv.c
9814 action gfx_type.h
9815 action gfx_vga.c
9816 action gfx_vid.c
9817 action gfx_vip.c
9818 action i2c_acc.c
9819 action i2c_gpio.c
9820 action init_gu1.c
9821 action init_gu2.c
9822 action msr_rdcl.c
9823 action rndr_gu1.c
9824 action rndr_gu2.c
9825 action saa7114.c
9826 action tv_1200.c
9827 action vga_gu1.c
9828 action vid_1200.c
9829 action vid_5530.c
9830 action vid_rdcl.c
9831 action vip_1200.c
9833 # These files are not actually used, but it probably makes sense to
9834 # distribute them along with the rest of gfx
9836 action durango.c
9837 action gfx_tv.h
9838 action history.h
9839 action release.txt
9840 action tv_fs450.c
9841 action tv_fs450.h
9842 action tv_fs451.c
9843 action tv_geode.c
9844 action vid_1400.c
9845 action vip_1400.c
9847 src_dir programs/Xserver/hw/xfree86/drivers/nsc/panel
9848 dst_dir driver/xf86-video-nsc/src/panel
9850 action 92xx.h
9851 action cen9211.c
9852 action cen9211.h
9853 action dora9211.c
9854 action dora9211.h
9855 action drac9210.c
9856 action drac9210.h
9857 action gx2_9211.c
9858 action gx2_9211.h
9859 action panel.c
9860 action panel.h
9861 action platform.c
9862 action pnl_bios.c
9863 action pnl_defs.h
9864 action pnl_init.c
9866 action readme.txt
9869 symlink_driver_nv() {
9870 src_dir programs/Xserver/hw/xfree86/drivers/nv
9871 dst_dir driver/xf86-video-nv/src
9873 action nv_const.h
9874 action nv_cursor.c
9875 action nv_dac.c
9876 action nv_dga.c
9877 action nv_dma.h
9878 action nv_driver.c
9879 action nv_hw.c
9880 action nv_include.h
9881 action nv_local.h
9882 action nv_proto.h
9883 action nv_setup.c
9884 action nv_shadow.c
9885 action nv_type.h
9886 action nv_video.c
9887 action nv_xaa.c
9888 action nvreg.h
9889 action nvvga.h
9890 action riva_const.h
9891 action riva_cursor.c
9892 action riva_dac.c
9893 action riva_dga.c
9894 action riva_driver.c
9895 action riva_hw.c
9896 action riva_hw.h
9897 action riva_include.h
9898 action riva_local.h
9899 action riva_proto.h
9900 action riva_setup.c
9901 action riva_shadow.c
9902 action riva_tbl.h
9903 action riva_type.h
9904 action riva_xaa.c
9906 dst_dir driver/xf86-video-nv/man
9908 action nv.man nv.4
9911 symlink_driver_rendition() {
9912 src_dir programs/Xserver/hw/xfree86/drivers/rendition
9913 dst_dir driver/xf86-video-rendition/src
9915 action README.uc
9916 action accel.h
9917 action accelX.c
9918 action cmd2d.h
9919 action commonregs.h
9920 action cscode.h
9921 action hwcursor.c
9922 action hwcursor.h
9923 action rendition.c
9924 action rendition.h
9925 action rendition_options.h
9926 action rendition_shadow.c
9927 action rendition_shadow.h
9928 action v10002d.uc
9929 action v20002d.uc
9930 action v1kregs.h
9931 action v1krisc.c
9932 action v1krisc.h
9933 action v2kregs.h
9934 action vboard.c
9935 action vboard.h
9936 action vloaduc.c
9937 action vloaduc.h
9938 action vmisc.c
9939 action vmisc.h
9940 action vmodes.c
9941 action vmodes.h
9942 action vos.h
9943 action vramdac.c
9944 action vramdac.h
9945 action vtypes.h
9947 action vgafont-std.data
9948 action vgafont-vrx.data
9949 action vgapalette.data
9951 dst_dir driver/xf86-video-rendition/man
9953 action rendition.man rendition.4
9956 symlink_driver_s3() {
9957 src_dir programs/Xserver/hw/xfree86/drivers/s3
9958 dst_dir driver/xf86-video-s3/src
9960 action newmmio.h
9961 action s3.h
9962 action s3_IBMRGB.c
9963 action s3_Ti.c
9964 action s3_Trio64DAC.c
9965 action s3_accel.c
9966 action s3_bios.c
9967 action s3_cursor.c
9968 action s3_dga.c
9969 action s3_driver.c
9970 action s3_reg.h
9971 action s3_video.c
9973 dst_dir driver/xf86-video-s3/man
9977 symlink_driver_s3virge() {
9978 src_dir programs/Xserver/hw/xfree86/drivers/s3virge
9979 dst_dir driver/xf86-video-s3virge
9981 action CALLMAP
9982 action README
9983 action TODO_NOTES
9985 src_dir programs/Xserver/hw/xfree86/drivers/s3virge
9986 dst_dir driver/xf86-video-s3virge/src
9988 action newmmio.h
9989 action regs3v.h
9990 action s3v.h
9991 action s3v_accel.c
9992 action s3v_dac.c
9993 action s3v_dga.c
9994 action s3v_driver.c
9995 action s3v_hwcurs.c
9996 action s3v_i2c.c
9997 action s3v_macros.h
9998 action s3v_rop.h
9999 action s3v_shadow.c
10000 action s3v_xv.c
10002 dst_dir driver/xf86-video-s3virge/man
10004 action s3virge.man s3virge.4
10007 symlink_driver_savage() {
10008 src_dir programs/Xserver/hw/xfree86/drivers/savage
10009 dst_dir driver/xf86-video-savage/src
10011 action savage_accel.c
10012 action savage_bci.h
10013 action savage_common.h
10014 action savage_cursor.c
10015 action savage_dga.c
10016 action savage_dri.c
10017 action savage_dri.h
10018 action savage_dripriv.h
10019 action savage_driver.c
10020 action savage_driver.h
10021 action savage_drm.h
10022 action savage_hwmc.c
10023 action savage_i2c.c
10024 action savage_image.c
10025 action savage_regs.h
10026 action savage_sarea.h
10027 action savage_shadow.c
10028 action savage_streams.c
10029 action savage_streams.h
10030 action savage_vbe.c
10031 action savage_vbe.h
10032 action savage_video.c
10034 dst_dir driver/xf86-video-savage/man
10036 action savage.man savage.4
10039 symlink_driver_siliconmotion() {
10040 src_dir programs/Xserver/hw/xfree86/drivers/siliconmotion
10041 dst_dir driver/xf86-video-siliconmotion
10043 action README
10044 action CALLMAP
10045 action Release.txt
10047 src_dir programs/Xserver/hw/xfree86/drivers/siliconmotion
10048 dst_dir driver/xf86-video-siliconmotion/src
10050 action regsmi.h
10051 action smi.h
10052 action smi_accel.c
10053 action smi_dac.c
10054 action smi_dga.c
10055 action smi_driver.c
10056 action smi_hwcurs.c
10057 action smi_i2c.c
10058 action smi_shadow.c
10059 action smi_video.c
10060 action smi_video.h
10062 dst_dir driver/xf86-video-siliconmotion/man
10064 action siliconmotion.man siliconmotion.4
10067 symlink_driver_sis() {
10068 src_dir programs/Xserver/hw/xfree86/drivers/sis
10069 dst_dir driver/xf86-video-sis/src
10071 action 300vtbl.h
10072 action 310vtbl.h
10073 action init.c
10074 action init.h
10075 action init301.c
10076 action init301.h
10077 action initdef.h
10078 action initextx.c
10079 action initextx.h
10080 action oem300.h
10081 action oem310.h
10082 action osdef.h
10083 action sis.h
10084 action sis300_accel.c
10085 action sis300_accel.h
10086 action sis310_accel.c
10087 action sis310_accel.h
10088 action sis6326_video.c
10089 action sis_accel.c
10090 action sis_accel.h
10091 action sis_common.h
10092 action sis_cursor.c
10093 action sis_cursor.h
10094 action sis_dac.c
10095 action sis_dac.h
10096 action sis_dga.c
10097 action sis_dri.c
10098 action sis_dri.h
10099 action sis_driver.c
10100 action sis_driver.h
10101 action sis_memcpy.c
10102 action sis_opt.c
10103 action sis_regs.h
10104 action sis_setup.c
10105 action sis_shadow.c
10106 action sis_utility.c
10107 action sis_vb.c
10108 action sis_vga.c
10109 action sis_video.c
10110 action sis_video.h
10111 action sis_videostr.h
10112 action vgatypes.h
10113 action vstruct.h
10115 dst_dir driver/xf86-video-sis/man
10117 action sis.man sis.4
10120 symlink_driver_sisusb() {
10121 src_dir programs/Xserver/hw/xfree86/drivers/sisusb
10122 dst_dir driver/xf86-video-sisusb/src
10124 action sisusb.h
10125 action sisusb_accel.c
10126 action sisusb_accel.h
10127 action sisusb_cursor.c
10128 action sisusb_cursor.h
10129 action sisusb_dac.c
10130 action sisusb_dac.h
10131 action sisusb_driver.c
10132 action sisusb_driver.h
10133 action sisusb_init.c
10134 action sisusb_init.h
10135 action sisusb_opt.c
10136 action sisusb_osdef.h
10137 action sisusb_regs.h
10138 action sisusb_setup.c
10139 action sisusb_shadow.c
10140 action sisusb_struct.h
10141 action sisusb_types.h
10142 action sisusb_utility.c
10143 action sisusb_vga.c
10144 action sisusb_video.c
10145 action sisusb_video.h
10146 action sisusb_videostr.h
10148 dst_dir driver/xf86-video-sisusb/man
10150 action sisusb.man sisusb.4
10153 symlink_driver_sunbw2() {
10154 src_dir programs/Xserver/hw/xfree86/drivers/sunbw2
10155 dst_dir driver/xf86-video-sunbw2/src
10157 action bw2.h
10158 action bw2_driver.c
10160 dst_dir driver/xf86-video-sunbw2/man
10162 action sunbw2.man sunbw2.4
10165 symlink_driver_suncg14() {
10166 src_dir programs/Xserver/hw/xfree86/drivers/suncg14
10167 dst_dir driver/xf86-video-suncg14/src
10169 action cg14.h
10170 action cg14_driver.c
10172 dst_dir driver/xf86-video-suncg14/man
10174 action suncg14.man subcg14.4
10177 symlink_driver_suncg3() {
10178 src_dir programs/Xserver/hw/xfree86/drivers/suncg3
10179 dst_dir driver/xf86-video-suncg3/src
10181 action cg3.h
10182 action cg3_driver.c
10184 dst_dir driver/xf86-video-suncg3/man
10186 action suncg3.man subcg3.4
10189 symlink_driver_suncg6() {
10190 src_dir programs/Xserver/hw/xfree86/drivers/suncg6
10191 dst_dir driver/xf86-video-suncg6/src
10193 action cg6.h
10194 action cg6_cursor.c
10195 action cg6_driver.c
10196 action cg6_regs.h
10198 dst_dir driver/xf86-video-suncg6/man
10200 action suncg6.man subcg6.4
10203 symlink_driver_sunffb() {
10204 src_dir programs/Xserver/hw/xfree86/drivers/sunffb
10205 dst_dir driver/xf86-video-sunffb/src
10207 action ffb.h
10208 action ffb_accel.c
10209 action ffb_attr.c
10210 action ffb_bcopy.c
10211 action ffb_checks.c
10212 action ffb_circle.c
10213 action ffb_clip.c
10214 action ffb_clip.h
10215 action ffb_cplane.c
10216 action ffb_cursor.c
10217 action ffb_dac.c
10218 action ffb_dac.h
10219 action ffb_dbe.c
10220 action ffb_ddc.c
10221 action ffb_dga.c
10222 action ffb_dri.c
10223 action ffb_drishare.h
10224 action ffb_driver.c
10225 action ffb_fifo.h
10226 action ffb_frect.c
10227 action ffb_fspans.c
10228 action ffb_gc.c
10229 action ffb_gc.h
10230 action ffb_glyph.c
10231 action ffb_gspans.c
10232 action ffb_line.c
10233 action ffb_loops.h
10234 action ffb_plygon.c
10235 action ffb_point.c
10236 action ffb_rcache.h
10237 action ffb_rect.c
10238 action ffb_regs.h
10239 action ffb_seg.c
10240 action ffb_sspans.c
10241 action ffb_stip.c
10242 action ffb_stip.h
10243 action ffb_stubs.c
10244 action ffb_wid.c
10245 action ffb_wline.c
10246 action ffb_zeroarc.c
10247 action ffb_asm.s
10248 action VISmoveImage.s
10250 dst_dir driver/xf86-video-sunffb/man
10252 action sunffb.man sunffb.4
10255 symlink_driver_sunleo() {
10256 src_dir programs/Xserver/hw/xfree86/drivers/sunleo
10257 dst_dir driver/xf86-video-sunleo/src
10259 action leo.h
10260 action leo_accel.c
10261 action leo_checks.c
10262 action leo_cursor.c
10263 action leo_driver.c
10264 action leo_frect.c
10265 action leo_frectsp.c
10266 action leo_fspans.c
10267 action leo_fspanssp.c
10268 action leo_glyph.c
10269 action leo_regs.h
10271 dst_dir driver/xf86-video-sunleo/man
10273 action sunleo.man sunleo.4
10276 symlink_driver_suntcx() {
10277 src_dir programs/Xserver/hw/xfree86/drivers/suntcx
10278 dst_dir driver/xf86-video-suntcx/src
10280 action tcx.h
10281 action tcx_cursor.c
10282 action tcx_driver.c
10283 action tcx_regs.h
10285 dst_dir driver/xf86-video-suntcx/man
10287 action suntcx.man suntcx.4
10290 symlink_driver_tdfx() {
10291 src_dir programs/Xserver/hw/xfree86/drivers/tdfx
10292 dst_dir driver/xf86-video-tdfx/src
10294 action tdfx.h
10295 action tdfx_accel.c
10296 action tdfx_dga.c
10297 action tdfx_dri.c
10298 action tdfx_dri.h
10299 action tdfx_dripriv.h
10300 action tdfx_driver.c
10301 action tdfx_hwcurs.c
10302 action tdfx_io.c
10303 action tdfx_priv.c
10304 action tdfx_priv.h
10305 action tdfx_sli.c
10306 action tdfx_video.c
10307 action tdfxdefs.h
10309 dst_dir driver/xf86-video-tdfx/man
10311 action tdfx.man tdfx.4
10314 symlink_driver_tga() {
10315 src_dir programs/Xserver/hw/xfree86/drivers/tga
10316 dst_dir driver/xf86-video-tga/src
10318 action BT463ramdac.c
10319 action BTramdac.c
10320 action IBM561ramdac.c
10321 action ICS1562.c
10322 action tga.h
10323 action tga_accel.c
10324 action tga_cursor.c
10325 action tga_dac.c
10326 action tga_driver.c
10327 action tga_line.c
10328 action tga_regs.h
10330 dst_dir driver/xf86-video-tga/man
10334 symlink_driver_trident() {
10335 src_dir programs/Xserver/hw/xfree86/drivers/trident
10336 dst_dir driver/xf86-video-trident/src
10338 action blade_accel.c
10339 action image_accel.c
10340 action trident.h
10341 action trident_accel.c
10342 action trident_bank.c
10343 action trident_dac.c
10344 action trident_dga.c
10345 action trident_driver.c
10346 action trident_i2c.c
10347 action trident_regs.h
10348 action trident_shadow.c
10349 action trident_tv.c
10350 action trident_video.c
10351 action tridenthelper.c
10352 action tridentramdac.c
10353 action tvga_dac.c
10354 action xp_accel.c
10356 dst_dir driver/xf86-video-trident/man
10358 action trident.man trident.4
10361 symlink_driver_tseng() {
10362 src_dir programs/Xserver/hw/xfree86/drivers/tseng
10363 dst_dir driver/xf86-video-tseng/src
10365 action README
10367 src_dir programs/Xserver/hw/xfree86/drivers/tseng
10368 dst_dir driver/xf86-video-tseng/src
10370 action tseng.h
10371 action tseng_accel.c
10372 action tseng_acl.c
10373 action tseng_acl.h
10374 action tseng_bank.c
10375 action tseng_clock.c
10376 action tseng_colexp.c
10377 action tseng_cursor.c
10378 action tseng_dga.c
10379 action tseng_dpms.c
10380 action tseng_driver.c
10381 action tseng_inline.h
10382 action tseng_ramdac.c
10384 dst_dir driver/xf86-video-tseng/man
10386 action tseng.man tseng.4
10389 symlink_driver_v4l() {
10390 src_dir programs/Xserver/hw/xfree86/drivers/v4l
10391 dst_dir driver/xf86-video-v4l
10393 action README
10395 dst_dir driver/xf86-video-v4l/src
10397 action v4l.c
10398 action videodev.h
10400 dst_dir driver/xf86-video-v4l/man
10402 action v4l.man v4l.4
10405 symlink_driver_vesa() {
10406 src_dir programs/Xserver/hw/xfree86/drivers/vesa
10407 dst_dir driver/xf86-video-vesa/src
10409 action vesa.c
10410 action vesa.h
10412 dst_dir driver/xf86-video-vesa/man
10414 action vesa.man vesa.4
10417 symlink_driver_vga() {
10418 src_dir programs/Xserver/hw/xfree86/drivers/vga
10419 dst_dir driver/xf86-video-vga/src
10421 action generic.c
10423 dst_dir driver/xf86-video-vga/man
10425 action vga.man vga.4
10428 symlink_driver_via() {
10429 src_dir programs/Xserver/hw/xfree86/drivers/via
10430 dst_dir driver/xf86-video-via/src
10432 action via.h
10433 action via_accel.c
10434 action via_bios.h
10435 action via_bandwidth.c
10436 action via_cursor.c
10437 action via_dga.c
10438 action via_dri.c
10439 action via_dri.h
10440 action via_driver.c
10441 action via_driver.h
10442 action via_i2c.c
10443 action via_id.c
10444 action via_id.h
10445 action via_memcpy.c
10446 action via_memcpy.h
10447 action via_memory.c
10448 action via_mode.c
10449 action via_mode.h
10450 action via_priv.h
10451 action via_regs.h
10452 action via_shadow.c
10453 action via_swov.c
10454 action via_swov.h
10455 action via_vgahw.c
10456 action via_vgahw.h
10457 action via_video.c
10458 action via_video.h
10459 action via_vt162x.c
10460 action via_vt162x.h
10461 action via_xvmc.c
10462 action via_xvmc.h
10463 action via_xvpriv.h
10464 action via_drmclient.h
10465 action via_vbe.c
10467 dst_dir driver/xf86-video-via/man
10469 action via.man via.4
10471 src_dir lib/XvMC/hw/via
10472 dst_dir driver/xf86-video-via/src/xvmc
10474 action driDrawable.c
10475 action driDrawable.h
10476 action viaLowLevel.h
10477 action viaXvMC.c
10478 action viaXvMCPriv.h
10479 action xf86dri.c
10480 action xf86dri.h
10481 action xf86dristr.h
10483 src_dir lib/XvMC/hw/via/unichrome
10484 dst_dir driver/xf86-video-via/src/xvmc/unichrome
10486 action viaLowLevel.c
10488 src_dir lib/XvMC/hw/via/unichromeProA
10489 dst_dir driver/xf86-video-via/src/xvmc/unichromeProA
10491 action viaLowLevelPro.c
10494 symlink_driver_vmware() {
10495 src_dir programs/Xserver/hw/xfree86/drivers/vmware
10496 dst_dir driver/xf86-video-vmware
10498 action README
10500 src_dir programs/Xserver/hw/xfree86/drivers/vmware
10501 dst_dir driver/xf86-video-vmware/src
10503 action bits2pixels.c
10504 action bits2pixels.h
10505 action guest_os.h
10506 action includeCheck.h
10507 action offscreen_manager.c
10508 action offscreen_manager.h
10509 action svga_limits.h
10510 action svga_reg.h
10511 action svga_struct.h
10512 action vm_basic_types.h
10513 action vm_device_version.h
10514 action vmware.c
10515 action vmware.h
10516 action vmwarecurs.c
10517 action vmwarexaa.c
10519 dst_dir driver/xf86-video-vmware/man
10521 action vmware.man vmware.4
10524 symlink_driver_voodoo() {
10525 src_dir programs/Xserver/hw/xfree86/drivers/voodoo
10526 dst_dir driver/xf86-video-voodoo
10528 action README
10529 action TODO
10531 src_dir programs/Xserver/hw/xfree86/drivers/voodoo
10532 dst_dir driver/xf86-video-voodoo/src
10534 action voodoo.h
10535 action voodoo_dga.c
10536 action voodoo_driver.c
10537 action voodoo_hardware.c
10539 dst_dir driver/xf86-video-voodoo/man
10541 action voodoo.man voodoo.4
10544 symlink_driver_wsfb() {
10545 src_dir programs/Xserver/hw/xfree86/drivers/wsfb
10546 dst_dir driver/xf86-video-wsfb/src
10548 action wsfb_driver.c
10550 dst_dir driver/xf86-video-wsfb/man
10552 action wsfb.man wsfb.4
10555 symlink_driver_acecad() {
10556 src_dir programs/Xserver/hw/xfree86/input/acecad
10557 dst_dir driver/xf86-input-acecad/src
10559 action acecad.c
10560 action acecad.h
10562 dst_dir driver/xf86-input-acecad/man
10564 action acecad.man acecad.4
10567 symlink_driver_aiptek() {
10568 src_dir programs/Xserver/hw/xfree86/input/aiptek
10569 dst_dir driver/xf86-input-aiptek/src
10571 action xf86Aiptek.c
10572 action xf86Aiptek.h
10574 dst_dir driver/xf86-input-aiptek/man
10576 action aiptek.man aiptek.4
10579 symlink_driver_calcomp() {
10580 src_dir programs/Xserver/hw/xfree86/input/calcomp
10581 dst_dir driver/xf86-input-calcomp/src
10583 action xf86Calcomp.c
10584 action xf86Calcomp.h
10586 dst_dir driver/xf86-input-calcomp/man
10588 action calcomp.man calcomp.4
10591 symlink_driver_citron() {
10592 src_dir programs/Xserver/hw/xfree86/input/citron
10593 dst_dir driver/xf86-input-citron/src
10595 action citron.c
10596 action citron.h
10598 dst_dir driver/xf86-input-citron/man
10600 action citron.man citron.4
10603 symlink_driver_digitaledge() {
10604 src_dir programs/Xserver/hw/xfree86/input/digitaledge
10605 dst_dir driver/xf86-input-digitaledge/src
10607 action DigitalEdge.c
10609 dst_dir driver/xf86-input-digitaledge/man
10613 symlink_driver_dmc() {
10614 src_dir programs/Xserver/hw/xfree86/input/dmc
10615 dst_dir driver/xf86-input-dmc/src
10617 action xf86DMC.c
10618 action xf86DMC.h
10620 dst_dir driver/xf86-input-dmc/man
10622 action dmc.man dmc.4
10625 symlink_driver_dynapro() {
10626 src_dir programs/Xserver/hw/xfree86/input/dynapro
10627 dst_dir driver/xf86-input-dynapro/src
10629 action xf86Dyna.c
10630 action xf86Dyna.h
10632 dst_dir driver/xf86-input-dynapro/man
10634 action dynapro.man dynapro.4
10637 symlink_driver_elo2300() {
10638 src_dir programs/Xserver/hw/xfree86/input/elo2300
10639 dst_dir driver/xf86-input-elo2300/src
10641 action elo.c
10642 action elo.h
10644 dst_dir driver/xf86-input-elo2300/man
10648 symlink_driver_elographics() {
10649 src_dir programs/Xserver/hw/xfree86/input/elographics
10650 dst_dir driver/xf86-input-elographics/src
10652 action xf86Elo.c
10654 dst_dir driver/xf86-input-elographics/man
10656 action elographics.man elographics.4
10659 symlink_driver_evdev() {
10660 src_dir programs/Xserver/hw/xfree86/input/evdev
10661 dst_dir driver/xf86-input-evdev/src
10663 action evdev.c
10665 dst_dir driver/xf86-input-evdev/man
10669 symlink_driver_fpit() {
10670 src_dir programs/Xserver/hw/xfree86/input/fpit
10672 dst_dir driver/xf86-input/fpit
10673 action readme.txt
10675 dst_dir driver/xf86-input-fpit/src
10676 action xf86Fpit.c
10678 dst_dir driver/xf86-input-fpit/man
10679 action fpit.man fpit.4
10682 symlink_driver_hyperpen() {
10683 src_dir programs/Xserver/hw/xfree86/input/hyperpen
10684 dst_dir driver/xf86-input-hyperpen/src
10686 action xf86HyperPen.c
10688 dst_dir driver/xf86-input-hyperpen/man
10692 symlink_driver_jamstudio() {
10693 src_dir programs/Xserver/hw/xfree86/input/jamstudio
10694 dst_dir driver/xf86-input-jamstudio/src
10696 action js_x.c
10698 dst_dir driver/xf86-input-jamstudio/man
10700 action js_x.man js_x.4
10703 symlink_driver_joystick() {
10704 src_dir programs/Xserver/hw/xfree86/input/joystick
10705 dst_dir driver/xf86-input-joystick/src
10707 action xf86Jstk.c
10709 dst_dir driver/xf86-input-joystick/man
10713 symlink_driver_keyboard() {
10714 src_dir programs/Xserver/hw/xfree86/input/keyboard
10715 dst_dir driver/xf86-input-keyboard/src
10717 action kbd.c
10719 dst_dir driver/xf86-input-keyboard/man
10721 action kbd.man kbd.4
10722 action keyboard.man keyboard.4
10725 symlink_driver_magellan() {
10726 src_dir programs/Xserver/hw/xfree86/input/magellan
10727 dst_dir driver/xf86-input-magellan/src
10729 action magellan.c
10730 action magellan.h
10732 dst_dir driver/xf86-input-magellan/man
10736 symlink_driver_magictouch() {
10737 src_dir programs/Xserver/hw/xfree86/input/magictouch
10738 dst_dir driver/xf86-input-magictouch/src
10740 action xf86MagicTouch.c
10742 dst_dir driver/xf86-input-magictouch/man
10744 action magictouch.man magictouch.4
10747 symlink_driver_microtouch() {
10748 src_dir programs/Xserver/hw/xfree86/input/microtouch
10749 dst_dir driver/xf86-input-microtouch/src
10751 action microtouch.c
10752 action microtouch.h
10754 dst_dir driver/xf86-input-microtouch/man
10756 action microtouch.man microtouch.4
10759 symlink_driver_mouse() {
10760 src_dir programs/Xserver/hw/xfree86/input/mouse
10761 dst_dir driver/xf86-input-mouse/src
10763 action mouse.c
10764 action mouse.h
10765 action mousePriv.h
10766 action pnp.c
10768 dst_dir driver/xf86-input-mouse/man
10770 action mouse.man mouse.4
10773 symlink_driver_mutouch() {
10774 src_dir programs/Xserver/hw/xfree86/input/mutouch
10775 dst_dir driver/xf86-input-mutouch/src
10777 action xf86MuTouch.c
10779 dst_dir driver/xf86-input-mutouch/man
10781 action mutouch.man mutouch.4
10784 symlink_driver_palmax() {
10785 src_dir programs/Xserver/hw/xfree86/input/palmax
10786 dst_dir driver/xf86-input-palmax/src
10788 action xf86Palmax.c
10790 dst_dir driver/xf86-input-palmax/man
10792 action palmax.man palmax.4
10795 symlink_driver_penmount() {
10796 src_dir programs/Xserver/hw/xfree86/input/penmount
10797 dst_dir driver/xf86-input-penmount/src
10799 action xf86PM.c
10800 action xf86PM.h
10802 dst_dir driver/xf86-input-penmount/man
10804 action penmount.man penmount.4
10807 symlink_driver_sample() {
10808 src_dir programs/Xserver/hw/xfree86/input/sample
10809 dst_dir driver/xf86-input-sample/src
10811 action sample.c
10812 action sample.h
10814 dst_dir driver/xf86-input-sample
10815 action README
10818 symlink_driver_spaceorb() {
10819 src_dir programs/Xserver/hw/xfree86/input/spaceorb
10820 dst_dir driver/xf86-input-spaceorb/src
10822 action spaceorb.c
10823 action spaceorb.h
10825 dst_dir driver/xf86-input-spaceorb/man
10829 symlink_driver_summa() {
10830 src_dir programs/Xserver/hw/xfree86/input/summa
10831 dst_dir driver/xf86-input-summa/src
10833 action xf86Summa.c
10835 dst_dir driver/xf86-input-summa/man
10839 symlink_driver_tek4957() {
10840 src_dir programs/Xserver/hw/xfree86/input/tek4957
10841 dst_dir driver/xf86-input-tek4957/src
10843 action xf86Tek4957.c
10845 dst_dir driver/xf86-input-tek4957/man
10847 action tek4957.man tek4957.man
10850 symlink_driver_ur98() {
10851 src_dir programs/Xserver/hw/xfree86/input/ur98
10852 dst_dir driver/xf86-input-ur98/src
10854 action xf86Ur-98.c
10856 dst_dir driver/xf86-input-ur98/man
10858 action ur98.man ur98.4
10861 symlink_driver_void() {
10862 src_dir programs/Xserver/hw/xfree86/input/void
10863 dst_dir driver/xf86-input-void/src
10865 action void.c
10867 dst_dir driver/xf86-input-void/man
10869 action void.man void.4
10872 symlink_driver() {
10873 symlink_driver_apm
10874 symlink_driver_ark
10875 symlink_driver_ati
10876 symlink_driver_chips
10877 symlink_driver_cirrus
10878 symlink_driver_cyrix
10879 symlink_driver_dummy
10880 symlink_driver_fbdev
10881 symlink_driver_glide
10882 symlink_driver_glint
10883 symlink_driver_i128
10884 symlink_driver_i740
10885 symlink_driver_i810
10886 symlink_driver_imstt
10887 symlink_driver_mga
10888 symlink_driver_neomagic
10889 symlink_driver_newport
10890 symlink_driver_nsc
10891 symlink_driver_nv
10892 symlink_driver_rendition
10893 symlink_driver_s3
10894 symlink_driver_s3virge
10895 symlink_driver_savage
10896 symlink_driver_siliconmotion
10897 symlink_driver_sis
10898 symlink_driver_sisusb
10899 symlink_driver_sunbw2
10900 symlink_driver_suncg14
10901 symlink_driver_suncg3
10902 symlink_driver_suncg6
10903 symlink_driver_sunffb
10904 symlink_driver_sunleo
10905 symlink_driver_suntcx
10906 symlink_driver_tdfx
10907 symlink_driver_tga
10908 symlink_driver_trident
10909 symlink_driver_tseng
10910 symlink_driver_v4l
10911 symlink_driver_vesa
10912 symlink_driver_vga
10913 symlink_driver_via
10914 symlink_driver_vmware
10915 symlink_driver_voodoo
10916 symlink_driver_wsfb
10918 symlink_driver_acecad
10919 symlink_driver_aiptek
10920 symlink_driver_calcomp
10921 symlink_driver_citron
10922 symlink_driver_digitaledge
10923 symlink_driver_dmc
10924 symlink_driver_dynapro
10925 symlink_driver_elo2300
10926 symlink_driver_elographics
10927 symlink_driver_evdev
10928 symlink_driver_fpit
10929 symlink_driver_hyperpen
10930 symlink_driver_jamstudio
10931 symlink_driver_joystick
10932 symlink_driver_keyboard
10933 symlink_driver_magellan
10934 symlink_driver_magictouch
10935 symlink_driver_microtouch
10936 symlink_driver_mouse
10937 symlink_driver_mutouch
10938 symlink_driver_palmax
10939 symlink_driver_penmount
10940 symlink_driver_sample
10941 symlink_driver_spaceorb
10942 symlink_driver_summa
10943 symlink_driver_tek4957
10944 symlink_driver_ur98
10945 symlink_driver_void
10946 # ...
10950 #########
10952 # The font module
10954 #########
10956 symlink_font_adobe_100dpi() {
10957 src_dir fonts/bdf/100dpi
10958 dst_dir font/adobe-100dpi
10960 action courB08.bdf
10961 action courB10.bdf
10962 action courB12.bdf
10963 action courB14.bdf
10964 action courB18.bdf
10965 action courB24.bdf
10966 action courBO08.bdf
10967 action courBO10.bdf
10968 action courBO12.bdf
10969 action courBO14.bdf
10970 action courBO18.bdf
10971 action courBO24.bdf
10972 action courO08.bdf
10973 action courO10.bdf
10974 action courO12.bdf
10975 action courO14.bdf
10976 action courO18.bdf
10977 action courO24.bdf
10978 action courR08.bdf
10979 action courR10.bdf
10980 action courR12.bdf
10981 action courR14.bdf
10982 action courR18.bdf
10983 action courR24.bdf
10984 action helvB08.bdf
10985 action helvB10.bdf
10986 action helvB12.bdf
10987 action helvB14.bdf
10988 action helvB18.bdf
10989 action helvB24.bdf
10990 action helvBO08.bdf
10991 action helvBO10.bdf
10992 action helvBO12.bdf
10993 action helvBO14.bdf
10994 action helvBO18.bdf
10995 action helvBO24.bdf
10996 action helvO08.bdf
10997 action helvO10.bdf
10998 action helvO12.bdf
10999 action helvO14.bdf
11000 action helvO18.bdf
11001 action helvO24.bdf
11002 action helvR08.bdf
11003 action helvR10.bdf
11004 action helvR12.bdf
11005 action helvR14.bdf
11006 action helvR18.bdf
11007 action helvR24.bdf
11008 action ncenB08.bdf
11009 action ncenB10.bdf
11010 action ncenB12.bdf
11011 action ncenB14.bdf
11012 action ncenB18.bdf
11013 action ncenB24.bdf
11014 action ncenBI08.bdf
11015 action ncenBI10.bdf
11016 action ncenBI12.bdf
11017 action ncenBI14.bdf
11018 action ncenBI18.bdf
11019 action ncenBI24.bdf
11020 action ncenI08.bdf
11021 action ncenI10.bdf
11022 action ncenI12.bdf
11023 action ncenI14.bdf
11024 action ncenI18.bdf
11025 action ncenI24.bdf
11026 action ncenR08.bdf
11027 action ncenR10.bdf
11028 action ncenR12.bdf
11029 action ncenR14.bdf
11030 action ncenR18.bdf
11031 action ncenR24.bdf
11032 action symb08.bdf
11033 action symb10.bdf
11034 action symb12.bdf
11035 action symb14.bdf
11036 action symb18.bdf
11037 action symb24.bdf
11038 action timB08.bdf
11039 action timB10.bdf
11040 action timB12.bdf
11041 action timB14.bdf
11042 action timB18.bdf
11043 action timB24.bdf
11044 action timBI08.bdf
11045 action timBI10.bdf
11046 action timBI12.bdf
11047 action timBI14.bdf
11048 action timBI18.bdf
11049 action timBI24.bdf
11050 action timI08.bdf
11051 action timI10.bdf
11052 action timI12.bdf
11053 action timI14.bdf
11054 action timI18.bdf
11055 action timI24.bdf
11056 action timR08.bdf
11057 action timR10.bdf
11058 action timR12.bdf
11059 action timR14.bdf
11060 action timR18.bdf
11061 action timR24.bdf
11064 symlink_font_adobe_utopia_100dpi() {
11065 src_dir fonts/bdf/100dpi
11066 dst_dir font/adobe-utopia-100dpi
11068 # XXX These fonts are copyright Adobe, but all rights reserved
11069 action UTB___10.bdf
11070 action UTB___12.bdf
11071 action UTB___14.bdf
11072 action UTB___18.bdf
11073 action UTB___24.bdf
11074 action UTBI__10.bdf
11075 action UTBI__12.bdf
11076 action UTBI__14.bdf
11077 action UTBI__18.bdf
11078 action UTBI__24.bdf
11079 action UTI___10.bdf
11080 action UTI___12.bdf
11081 action UTI___14.bdf
11082 action UTI___18.bdf
11083 action UTI___24.bdf
11084 action UTRG__10.bdf
11085 action UTRG__12.bdf
11086 action UTRG__14.bdf
11087 action UTRG__18.bdf
11088 action UTRG__24.bdf
11091 symlink_font_bh_100dpi() {
11092 src_dir fonts/bdf/100dpi
11093 dst_dir font/bh-100dpi
11095 action lubB08.bdf
11096 action lubB10.bdf
11097 action lubB12.bdf
11098 action lubB14.bdf
11099 action lubB18.bdf
11100 action lubB19.bdf
11101 action lubB24.bdf
11102 action lubBI08.bdf
11103 action lubBI10.bdf
11104 action lubBI12.bdf
11105 action lubBI14.bdf
11106 action lubBI18.bdf
11107 action lubBI19.bdf
11108 action lubBI24.bdf
11109 action lubI08.bdf
11110 action lubI10.bdf
11111 action lubI12.bdf
11112 action lubI14.bdf
11113 action lubI18.bdf
11114 action lubI19.bdf
11115 action lubI24.bdf
11116 action luBIS08.bdf
11117 action luBIS10.bdf
11118 action luBIS12.bdf
11119 action luBIS14.bdf
11120 action luBIS18.bdf
11121 action luBIS19.bdf
11122 action luBIS24.bdf
11123 action lubR08.bdf
11124 action lubR10.bdf
11125 action lubR12.bdf
11126 action lubR14.bdf
11127 action lubR18.bdf
11128 action lubR19.bdf
11129 action lubR24.bdf
11130 action luBS08.bdf
11131 action luBS10.bdf
11132 action luBS12.bdf
11133 action luBS14.bdf
11134 action luBS18.bdf
11135 action luBS19.bdf
11136 action luBS24.bdf
11137 action luIS08.bdf
11138 action luIS10.bdf
11139 action luIS12.bdf
11140 action luIS14.bdf
11141 action luIS18.bdf
11142 action luIS19.bdf
11143 action luIS24.bdf
11144 action luRS08.bdf
11145 action luRS10.bdf
11146 action luRS12.bdf
11147 action luRS14.bdf
11148 action luRS18.bdf
11149 action luRS19.bdf
11150 action luRS24.bdf
11152 action LU_LEGALNOTICE
11155 symlink_font_bh_lucidatypewriter_100dpi() {
11156 src_dir fonts/bdf/100dpi
11157 dst_dir font/bh-lucidatypewriter-100dpi
11159 action lutBS08.bdf
11160 action lutBS10.bdf
11161 action lutBS12.bdf
11162 action lutBS14.bdf
11163 action lutBS18.bdf
11164 action lutBS19.bdf
11165 action lutBS24.bdf
11166 action lutRS08.bdf
11167 action lutRS10.bdf
11168 action lutRS12.bdf
11169 action lutRS14.bdf
11170 action lutRS18.bdf
11171 action lutRS19.bdf
11172 action lutRS24.bdf
11175 symlink_font_bitstream_100dpi() {
11176 src_dir fonts/bdf/100dpi
11177 dst_dir font/bitstream-100dpi
11179 action charB08.bdf
11180 action charB10.bdf
11181 action charB12.bdf
11182 action charB14.bdf
11183 action charB18.bdf
11184 action charB24.bdf
11185 action charBI08.bdf
11186 action charBI10.bdf
11187 action charBI12.bdf
11188 action charBI14.bdf
11189 action charBI18.bdf
11190 action charBI24.bdf
11191 action charI08.bdf
11192 action charI10.bdf
11193 action charI12.bdf
11194 action charI14.bdf
11195 action charI18.bdf
11196 action charI24.bdf
11197 action charR08.bdf
11198 action charR10.bdf
11199 action charR12.bdf
11200 action charR14.bdf
11201 action charR18.bdf
11202 action charR24.bdf
11203 action tech14.bdf
11204 action techB14.bdf
11205 action term14.bdf
11206 action termB14.bdf
11209 symlink_font_adobe_75dpi() {
11210 src_dir fonts/bdf/75dpi
11211 dst_dir font/adobe-75dpi
11213 action courB08.bdf
11214 action courB10.bdf
11215 action courB12.bdf
11216 action courB14.bdf
11217 action courB18.bdf
11218 action courB24.bdf
11219 action courBO08.bdf
11220 action courBO10.bdf
11221 action courBO12.bdf
11222 action courBO14.bdf
11223 action courBO18.bdf
11224 action courBO24.bdf
11225 action courO08.bdf
11226 action courO10.bdf
11227 action courO12.bdf
11228 action courO14.bdf
11229 action courO18.bdf
11230 action courO24.bdf
11231 action courR08.bdf
11232 action courR10.bdf
11233 action courR12.bdf
11234 action courR14.bdf
11235 action courR18.bdf
11236 action courR24.bdf
11237 action helvB08.bdf
11238 action helvB10.bdf
11239 action helvB12.bdf
11240 action helvB14.bdf
11241 action helvB18.bdf
11242 action helvB24.bdf
11243 action helvBO08.bdf
11244 action helvBO10.bdf
11245 action helvBO12.bdf
11246 action helvBO14.bdf
11247 action helvBO18.bdf
11248 action helvBO24.bdf
11249 action helvO08.bdf
11250 action helvO10.bdf
11251 action helvO12.bdf
11252 action helvO14.bdf
11253 action helvO18.bdf
11254 action helvO24.bdf
11255 action helvR08.bdf
11256 action helvR10.bdf
11257 action helvR12.bdf
11258 action helvR14.bdf
11259 action helvR18.bdf
11260 action helvR24.bdf
11261 action ncenB08.bdf
11262 action ncenB10.bdf
11263 action ncenB12.bdf
11264 action ncenB14.bdf
11265 action ncenB18.bdf
11266 action ncenB24.bdf
11267 action ncenBI08.bdf
11268 action ncenBI10.bdf
11269 action ncenBI12.bdf
11270 action ncenBI14.bdf
11271 action ncenBI18.bdf
11272 action ncenBI24.bdf
11273 action ncenI08.bdf
11274 action ncenI10.bdf
11275 action ncenI12.bdf
11276 action ncenI14.bdf
11277 action ncenI18.bdf
11278 action ncenI24.bdf
11279 action ncenR08.bdf
11280 action ncenR10.bdf
11281 action ncenR12.bdf
11282 action ncenR14.bdf
11283 action ncenR18.bdf
11284 action ncenR24.bdf
11285 action symb08.bdf
11286 action symb10.bdf
11287 action symb12.bdf
11288 action symb14.bdf
11289 action symb18.bdf
11290 action symb24.bdf
11291 action timB08.bdf
11292 action timB10.bdf
11293 action timB12.bdf
11294 action timB14.bdf
11295 action timB18.bdf
11296 action timB24.bdf
11297 action timBI08.bdf
11298 action timBI10.bdf
11299 action timBI12.bdf
11300 action timBI14.bdf
11301 action timBI18.bdf
11302 action timBI24.bdf
11303 action timI08.bdf
11304 action timI10.bdf
11305 action timI12.bdf
11306 action timI14.bdf
11307 action timI18.bdf
11308 action timI24.bdf
11309 action timR08.bdf
11310 action timR10.bdf
11311 action timR12.bdf
11312 action timR14.bdf
11313 action timR18.bdf
11314 action timR24.bdf
11317 symlink_font_adobe_utopia_75dpi() {
11318 src_dir fonts/bdf/75dpi
11319 dst_dir font/adobe-utopia-75dpi
11321 # XXX These fonts are copyright Adobe, but all rights reserved
11322 action UTB___10.bdf
11323 action UTB___12.bdf
11324 action UTB___14.bdf
11325 action UTB___18.bdf
11326 action UTB___24.bdf
11327 action UTBI__10.bdf
11328 action UTBI__12.bdf
11329 action UTBI__14.bdf
11330 action UTBI__18.bdf
11331 action UTBI__24.bdf
11332 action UTI___10.bdf
11333 action UTI___12.bdf
11334 action UTI___14.bdf
11335 action UTI___18.bdf
11336 action UTI___24.bdf
11337 action UTRG__10.bdf
11338 action UTRG__12.bdf
11339 action UTRG__14.bdf
11340 action UTRG__18.bdf
11341 action UTRG__24.bdf
11344 symlink_font_bh_75dpi() {
11345 src_dir fonts/bdf/75dpi
11346 dst_dir font/bh-75dpi
11348 action lubB08.bdf
11349 action lubB10.bdf
11350 action lubB12.bdf
11351 action lubB14.bdf
11352 action lubB18.bdf
11353 action lubB19.bdf
11354 action lubB24.bdf
11355 action lubBI08.bdf
11356 action lubBI10.bdf
11357 action lubBI12.bdf
11358 action lubBI14.bdf
11359 action lubBI18.bdf
11360 action lubBI19.bdf
11361 action lubBI24.bdf
11362 action lubI08.bdf
11363 action lubI10.bdf
11364 action lubI12.bdf
11365 action lubI14.bdf
11366 action lubI18.bdf
11367 action lubI19.bdf
11368 action lubI24.bdf
11369 action luBIS08.bdf
11370 action luBIS10.bdf
11371 action luBIS12.bdf
11372 action luBIS14.bdf
11373 action luBIS18.bdf
11374 action luBIS19.bdf
11375 action luBIS24.bdf
11376 action lubR08.bdf
11377 action lubR10.bdf
11378 action lubR12.bdf
11379 action lubR14.bdf
11380 action lubR18.bdf
11381 action lubR19.bdf
11382 action lubR24.bdf
11383 action luBS08.bdf
11384 action luBS10.bdf
11385 action luBS12.bdf
11386 action luBS14.bdf
11387 action luBS18.bdf
11388 action luBS19.bdf
11389 action luBS24.bdf
11390 action luIS08.bdf
11391 action luIS10.bdf
11392 action luIS12.bdf
11393 action luIS14.bdf
11394 action luIS18.bdf
11395 action luIS19.bdf
11396 action luIS24.bdf
11397 action luRS08.bdf
11398 action luRS10.bdf
11399 action luRS12.bdf
11400 action luRS14.bdf
11401 action luRS18.bdf
11402 action luRS19.bdf
11403 action luRS24.bdf
11405 action LU_LEGALNOTICE
11408 symlink_font_bh_lucidatypewriter_75dpi() {
11409 src_dir fonts/bdf/75dpi
11410 dst_dir font/bh-lucidatypewriter-75dpi
11412 action lutBS08.bdf
11413 action lutBS10.bdf
11414 action lutBS12.bdf
11415 action lutBS14.bdf
11416 action lutBS18.bdf
11417 action lutBS19.bdf
11418 action lutBS24.bdf
11419 action lutRS08.bdf
11420 action lutRS10.bdf
11421 action lutRS12.bdf
11422 action lutRS14.bdf
11423 action lutRS18.bdf
11424 action lutRS19.bdf
11425 action lutRS24.bdf
11428 symlink_font_bitstream_75dpi() {
11429 src_dir fonts/bdf/75dpi
11430 dst_dir font/bitstream-75dpi
11432 action charB08.bdf
11433 action charB10.bdf
11434 action charB12.bdf
11435 action charB14.bdf
11436 action charB18.bdf
11437 action charB24.bdf
11438 action charBI08.bdf
11439 action charBI10.bdf
11440 action charBI12.bdf
11441 action charBI14.bdf
11442 action charBI18.bdf
11443 action charBI24.bdf
11444 action charI08.bdf
11445 action charI10.bdf
11446 action charI12.bdf
11447 action charI14.bdf
11448 action charI18.bdf
11449 action charI24.bdf
11450 action charR08.bdf
11451 action charR10.bdf
11452 action charR12.bdf
11453 action charR14.bdf
11454 action charR18.bdf
11455 action charR24.bdf
11456 action tech14.bdf
11457 action techB14.bdf
11458 action term14.bdf
11459 action termB14.bdf
11462 symlink_font_cronyx_cyrillic() {
11463 src_dir fonts/bdf/cyrillic
11464 dst_dir font/cronyx-cyrillic
11466 action crox1cb.bdf
11467 action crox1c.bdf
11468 action crox1cbo.bdf
11469 action crox1co.bdf
11470 action crox1hb.bdf
11471 action crox1h.bdf
11472 action crox1hbo.bdf
11473 action crox1ho.bdf
11474 action crox1tb.bdf
11475 action crox1t.bdf
11476 action crox1tbo.bdf
11477 action crox1to.bdf
11478 action crox2cb.bdf
11479 action crox2c.bdf
11480 action crox2cbo.bdf
11481 action crox2co.bdf
11482 action crox2hb.bdf
11483 action crox2h.bdf
11484 action crox2hbo.bdf
11485 action crox2ho.bdf
11486 action crox2tb.bdf
11487 action crox2t.bdf
11488 action crox2tbo.bdf
11489 action crox2to.bdf
11490 action crox3cb.bdf
11491 action crox3c.bdf
11492 action crox3cbo.bdf
11493 action crox3co.bdf
11494 action crox3hb.bdf
11495 action crox3h.bdf
11496 action crox3hbo.bdf
11497 action crox3ho.bdf
11498 action crox3tb.bdf
11499 action crox3t.bdf
11500 action crox3tbo.bdf
11501 action crox3to.bdf
11502 action crox4hb.bdf
11503 action crox4h.bdf
11504 action crox4hbo.bdf
11505 action crox4ho.bdf
11506 action crox4tb.bdf
11507 action crox4t.bdf
11508 action crox4tbo.bdf
11509 action crox4to.bdf
11510 action crox5hb.bdf
11511 action crox5h.bdf
11512 action crox5hbo.bdf
11513 action crox5ho.bdf
11514 action crox5tb.bdf
11515 action crox5t.bdf
11516 action crox5tbo.bdf
11517 action crox5to.bdf
11518 action crox6hb.bdf
11519 action crox6h.bdf
11520 action crox6hbo.bdf
11521 action crox6ho.bdf
11522 action crox6tb.bdf
11523 action crox6t.bdf
11524 action crox6tbo.bdf
11525 action crox6to.bdf
11526 action koi10x16b.bdf
11527 action koi10x20.bdf
11528 action koi6x10.bdf
11529 action koinil2.bdf
11531 action COPYRIGHT
11534 symlink_font_misc_cyrillic() {
11535 src_dir fonts/bdf/cyrillic
11536 dst_dir font/misc-cyrillic
11538 # XXX Should these be broken into three different components?
11540 # XXX "May be distributed and modified without restrictions"
11541 action koi12x24b.bdf
11542 action koi8x16b.bdf
11543 action koi8x16.bdf
11545 # XXX Same license as cronyx-cyrillic
11546 action koi12x24.bdf
11547 action koi6x13.bdf
11549 # XXX public domain
11550 action koi5x8.bdf
11551 action koi6x13b.bdf
11552 action koi6x9.bdf
11553 action koi7x14b.bdf
11554 action koi7x14.bdf
11555 action koi8x13.bdf
11556 action koi9x15b.bdf
11557 action koi9x15.bdf
11558 action koi9x18b.bdf
11559 action koi9x18.bdf
11562 symlink_font_screen_cyrillic() {
11563 src_dir fonts/bdf/cyrillic
11564 dst_dir font/screen-cyrillic
11566 # XXX no copyright/license at all
11567 action screen8x16b.bdf
11568 action screen8x16.bdf
11571 symlink_font_winitzki_cyrillic() {
11572 src_dir fonts/bdf/cyrillic
11573 dst_dir font/winitzki-cyrillic
11575 action proof9x16.bdf
11578 symlink_font_cursor_misc() {
11579 src_dir fonts/bdf/misc
11580 dst_dir font/cursor-misc
11582 # XXX Does "unencumbered" mean the same thing as public domain
11583 # in this context?
11584 action cursor.bdf
11587 symlink_font_daewoo_misc() {
11588 src_dir fonts/bdf/misc
11589 dst_dir font/daewoo-misc
11591 # XXX These fonts are copyright, but no permissions are given
11592 action hanglg16.bdf
11593 action hanglm16.bdf
11594 action hanglm24.bdf
11597 symlink_font_dec_misc() {
11598 src_dir fonts/bdf/misc
11599 dst_dir font/dec-misc
11601 action deccurs.bdf
11602 action decsess.bdf
11605 symlink_font_isas_misc() {
11606 src_dir fonts/bdf/misc
11607 dst_dir font/isas-misc
11609 action gb16fs.bdf
11610 action gb16st.bdf
11611 action gb24st.bdf
11614 symlink_font_jis_misc() {
11615 src_dir fonts/bdf/misc
11616 dst_dir font/jis-misc
11618 # XXX Verify license restrictions
11619 action jiskan16.bdf
11620 action jiskan24.bdf
11623 symlink_font_micro_misc() {
11624 src_dir fonts/bdf/misc
11625 dst_dir font/micro-misc
11627 action micro.bdf
11630 symlink_font_misc_misc() {
11631 src_dir fonts/bdf/misc
11632 dst_dir font/misc-misc
11634 action 10x20.bdf
11635 action 12x13ja.bdf
11636 action 18x18ja.bdf
11637 action 18x18ko.bdf
11638 action 4x6.bdf
11639 action 5x7.bdf
11640 action 5x8.bdf
11641 action 6x10.bdf
11642 action 6x12.bdf
11643 action 6x13B.bdf
11644 action 6x13.bdf
11645 action 6x13O.bdf
11646 action 6x9.bdf
11647 action 7x13B.bdf
11648 action 7x13.bdf
11649 action 7x13O.bdf
11650 action 7x14B.bdf
11651 action 7x14.bdf
11652 action 8x13B.bdf
11653 action 8x13.bdf
11654 action 8x13O.bdf
11655 action 9x15B.bdf
11656 action 9x15.bdf
11657 action 9x18B.bdf
11658 action 9x18.bdf
11659 action k14.bdf
11661 # XXX This font does not have any COPYRIGHT
11662 action nil2.bdf
11665 symlink_font_schumacher_misc() {
11666 src_dir fonts/bdf/misc
11667 dst_dir font/schumacher-misc
11669 action clB6x10.bdf
11670 action clB6x12.bdf
11671 action clB8x10.bdf
11672 action clB8x12.bdf
11673 action clB8x13.bdf
11674 action clB8x14.bdf
11675 action clB8x16.bdf
11676 action clB8x8.bdf
11677 action clB9x15.bdf
11678 action clI6x12.bdf
11679 action clI8x8.bdf
11680 action clR4x6.bdf
11681 action clR5x10.bdf
11682 action clR5x6.bdf
11683 action clR5x8.bdf
11684 action clR6x10.bdf
11685 action clR6x12.bdf
11686 action clR6x13.bdf
11687 action clR6x6.bdf
11688 action clR6x8.bdf
11689 action clR7x10.bdf
11690 action clR7x12.bdf
11691 action clR7x14.bdf
11692 action clR7x8.bdf
11693 action clR8x10.bdf
11694 action clR8x12.bdf
11695 action clR8x13.bdf
11696 action clR8x14.bdf
11697 action clR8x16.bdf
11698 action clR8x8.bdf
11699 action clR9x15.bdf
11702 symlink_font_sony_misc() {
11703 src_dir fonts/bdf/misc
11704 dst_dir font/sony-misc
11706 action 12x24.bdf
11707 action 12x24rk.bdf
11708 action 8x16.bdf
11709 action 8x16rk.bdf
11712 symlink_font_sun_misc() {
11713 src_dir fonts/bdf/misc
11714 dst_dir font/sun-misc
11716 action olcursor.bdf
11717 action olgl10.bdf
11718 action olgl12.bdf
11719 action olgl14.bdf
11720 action olgl19.bdf
11723 symlink_font_bh_ttf() {
11724 src_dir fonts/scaled/TTF
11725 dst_dir font/bh-ttf
11727 action luximbi.ttf
11728 action luximb.ttf
11729 action luximri.ttf
11730 action luximr.ttf
11731 action luxirbi.ttf
11732 action luxirb.ttf
11733 action luxirri.ttf
11734 action luxirr.ttf
11735 action luxisbi.ttf
11736 action luxisb.ttf
11737 action luxisri.ttf
11738 action luxisr.ttf
11740 action COPYRIGHT.BH
11743 symlink_font_adobe_utopia_type1() {
11744 src_dir fonts/scaled/Type1
11745 dst_dir font/adobe-utopia-type1
11747 # XXX These fonts are copyright Adobe, but all rights reserved
11748 action UTB_____.afm
11749 action UTBI____.afm
11750 action UTBI____.pfa
11751 action UTB_____.pfa
11752 action UTI_____.afm
11753 action UTI_____.pfa
11754 action UTRG____.afm
11755 action UTRG____.pfa
11758 symlink_font_bh_type1() {
11759 src_dir fonts/scaled/Type1
11760 dst_dir font/bh-type1
11762 action l047013t.afm
11763 action l047013t.pfa
11764 action l047016t.afm
11765 action l047016t.pfa
11766 action l047033t.afm
11767 action l047033t.pfa
11768 action l047036t.afm
11769 action l047036t.pfa
11770 action l048013t.afm
11771 action l048013t.pfa
11772 action l048016t.afm
11773 action l048016t.pfa
11774 action l048033t.afm
11775 action l048033t.pfa
11776 action l048036t.afm
11777 action l048036t.pfa
11778 action l049013t.afm
11779 action l049013t.pfa
11780 action l049016t.afm
11781 action l049016t.pfa
11782 action l049033t.afm
11783 action l049033t.pfa
11784 action l049036t.afm
11785 action l049036t.pfa
11787 action COPYRIGHT.BH
11790 symlink_font_bitstream_type1() {
11791 src_dir fonts/scaled/Type1
11792 dst_dir font/bitstream-type1
11794 action c0419bt_.afm
11795 action c0419bt_.pfb
11796 action c0582bt_.afm
11797 action c0582bt_.pfb
11798 action c0583bt_.afm
11799 action c0583bt_.pfb
11800 action c0611bt_.afm
11801 action c0611bt_.pfb
11802 action c0632bt_.afm
11803 action c0632bt_.pfb
11804 action c0633bt_.afm
11805 action c0633bt_.pfb
11806 action c0648bt_.afm
11807 action c0648bt_.pfb
11808 action c0649bt_.afm
11809 action c0649bt_.pfb
11811 action Copyright
11814 symlink_font_ibm_type1() {
11815 src_dir fonts/scaled/Type1
11816 dst_dir font/ibm-type1
11818 action cour.afm
11819 action courb.afm
11820 action courbi.afm
11821 action courbi.pfa
11822 action courb.pfa
11823 action couri.afm
11824 action couri.pfa
11825 action cour.pfa
11827 action COPYRIGHT.IBM
11830 symlink_font_xfree86_type1() {
11831 src_dir fonts/scaled/Type1
11832 dst_dir font/xfree86-type1
11834 action cursor.pfa
11837 symlink_font_arabic_misc() {
11838 src_dir extras/fonts/arabic24
11839 dst_dir font/arabic-misc
11841 action arabic24.bdf
11843 action README
11844 action uniarab.txt
11847 symlink_font_mutt_misc() {
11848 src_dir extras/fonts/ClearlyU
11849 dst_dir font/mutt-misc
11851 action cu12.bdf
11852 action cu-alt12.bdf
11853 action cu-arabic12.bdf
11854 action cuarabic12.bdf
11855 action cu-devnag12.bdf
11856 action cudevnag12.bdf
11857 action cu-lig12.bdf
11858 action cu-pua12.bdf
11860 action README
11864 symlink_font_misc_ethiopic() {
11865 src_dir fonts/scaled/Ethiopic
11866 dst_dir font/misc-ethiopic
11868 action GohaTibebZemen.otf
11869 action GohaTibebZemen.ttf
11871 action license.txt
11874 symlink_font_misc_meltho() {
11875 src_dir fonts/scaled/Meltho
11876 dst_dir font/misc-meltho
11878 action SyrCOMAdiabene.otf
11879 action SyrCOMAntioch.otf
11880 action SyrCOMBatnanBold.otf
11881 action SyrCOMBatnan.otf
11882 action SyrCOMCtesiphon.otf
11883 action SyrCOMEdessa.otf
11884 action SyrCOMJerusalemBold.otf
11885 action SyrCOMJerusalemItalic.otf
11886 action SyrCOMJerusalem.otf
11887 action SyrCOMJerusalemOutline.otf
11888 action SyrCOMKharput.otf
11889 action SyrCOMMalankara.otf
11890 action SyrCOMMardinBold.otf
11891 action SyrCOMMardin.otf
11892 action SyrCOMMidyat.otf
11893 action SyrCOMNisibin.otf
11894 action SyrCOMNisibinOutline.otf
11895 action SyrCOMQenNeshrin.otf
11896 action SyrCOMTalada.otf
11897 action SyrCOMTurAbdin.otf
11898 action SyrCOMUrhoyBold.otf
11899 action SyrCOMUrhoy.otf
11901 action license.txt
11902 action README
11905 symlink_font_bistream_speedo() {
11906 src_dir fonts/scaled/Speedo
11907 dst_dir font/bitstream-speedo
11909 action font0419.spd
11910 action font0582.spd
11911 action font0583.spd
11912 action font0611.spd
11913 action font0648.spd
11914 action font0649.spd
11915 action font0709.spd
11916 action font0710.spd
11918 action fonts.scale
11919 action COPYRIGHT
11923 symlink_font_alias() {
11924 src_dir fonts/bdf/100dpi
11925 dst_dir font/alias/100dpi
11927 action fonts.alias
11929 src_dir fonts/bdf/75dpi
11930 dst_dir font/alias/75dpi
11932 action fonts.alias
11934 src_dir fonts/bdf/cyrillic
11935 dst_dir font/alias/cyrillic
11937 action fonts.alias
11939 src_dir fonts/bdf/misc
11940 dst_dir font/alias/misc
11942 action fonts.alias
11945 symlink_font_util() {
11946 src_dir fonts/util
11947 dst_dir font/util
11949 action 8859-1.TXT map-ISO8859-1
11950 action 8859-2.TXT map-ISO8859-2
11951 action 8859-3.TXT map-ISO8859-3
11952 action 8859-4.TXT map-ISO8859-4
11953 action 8859-5.TXT map-ISO8859-5
11954 action 8859-6.TXT map-ISO8859-6
11955 action 8859-7.TXT map-ISO8859-7
11956 action 8859-8.TXT map-ISO8859-8
11957 action 8859-9.TXT map-ISO8859-9
11958 action 8859-10.TXT map-ISO8859-10
11959 action 8859-11.TXT map-ISO8859-11
11960 action 8859-13.TXT map-ISO8859-13
11961 action 8859-14.TXT map-ISO8859-14
11962 action 8859-15.TXT map-ISO8859-15
11963 action 8859-16.TXT map-ISO8859-16
11964 action JIS0201.TXT map-JISX0201.1976-0
11965 action KOI8-R.TXT map-KOI8-R
11967 action bdftruncate.man
11968 action bdftruncate.pl
11970 action ucs2any.c
11971 action ucs2any.man
11974 symlink_font_encodings() {
11975 src_dir fonts/encodings
11976 dst_dir font/encodings
11978 action adobe-dingbats.enc
11979 action adobe-standard.enc
11980 action adobe-symbol.enc
11981 action ansi-1251.enc
11982 action armscii-8.enc
11983 action ascii-0.enc
11984 action dec-special.enc
11985 action ibm-cp437.enc
11986 action ibm-cp850.enc
11987 action ibm-cp852.enc
11988 action ibm-cp866.enc
11989 action iso8859-11.enc
11990 action iso8859-13.enc
11991 action iso8859-16.enc
11992 action iso8859-6.16.enc
11993 action iso8859-6.8x.enc
11994 action microsoft-cp1250.enc
11995 action microsoft-cp1251.enc
11996 action microsoft-cp1252.enc
11997 action microsoft-cp1253.enc
11998 action microsoft-cp1254.enc
11999 action microsoft-cp1255.enc
12000 action microsoft-cp1256.enc
12001 action microsoft-cp1257.enc
12002 action microsoft-cp1258.enc
12003 action microsoft-win3.1.enc
12004 action mulearabic-0.enc
12005 action mulearabic-1.enc
12006 action mulearabic-2.enc
12007 action mulelao-1.enc
12008 action suneu-greek.enc
12009 action tcvn-0.enc
12010 action tis620-2.enc
12011 action viscii1.1-1.enc
12013 src_dir fonts/encodings/large
12014 dst_dir font/encodings/large
12016 action big5.eten-0.enc
12017 action big5hkscs-0.enc
12018 action cns11643-1.enc
12019 action cns11643-2.enc
12020 action cns11643-3.enc
12021 action gb18030-0.enc
12022 action gb18030.2000-0.enc
12023 action gb18030.2000-1.enc
12024 action gb2312.1980-0.enc
12025 action gbk-0.enc
12026 action jisx0201.1976-0.enc
12027 action jisx0208.1990-0.enc
12028 action jisx0212.1990-0.enc
12029 action ksc5601.1987-0.enc
12030 action ksc5601.1992-3.enc
12031 action sun.unicode.india-0.enc
12034 symlink_font() {
12035 symlink_font_adobe_100dpi
12036 symlink_font_adobe_utopia_100dpi
12037 symlink_font_bh_100dpi
12038 symlink_font_bh_lucidatypewriter_100dpi
12039 symlink_font_bitstream_100dpi
12041 symlink_font_adobe_75dpi
12042 symlink_font_adobe_utopia_75dpi
12043 symlink_font_bh_75dpi
12044 symlink_font_bh_lucidatypewriter_75dpi
12045 symlink_font_bitstream_75dpi
12047 symlink_font_cronyx_cyrillic
12048 symlink_font_misc_cyrillic
12049 symlink_font_screen_cyrillic
12050 symlink_font_winitzki_cyrillic
12052 symlink_font_cursor_misc
12053 symlink_font_daewoo_misc
12054 symlink_font_dec_misc
12055 symlink_font_isas_misc
12056 symlink_font_jis_misc
12057 symlink_font_micro_misc
12058 symlink_font_misc_misc
12059 symlink_font_schumacher_misc
12060 symlink_font_sony_misc
12061 symlink_font_sun_misc
12063 symlink_font_bh_ttf
12065 symlink_font_adobe_utopia_type1
12066 symlink_font_bh_type1
12067 symlink_font_bitstream_type1
12068 symlink_font_ibm_type1
12069 symlink_font_xfree86_type1
12071 symlink_font_mutt_misc
12072 symlink_font_arabic_misc
12074 symlink_font_misc_meltho
12075 symlink_font_misc_ethiopic
12077 symlink_font_bistream_speedo
12079 symlink_font_alias
12080 symlink_font_util
12082 symlink_font_encodings
12086 #########
12088 # The doc module
12090 #########
12092 symlink_doc_old() {
12093 src_dir doc/hardcopy
12094 dst_dir doc/old/hardcopy
12096 src_dir doc/hardcopy/BDF
12097 dst_dir doc/old/hardcopy/BDF
12099 action bdf.PS.gz
12101 src_dir doc/hardcopy/CTEXT
12102 dst_dir doc/old/hardcopy/CTEXT
12104 action ctext.PS.gz
12106 src_dir doc/hardcopy/FSProtocol
12107 dst_dir doc/old/hardcopy/FSProtocol
12109 action fsproto.PS.gz
12111 src_dir doc/hardcopy/i18n
12112 dst_dir doc/old/hardcopy/i18n
12114 action Framework.PS.gz
12115 action LocaleDB.PS.gz
12116 action Trans.PS.gz
12118 src_dir doc/hardcopy/ICCCM
12119 dst_dir doc/old/hardcopy/ICCCM
12121 action icccm.PS.gz
12122 action icccm.idx.PS.gz
12124 src_dir doc/hardcopy/ICE
12125 dst_dir doc/old/hardcopy/ICE
12127 action ICElib.PS.gz
12128 action ice.PS.gz
12130 src_dir doc/hardcopy/man
12131 dst_dir doc/old/hardcopy/man
12133 action man.PS.gz
12135 src_dir doc/hardcopy/rstart
12136 dst_dir doc/old/hardcopy/rstart
12138 action rstart.PS.gz
12140 src_dir doc/hardcopy/RX
12141 dst_dir doc/old/hardcopy/RX
12143 action RX.PS.gz
12145 src_dir doc/hardcopy/saver
12146 dst_dir doc/old/hardcopy/saver
12148 action saver.PS.gz
12150 src_dir doc/hardcopy/SM
12151 dst_dir doc/old/hardcopy/SM
12153 action SMlib.PS.gz
12154 action xsmp.PS.gz
12156 src_dir doc/hardcopy/X11
12157 dst_dir doc/old/hardcopy/X11
12159 action xlib.PS.gz
12160 action xlib.idx.PS.gz
12162 src_dir doc/hardcopy/Xaw
12163 dst_dir doc/old/hardcopy/Xaw
12165 action widg.idx.PS.gz
12166 action widgets.PS.gz
12168 src_dir doc/hardcopy/XDMCP
12169 dst_dir doc/old/hardcopy/XDMCP
12171 action xdmcp.PS.gz
12173 src_dir doc/hardcopy/Xext
12174 dst_dir doc/old/hardcopy/Xext
12176 action AppGroup.PS.gz
12177 action DPMS.PS.gz
12178 action DPMSLib.PS.gz
12179 action bigreq.PS.gz
12180 action buffer.PS.gz
12181 action dbe.PS.gz
12182 action dbelib.PS.gz
12183 action evi.PS.gz
12184 action lbx.PS.gz
12185 action lbx.html
12186 action lbxTOC.html
12187 action lbxalg.PS.gz
12188 action mit-shm.PS.gz
12189 action record.PS.gz
12190 action recordlib.PS.gz
12191 action security.PS.gz
12192 action shape.PS.gz
12193 action shapelib.PS.gz
12194 action sync.PS.gz
12195 action synclib.PS.gz
12196 action tog-cup.PS.gz
12197 action xc-misc.PS.gz
12198 action xtest.PS.gz
12199 action xtestlib.PS.gz
12201 src_dir doc/hardcopy/xfs
12202 dst_dir doc/old/hardcopy/xfs
12204 action design.PS.gz
12206 src_dir doc/hardcopy/Xi
12207 dst_dir doc/old/hardcopy/Xi
12209 action lib.PS.gz
12210 action port.PS.gz
12211 action proto.PS.gz
12213 src_dir doc/hardcopy/XIM
12214 dst_dir doc/old/hardcopy/XIM
12216 action xim.PS.gz
12218 src_dir doc/hardcopy/XKB
12219 dst_dir doc/old/hardcopy/XKB
12221 action XKBlib.ps.gz
12222 action XKBproto.ps.gz
12224 src_dir doc/hardcopy/XLFD
12225 dst_dir doc/old/hardcopy/XLFD
12227 action xlfd.PS.gz
12229 src_dir doc/hardcopy/Xmu
12230 dst_dir doc/old/hardcopy/Xmu
12232 action xmu.PS.gz
12234 src_dir doc/hardcopy/XPRINT
12235 dst_dir doc/old/hardcopy/XPRINT
12237 action Xprint_FAQ.html
12238 action Xprint_FAQ.txt
12239 action Xprint_FAQ.xml
12240 action Xprint_old_FAQ.txt
12241 action docbook.css
12242 action dtprint_fspec.PS.gz
12243 action xp_library.PS.gz
12244 action xp_proto.PS.gz
12246 src_dir doc/hardcopy/XProtocol
12247 dst_dir doc/old/hardcopy/XProtocol
12249 action proto.PS.gz
12250 action proto.idx.PS.gz
12252 src_dir doc/hardcopy/Xserver
12253 dst_dir doc/old/hardcopy/Xserver
12255 action Xprt.PS.gz
12256 action analysis.PS.gz
12257 action appgroup.PS.gz
12258 action ddx.PS.gz
12259 action fontlib.PS.gz
12260 action secint.PS.gz
12262 src_dir doc/hardcopy/Xt
12263 dst_dir doc/old/hardcopy/Xt
12265 action intr.idx.PS.gz
12266 action intrinsics.PS.gz
12268 src_dir doc/hardcopy/xterm
12269 dst_dir doc/old/hardcopy/xterm
12271 action ctlseqs.PS.gz
12273 src_dir doc/hardcopy/xtrans
12274 dst_dir doc/old/hardcopy/xtrans
12276 action Xtrans.PS.gz
12278 src_dir doc/hardcopy/Xv
12279 dst_dir doc/old/hardcopy/Xv
12281 action video
12282 action xv-protocol-v2.PS
12284 src_dir doc/man/general
12285 dst_dir doc/old/man/general
12287 action Consortium.man
12288 action security.man
12289 action Standards.man
12290 action X.man
12291 action XOrgFoundation.man
12292 action Xprint.man
12293 action Xprint.sgml
12294 action XProjectTeam.man
12296 # FIXME: other man pages should be moved to the appropriate library
12298 src_dir doc/misc
12299 dst_dir doc/old/misc
12301 action xlogo.epsi
12303 src_dir doc/specs
12304 dst_dir doc/old/specs
12306 action specindex.html
12308 src_dir doc/specs/BDF
12309 dst_dir doc/old/specs/BDF
12311 action bdf.ms
12312 action fig1.ps
12313 action fig2.ps
12315 src_dir doc/specs/CTEXT
12316 dst_dir doc/old/specs/CTEXT
12318 action ctext.tbl.ms
12320 src_dir doc/specs/FSProtocol
12321 dst_dir doc/old/specs/FSProtocol
12323 action protocol.ms
12325 src_dir doc/specs/GL
12326 dst_dir doc/old/specs/GL
12328 action libGL.txt
12330 src_dir doc/specs/i18n
12331 dst_dir doc/old/specs/i18n
12333 action Framework.ms
12334 action LocaleDB.ms
12335 action Trans.ms
12337 src_dir doc/specs/ICCCM
12338 dst_dir doc/old/specs/ICCCM
12340 action icccm.ms
12341 action indexmacros.t
12343 src_dir doc/specs/ICE
12344 dst_dir doc/old/specs/ICE
12346 action ICElib.ms
12347 action ice.ms
12349 src_dir doc/specs/PM
12350 dst_dir doc/old/specs/PM
12352 action PM_spec
12354 src_dir doc/specs/Randr
12355 dst_dir doc/old/specs/Randr
12357 action protocol.txt
12359 src_dir doc/specs/Render
12360 dst_dir doc/old/specs/Render
12362 action library
12363 action protocol
12365 src_dir doc/specs/rstart
12366 dst_dir doc/old/specs/rstart
12368 action fix.awk
12369 action fix.nawk
12370 action fix.sed
12371 action rstart.ms
12372 action rstartd.txt
12373 action tmac.rfc
12375 src_dir doc/specs/RX
12376 dst_dir doc/old/specs/RX
12378 action RX.mif
12380 src_dir doc/specs/saver
12381 dst_dir doc/old/specs/saver
12383 action saver.ms
12385 src_dir doc/specs/SIAddresses
12386 dst_dir doc/old/specs/SIAddresses
12388 action IPv6.txt
12389 action README
12390 action hostname.txt
12391 action localuser.txt
12393 src_dir doc/specs/SM
12394 dst_dir doc/old/specs/SM
12396 action SMlib.ms
12397 action xsmp.ms
12399 src_dir doc/specs/X11
12400 dst_dir doc/old/specs/X11
12402 action AppA
12403 action AppB
12404 action AppC
12405 action AppD
12406 action CH01
12407 action CH02
12408 action CH03
12409 action CH04
12410 action CH05
12411 action CH06
12412 action CH07
12413 action CH08
12414 action CH09
12415 action CH10
12416 action CH11
12417 action CH12
12418 action CH13
12419 action CH14
12420 action CH15
12421 action CH16
12422 action abstract.t
12423 action credits.t
12424 action glossary
12425 action indexmacros.t
12426 action postproc
12428 src_dir doc/specs/Xaw
12429 dst_dir doc/old/specs/Xaw
12431 action AsciiSink
12432 action AsciiSource
12433 action AsciiText
12434 action Box
12435 action CH1
12436 action CH2
12437 action CH3.intro
12438 action CH4.intro
12439 action CH5.intro
12440 action CH6.intro
12441 action CH7.intro
12442 action Command
12443 action Dialog
12444 action Form
12445 action Grip
12446 action Label
12447 action List
12448 action MenuButton
12449 action Paned
12450 action Panner
12451 action Porthole
12452 action Repeater
12453 action Scrollbar
12454 action Simple
12455 action SimpleMenu
12456 action Sme
12457 action SmeBSB
12458 action SmeLine
12459 action StripChart
12460 action TPage_Credits
12461 action Template
12462 action Text
12463 action TextActions
12464 action TextCustom
12465 action TextFuncs
12466 action TextSink
12467 action TextSource
12468 action Toggle
12469 action Tree
12470 action Viewport
12471 action Xtk.widg.front
12472 action Xtk.widgets
12473 action block.awk
12474 action fixindex.awk
12475 action strings.mit
12476 action strings.xaw
12477 action widg.idxmac.t
12479 src_dir doc/specs/XDMCP
12480 dst_dir doc/old/specs/XDMCP
12482 action xdmcp.ms
12484 src_dir doc/specs/Xext
12485 dst_dir doc/old/specs/Xext
12487 action AppGroup.mif
12488 action DPMS.ms
12489 action DPMSLib.ms
12490 action bigreq.ms
12491 action buffer.ms
12492 action dbe.tex
12493 action dbelib.tex
12494 action evi.ms
12495 action lbx.book
12496 action lbx.mif
12497 action lbxalg.mif
12498 action mit-shm.ms
12499 action record.ms
12500 action recordlib.ms
12501 action security.tex
12502 action shape.ms
12503 action shapelib.ms
12504 action sync.tex
12505 action synclib.tex
12506 action tog-cup.ms
12507 action xc-misc.ms
12508 action xtest.ms
12509 action xtest1.info
12510 action xtest1.mm
12511 action xtestlib.ms
12513 src_dir doc/specs/xfs
12514 dst_dir doc/old/specs/xfs
12516 action FSlib.doc
12517 action design.ms
12519 src_dir doc/specs/Xi
12520 dst_dir doc/old/specs/Xi
12522 action encoding.ms
12523 action library.ms
12524 action porting.ms
12525 action protocol.ms
12527 src_dir doc/specs/XIM
12528 dst_dir doc/old/specs/XIM
12530 action xim.ms
12532 src_dir doc/specs/XKB/Proto
12533 dst_dir doc/old/specs/XKB/Proto
12535 action XKBproto.book
12536 action dflttrns.fm5
12537 action encoding.fm5
12538 action keysyms.fm5
12539 action protocol.fm5
12540 action prototoc.doc
12541 action title.fm5
12542 action types.fm5
12544 src_dir doc/specs/XKB/XKBlib
12545 dst_dir doc/old/specs/XKB/XKBlib
12547 action XKBlib.book
12548 action allchaps.fm5
12549 action allchaps.ix
12550 action allchaps.lof
12551 action allchaps.lot
12552 action allchaps.ps
12553 action allchaps.toc
12554 action fonts.fm5
12555 action title.fm5
12557 src_dir doc/specs/XLFD
12558 dst_dir doc/old/specs/XLFD
12560 action xlfd.tbl.ms
12562 src_dir doc/specs/Xmu
12563 dst_dir doc/old/specs/Xmu
12565 action Xmu.ms
12567 src_dir doc/specs/XPRINT
12568 dst_dir doc/old/specs/XPRINT
12570 action xp_library.book
12571 action xp_library.mif
12572 action xp_libraryIX.doc
12573 action xp_libraryTOC.doc
12574 action xp_library_cov.mif
12575 action xp_proto.book
12576 action xp_proto.mif
12577 action xp_protoIX.doc
12578 action xp_protoTOC.doc
12579 action xp_proto_cov.mif
12581 src_dir doc/specs/XProtocol
12582 dst_dir doc/old/specs/XProtocol
12584 action X11.encoding
12585 action X11.keysyms
12586 action X11.protocol
12587 action glossary
12588 action indexmacros.t
12589 action postproc
12591 src_dir doc/specs/Xserver
12592 dst_dir doc/old/specs/Xserver
12594 action Xprt.book
12595 action Xprt.mif
12596 action XprtIX.doc
12597 action XprtTOC.doc
12598 action Xprt_cov.mif
12599 action analysis.tex
12600 action appgroup.ms
12601 action ddx.tbl.ms
12602 action fontlib.ms
12603 action secint.tex
12605 src_dir doc/specs/Xt
12606 dst_dir doc/old/specs/Xt
12608 action CH01
12609 action CH02
12610 action CH03
12611 action CH04
12612 action CH05
12613 action CH06
12614 action CH07
12615 action CH08
12616 action CH09
12617 action CH10
12618 action CH11
12619 action CH12
12620 action CH13
12621 action Xtk.intr.front
12622 action appA
12623 action appB
12624 action appC
12625 action appD
12626 action appE
12627 action appF
12628 action intr.idxmac.t
12629 action postproc
12630 action strings.mit
12632 src_dir doc/specs/xterm
12633 dst_dir doc/old/specs/xterm
12635 action ctlseqs.ms
12637 src_dir doc/specs/xtrans
12638 dst_dir doc/old/specs/xtrans
12640 action Xtrans.mm
12642 src_dir doc/specs/Xv
12643 dst_dir doc/old/specs/Xv
12645 action xv-protocol-v2.txt
12647 src_dir doc/specs/XvMC
12648 dst_dir doc/old/specs/XvMC
12650 action XvMC_API.txt
12652 src_dir doc/util
12653 dst_dir doc/old/util
12655 action block.awk
12656 action fixindex.awk
12657 action indexmacros.t
12658 action macros.t
12660 src_dir
12661 dst_dir doc/old
12662 action registry
12665 symlink_doc() {
12666 symlink_doc_old
12667 # symlink_doc_man
12668 # ...
12672 #########
12674 # The util module
12676 #########
12678 symlink_util_xmkmf() {
12679 src_dir config/util
12680 dst_dir util/xmkmf
12682 action xmkmf.cpp
12683 action xmkmf.man
12686 symlink_util_cf() {
12687 src_dir config/cf
12688 dst_dir util/cf
12690 action Amoeba.cf
12691 action apollo.cf
12692 action bsd.cf
12693 action bsdi.cf
12694 action bsdiLib.rules
12695 action bsdiLib.tmpl
12696 action bsdLib.rules
12697 action bsdLib.tmpl
12698 action cde.rules
12699 action cde.tmpl
12700 action convex.cf
12701 action cray.cf
12702 action cross.def
12703 action cross.rules
12704 action cygwin.cf
12705 action cygwin.rules
12706 action cygwin.tmpl
12707 action darwin.cf
12708 action darwinLib.rules
12709 action darwinLib.tmpl
12710 action DGUX.cf
12711 action dmx.cf
12712 action DragonFly.cf
12713 action FreeBSD.cf
12714 action fujitsu.cf
12715 action generic.cf
12716 action gnu.cf
12717 action gnuLib.rules
12718 action gnuLib.tmpl
12719 action hp.cf
12720 action hpLib.rules
12721 action hpLib.tmpl
12722 action ibm.cf
12723 action ibmLib.rules
12724 action ibmLib.tmpl
12725 action Imake.cf
12726 action Imake.rules
12727 action Imake.tmpl
12728 action isc.cf
12729 action Library.tmpl
12730 action linux.cf
12731 action lnxdoc.rules
12732 action lnxdoc.tmpl
12733 action lnxLib.rules
12734 action lnxLib.tmpl
12735 action luna.cf
12736 action lynx.cf
12737 action mach.cf
12738 action macII.cf
12739 action mingw.cf
12740 action mingw.rules
12741 action mingw.tmpl
12742 action minix.cf
12743 action Mips.cf
12744 action Motif.rules
12745 action Motif.tmpl
12746 action moto.cf
12747 action ncr.cf
12748 action nec.cf
12749 action necLib.rules
12750 action necLib.tmpl
12751 action NetBSD.cf
12752 action noop.rules
12753 action nto.cf
12754 action nto.rules
12755 action Oki.cf
12756 action oldlib.rules
12757 action OpenBSD.cf
12758 action OpenBSDLib.rules
12759 action OpenBSDLib.tmpl
12760 action os2.cf
12761 action os2def.db
12762 action os2Lib.rules
12763 action os2Lib.tmpl
12764 action os2.rules
12765 action osf1.cf
12766 action osfLib.rules
12767 action osfLib.tmpl
12768 action pegasus.cf
12769 action QNX4.cf
12770 action QNX4.rules
12771 action README
12772 action sco5.cf
12773 action sco.cf
12774 action scoLib.rules
12775 action sequent.cf
12776 action sequentLib.rules
12777 action ServerLib.tmpl
12778 action Server.tmpl
12779 action sgi.cf
12780 action sgiLib.rules
12781 action sgiLib.tmpl
12782 action site.def
12783 action site.sample
12784 action sony.cf
12785 action sun.cf
12786 action sunLib.rules
12787 action sunLib.tmpl
12788 action sv3Lib.rules
12789 action sv3Lib.tmpl
12790 action sv4Lib.rules
12791 action sv4Lib.tmpl
12792 action svr3.cf
12793 action svr4.cf
12794 action Threads.tmpl
12795 action ultrix.cf
12796 action usl.cf
12797 action Win32.cf
12798 action Win32.rules
12799 action WinLib.tmpl
12800 action X11.rules
12801 action X11.tmpl
12802 action x386.cf
12803 action xf86.rules
12804 action xf86site.def
12805 action xf86.tmpl
12806 action xfree86.cf
12807 action xorg.cf
12808 action xorgsite.def
12809 action xorg.tmpl
12810 action xorgversion.def
12811 action xprint_host.def
12814 symlink_util_imake() {
12815 src_dir config/imake
12816 dst_dir util/imake
12818 action ccimake.c
12819 action imake.c
12820 action imake.man
12821 action imakemdep.h
12822 action imakesvc.cmd
12823 action Makefile.ini
12826 symlink_util_makedepend() {
12827 src_dir config/makedepend
12828 dst_dir util/makedepend
12830 action cppsetup.c
12831 action def.h
12832 action ifparser.c
12833 action ifparser.h
12834 action include.c
12835 action main.c
12836 action mkdepend.man makedepend.man
12837 action parse.c
12838 action pr.c
12840 src_dir config/imake
12841 dst_dir util/makedepend
12843 action imakemdep.h
12846 symlink_util() {
12847 symlink_util_cf
12848 symlink_util_imake
12849 symlink_util_makedepend
12850 symlink_util_xmkmf
12851 # ...
12854 symlink_data_cursors_handhelds() {
12855 src_dir programs/xcursorgen/handhelds
12856 dst_dir data/cursors/handhelds
12858 action X_cursor.cfg
12859 action based_arrow_down.cfg
12860 action based_arrow_up.cfg
12861 action bottom_left_corner.cfg
12862 action bottom_right_corner.cfg
12863 action bottom_side.cfg
12864 action bottom_tee.cfg
12865 action center_ptr.cfg
12866 action circle.cfg
12867 action cross.cfg
12868 action dot.cfg
12869 action dotbox.cfg
12870 action double_arrow.cfg
12871 action draped_box.cfg
12872 action fleur.cfg
12873 action gumby.cfg
12874 action hand2.cfg
12875 action left_ptr.cfg
12876 action left_ptr_watch.cfg
12877 action left_side.cfg
12878 action left_tee.cfg
12879 action ll_angle.cfg
12880 action pencil.cfg
12881 action right_ptr.cfg
12882 action right_side.cfg
12883 action right_tee.cfg
12884 action sb_h_double_arrow.cfg
12885 action sb_right_arrow.cfg
12886 action sb_up_arrow.cfg
12887 action sb_v_double_arrow.cfg
12888 action shuttle.cfg
12889 action top_left_corner.cfg
12890 action top_right_corner.cfg
12891 action top_side.cfg
12892 action top_tee.cfg
12893 action watch.cfg
12894 action xterm.cfg
12897 symlink_data_cursors_redglass() {
12898 src_dir programs/xcursorgen/redglass
12899 dst_dir data/cursors/redglass
12901 action X_cursor-16.png
12902 action X_cursor-24.png
12903 action X_cursor-32.png
12904 action X_cursor-48.png
12905 action X_cursor-64.png
12906 action based_arrow_down-16.png
12907 action based_arrow_down-24.png
12908 action based_arrow_down-32.png
12909 action based_arrow_down-48.png
12910 action based_arrow_down-64.png
12911 action based_arrow_up-16.png
12912 action based_arrow_up-24.png
12913 action based_arrow_up-32.png
12914 action based_arrow_up-48.png
12915 action based_arrow_up-64.png
12916 action bottom_left_corner-16.png
12917 action bottom_left_corner-24.png
12918 action bottom_left_corner-32.png
12919 action bottom_left_corner-48.png
12920 action bottom_left_corner-64.png
12921 action bottom_right_corner-16.png
12922 action bottom_right_corner-24.png
12923 action bottom_right_corner-32.png
12924 action bottom_right_corner-48.png
12925 action bottom_right_corner-64.png
12926 action bottom_side-16.png
12927 action bottom_side-24.png
12928 action bottom_side-32.png
12929 action bottom_side-48.png
12930 action bottom_side-64.png
12931 action bottom_tee-16.png
12932 action bottom_tee-24.png
12933 action bottom_tee-32.png
12934 action bottom_tee-48.png
12935 action bottom_tee-64.png
12936 action center_ptr-16.png
12937 action center_ptr-24.png
12938 action center_ptr-32.png
12939 action center_ptr-48.png
12940 action center_ptr-64.png
12941 action circle-16.png
12942 action circle-24.png
12943 action circle-32.png
12944 action circle-48.png
12945 action circle-64.png
12946 action cross-16.png
12947 action cross-24.png
12948 action cross-32.png
12949 action cross-48.png
12950 action cross-64.png
12951 action dot-16.png
12952 action dot-24.png
12953 action dot-32.png
12954 action dot-48.png
12955 action dot-64.png
12956 action dotbox-16.png
12957 action dotbox-24.png
12958 action dotbox-32.png
12959 action dotbox-48.png
12960 action dotbox-64.png
12961 action double_arrow-16.png
12962 action double_arrow-24.png
12963 action double_arrow-32.png
12964 action double_arrow-48.png
12965 action double_arrow-64.png
12966 action draped_box-16.png
12967 action draped_box-24.png
12968 action draped_box-32.png
12969 action draped_box-48.png
12970 action draped_box-64.png
12971 action fleur-16.png
12972 action fleur-24.png
12973 action fleur-32.png
12974 action fleur-48.png
12975 action fleur-64.png
12976 action gumby-128.png
12977 action gumby-16.png
12978 action gumby-24.png
12979 action gumby-32.png
12980 action gumby-48.png
12981 action gumby-64.png
12982 action hand2-16.png
12983 action hand2-24.png
12984 action hand2-32.png
12985 action hand2-48.png
12986 action hand2-64.png
12987 action hourglass-135-16.png
12988 action hourglass-135-24.png
12989 action hourglass-135-32.png
12990 action hourglass-135-48.png
12991 action hourglass-135-64.png
12992 action hourglass-25-16.png
12993 action hourglass-25-24.png
12994 action hourglass-25-32.png
12995 action hourglass-25-48.png
12996 action hourglass-25-64.png
12997 action hourglass-45-16.png
12998 action hourglass-45-24.png
12999 action hourglass-45-32.png
13000 action hourglass-45-48.png
13001 action hourglass-45-64.png
13002 action hourglass-50-16.png
13003 action hourglass-50-24.png
13004 action hourglass-50-32.png
13005 action hourglass-50-48.png
13006 action hourglass-50-64.png
13007 action hourglass-75-16.png
13008 action hourglass-75-24.png
13009 action hourglass-75-32.png
13010 action hourglass-75-48.png
13011 action hourglass-75-64.png
13012 action hourglass-90-16.png
13013 action hourglass-90-24.png
13014 action hourglass-90-32.png
13015 action hourglass-90-48.png
13016 action hourglass-90-64.png
13017 action hourglass-empty-16.png
13018 action hourglass-empty-24.png
13019 action hourglass-empty-32.png
13020 action hourglass-empty-48.png
13021 action hourglass-empty-64.png
13022 action hourglass-full-16.png
13023 action hourglass-full-24.png
13024 action hourglass-full-32.png
13025 action hourglass-full-48.png
13026 action hourglass-full-64.png
13027 action left_ptr-16.png
13028 action left_ptr-24.png
13029 action left_ptr-32.png
13030 action left_ptr-48.png
13031 action left_ptr-64.png
13032 action left_ptr_watch-16.png
13033 action left_ptr_watch-24.png
13034 action left_ptr_watch-32.png
13035 action left_ptr_watch-48.png
13036 action left_ptr_watch-64.png
13037 action left_side-16.png
13038 action left_side-24.png
13039 action left_side-32.png
13040 action left_side-48.png
13041 action left_side-64.png
13042 action left_tee-16.png
13043 action left_tee-24.png
13044 action left_tee-32.png
13045 action left_tee-48.png
13046 action left_tee-64.png
13047 action ll_angle-16.png
13048 action ll_angle-24.png
13049 action ll_angle-32.png
13050 action ll_angle-48.png
13051 action ll_angle-64.png
13052 action pencil-16.png
13053 action pencil-24.png
13054 action pencil-32.png
13055 action pencil-48.png
13056 action pencil-64.png
13057 action right_ptr-16.png
13058 action right_ptr-24.png
13059 action right_ptr-32.png
13060 action right_ptr-48.png
13061 action right_ptr-64.png
13062 action right_side-16.png
13063 action right_side-24.png
13064 action right_side-32.png
13065 action right_side-48.png
13066 action right_side-64.png
13067 action right_tee-16.png
13068 action right_tee-24.png
13069 action right_tee-32.png
13070 action right_tee-48.png
13071 action right_tee-64.png
13072 action sb_h_double_arrow-16.png
13073 action sb_h_double_arrow-24.png
13074 action sb_h_double_arrow-32.png
13075 action sb_h_double_arrow-48.png
13076 action sb_h_double_arrow-64.png
13077 action sb_right_arrow-16.png
13078 action sb_right_arrow-24.png
13079 action sb_right_arrow-32.png
13080 action sb_right_arrow-48.png
13081 action sb_right_arrow-64.png
13082 action sb_up_arrow-16.png
13083 action sb_up_arrow-24.png
13084 action sb_up_arrow-32.png
13085 action sb_up_arrow-48.png
13086 action sb_up_arrow-64.png
13087 action sb_v_double_arrow-16.png
13088 action sb_v_double_arrow-24.png
13089 action sb_v_double_arrow-32.png
13090 action sb_v_double_arrow-48.png
13091 action sb_v_double_arrow-64.png
13092 action shuttle-16.png
13093 action shuttle-24.png
13094 action shuttle-32.png
13095 action shuttle-48.png
13096 action shuttle-64.png
13097 action top_left_corner-16.png
13098 action top_left_corner-24.png
13099 action top_left_corner-32.png
13100 action top_left_corner-48.png
13101 action top_left_corner-64.png
13102 action top_right_corner-16.png
13103 action top_right_corner-24.png
13104 action top_right_corner-32.png
13105 action top_right_corner-48.png
13106 action top_right_corner-64.png
13107 action top_side-16.png
13108 action top_side-24.png
13109 action top_side-32.png
13110 action top_side-48.png
13111 action top_side-64.png
13112 action top_tee-16.png
13113 action top_tee-24.png
13114 action top_tee-32.png
13115 action top_tee-48.png
13116 action top_tee-64.png
13117 action watch-16.png
13118 action watch-24.png
13119 action watch-32.png
13120 action watch-48.png
13121 action watch-64.png
13122 action xterm-16.png
13123 action xterm-24.png
13124 action xterm-32.png
13125 action xterm-48.png
13126 action xterm-64.png
13128 action X_cursor.cfg
13129 action based_arrow_down.cfg
13130 action based_arrow_up.cfg
13131 action bottom_left_corner.cfg
13132 action bottom_right_corner.cfg
13133 action bottom_side.cfg
13134 action bottom_tee.cfg
13135 action center_ptr.cfg
13136 action circle.cfg
13137 action cross.cfg
13138 action dot.cfg
13139 action dotbox.cfg
13140 action double_arrow.cfg
13141 action draped_box.cfg
13142 action fleur.cfg
13143 action gumby.cfg
13144 action hand2.cfg
13145 action left_ptr.cfg
13146 action left_ptr_watch.cfg
13147 action left_side.cfg
13148 action left_tee.cfg
13149 action ll_angle.cfg
13150 action pencil.cfg
13151 action right_ptr.cfg
13152 action right_side.cfg
13153 action right_tee.cfg
13154 action sb_h_double_arrow.cfg
13155 action sb_right_arrow.cfg
13156 action sb_up_arrow.cfg
13157 action sb_v_double_arrow.cfg
13158 action shuttle.cfg
13159 action top_left_corner.cfg
13160 action top_right_corner.cfg
13161 action top_side.cfg
13162 action top_tee.cfg
13163 action watch.cfg
13164 action xterm.cfg
13166 action based_arrow_down.xcf
13167 action based_arrow_up.xcf
13168 action basic_arrow.xcf
13169 action bottom_left_corner.xcf
13170 action bottom_right_corner.xcf
13171 action bottom_side.xcf
13172 action bottom_tee.xcf
13173 action center_ptr.xcf
13174 action circle.xcf
13175 action cross.xcf
13176 action dotbox.xcf
13177 action dot.xcf
13178 action double_arrow.xcf
13179 action draped_box.xcf
13180 action fleur.xcf
13181 action gumby.xcf
13182 action hand2.xcf
13183 action hourglass-135.xcf
13184 action hourglass-25.xcf
13185 action hourglass-45.xcf
13186 action hourglass-50.xcf
13187 action hourglass-75.xcf
13188 action hourglass-90.xcf
13189 action hourglass-empty.xcf
13190 action hourglass-full.xcf
13191 action hourglass-plain.xcf
13192 action left_ptr_watch.xcf
13193 action left_ptr.xcf
13194 action left_side.xcf
13195 action left_tee.xcf
13196 action ll_angle.xcf
13197 action pencil.xcf
13198 action right_ptr.xcf
13199 action right_side.xcf
13200 action right_tee.xcf
13201 action sb_h_double_arrow.xcf
13202 action sb_right_arrow.xcf
13203 action sb_up_arrow.xcf
13204 action sb_v_double_arrow.xcf
13205 action shuttle.xcf
13206 action top_left_corner.xcf
13207 action top_right_corner.xcf
13208 action top_side.xcf
13209 action top_tee.xcf
13210 action watch.xcf
13211 action X_cursor.xcf
13212 action xterm.xcf
13214 action gumby.svg
13217 symlink_data_cursors_whiteglass() {
13218 src_dir programs/xcursorgen/whiteglass
13219 dst_dir data/cursors/whiteglass
13221 action X_cursor-16.png
13222 action X_cursor-24.png
13223 action X_cursor-32.png
13224 action X_cursor-48.png
13225 action X_cursor-64.png
13226 action base_arrow_down-16.png
13227 action base_arrow_down-24.png
13228 action base_arrow_down-32.png
13229 action base_arrow_down-48.png
13230 action base_arrow_down-64.png
13231 action base_arrow_up-16.png
13232 action base_arrow_up-24.png
13233 action base_arrow_up-32.png
13234 action base_arrow_up-48.png
13235 action base_arrow_up-64.png
13236 action basic_arrow-16.png
13237 action basic_arrow-24.png
13238 action basic_arrow-32.png
13239 action basic_arrow-48.png
13240 action basic_arrow-64.png
13241 action boat-16.png
13242 action boat-24.png
13243 action boat-32.png
13244 action boat-48.png
13245 action boat-64.png
13246 action bottom_left_corner-16.png
13247 action bottom_left_corner-24.png
13248 action bottom_left_corner-32.png
13249 action bottom_left_corner-48.png
13250 action bottom_left_corner-64.png
13251 action bottom_right_corner-16.png
13252 action bottom_right_corner-24.png
13253 action bottom_right_corner-32.png
13254 action bottom_right_corner-48.png
13255 action bottom_right_corner-64.png
13256 action bottom_side-16.png
13257 action bottom_side-24.png
13258 action bottom_side-32.png
13259 action bottom_side-48.png
13260 action bottom_side-64.png
13261 action bottom_tee-16.png
13262 action bottom_tee-24.png
13263 action bottom_tee-32.png
13264 action bottom_tee-48.png
13265 action bottom_tee-64.png
13266 action center_ptr-16.png
13267 action center_ptr-24.png
13268 action center_ptr-32.png
13269 action center_ptr-48.png
13270 action center_ptr-64.png
13271 action circle-16.png
13272 action circle-24.png
13273 action circle-32.png
13274 action circle-48.png
13275 action circle-64.png
13276 action cross-16.png
13277 action cross-24.png
13278 action cross-32.png
13279 action cross-48.png
13280 action cross-64.png
13281 action dot-16.png
13282 action dot-24.png
13283 action dot-32.png
13284 action dot-48.png
13285 action dot-64.png
13286 action dot_box_mask-16.png
13287 action dot_box_mask-24.png
13288 action dot_box_mask-32.png
13289 action dot_box_mask-48.png
13290 action dot_box_mask-64.png
13291 action double_arrow-16.png
13292 action double_arrow-24.png
13293 action double_arrow-32.png
13294 action double_arrow-48.png
13295 action double_arrow-64.png
13296 action draped_box-16.png
13297 action draped_box-24.png
13298 action draped_box-32.png
13299 action draped_box-48.png
13300 action draped_box-64.png
13301 action exchange-16.png
13302 action exchange-24.png
13303 action exchange-32.png
13304 action exchange-48.png
13305 action exchange-64.png
13306 action fleur-16.png
13307 action fleur-24.png
13308 action fleur-32.png
13309 action fleur-48.png
13310 action fleur-64.png
13311 action gumby-128.png
13312 action gumby-16.png
13313 action gumby-24.png
13314 action gumby-32.png
13315 action gumby-48.png
13316 action gumby-64.png
13317 action hand1-16.png
13318 action hand1-24.png
13319 action hand1-32.png
13320 action hand1-48.png
13321 action hand1-64.png
13322 action hand2-16.png
13323 action hand2-24.png
13324 action hand2-32.png
13325 action hand2-48.png
13326 action hand2-64.png
13327 action left_ptr-16.png
13328 action left_ptr-24.png
13329 action left_ptr-32.png
13330 action left_ptr-48.png
13331 action left_ptr-64.png
13332 action left_ptr_watch-16.png
13333 action left_ptr_watch-24.png
13334 action left_ptr_watch-32.png
13335 action left_ptr_watch-48.png
13336 action left_ptr_watch-64.png
13337 action left_side-16.png
13338 action left_side-24.png
13339 action left_side-32.png
13340 action left_side-48.png
13341 action left_side-64.png
13342 action left_tee-16.png
13343 action left_tee-24.png
13344 action left_tee-32.png
13345 action left_tee-48.png
13346 action left_tee-64.png
13347 action ll_angle-16.png
13348 action ll_angle-24.png
13349 action ll_angle-32.png
13350 action ll_angle-48.png
13351 action ll_angle-64.png
13352 action lr_angle-16.png
13353 action lr_angle-24.png
13354 action lr_angle-32.png
13355 action lr_angle-48.png
13356 action lr_angle-64.png
13357 action pencil-16.png
13358 action pencil-24.png
13359 action pencil-32.png
13360 action pencil-48.png
13361 action pencil-64.png
13362 action pirate-16.png
13363 action pirate-24.png
13364 action pirate-32.png
13365 action pirate-48.png
13366 action pirate-64.png
13367 action question_arrow-16.png
13368 action question_arrow-24.png
13369 action question_arrow-32.png
13370 action question_arrow-48.png
13371 action question_arrow-64.png
13372 action right_ptr-16.png
13373 action right_ptr-24.png
13374 action right_ptr-32.png
13375 action right_ptr-48.png
13376 action right_ptr-64.png
13377 action right_side-16.png
13378 action right_side-24.png
13379 action right_side-32.png
13380 action right_side-48.png
13381 action right_side-64.png
13382 action right_tee-16.png
13383 action right_tee-24.png
13384 action right_tee-32.png
13385 action right_tee-48.png
13386 action right_tee-64.png
13387 action sailboat-16.png
13388 action sailboat-24.png
13389 action sailboat-32.png
13390 action sailboat-48.png
13391 action sailboat-64.png
13392 action sb_down_arrow-16.png
13393 action sb_down_arrow-24.png
13394 action sb_down_arrow-32.png
13395 action sb_down_arrow-48.png
13396 action sb_down_arrow-64.png
13397 action sb_h_double_arrow-16.png
13398 action sb_h_double_arrow-24.png
13399 action sb_h_double_arrow-32.png
13400 action sb_h_double_arrow-48.png
13401 action sb_h_double_arrow-64.png
13402 action sb_left_arrow-16.png
13403 action sb_left_arrow-24.png
13404 action sb_left_arrow-32.png
13405 action sb_left_arrow-48.png
13406 action sb_left_arrow-64.png
13407 action sb_right_arrow-16.png
13408 action sb_right_arrow-24.png
13409 action sb_right_arrow-32.png
13410 action sb_right_arrow-48.png
13411 action sb_right_arrow-64.png
13412 action sb_up_arrow-16.png
13413 action sb_up_arrow-24.png
13414 action sb_up_arrow-32.png
13415 action sb_up_arrow-48.png
13416 action sb_up_arrow-64.png
13417 action sb_v_double_arrow-16.png
13418 action sb_v_double_arrow-24.png
13419 action sb_v_double_arrow-32.png
13420 action sb_v_double_arrow-48.png
13421 action sb_v_double_arrow-64.png
13422 action shuttle-16.png
13423 action shuttle-24.png
13424 action shuttle-32.png
13425 action shuttle-48.png
13426 action shuttle-64.png
13427 action sizing-16.png
13428 action sizing-24.png
13429 action sizing-32.png
13430 action sizing-48.png
13431 action sizing-64.png
13432 action target-16.png
13433 action target-24.png
13434 action target-32.png
13435 action target-48.png
13436 action target-64.png
13437 action top_left_corner-16.png
13438 action top_left_corner-24.png
13439 action top_left_corner-32.png
13440 action top_left_corner-48.png
13441 action top_left_corner-64.png
13442 action top_right_corner-16.png
13443 action top_right_corner-24.png
13444 action top_right_corner-32.png
13445 action top_right_corner-48.png
13446 action top_right_corner-64.png
13447 action top_side-16.png
13448 action top_side-24.png
13449 action top_side-32.png
13450 action top_side-48.png
13451 action top_side-64.png
13452 action top_tee-16.png
13453 action top_tee-24.png
13454 action top_tee-32.png
13455 action top_tee-48.png
13456 action top_tee-64.png
13457 action trek-16.png
13458 action trek-24.png
13459 action trek-32.png
13460 action trek-48.png
13461 action trek-64.png
13462 action ul_angle-16.png
13463 action ul_angle-24.png
13464 action ul_angle-32.png
13465 action ul_angle-48.png
13466 action ul_angle-64.png
13467 action ur_angle-16.png
13468 action ur_angle-24.png
13469 action ur_angle-32.png
13470 action ur_angle-48.png
13471 action ur_angle-64.png
13472 action watch-16.png
13473 action watch-24.png
13474 action watch-32.png
13475 action watch-48.png
13476 action watch-64.png
13477 action xterm-16.png
13478 action xterm-24.png
13479 action xterm-32.png
13480 action xterm-48.png
13481 action xterm-64.png
13483 action X_cursor.cfg
13484 action base_arrow_down.cfg
13485 action base_arrow_up.cfg
13486 action basic_arrow.cfg
13487 action boat.cfg
13488 action bottom_left_corner.cfg
13489 action bottom_right_corner.cfg
13490 action bottom_side.cfg
13491 action bottom_tee.cfg
13492 action center_ptr.cfg
13493 action circle.cfg
13494 action cross.cfg
13495 action dot.cfg
13496 action dot_box_mask.cfg
13497 action double_arrow.cfg
13498 action draped_box.cfg
13499 action exchange.cfg
13500 action fleur.cfg
13501 action gumby.cfg
13502 action hand1.cfg
13503 action hand2.cfg
13504 action left_ptr.cfg
13505 action left_ptr_watch.cfg
13506 action left_side.cfg
13507 action left_tee.cfg
13508 action ll_angle.cfg
13509 action lr_angle.cfg
13510 action pencil.cfg
13511 action pirate.cfg
13512 action question_arrow.cfg
13513 action right_ptr.cfg
13514 action right_side.cfg
13515 action right_tee.cfg
13516 action sailboat.cfg
13517 action sb_down_arrow.cfg
13518 action sb_h_double_arrow.cfg
13519 action sb_left_arrow.cfg
13520 action sb_right_arrow.cfg
13521 action sb_up_arrow.cfg
13522 action sb_v_double_arrow.cfg
13523 action shuttle.cfg
13524 action sizing.cfg
13525 action target.cfg
13526 action top_left_corner.cfg
13527 action top_right_corner.cfg
13528 action top_side.cfg
13529 action top_tee.cfg
13530 action trek.cfg
13531 action ul_angle.cfg
13532 action ur_angle.cfg
13533 action watch.cfg
13534 action xterm.cfg
13536 action base_arrow_down.xcf
13537 action base_arrow_up.xcf
13538 action basic_arrow.xcf
13539 action boat.xcf
13540 action bottom_left_corner.xcf
13541 action bottom_right_corner.xcf
13542 action bottom_side.xcf
13543 action bottom_tee.xcf
13544 action center_ptr.xcf
13545 action circle.xcf
13546 action cross.xcf
13547 action dot_box_mask.xcf
13548 action dot.xcf
13549 action double_arrow.xcf
13550 action draped_box.xcf
13551 action exchange.xcf
13552 action fleur.xcf
13553 action gumby.xcf
13554 action hand1.xcf
13555 action hand2.xcf
13556 action left_ptr_watch.xcf
13557 action left_ptr.xcf
13558 action left_side.xcf
13559 action left_tee.xcf
13560 action ll_angle.xcf
13561 action lr_angle.xcf
13562 action pencil.xcf
13563 action pirate.xcf
13564 action question_arrow.xcf
13565 action right_ptr.xcf
13566 action right_side.xcf
13567 action right_tee.xcf
13568 action sailboat.xcf
13569 action sb_down_arrow.xcf
13570 action sb_h_double_arrow.xcf
13571 action sb_left_arrow.xcf
13572 action sb_right_arrow.xcf
13573 action sb_up_arrow.xcf
13574 action sb_v_double_arrow.xcf
13575 action shuttle.xcf
13576 action sizing.xcf
13577 action target.xcf
13578 action top_left_corner.xcf
13579 action top_right_corner.xcf
13580 action top_side.xcf
13581 action top_tee.xcf
13582 action trek.xcf
13583 action ul_angle.xcf
13584 action ur_angle.xcf
13585 action watch.xcf
13586 action X_cursor.xcf
13587 action xterm.xcf
13590 symlink_data_cursors() {
13591 symlink_data_cursors_handhelds
13592 symlink_data_cursors_redglass
13593 symlink_data_cursors_whiteglass
13596 symlink_data_bitmaps() {
13597 src_dir include/bitmaps
13598 dst_dir data/bitmaps
13600 action 1x1
13601 action 2x2
13602 action black
13603 action boxes
13604 action calculator
13605 action cntr_ptr
13606 action cntr_ptrmsk
13607 action cross_weave
13608 action dimple1
13609 action dimple3
13610 action dot
13611 action dropbar7
13612 action dropbar8
13613 action escherknot
13614 action flagdown
13615 action flagup
13616 action flipped_gray
13617 action gray
13618 action gray1
13619 action gray3
13620 action grid16
13621 action grid2
13622 action grid4
13623 action grid8
13624 action hlines2
13625 action hlines3
13626 action icon
13627 action keyboard16
13628 action left_ptr
13629 action left_ptrmsk
13630 action letters
13631 action light_gray
13632 action mailempty
13633 action mailemptymsk
13634 action mailfull
13635 action mailfullmsk
13636 action mensetmanus
13637 action menu10
13638 action menu12
13639 action menu16
13640 action menu6
13641 action menu8
13642 action noletters
13643 action opendot
13644 action opendotMask
13645 action plaid
13646 action right_ptr
13647 action right_ptrmsk
13648 action root_weave
13649 action scales
13650 action sipb
13651 action star
13652 action starMask
13653 action stipple
13654 action target
13655 action terminal
13656 action tie_fighter
13657 action vlines2
13658 action vlines3
13659 action weird_size
13660 action wide_weave
13661 action wingdogs
13662 action woman
13663 action xfd_icon
13664 action xlogo11
13665 action xlogo16
13666 action xlogo32
13667 action xlogo64
13668 action xsnow
13671 symlink_data_xkbdata() {
13672 src_dir programs/xkbcomp/torture
13673 dst_dir data/xkbdata/torture
13675 action indicator
13676 action indicator1
13677 action indicator2
13678 action indicator3
13679 action mod_compat
13680 action mod_compat1
13681 action mod_compat2
13682 action mod_compat3
13683 action mod_compat4
13684 action sym_interp
13685 action sym_interp1
13686 action sym_interp2
13687 action sym_interp3
13688 action sym_interp4
13689 action types
13691 src_dir programs/xkbcomp/types
13692 dst_dir data/xkbdata/types
13694 action README
13696 action basic
13697 action cancel
13698 action caps
13699 action complete
13700 action default
13701 action extra
13702 action iso9995
13703 action mousekeys
13704 action numpad
13705 action pc
13707 src_dir programs/xkbcomp/keycodes
13708 dst_dir data/xkbdata/keycodes
13710 action aliases
13711 action amiga
13712 action ataritt
13713 action fujitsu
13714 action hp
13715 action ibm
13716 action macintosh
13717 action powerpcps2
13718 action README
13719 action sony
13720 action sun
13721 action xfree86
13722 action xfree98
13724 src_dir programs/xkbcomp/keycodes/digital
13725 dst_dir data/xkbdata/keycodes/digital
13727 action lk
13728 action pc
13730 src_dir programs/xkbcomp/keycodes/sgi
13731 dst_dir data/xkbdata/keycodes/sgi
13733 action indigo
13734 action iris
13735 action indy
13737 src_dir programs/xkbcomp/rules
13738 dst_dir data/xkbdata/rules
13740 action README
13741 action sgi
13742 action sgi.lst
13743 action sun
13744 action sun.lst
13745 action xfree98
13746 action xfree98.lst
13747 action xkb.dtd
13748 action xml2lst.pl
13749 action xorg
13750 action xorg-it.lst
13751 action xorg.lst
13752 action xorg.xml
13754 src_dir programs/xkbcomp/compat
13755 dst_dir data/xkbdata/compat
13757 action accessx
13758 action basic
13759 action complete
13760 action default
13761 action iso9995
13762 action japan
13763 action keypad
13764 action ledcaps
13765 action lednum
13766 action ledscroll
13767 action misc
13768 action mousekeys
13769 action norepeat
13770 action pc
13771 action pc98
13772 action README
13773 action xfree86
13774 action xtest
13776 src_dir programs/xkbcomp/geometry
13777 dst_dir data/xkbdata/geometry
13779 action amiga
13780 action ataritt
13781 action chicony
13782 action dell
13783 action everex
13784 action fujitsu
13785 action hp
13786 action keytronic
13787 action kinesis
13788 action macintosh
13789 action microsoft
13790 action nec
13791 action northgate
13792 action pc
13793 action README
13794 action sony
13795 action sun
13796 action winbook
13798 src_dir programs/xkbcomp/geometry/sgi
13799 dst_dir data/xkbdata/geometry/sgi
13801 action indigo
13802 action indy
13803 action O2
13805 src_dir programs/xkbcomp/geometry/ibm
13806 dst_dir data/xkbdata/geometry/ibm
13808 action thinkpad
13810 src_dir programs/xkbcomp/geometry/digital
13811 dst_dir data/xkbdata/geometry/digital
13813 action lk
13814 action pc
13815 action unix
13817 src_dir programs/xkbcomp/semantics
13818 dst_dir data/xkbdata/semantics
13820 action basic
13821 action complete
13822 action default
13823 action xtest
13825 src_dir programs/xkbcomp/keymap
13826 dst_dir data/xkbdata/keymap
13828 action amiga
13829 action ataritt
13830 action macintosh
13831 action README
13832 action sony
13833 action xfree86
13834 action xfree98
13836 src_dir programs/xkbcomp/keymap/digital
13837 dst_dir data/xkbdata/keymap/digital
13839 action us
13841 src_dir programs/xkbcomp/keymap/sgi
13842 dst_dir data/xkbdata/keymap/sgi
13844 action be
13845 action bg
13846 action ca
13847 action cz
13848 action cz_qwerty
13849 action de
13850 action de_CH
13851 action dk
13852 action dvorak
13853 action en_US
13854 action es
13855 action fi
13856 action fr
13857 action fr_CH
13858 action gb
13859 action hu
13860 action it
13861 action jp
13862 action no
13863 action pl
13864 action pt
13865 action ru
13866 action se
13867 action sk
13868 action sk_qwerty
13869 action th
13870 action us
13872 src_dir programs/xkbcomp/keymap/sun
13873 dst_dir data/xkbdata/keymap/sun
13875 action de
13876 action es
13877 action fi
13878 action fr
13879 action no
13880 action pl
13881 action ru
13882 action se
13883 action uk
13884 action us
13886 src_dir programs/xkbcomp/symbols
13887 dst_dir data/xkbdata/symbols
13889 action al
13890 action altwin
13891 action am
13892 action apple
13893 action ar
13894 action az
13895 action be
13896 action ben
13897 action bg
13898 action br
13899 action bs
13900 action by
13901 action ca
13902 action ca_enhanced
13903 action capslock
13904 action compose
13905 action ctrl
13906 action cz
13907 action cz_qwerty
13908 action czsk
13909 action de
13910 action de_CH
13911 action dev
13912 action dk
13913 action dvorak
13914 action ee
13915 action el
13916 action en_US
13917 action es
13918 action eurosign
13919 action fi
13920 action fo
13921 action fr
13922 action fr_CH
13923 action gb
13924 action ge_la
13925 action ge_ru
13926 action group
13927 action guj
13928 action gur
13929 action hr
13930 action hr_US
13931 action hu
13932 action hu_qwerty
13933 action hu_US
13934 action ie
13935 action il
13936 action il_phonetic
13937 action inet
13938 action ir
13939 action is
13940 action iso9995-3
13941 action it
13942 action iu
13943 action jp
13944 action kan
13945 action keypad
13946 action la
13947 action level3
13948 action lo
13949 action lock
13950 action lt
13951 action lt_a
13952 action lt_p
13953 action lt_std
13954 action lv
13955 action mk
13956 action ml
13957 action mm
13958 action mn
13959 action mt
13960 action mt_us
13961 action nl
13962 action no
13963 action ogham
13964 action ori
13965 action pc104
13966 action pl
13967 action pl2
13968 action pt
13969 action ralt
13970 action README
13971 action ro
13972 action ro2
13973 action ru
13974 action sapmi
13975 action se
13976 action se_FI
13977 action se_NO
13978 action se_SE
13979 action si
13980 action sk
13981 action sk_qwerty
13982 action sr
13983 action srvr_ctrl
13984 action syr
13985 action syr_phonetic
13986 action tel
13987 action th
13988 action th_pat
13989 action th_tis
13990 action tj
13991 action tml
13992 action tr
13993 action tr_f
13994 action ua
13995 action us
13996 action us_group2
13997 action us_group3
13998 action us_intl
13999 action uz
14000 action vn
14001 action yu
14003 src_dir programs/xkbcomp/symbols/sun
14004 dst_dir data/xkbdata/symbols/sun
14006 action se
14007 action us
14008 action usb
14010 src_dir programs/xkbcomp/symbols/hp
14011 dst_dir data/xkbdata/symbols/hp
14013 action us
14015 src_dir programs/xkbcomp/symbols/macintosh
14016 dst_dir data/xkbdata/symbols/macintosh
14018 action de
14019 action de_CH
14020 action dk
14021 action es
14022 action fi
14023 action fr
14024 action fr_CH
14025 action gb
14026 action it
14027 action nl
14028 action no
14029 action pt
14030 action se
14031 action us
14033 src_dir programs/xkbcomp/symbols/pc
14034 dst_dir data/xkbdata/symbols/pc
14036 action al
14037 action am
14038 action ara
14039 action az
14040 action ba
14041 action bd
14042 action be
14043 action bg
14044 action br
14045 action bt
14046 action by
14047 action ca
14048 action ch
14049 action cz
14050 action de
14051 action dk
14052 action ee
14053 action es
14054 action fi
14055 action fo
14056 action fr
14057 action gb
14058 action ge
14059 action gr
14060 action hr
14061 action hu
14062 action ie
14063 action il
14064 action in
14065 action ir
14066 action is
14067 action it
14068 action jp
14069 action kg
14070 action la
14071 action latam
14072 action latin
14073 action lk
14074 action lt
14075 action lv
14076 action mao
14077 action mkd
14078 action mm
14079 action mn
14080 action mt
14081 action nl
14082 action no
14083 action pc
14084 action pk
14085 action pl
14086 action pt
14087 action ro
14088 action ru
14089 action se
14090 action si
14091 action sk
14092 action srp
14093 action sy
14094 action th
14095 action tj
14096 action tr
14097 action ua
14098 action us
14099 action uz
14100 action vn
14102 src_dir programs/xkbcomp/symbols/sgi
14103 dst_dir data/xkbdata/symbols/sgi
14105 action jp
14107 src_dir programs/xkbcomp/symbols/xfree68
14108 dst_dir data/xkbdata/symbols/xfree68
14110 action amiga
14111 action ataritt
14113 src_dir programs/xkbcomp/symbols/fujitsu
14114 dst_dir data/xkbdata/symbols/fujitsu
14116 action jp
14117 action us
14119 src_dir programs/xkbcomp/symbols/digital
14120 dst_dir data/xkbdata/symbols/digital
14122 action lk
14123 action pc
14124 action us
14125 action vt
14127 src_dir programs/xkbcomp/symbols/sony
14128 dst_dir data/xkbdata/symbols/sony
14130 action us
14132 src_dir programs/xkbcomp/symbols/nec
14133 dst_dir data/xkbdata/symbols/nec
14135 action jp
14138 symlink_data() {
14139 symlink_data_cursors
14140 symlink_data_bitmaps
14141 symlink_data_xkbdata
14145 ########
14147 # List of files that are deliberately not symlinked into
14148 # the modular tree
14150 #########
14152 # exclude $1 and everything in it
14153 exclude_directory()
14155 for dir in `find $SRC_DIR/$1 -type d` ; do
14156 dir=`echo $dir | sed s,$SRC_DIR,, | sed s,^/,,`
14157 src_dir $dir
14159 # Some versions of find do not support -maxdepth
14160 # for file in `find $SRC_DIR/$dir -maxdepth 1 -type f `; do
14161 # action `basename $file`
14162 # done
14163 for file in $SRC_DIR/$dir/*; do
14164 if [ -f $file ]; then
14165 action `basename $file`
14167 done
14168 done
14171 exclude_glob()
14173 for file in `find $SRC_DIR -name "$1"` ; do
14174 src_dir `dirname $file | sed s,$SRC_DIR,, | sed s,^/,,`
14175 action `basename $file`
14176 done
14179 exclude_xft_buildsystem()
14181 src_dir lib/Xft
14183 action aclocal.m4
14184 action autogen.sh
14185 action config.guess
14186 action config.h.in
14187 action config.sub
14188 action configure
14189 action configure.ac
14190 action depcomp
14191 action install-sh
14192 action ltmain.sh
14193 action Makefile.am
14194 action Makefile.in
14195 action missing
14196 action mkinstalldirs
14197 action Xft-def.cpp
14199 src_dir lib/Xft/config
14200 action config-subst
14203 exclude_render_buildsystem()
14205 src_dir lib/Xrender
14207 action AUTHORS
14208 action autogen.sh
14209 action ChangeLog
14210 action config.h
14211 action configure.ac
14212 action COPYING
14213 action INSTALL
14214 action NEWS
14215 action README
14216 action Xrender-def.cpp
14217 action xrender.pc.in
14220 exclude_composite_buildsystem()
14222 src_dir lib/Xcomposite
14224 action AUTHORS
14225 action autogen.sh
14226 action ChangeLog
14227 action configure.ac
14228 action COPYING
14229 action .cvsignore
14230 action INSTALL
14231 action Makefile.am
14232 action NEWS
14233 action README
14234 action xcomposite.pc.in
14237 exclude_cursor_buildsystem()
14239 src_dir lib/Xcursor
14241 action AUTHORS
14242 action autogen.sh
14243 action ChangeLog
14244 action config.h
14245 action config-subst
14246 action configure.ac
14247 action COPYING
14248 action INSTALL
14249 action Makefile.am
14250 action NEWS
14251 action README
14252 action xcursor-config.in
14253 action Xcursor-def.cpp
14254 action xcursor.pc.in
14257 exclude_damage_buildsystem()
14259 src_dir lib/Xdamage
14261 action AUTHORS
14262 action autogen.sh
14263 action ChangeLog
14264 action configure.ac
14265 action COPYING
14266 action .cvsignore
14267 action INSTALL
14268 action Makefile.am
14269 action NEWS
14270 action README
14271 action xdamage.pc.in
14274 exclude_fixes_buildsystem()
14276 src_dir lib/Xfixes
14278 action AUTHORS
14279 action autogen.sh
14280 action ChangeLog
14281 action configure.ac
14282 action COPYING
14283 action .cvsignore
14284 action INSTALL
14285 action Makefile.am
14286 action NEWS
14287 action README
14288 action Xfixes-def.cpp
14289 action xfixes.pc.in
14292 symlink_non_linked_files()
14294 # SGI is upstream for these files. Not sure what to about them, but
14295 # one place they absolutely do _not_ belong, is in the X tree.
14296 exclude_directory doc/man/GL
14297 exclude_directory doc/man/GLU
14299 # This stuff is used to build binary distributions of the monolith.
14300 # It would have to be redone to do something similar for the modular.
14301 exclude_directory programs/Xserver/hw/xfree86/etc/bindist
14303 # DPS is not part of the modular tree
14304 exclude_directory lib/dps
14305 exclude_directory programs/dpsexec
14306 exclude_directory programs/dpsinfo
14307 exclude_directory programs/texteroids
14308 exclude_directory include/DPS
14309 exclude_directory config/pswrap
14310 exclude_directory lib/dpstk
14311 exclude_directory lib/psres
14313 # Speedo font support is deprecated in 7.0
14314 exclude_directory lib/font/Speedo
14316 # Exclude unmaintained sun and sunLynx
14317 exclude_directory programs/Xserver/hw/sun
14318 exclude_directory programs/Xserver/hw/sunLynx
14320 # Exclude deprecated wacom(4)
14321 exclude_directory programs/Xserver/hw/xfree86/input/wacom
14323 # Exclude xterm
14324 exclude_directory programs/xterm
14326 # Nobody should really care about Xft1 anymore
14327 exclude_directory lib/Xft1
14329 # these are included with Mesa
14330 exclude_directory programs/glxgears
14331 exclude_directory programs/glxinfo
14332 exclude_directory lib/GLw
14333 exclude_directory include/GL
14335 # exclude config/util - I don't think it's relevant for the modular tree
14336 exclude_directory config/util
14338 # These all have their own build systems in the modular tree
14339 exclude_xft_buildsystem
14340 exclude_render_buildsystem
14341 exclude_composite_buildsystem
14342 exclude_cursor_buildsystem
14343 exclude_damage_buildsystem
14344 exclude_fixes_buildsystem
14346 # By definition the monolith is not upstream for this
14347 exclude_directory extras
14349 # Exclude memleak (verified by keithp)
14350 exclude_directory util/memleak
14352 # Use upstream packaging of expat
14353 exclude_directory lib/expat
14355 # Exclude fontconfig
14356 exclude_directory programs/fc-cache
14357 exclude_directory programs/fc-list
14358 exclude_directory lib/fontconfig
14360 # Exclude empty directory that just has README saying kdrive doesn't
14361 # live here any more
14362 exclude_directory programs/Xserver/hw/kdrive
14364 # Empty stubs for projects not yet checked into CVS
14365 exclude_directory programs/Xserver/Xprint/pdf
14366 exclude_directory programs/Xserver/Xprint/svg
14367 exclude_directory programs/Xserver/Xprint/windows
14369 # Exclude monolithic tree SDK
14370 exclude_directory programs/Xserver/hw/xfree86/sdk
14372 # Exclude platforms that are no longer maintained
14373 src_dir programs/Xserver/hw/xfree86/etc
14374 action install.sv3
14375 action mmapSVR3.shar
14376 action svr3_patch
14377 action svr3_rem_pch
14378 action svr4_patch
14379 action svr4_rem_pch
14381 # Upgrades stone age (pre-1994) config files to bronze age (1994)
14382 # config files. Not built in the monolith since XFree86 3.9 series
14383 # in 1998 and XFree86 has even deleted from their monolith.
14384 exclude_directory programs/Xserver/hw/xfree86/reconfig
14386 # These fonts are not needed because they are generated
14387 exclude_glob "*-L1.bdf"
14388 exclude_glob "*-JISX0201.bdf"
14390 # These files are not needed
14391 exclude_glob "Imakefile*"
14392 exclude_glob "jump_*"
14393 exclude_glob ".cvsignore"
14395 # These files are only used by OS/2 and can be added back if a
14396 # maintainer steps up
14397 exclude_glob "*-def.cpp"
14398 src_dir programs/Xserver
14399 action XFree86.def
14400 action Xnest.def
14401 action Xorg.def
14402 action Xvfb.def
14403 src_dir programs/Xserver/hw/xfree86/xf86config
14404 action xf86config.cmd
14406 # This file is replaced by httptransport.c in the modular tree
14407 src_dir programs/xrx/helper
14408 action httptran.c
14410 # Some toplevel monolithic stuff
14411 src_dir
14412 action BUILD # description of the monolithic build system
14413 action ChangeLog # irrelevant to modular
14414 action Makefile # Only useful for monolith
14416 # These files generate the list of drivers (input and video) for the
14417 # monolithic build system and are not needed for the modular build
14418 src_dir programs/Xserver/hw/xfree86/drivers
14419 action confdrv.sh
14420 src_dir programs/Xserver/hw/xfree86/input
14421 action confdrv.sh
14423 # expat is external now
14424 src_dir lib/expat
14425 action expat_config.h
14427 # This file is replaced by a Makefile.am
14428 src_dir programs/Xserver/hw/xfree86/drivers/mga/util
14429 action Makefile
14431 # The via_drm.h file belongs in libdrm
14432 src_dir programs/Xserver/hw/xfree86/drivers/via
14433 action via_drm.h
14435 # This file is only useful in the monolith
14436 src_dir programs/Xserver/hw/dmx/doc
14437 action Makefile.linux
14439 # No longer needed as dlopen modules are default
14440 src_dir programs/Xserver/hw/xfree86/os-support/sunos
14441 action find_deps.pl
14443 # Obsolete docs
14444 src_dir programs/Xserver/hw/xfree86/doc/sgml
14445 action BUILD.sgml # - specific to the monolith
14446 # build system
14447 action Status.sgml # - obsolete
14448 action README.build-docs # - specific to monolith build
14450 src_dir programs/Xserver/hw/xfree86
14451 action XF86Conf.man
14452 action XF98Conf.cpp
14454 # These docs are only useful for monolith
14455 src_dir
14456 action LABEL
14457 action README
14458 action README.crypto
14459 action RELNOTES
14461 # This file is not used by in modular tree
14462 src_dir
14463 action xf86Date.h
14465 # This should be distributed to various font components
14466 src_dir fonts/bdf/misc
14467 action README
14469 # Using upstream version from Gnome
14470 src_dir fonts/scaled/TTF
14471 action COPYRIGHT.Vera
14473 # This file is not used by makedepend in the monolith
14474 src_dir config/makedepend
14475 action cpp.ed
14477 # This file is not used in the monolith
14478 src_dir config/docbook
14479 action docbookconv.sh
14481 # The following files are simple test files that should not be
14482 # included with the library
14483 src_dir lib/Xrandr
14484 action test.c
14485 src_dir lib/font/Type1
14486 action minimain.c
14487 action t1test.c
14489 # Don't symlink XFree86 xpm logos or sequent .Xdefaults from xdm
14490 src_dir programs/xdm/config
14491 action XFree86.xpm
14492 action XFree86bw.xpm
14493 action system.Xdefaults.sequent
14494 action system.xsession.sequent
14496 # Dead source file from cfb, never built in monolith
14497 src_dir programs/Xserver/cfb
14498 action stipple68k.s
14500 # Generated html, so don't symlink
14501 src_dir programs/xphelloworld/xphelloworld
14502 action xphelloworld.html
14504 src_dir programs/xphelloworld/xpsimplehelloworld
14505 action xpsimplehelloworld.html
14507 src_dir programs/xphelloworld/xpxmhelloworld
14508 action xpxmhelloworld.html
14510 src_dir programs/xphelloworld/xpxthelloworld
14511 action xpxthelloworld.html
14513 src_dir programs/xplsprinters
14514 action xplsprinters.html
14516 src_dir programs/xprehashprinterlist
14517 action xprehashprinterlist.html
14519 src_dir doc/man/general
14520 action Xprint.html
14522 # Unused symbol export control thing. No clue how this ever worked.
14523 exclude_glob "*.elist"
14525 # Highly non-free reimplementation of snprintf. If your libc is so
14526 # crippled as to need this, steal it from BSD's libc instead, thanks.
14527 src_dir lib/misc
14528 action snprintf.c
14529 action snprintf.h
14531 # A do-nothing header in Xevie. Take a drink.
14532 src_dir lib/Xevie
14533 action xevieplaceholder.h
14535 # Script to generate the list of widgets in the Xaw set. Hopefully
14536 # no one is adding new ones anymore...
14537 src_dir lib/Xaw
14538 action genlist.sh
14540 # Workarounds for long forgotten bugs in SunOS 4.1 & Solaris 2.3
14541 src_dir util/misc
14542 action dlsym.c
14543 action thr_stubs.c
14544 action rt.stdarg.h
14546 # Generated README files for the drivers
14547 src_dir programs/Xserver/hw/xfree86/doc
14548 action README.DECtga
14549 action README.I128
14550 action README.SiS
14551 action README.apm
14552 action README.chips
14553 action README.cyrix
14554 action README.i740
14555 action README.i810
14556 action README.mouse
14557 action README.newport
14558 action README.rendition
14559 action README.s3virge
14560 action README.ati
14561 action README.r128
14563 # We use the compiled version of ucs2any, so the perl version is no
14564 # longer needed or used
14565 src_dir fonts/util
14566 action ucs2any.pl
14568 # This .cf file is used only in the local xedit Imakefiles
14569 src_dir programs/xedit/lisp
14570 action lisp.cf
14572 # The following file is duplicates the copyright that is already
14573 # present in the source files
14574 src_dir programs/rstart
14575 action c
14578 print_source()
14580 echo $1 >> symlink-processed-files
14583 generate_monolith_files()
14585 for cvsdir in `find $SRC_DIR -name "CVS"` ; do
14586 for file in `cat $cvsdir/Entries | grep -v "^D" | cut -d"/" -f2 `; do
14587 echo `echo $cvsdir | sed s/CVS//`$file >> all-monolith-files
14588 done
14589 done
14592 list_missing()
14594 rm -f symlink-processed-files
14595 rm -f symlink-processed-files.sorted
14596 rm -f all-monolith-files
14597 rm -f all-monolith-files.sorted
14599 # make sure we are not excluding anything that doesn't exist
14600 ACTION=check_exist EXPLANATION="Checking that excluded files exist" run_module non_linked_files
14602 # generate a list of all files that this script is going to link
14603 run print_source "Generating list of linked files"
14605 # generate a list of all files that this script is explicityly *not* going to link
14606 ACTION=print_source EXPLANATION="Generating list of non-linked files" run_module non_linked_files
14608 # generate a list of all files in the xc directory, except those that
14609 # we already know we don't care about
14611 echo -n Generating list of all monolithic files ...\
14613 generate_monolith_files
14615 echo DONE
14617 echo -n Generating list of missing files in file \"missing-files\" ...\
14619 sort symlink-processed-files > symlink-processed-files.sorted
14620 sort all-monolith-files > all-monolith-files.sorted
14622 diff -u symlink-processed-files.sorted all-monolith-files.sorted | grep -v "^-" | grep "^\+" | cut -d "+" -f2 > missing-files
14624 echo DONE
14628 #########
14630 # Helper functions
14632 #########
14634 error() {
14635 echo
14636 echo \ \ \ error:\ \ \ $1
14637 exit
14640 # printing out what's going on
14641 run_module() {
14642 # $1 module
14643 # $2 explanation
14644 echo -n $EXPLANATION for $1 module ...\
14645 symlink_$1
14646 echo DONE
14649 run() {
14650 # $1 what to do
14651 # $2 explanation
14653 ACTION=$1 EXPLANATION=$2 run_module proto
14654 ACTION=$1 EXPLANATION=$2 run_module lib
14655 ACTION=$1 EXPLANATION=$2 run_module app
14656 ACTION=$1 EXPLANATION=$2 run_module xserver
14657 ACTION=$1 EXPLANATION=$2 run_module driver
14658 ACTION=$1 EXPLANATION=$2 run_module font
14659 ACTION=$1 EXPLANATION=$2 run_module doc
14660 ACTION=$1 EXPLANATION=$2 run_module util
14661 ACTION=$1 EXPLANATION=$2 run_module data
14664 src_dir() {
14665 if [ x$1 = x ]; then
14666 REAL_SRC_DIR=$SRC_DIR
14667 else
14668 REAL_SRC_DIR=$SRC_DIR/$1
14670 if [ ! -d $REAL_SRC_DIR ] ; then
14671 error "Source directory $REAL_SRC_DIR does not exist"
14675 dst_dir() {
14676 REAL_DST_DIR=$DST_DIR/$1
14677 if [ ! -d $REAL_DST_DIR ] ; then
14678 mkdir -p $REAL_DST_DIR
14682 action() {
14683 if [ -z $2 ] ; then
14684 $ACTION $REAL_SRC_DIR/$1 $REAL_DST_DIR/$1
14685 else
14686 $ACTION $REAL_SRC_DIR/$1 $REAL_DST_DIR/$2
14690 usage() {
14691 echo
14692 echo Usage:
14693 echo \ symlink.sh [ -m ] src-dir dst-dir
14694 echo
14695 echo \ src-dir: the xc directory of the monolithic source tree
14696 echo \ dst-dir: the modular source tree containing proto, app, lib, ...
14697 echo
14698 echo \ -m: Instead of symlinking the files, list the files from the source
14699 echo \ \ \ \ \ \ directory that are not processed by this script
14702 # Check commandline args
14703 check_args() {
14704 MISSING_FILES=no
14705 if [ x$1 = "x-m" ] ; then
14706 MISSING_FILES=yes
14707 shift
14710 if [ -z $1 ] ; then
14711 echo Missing source dir
14712 usage
14713 exit 1
14716 if [ -z $2 ] ; then
14717 echo Missing destination dir
14718 usage
14719 exit 1
14722 if [ ! -d $1 ] ; then
14723 echo $1 is not a dir
14724 usage
14725 exit 1
14728 if [ ! -d $2 ] ; then
14729 echo $2 is not a dir
14730 usage
14731 exit 1
14734 if [ $1 = $2 ] ; then
14735 echo source and destination can\'t be the same
14736 usage
14737 exit 1
14740 D=`dirname "$relpath"`
14741 B=`basename "$relpath"`
14742 abspath="`cd \"$D\" 2>/dev/null && pwd || echo \"$D\"`/$B"
14744 SRC_DIR=`( cd $1 ; pwd )`
14745 DST_DIR=`( cd $2 ; pwd )`
14748 check_args $1 $2 $3
14750 if [ $MISSING_FILES = yes ] ; then
14751 list_missing
14752 else
14753 run_symlink