Use sed to put version number in man page Add shadow man pages for man
[xorg-util-modular.git] / symlink.sh
blob1c39a96bb75b0ef324f454830625b61f4c01629e
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
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 # el_GR.UTF-8
1461 dst_dir lib/X11/nls/el_GR.UTF-8
1462 src_dir nls/Compose
1463 action el_GR.UTF-8 Compose.pre
1465 # en_US.UTF-8
1466 dst_dir lib/X11/nls/en_US.UTF-8
1467 src_dir nls/XLC_LOCALE
1468 action en_US.UTF-8 XLC_LOCALE.pre
1469 src_dir nls/XI18N_OBJS
1470 action en_US.UTF-8 XI18N_OBJS
1471 src_dir nls/Compose
1472 action en_US.UTF-8 Compose.pre
1474 # georgian-academy
1475 dst_dir lib/X11/nls/georgian-academy
1476 src_dir nls/XLC_LOCALE
1477 action georgian-academy XLC_LOCALE.pre
1478 src_dir nls/XI18N_OBJS
1479 action georgian-academy XI18N_OBJS
1480 src_dir nls/Compose
1481 action georgian-academy Compose.pre
1483 # georgian-ps
1484 dst_dir lib/X11/nls/georgian-ps
1485 src_dir nls/XLC_LOCALE
1486 action georgian-ps XLC_LOCALE.pre
1487 src_dir nls/XI18N_OBJS
1488 action georgian-ps XI18N_OBJS
1489 src_dir nls/Compose
1490 action georgian-ps Compose.pre
1492 # ibm-cp1133
1493 dst_dir lib/X11/nls/ibm-cp1133
1494 src_dir nls/XLC_LOCALE
1495 action ibm-cp1133 XLC_LOCALE.pre
1496 src_dir nls/XI18N_OBJS
1497 action ibm-cp1133 XI18N_OBJS
1498 src_dir nls/Compose
1499 action ibm-cp1133 Compose.pre
1501 # iscii-dev
1502 dst_dir lib/X11/nls/iscii-dev
1503 src_dir nls/XLC_LOCALE
1504 action iscii-dev XLC_LOCALE.pre
1505 src_dir nls/XI18N_OBJS
1506 action iscii-dev XI18N_OBJS
1507 #src_dir nls/Compose
1508 #action iscii-dev Compose.pre
1510 # isiri-3342
1511 dst_dir lib/X11/nls/isiri-3342
1512 src_dir nls/XLC_LOCALE
1513 action isiri-3342 XLC_LOCALE.pre
1514 src_dir nls/XI18N_OBJS
1515 action isiri-3342 XI18N_OBJS
1516 #src_dir nls/Compose
1517 #action isiri-3342 Compose.pre
1519 # iso8859-1
1520 dst_dir lib/X11/nls/iso8859-1
1521 src_dir nls/XLC_LOCALE
1522 action iso8859-1 XLC_LOCALE.pre
1523 src_dir nls/XI18N_OBJS
1524 action iso8859-1 XI18N_OBJS
1525 src_dir nls/Compose
1526 action iso8859-1 Compose.pre
1528 # iso8859-10
1529 dst_dir lib/X11/nls/iso8859-10
1530 src_dir nls/XLC_LOCALE
1531 action iso8859-10 XLC_LOCALE.pre
1532 src_dir nls/XI18N_OBJS
1533 action iso8859-10 XI18N_OBJS
1534 src_dir nls/Compose
1535 action iso8859-10 Compose.pre
1537 # iso8859-11
1538 dst_dir lib/X11/nls/iso8859-11
1539 src_dir nls/XLC_LOCALE
1540 action iso8859-11 XLC_LOCALE.pre
1541 src_dir nls/XI18N_OBJS
1542 action iso8859-11 XI18N_OBJS
1543 #src_dir nls/Compose
1544 #action iso8859-11 Compose.pre
1546 # iso8859-13
1547 dst_dir lib/X11/nls/iso8859-13
1548 src_dir nls/XLC_LOCALE
1549 action iso8859-13 XLC_LOCALE.pre
1550 src_dir nls/XI18N_OBJS
1551 action iso8859-13 XI18N_OBJS
1552 src_dir nls/Compose
1553 action iso8859-13 Compose.pre
1555 # iso8859-14
1556 dst_dir lib/X11/nls/iso8859-14
1557 src_dir nls/XLC_LOCALE
1558 action iso8859-14 XLC_LOCALE.pre
1559 src_dir nls/XI18N_OBJS
1560 action iso8859-14 XI18N_OBJS
1561 src_dir nls/Compose
1562 action iso8859-14 Compose.pre
1564 # iso8859-15
1565 dst_dir lib/X11/nls/iso8859-15
1566 src_dir nls/XLC_LOCALE
1567 action iso8859-15 XLC_LOCALE.pre
1568 src_dir nls/XI18N_OBJS
1569 action iso8859-15 XI18N_OBJS
1570 src_dir nls/Compose
1571 action iso8859-15 Compose.pre
1573 # iso8859-2
1574 dst_dir lib/X11/nls/iso8859-2
1575 src_dir nls/XLC_LOCALE
1576 action iso8859-2 XLC_LOCALE.pre
1577 src_dir nls/XI18N_OBJS
1578 action iso8859-2 XI18N_OBJS
1579 src_dir nls/Compose
1580 action iso8859-2 Compose.pre
1582 # iso8859-3
1583 dst_dir lib/X11/nls/iso8859-3
1584 src_dir nls/XLC_LOCALE
1585 action iso8859-3 XLC_LOCALE.pre
1586 src_dir nls/XI18N_OBJS
1587 action iso8859-3 XI18N_OBJS
1588 src_dir nls/Compose
1589 action iso8859-3 Compose.pre
1591 # iso8859-4
1592 dst_dir lib/X11/nls/iso8859-4
1593 src_dir nls/XLC_LOCALE
1594 action iso8859-4 XLC_LOCALE.pre
1595 src_dir nls/XI18N_OBJS
1596 action iso8859-4 XI18N_OBJS
1597 src_dir nls/Compose
1598 action iso8859-4 Compose.pre
1600 # iso8859-5
1601 dst_dir lib/X11/nls/iso8859-5
1602 src_dir nls/XLC_LOCALE
1603 action iso8859-5 XLC_LOCALE.pre
1604 src_dir nls/XI18N_OBJS
1605 action iso8859-5 XI18N_OBJS
1606 src_dir nls/Compose
1607 action iso8859-5 Compose.pre
1609 # iso8859-6
1610 dst_dir lib/X11/nls/iso8859-6
1611 src_dir nls/XLC_LOCALE
1612 action iso8859-6 XLC_LOCALE.pre
1613 src_dir nls/XI18N_OBJS
1614 action iso8859-6 XI18N_OBJS
1615 src_dir nls/Compose
1616 action iso8859-6 Compose.pre
1618 # iso8859-7
1619 dst_dir lib/X11/nls/iso8859-7
1620 src_dir nls/XLC_LOCALE
1621 action iso8859-7 XLC_LOCALE.pre
1622 src_dir nls/XI18N_OBJS
1623 action iso8859-7 XI18N_OBJS
1624 src_dir nls/Compose
1625 action iso8859-7 Compose.pre
1627 # iso8859-8
1628 dst_dir lib/X11/nls/iso8859-8
1629 src_dir nls/XLC_LOCALE
1630 action iso8859-8 XLC_LOCALE.pre
1631 src_dir nls/XI18N_OBJS
1632 action iso8859-8 XI18N_OBJS
1633 src_dir nls/Compose
1634 action iso8859-8 Compose.pre
1636 # iso8859-9
1637 dst_dir lib/X11/nls/iso8859-9
1638 src_dir nls/XLC_LOCALE
1639 action iso8859-9 XLC_LOCALE.pre
1640 src_dir nls/XI18N_OBJS
1641 action iso8859-9 XI18N_OBJS
1642 src_dir nls/Compose
1643 action iso8859-9 Compose.pre
1645 # iso8859-9e
1646 dst_dir lib/X11/nls/iso8859-9e
1647 src_dir nls/XLC_LOCALE
1648 action iso8859-9e XLC_LOCALE.pre
1649 src_dir nls/XI18N_OBJS
1650 action iso8859-9e XI18N_OBJS
1651 src_dir nls/Compose
1652 action iso8859-9e Compose.pre
1654 # ja
1655 dst_dir lib/X11/nls/ja
1656 src_dir nls/XLC_LOCALE
1657 action ja XLC_LOCALE.pre
1658 src_dir nls/XI18N_OBJS
1659 action ja XI18N_OBJS
1660 src_dir nls/Compose
1661 action ja Compose.pre
1663 # ja.JIS
1664 dst_dir lib/X11/nls/ja.JIS
1665 src_dir nls/XLC_LOCALE
1666 action ja.JIS XLC_LOCALE.pre
1667 src_dir nls/XI18N_OBJS
1668 action ja.JIS XI18N_OBJS
1669 src_dir nls/Compose
1670 action ja.JIS Compose.pre
1672 # ja_JP.UTF-8
1673 dst_dir lib/X11/nls/ja_JP.UTF-8
1674 src_dir nls/XLC_LOCALE
1675 action ja_JP.UTF-8 XLC_LOCALE.pre
1676 src_dir nls/XI18N_OBJS
1677 action ja_JP.UTF-8 XI18N_OBJS
1678 #src_dir nls/Compose
1679 #action ja_JP.UTF-8 Compose.pre
1681 # ja.S90
1682 dst_dir lib/X11/nls/ja.S90
1683 src_dir nls/XLC_LOCALE
1684 action ja.S90 XLC_LOCALE.pre
1685 src_dir nls/XI18N_OBJS
1686 action ja.S90 XI18N_OBJS
1687 #src_dir nls/Compose
1688 #action ja.S90 Compose.pre
1690 # ja.SJIS
1691 dst_dir lib/X11/nls/ja.SJIS
1692 src_dir nls/XLC_LOCALE
1693 action ja.SJIS XLC_LOCALE.pre
1694 src_dir nls/XI18N_OBJS
1695 action ja.SJIS XI18N_OBJS
1696 src_dir nls/Compose
1697 action ja.SJIS Compose.pre
1699 # ja.U90
1700 dst_dir lib/X11/nls/ja.U90
1701 src_dir nls/XLC_LOCALE
1702 action ja.U90 XLC_LOCALE.pre
1703 src_dir nls/XI18N_OBJS
1704 action ja.U90 XI18N_OBJS
1705 #src_dir nls/Compose
1706 #action ja.U90 Compose.pre
1708 # ko
1709 dst_dir lib/X11/nls/ko
1710 src_dir nls/XLC_LOCALE
1711 action ko XLC_LOCALE.pre
1712 src_dir nls/XI18N_OBJS
1713 action ko XI18N_OBJS
1714 src_dir nls/Compose
1715 action ko Compose.pre
1717 # koi8-c
1718 dst_dir lib/X11/nls/koi8-c
1719 src_dir nls/XLC_LOCALE
1720 action koi8-c XLC_LOCALE.pre
1721 src_dir nls/XI18N_OBJS
1722 action koi8-c XI18N_OBJS
1723 src_dir nls/Compose
1724 action koi8-c Compose.pre
1726 # koi8-r
1727 dst_dir lib/X11/nls/koi8-r
1728 src_dir nls/XLC_LOCALE
1729 action koi8-r XLC_LOCALE.pre
1730 src_dir nls/XI18N_OBJS
1731 action koi8-r XI18N_OBJS
1732 src_dir nls/Compose
1733 action koi8-r Compose.pre
1735 # koi8-u
1736 dst_dir lib/X11/nls/koi8-u
1737 src_dir nls/XLC_LOCALE
1738 action koi8-u XLC_LOCALE.pre
1739 src_dir nls/XI18N_OBJS
1740 action koi8-u XI18N_OBJS
1741 src_dir nls/Compose
1742 action koi8-u Compose.pre
1744 # ko_KR.UTF-8
1745 dst_dir lib/X11/nls/ko_KR.UTF-8
1746 src_dir nls/XLC_LOCALE
1747 action ko_KR.UTF-8 XLC_LOCALE.pre
1748 src_dir nls/XI18N_OBJS
1749 action ko_KR.UTF-8 XI18N_OBJS
1750 #src_dir nls/Compose
1751 #action ko_KR.UTF-8 Compose.pre
1753 # microsoft-cp1251
1754 dst_dir lib/X11/nls/microsoft-cp1251
1755 src_dir nls/XLC_LOCALE
1756 action microsoft-cp1251 XLC_LOCALE.pre
1757 src_dir nls/XI18N_OBJS
1758 action microsoft-cp1251 XI18N_OBJS
1759 #src_dir nls/Compose
1760 #action microsoft-cp1251 Compose.pre
1762 # microsoft-cp1255
1763 dst_dir lib/X11/nls/microsoft-cp1255
1764 src_dir nls/XLC_LOCALE
1765 action microsoft-cp1255 XLC_LOCALE.pre
1766 src_dir nls/XI18N_OBJS
1767 action microsoft-cp1255 XI18N_OBJS
1768 #src_dir nls/Compose
1769 #action microsoft-cp1255 Compose.pre
1771 # microsoft-cp1256
1772 dst_dir lib/X11/nls/microsoft-cp1256
1773 src_dir nls/XLC_LOCALE
1774 action microsoft-cp1256 XLC_LOCALE.pre
1775 src_dir nls/XI18N_OBJS
1776 action microsoft-cp1256 XI18N_OBJS
1777 #src_dir nls/Compose
1778 #action microsoft-cp1256 Compose.pre
1780 # mulelao-1
1781 dst_dir lib/X11/nls/mulelao-1
1782 src_dir nls/XLC_LOCALE
1783 action mulelao-1 XLC_LOCALE.pre
1784 src_dir nls/XI18N_OBJS
1785 action mulelao-1 XI18N_OBJS
1786 src_dir nls/Compose
1787 action mulelao-1 Compose.pre
1789 # nokhchi-1
1790 dst_dir lib/X11/nls/nokhchi-1
1791 src_dir nls/XLC_LOCALE
1792 action nokhchi-1 XLC_LOCALE.pre
1793 src_dir nls/XI18N_OBJS
1794 action nokhchi-1 XI18N_OBJS
1795 #src_dir nls/Compose
1796 #action nokhchi-1 Compose.pre
1798 # pt_BR.UTF-8
1799 dst_dir lib/X11/nls/pt_BR.UTF-8
1800 src_dir nls/XLC_LOCALE
1801 action pt_BR.UTF-8 XLC_LOCALE.pre
1802 src_dir nls/XI18N_OBJS
1803 action pt_BR.UTF-8 XI18N_OBJS
1804 src_dir nls/Compose
1805 action pt_BR.UTF-8 Compose.pre
1807 # tatar-cyr
1808 dst_dir lib/X11/nls/tatar-cyr
1809 src_dir nls/XLC_LOCALE
1810 action tatar-cyr XLC_LOCALE.pre
1811 src_dir nls/XI18N_OBJS
1812 action tatar-cyr XI18N_OBJS
1813 #src_dir nls/Compose
1814 #action tatar-cyr Compose.pre
1816 # th_TH
1817 dst_dir lib/X11/nls/th_TH
1818 src_dir nls/XLC_LOCALE
1819 action th_TH XLC_LOCALE.pre
1820 src_dir nls/XI18N_OBJS
1821 action th_TH XI18N_OBJS
1822 #src_dir nls/Compose
1823 #action th_TH Compose.pre
1825 # th_TH.UTF-8
1826 dst_dir lib/X11/nls/th_TH.UTF-8
1827 src_dir nls/XLC_LOCALE
1828 action th_TH.UTF-8 XLC_LOCALE.pre
1829 src_dir nls/XI18N_OBJS
1830 action th_TH.UTF-8 XI18N_OBJS
1831 #src_dir nls/Compose
1832 #action th_TH.UTF-8 Compose.pre
1834 # tscii-0
1835 dst_dir lib/X11/nls/tscii-0
1836 src_dir nls/XLC_LOCALE
1837 action tscii-0 XLC_LOCALE.pre
1838 src_dir nls/XI18N_OBJS
1839 action tscii-0 XI18N_OBJS
1840 #src_dir nls/Compose
1841 #action tscii-0 Compose.pre
1843 # vi_VN.tcvn
1844 dst_dir lib/X11/nls/vi_VN.tcvn
1845 src_dir nls/XLC_LOCALE
1846 action vi_VN.tcvn XLC_LOCALE.pre
1847 src_dir nls/XI18N_OBJS
1848 action vi_VN.tcvn XI18N_OBJS
1849 src_dir nls/Compose
1850 action vi_VN.tcvn Compose.pre
1852 # vi_VN.viscii
1853 dst_dir lib/X11/nls/vi_VN.viscii
1854 src_dir nls/XLC_LOCALE
1855 action vi_VN.viscii XLC_LOCALE.pre
1856 src_dir nls/XI18N_OBJS
1857 action vi_VN.viscii XI18N_OBJS
1858 src_dir nls/Compose
1859 action vi_VN.viscii Compose.pre
1861 # zh_CN
1862 dst_dir lib/X11/nls/zh_CN
1863 src_dir nls/XLC_LOCALE
1864 action zh_CN XLC_LOCALE.pre
1865 src_dir nls/XI18N_OBJS
1866 action zh_CN XI18N_OBJS
1867 # src_dir nls/Compose
1868 # action zh_CN Compose.pre
1870 # zh_CN.gb18030
1871 dst_dir lib/X11/nls/zh_CN.gb18030
1872 src_dir nls/XLC_LOCALE
1873 action zh_CN.gb18030 XLC_LOCALE.pre
1874 src_dir nls/XI18N_OBJS
1875 action zh_CN.gb18030 XI18N_OBJS
1876 src_dir nls/Compose
1877 action zh_CN.gb18030 Compose.pre
1879 # zh_CN.gbk
1880 dst_dir lib/X11/nls/zh_CN.gbk
1881 src_dir nls/XLC_LOCALE
1882 action zh_CN.gbk XLC_LOCALE.pre
1883 src_dir nls/XI18N_OBJS
1884 action zh_CN.gbk XI18N_OBJS
1885 src_dir nls/Compose
1886 action zh_CN.gbk Compose.pre
1888 # zh_CN.UTF-8
1889 dst_dir lib/X11/nls/zh_CN.UTF-8
1890 src_dir nls/XLC_LOCALE
1891 action zh_CN.UTF-8 XLC_LOCALE.pre
1892 src_dir nls/XI18N_OBJS
1893 action zh_CN.UTF-8 XI18N_OBJS
1894 #src_dir nls/Compose
1895 #action zh_CN.UTF-8 Compose.pre
1897 # zh_HK.big5
1898 dst_dir lib/X11/nls/zh_HK.big5
1899 src_dir nls/XLC_LOCALE
1900 action zh_HK.big5 XLC_LOCALE.pre
1901 src_dir nls/XI18N_OBJS
1902 action zh_HK.big5 XI18N_OBJS
1903 src_dir nls/Compose
1904 action zh_HK.big5 Compose.pre
1906 # zh_HK.big5hkscs
1907 dst_dir lib/X11/nls/zh_HK.big5hkscs
1908 src_dir nls/XLC_LOCALE
1909 action zh_HK.big5hkscs XLC_LOCALE.pre
1910 src_dir nls/XI18N_OBJS
1911 action zh_HK.big5hkscs XI18N_OBJS
1912 src_dir nls/Compose
1913 action zh_HK.big5hkscs Compose.pre
1915 # zh_HK.UTF-8
1916 dst_dir lib/X11/nls/zh_HK.UTF-8
1917 src_dir nls/XLC_LOCALE
1918 action zh_HK.UTF-8 XLC_LOCALE.pre
1919 src_dir nls/XI18N_OBJS
1920 action zh_HK.UTF-8 XI18N_OBJS
1921 #src_dir nls/Compose
1922 #action zh_HK.UTF-8 Compose.pre
1924 # zh_TW
1925 dst_dir lib/X11/nls/zh_TW
1926 src_dir nls/XLC_LOCALE
1927 action zh_TW XLC_LOCALE.pre
1928 src_dir nls/XI18N_OBJS
1929 action zh_TW XI18N_OBJS
1930 src_dir nls/Compose
1931 action zh_TW Compose.pre
1933 # zh_TW.big5
1934 dst_dir lib/X11/nls/zh_TW.big5
1935 src_dir nls/XLC_LOCALE
1936 action zh_TW.big5 XLC_LOCALE.pre
1937 src_dir nls/XI18N_OBJS
1938 action zh_TW.big5 XI18N_OBJS
1939 src_dir nls/Compose
1940 action zh_TW.big5 Compose.pre
1942 # zh_TW.UTF-8
1943 dst_dir lib/X11/nls/zh_TW.UTF-8
1944 src_dir nls/XLC_LOCALE
1945 action zh_TW.UTF-8 XLC_LOCALE.pre
1946 src_dir nls/XI18N_OBJS
1947 action zh_TW.UTF-8 XI18N_OBJS
1948 #src_dir nls/Compose
1949 #action zh_TW.UTF-8 Compose.pre
1952 # lcuniconv
1954 src_dir lib/X11/lcUniConv
1955 dst_dir lib/X11/src/xlibi18n/lcUniConv
1957 action README
1959 action 8bit_tab_to_h.c
1960 action armscii_8.h
1961 action ascii.h
1962 action big5_emacs.h
1963 action big5.h
1964 action cjk_tab_to_h.c
1965 action COPYRIGHT
1966 action cp1133.h
1967 action cp1251.h
1968 action cp1255.h
1969 action cp1256.h
1970 action gb2312.h
1971 action georgian_academy.h
1972 action georgian_ps.h
1973 action iso8859_10.h
1974 action iso8859_11.h
1975 action iso8859_13.h
1976 action iso8859_14.h
1977 action iso8859_15.h
1978 action iso8859_16.h
1979 action iso8859_1.h
1980 action iso8859_2.h
1981 action iso8859_3.h
1982 action iso8859_4.h
1983 action iso8859_5.h
1984 action iso8859_6.h
1985 action iso8859_7.h
1986 action iso8859_8.h
1987 action iso8859_9e.h
1988 action iso8859_9.h
1989 action jisx0201.h
1990 action jisx0208.h
1991 action jisx0212.h
1992 action koi8_c.h
1993 action koi8_r.h
1994 action koi8_u.h
1995 action ksc5601.h
1996 action mulelao.h
1997 action tatar_cyr.h
1998 action tcvn.h
1999 action tis620.h
2000 action ucs2be.h
2001 action utf8.h
2002 action viscii.h
2005 symlink_lib_ice() {
2006 src_dir lib/ICE
2007 dst_dir lib/ICE/src
2009 action accept.c
2010 action authutil.c
2011 action connect.c
2012 action error.c
2013 action getauth.c
2014 action iceauth.c
2015 action listen.c
2016 action listenwk.c
2017 action locking.c
2018 action misc.c
2019 action ping.c
2020 action process.c
2021 action protosetup.c
2022 action register.c
2023 action replywait.c
2024 action setauth.c
2025 action shutdown.c
2026 action watch.c
2028 action globals.h
2029 action ICElibint.h
2031 dst_dir lib/ICE/include/X11/ICE
2033 action ICEconn.h
2034 action ICE.h
2035 action ICElib.h
2036 action ICEmsg.h
2037 action ICEproto.h
2038 action ICEutil.h
2041 symlink_lib_sm() {
2042 src_dir lib/SM
2043 dst_dir lib/SM/src
2045 action sm_auth.c
2046 action sm_client.c
2047 action sm_error.c
2048 action sm_genid.c
2049 action sm_manager.c
2050 action sm_misc.c
2051 action sm_process.c
2053 action globals.h
2054 action SMlibint.h
2056 dst_dir lib/SM/include/X11/SM
2058 action SM.h
2059 action SMlib.h
2060 action SMproto.h
2063 symlink_lib_xt() {
2064 src_dir lib/Xt
2066 # Public headers
2068 dst_dir lib/Xt/include/X11
2070 action Composite.h
2071 action CompositeP.h
2072 action Constraint.h
2073 action ConstrainP.h
2074 action Core.h
2075 action CoreP.h
2076 action Intrinsic.h
2077 action IntrinsicP.h
2078 action Object.h
2079 action ObjectP.h
2080 action RectObj.h
2081 action RectObjP.h
2082 action ShellP.h
2083 action Vendor.h
2084 action VendorP.h
2086 # Private headers - they are used by XTrap
2088 dst_dir lib/Xt/include/X11
2090 action CallbackI.h
2091 action ConvertI.h
2092 action CreateI.h
2093 action EventI.h
2094 action HookObjI.h
2095 action InitialI.h
2096 action IntrinsicI.h
2097 action PassivGraI.h
2098 action ResConfigP.h
2099 action ResourceI.h
2100 action SelectionI.h
2101 action ShellI.h
2102 action ThreadsI.h
2103 action TranslateI.h
2104 action VarargsI.h
2105 action Xtos.h
2107 # Source
2109 dst_dir lib/Xt/src
2111 action ActionHook.c
2112 action Alloc.c
2113 action ArgList.c
2114 action Callback.c
2115 action ClickTime.c
2116 action Composite.c
2117 action Constraint.c
2118 action Convert.c
2119 action Converters.c
2120 action Core.c
2121 action Create.c
2122 action Destroy.c
2123 action Display.c
2124 action Error.c
2125 action Event.c
2126 action EventUtil.c
2127 action Functions.c
2128 action GCManager.c
2129 action Geometry.c
2130 action GetActKey.c
2131 action GetResList.c
2132 action GetValues.c
2133 action HookObj.c
2134 action Hooks.c
2135 action Initialize.c
2136 action Intrinsic.c
2137 action Keyboard.c
2138 action Manage.c
2139 action NextEvent.c
2140 action Object.c
2141 action PassivGrab.c
2142 action Pointer.c
2143 action Popup.c
2144 action PopupCB.c
2145 action RectObj.c
2146 action ResConfig.c
2147 action Resources.c
2148 action Selection.c
2149 action SetSens.c
2150 action SetValues.c
2151 action SetWMCW.c
2152 action sharedlib.c
2153 action Shell.c
2154 action Threads.c
2155 action TMaction.c
2156 action TMgrab.c
2157 action TMkey.c
2158 action TMparse.c
2159 action TMprint.c
2160 action TMstate.c
2161 action Varargs.c
2162 action VarCreate.c
2163 action VarGet.c
2164 action Vendor.c
2166 # utils
2168 src_dir lib/Xt/util
2169 dst_dir lib/Xt/util
2171 action Shell.ht
2172 action StrDefs.ct
2173 action StrDefs.ht
2174 action string.list
2176 src_dir config/util
2178 action makestrs.c
2180 # man pages
2182 src_dir doc/man/Xt
2183 dst_dir lib/Xt/man
2185 action XtAddCbk.man XtAddCallback.man
2186 action XtAddEHand.man XtAddEventHandler.man
2187 action XtAddETReg.man XtAddExposureToRegion.man
2188 action XtAddGrab.man XtAddGrab.man
2189 action XtAppAAct.man XtAppAddActions.man
2190 action XtAddAct.man XtAddActions.man
2191 action XtAppAC.man XtAppAddConverter.man
2192 action XtAppAI.man XtAppAddInput.man
2193 action XtAppATO.man XtAppAddTimeOut.man
2194 action XtAppAWP.man XtAppAddWorkProc.man
2195 action XtAppCSh.man XtAppCreateShell.man
2196 action XtAppE.man XtAppError.man
2197 action XtAppEM.man XtAppErrorMsg.man
2198 action XtAppGEDB.man XtAppGetErrorDatabase.man
2199 action XtAppGSTO.man XtAppGetSelectionTimeout.man
2200 action XtAppNEv.man XtAppNextEvent.man
2201 action XtNextEv.man XtNextEvent.man
2202 action XtBEMask.man XtBuildEventMask.man
2203 action XtCallAFoc.man XtCallAcceptFocus.man
2204 action XtCallCbks.man XtCallCallbacks.man
2205 action XtClass.man XtClass.man
2206 action XtConfWid.man XtConfigureWidget.man
2207 action XtConvert.man XtConvert.man
2208 action XtConvSt.man XtConvertAndStore.man
2209 action XtCreACon.man XtCreateApplicationContext.man
2210 action XtCrePSh.man XtCreatePopupShell.man
2211 action XtCreWid.man XtCreateWidget.man
2212 action XtCreWin.man XtCreateWindow.man
2213 action XtDisplay.man XtDisplay.man
2214 action XtDisplayI.man XtDisplayInitialize.man
2215 action XtGetGC.man XtGetGC.man
2216 action XtGetRList.man XtGetResourceList.man
2217 action XtGetSVal.man XtGetSelectionValue.man
2218 action XtGetSres.man XtGetSubresources.man
2219 action XtGetAres.man XtGetApplicationResources.man
2220 action XtMakGReq.man XtMakeGeometryRequest.man
2221 action XtMalloc.man XtMalloc.man
2222 action XtManChild.man XtManageChildren.man
2223 action XtMapWid.man XtMapWidget.man
2224 action XtNameTWid.man XtNameToWidget.man
2225 action XtOffset.man XtOffset.man
2226 action XtOwnSel.man XtOwnSelection.man
2227 action XtParATab.man XtParseAcceleratorTable.man
2228 action XtParTTab.man XtParseTranslationTable.man
2229 action XtPopdown.man XtPopdown.man
2230 action XtPopup.man XtPopup.man
2231 action XtQueryGeo.man XtQueryGeometry.man
2232 action XtRealize.man XtRealizeWidget.man
2233 action XtSetArg.man XtSetArg.man
2234 action XtSetKFoc.man XtSetKeyboardFocus.man
2235 action XtSetKTr.man XtSetKeyTranslator.man
2236 action XtSetSens.man XtSetSensitive.man
2237 action XtSetVal.man XtSetValues.man
2238 action XtStrCW.man XtStringConversionWarning.man
2239 action XtDStrCW.man XtDisplayStringConversionWarning.man
2240 action XtTransC.man XtTranslateCoords.man
2241 action XtKeysym.man XtGetKeysymTable.man
2242 action XtAppSTC.man XtAppSetTypeConverter.man
2243 action XtActHook.man XtAppAddActionHook.man
2244 action XtGetActL.man XtGetActionList.man
2245 action XtCallActP.man XtCallActionProc.man
2246 action XtRegGA.man XtRegisterGrabAction.man
2247 action XtClickT.man XtSetMultiClickTime.man
2248 action XtGetActK.man XtGetActionKeysym.man
2249 action XtExtEvDis.man XtInsertEventTypeHandler.man
2250 action XtGetKFoc.man XtGetKeyboardFocusWidget.man
2251 action XtLastProc.man XtLastEventProcessed.man
2252 action XtAppASig.man XtAppAddSignal.man
2253 action XtAddIn.man XtAddInput.man
2254 action XtBlockH.man XtAppAddBlockHook.man
2255 action XtGetClExt.man XtGetClassExtension.man
2256 action XtVaCrArgL.man XtVaCreateArgsList.man
2257 action XtParent.man XtParent.man
2258 action XtName.man XtName.man
2259 action XtCreASh.man XtCreateApplicationShell.man
2260 action XtSetLangP.man XtSetLanguageProc.man
2261 action XtAppInit.man XtAppInitialize.man
2262 action XtInit.man XtInitialize.man
2263 action XtAppSetFR.man XtAppSetFallbackResources.man
2264 action XtInitWC.man XtInitializeWidgetClass.man
2265 action XtDisACon.man XtDisplayToApplicationContext.man
2266 action XtSession.man XtSessionGetToken.man
2267 action XtErrM.man XtErrorMsg.man
2268 action XtErr.man XtError.man
2269 action XtGEDB.man XtGetErrorDatabase.man
2270 action XtAllocGC.man XtAllocateGC.man
2271 action XtAppRCR.man XtAppReleaseCacheRefs.man
2272 action XtSetWMC.man XtSetWMColormapWindows.man
2273 action XtFindF.man XtFindFile.man
2274 action XtResPath.man XtResolvePathname.man
2275 action XtGetSValI.man XtGetSelectionValueIncremental.man
2276 action XtGetSTO.man XtGetSelectionTimeout.man
2277 action XtGetSR.man XtGetSelectionRequest.man
2278 action XtSetSP.man XtSetSelectionParameters.man
2279 action XtGetSP.man XtGetSelectionParameters.man
2280 action XtCreateSR.man XtCreateSelectionRequest.man
2281 action XtResPA.man XtReservePropertyAtom.man
2282 action XtGrabKey.man XtGrabKey.man
2283 action XtGetANC.man XtGetApplicationNameAndClass.man
2284 action XtRegDraw.man XtRegisterDrawable.man
2285 action XtHookOD.man XtHooksOfDisplay.man
2286 action XtGetDisp.man XtGetDisplays.man
2287 action XtThreadI.man XtToolkitThreadInitialize.man
2288 action XtAppSEF.man XtAppSetExitFlag.man
2289 action XtAppLock.man XtAppLock.man
2290 action XtProcLock.man XtProcessLock.man
2291 action XtOpenApp.man XtOpenApplication.man
2294 symlink_lib_xmu() {
2295 src_dir lib/Xmu
2296 dst_dir lib/Xmu/include/X11/Xmu
2298 action Atoms.h
2299 action CharSet.h
2300 action CloseHook.h
2301 action Converters.h
2302 action CurUtil.h
2303 action CvtCache.h
2304 action DisplayQue.h
2305 action Drawing.h
2306 action Editres.h
2307 action EditresP.h
2308 action Error.h
2309 action ExtAgent.h
2310 action Initer.h
2311 action Lookup.h
2312 action Misc.h
2313 action StdCmap.h
2314 action StdSel.h
2315 action SysUtil.h
2316 action WhitePoint.h
2317 action WidgetNode.h
2318 action WinUtil.h
2319 action Xct.h
2320 action Xmu.h
2322 dst_dir lib/Xmu
2323 action README
2325 dst_dir lib/Xmu/src
2327 action AllCmap.c
2328 action Atoms.c
2329 action ClientWin.c
2330 action Clip.c
2331 action CloseHook.c
2332 action CmapAlloc.c
2333 action CrCmap.c
2334 action CrPixFBit.c
2335 action CursorName.c
2336 action CvtCache.c
2337 action CvtStdSel.c
2338 action DefErrMsg.c
2339 action DelCmap.c
2340 action DisplayQue.c
2341 action Distinct.c
2342 action DrawLogo.c
2343 action DrRndRect.c
2344 action EditresCom.c
2345 action ExtAgent.c
2346 action FToCback.c
2347 action GetHost.c
2348 action GrayPixmap.c
2349 action Initer.c
2350 action LocBitmap.c
2351 action Lookup.c
2352 action LookupCmap.c
2353 action Lower.c
2354 action RdBitF.c
2355 action ScrOfWin.c
2356 action ShapeWidg.c
2357 action sharedlib.c
2358 action StdCmap.c
2359 action StrToBmap.c
2360 action StrToBS.c
2361 action StrToCurs.c
2362 action StrToGrav.c
2363 action StrToJust.c
2364 action StrToLong.c
2365 action StrToOrnt.c
2366 action StrToShap.c
2367 action StrToWidg.c
2368 action UpdMapHint.c
2369 action VisCmap.c
2370 action WidgetNode.c
2371 action Xct.c
2374 symlink_lib_xp() {
2375 src_dir lib/Xp
2376 dst_dir lib/Xp/src
2378 action XpAttr.c
2379 action XpContext.c
2380 action XpDoc.c
2381 action XpExtUtil.c
2382 action XpExtVer.c
2383 action XpGetData.c
2384 action XpImageRes.c
2385 action XpInput.c
2386 action XpJob.c
2387 action XpLocale.c
2388 action XpNotifyPdm.c
2389 action XpPage.c
2390 action XpPageDim.c
2391 action XpPrinter.c
2392 action XpPutData.c
2393 action XpScreens.c
2395 action XpExtUtil.h
2397 # man pages
2398 src_dir doc/man/Xp
2399 dst_dir lib/Xp/man
2401 action libXp.man libXp.3
2402 action XpCancelDoc.man XpCancelDoc.3
2403 action XpCancelJob.man XpCancelJob.3
2404 action XpCancelPage.man XpCancelPage.3
2405 action XpCreateContext.man XpCreateContext.3
2406 action XpDestroyContext.man XpDestroyContext.3
2407 action XpEndDoc.man XpEndDoc.3
2408 action XpEndJob.man XpEndJob.3
2409 action XpEndPage.man XpEndPage.3
2410 action XpFreePrinterList.man XpFreePrinterList.3
2411 action XpGetAttributes.man XpGetAttributes.3
2412 action XpGetContext.man XpGetContext.3
2413 action XpGetDocumentData.man XpGetDocumentData.3
2414 action XpGetImageResolution.man XpGetImageResolution.3
2415 action XpGetLocaleHinter.man XpGetLocaleHinter.3
2416 action XpGetOneAttribute.man XpGetOneAttribute.3
2417 action XpGetPageDimensions.man XpGetPageDimensions.3
2418 action XpGetPdmStartParams.man XpGetPdmStartParams.3
2419 action XpGetPrinterList.man XpGetPrinterList.3
2420 action XpGetScreenOfContext.man XpGetScreenOfContext.3
2421 action XpInputSelected.man XpInputSelected.3
2422 action XpPutDocumentData.man XpPutDocumentData.3
2423 action XpQueryExtension.man XpQueryExtension.3
2424 action XpQueryScreens.man XpQueryScreens.3
2425 action XpQueryVersion.man XpQueryVersion.3
2426 action XpRehashPrinterList.man XpRehashPrinterList.3
2427 action XpSelectInput.man XpSelectInput.3
2428 action XpSetAttributes.man XpSetAttributes.3
2429 action XpSetContext.man XpSetContext.3
2430 action XpSetImageResolution.man XpSetImageResolution.3
2431 action XpSetLocaleHinter.man XpSetLocaleHinter.3
2432 action XpStartDoc.man XpStartDoc.3
2433 action XpStartJob.man XpStartJob.3
2434 action XpStartPage.man XpStartPage.3
2437 symlink_lib_xpm() {
2438 src_dir extras/Xpm
2439 dst_dir lib/Xpm
2441 action CHANGES
2442 action COPYRIGHT
2443 action FAQ.html
2444 action FILES
2445 action README.AMIGA
2446 action README.html
2447 action README.MSW
2449 src_dir extras/Xpm/doc
2451 action xpm.PS.gz
2453 src_dir extras/Xpm/lib
2456 # Library
2459 # Public header
2460 dst_dir lib/Xpm/include/X11
2462 action xpm.h
2464 # Source
2466 dst_dir lib/Xpm/src
2468 # headers
2469 action amigax.h
2470 action rgbtab.h
2471 action simx.h
2472 action XpmI.h
2474 action amigax.c
2475 action Attrib.c
2476 action CrBufFrI.c
2477 action CrBufFrP.c
2478 action CrDatFrI.c
2479 action CrDatFrP.c
2480 action create.c
2481 action CrIFrBuf.c
2482 action CrIFrDat.c
2483 action CrIFrP.c
2484 action CrPFrBuf.c
2485 action CrPFrDat.c
2486 action CrPFrI.c
2487 action data.c
2488 action hashtab.c
2489 action Image.c
2490 action Info.c
2491 action misc.c
2492 action parse.c
2493 action RdFToBuf.c
2494 action RdFToDat.c
2495 action RdFToI.c
2496 action RdFToP.c
2497 action rgb.c
2498 action scan.c
2499 action simx.c
2500 action WrFFrBuf.c
2501 action WrFFrDat.c
2502 action WrFFrI.c
2503 action WrFFrP.c
2506 # Apps
2508 src_dir extras/Xpm/cxpm
2509 dst_dir lib/Xpm/cxpm
2511 action cxpm.c
2512 action cxpm.man cxpm.1
2514 src_dir extras/Xpm/sxpm
2515 dst_dir lib/Xpm/sxpm
2517 action sxpm.c
2518 action sxpm.man sxpm.1
2519 action plaid_ext.xpm
2520 action plaid_mask.xpm
2521 action plaid.xpm
2524 symlink_lib_xrender() {
2525 src_dir lib/Xrender
2526 dst_dir lib/Xrender/src
2528 action AddTrap.c
2529 action Color.c
2530 action Composite.c
2531 action Cursor.c
2532 action FillRect.c
2533 action FillRects.c
2534 action Filter.c
2535 action Glyph.c
2536 action Picture.c
2537 action Poly.c
2538 action Trap.c
2539 action Tri.c
2540 action Xrender.c
2542 action Xrenderint.h
2544 dst_dir lib/Xrender/include/X11/extensions
2546 action Xrender.h
2549 symlink_lib_xi() {
2550 src_dir lib/Xi
2551 dst_dir lib/Xi/src
2553 action XIint.h
2554 action XAllowDv.c
2555 action XChgDCtl.c
2556 action XChgFCtl.c
2557 action XChgKMap.c
2558 action XChgKbd.c
2559 action XChgPnt.c
2560 action XChgProp.c
2561 action XCloseDev.c
2562 action XDevBell.c
2563 action XExtInt.c
2564 action XExtToWire.c
2565 action XFreeLst.c
2566 action XGMotion.c
2567 action XGetBMap.c
2568 action XGetDCtl.c
2569 action XGetFCtl.c
2570 action XGetKMap.c
2571 action XGetMMap.c
2572 action XGetProp.c
2573 action XGetVers.c
2574 action XGrDvBut.c
2575 action XGrDvKey.c
2576 action XGrabDev.c
2577 action XGtFocus.c
2578 action XGtSelect.c
2579 action XListDev.c
2580 action XOpenDev.c
2581 action XQueryDv.c
2582 action XSelect.c
2583 action XSetBMap.c
2584 action XSetDVal.c
2585 action XSetMMap.c
2586 action XSetMode.c
2587 action XSndExEv.c
2588 action XStFocus.c
2589 action XUngrDev.c
2590 action XUngrDvB.c
2591 action XUngrDvK.c
2593 src_dir doc/man/Xi
2594 dst_dir lib/Xi/man
2596 action XAllDvEv.man XAllowDeviceEvents.man
2597 action XChDCtl.man XGetDeviceControl.man
2598 action XChFCtl.man XGetFeedbackControl.man
2599 action XChKMap.man XGetDeviceKeyMapping.man
2600 action XChMMap.man XGetDeviceModifierMapping.man
2601 action XChProp.man XChangeDeviceDontPropagateList.man
2602 action XChgKbd.man XChangeKeyboardDevice.man
2603 action XChgPtr.man XChangePointerDevice.man
2604 action XDevBell.man XDeviceBell.man
2605 action XGetDvMo.man XGetDeviceMotionEvents.man
2606 action XGetExtV.man XGetExtensionVersion.man
2607 action XGrDvBut.man XGrabDeviceButton.man
2608 action XGrDvKey.man XGrabDeviceKey.man
2609 action XGrabDev.man XGrabDevice.man
2610 action XListDev.man XListInputDevices.man
2611 action XOpenDev.man XOpenDevice.man
2612 action XQueryDv.man XQueryDeviceState.man
2613 action XSExEvnt.man XSendExtensionEvent.man
2614 action XSeBMap.man XSetDeviceButtonMapping.man
2615 action XSeDvFoc.man XSetDeviceFocus.man
2616 action XSelExtEv.man XSelectExtensionEvent.man
2617 action XSetDVal.man XSetDeviceValuators.man
2618 action XSetMode.man XSetDeviceMode.man
2622 symlink_lib_xfont() {
2623 src_dir lib/font/FreeType
2624 dst_dir lib/Xfont/src/FreeType
2626 action ft.h
2627 action ftenc.c
2628 action ftfuncs.c
2629 action ftfuncs.h
2630 action ftsystem.c
2631 action fttools.c
2632 action xttcap.c
2633 action xttcap.h
2635 src_dir lib/font/bitmap
2636 dst_dir lib/Xfont/src/bitmap
2638 action bdfread.c
2639 action bdfutils.c
2640 action bitmap.c
2641 action bitmapfunc.c
2642 action bitmaputil.c
2643 action bitscale.c
2644 action fontink.c
2645 action pcfread.c
2646 action pcfwrite.c
2647 action snfread.c
2648 action snfstr.h
2650 src_dir lib/font/bitmap
2651 dst_dir lib/Xfont/include/X11/fonts
2653 action bdfint.h
2654 action pcf.h
2656 src_dir lib/font/builtins
2657 dst_dir lib/Xfont/src/builtins
2659 action buildfont
2660 action builtin.h
2661 action dir.c
2662 action file.c
2663 action fonts.c
2664 action fpe.c
2665 action render.c
2667 src_dir lib/font/fc
2668 dst_dir lib/Xfont/src/fc
2670 action fsconvert.c
2671 action fserve.c
2672 action fserve.h
2673 action fservestr.h
2674 action fsio.c
2675 action fsio.h
2676 action fslibos.h
2678 src_dir lib/font/fontcache
2679 dst_dir lib/Xfont/src/fontcache
2681 action fcqueue.h
2682 action fontcache.c
2683 action fontcache.h
2685 src_dir lib/font/fontfile
2686 dst_dir lib/Xfont/src/fontfile
2688 action bitsource.c
2689 action bufio.c
2690 action decompress.c
2691 action defaults.c
2692 action dirfile.c
2693 action ffcheck.c
2694 action fileio.c
2695 action filewr.c
2696 action fontdir.c
2697 action fontencc.c
2698 action fontfile.c
2699 action fontscale.c
2700 action gunzip.c
2701 action printerfont.c
2702 action register.c
2703 action renderers.c
2705 src_dir lib/font/include
2706 dst_dir lib/Xfont/include/X11/fonts
2708 action bitmap.h
2709 action bufio.h
2710 action fntfil.h
2711 action fntfilio.h
2712 action fntfilst.h
2713 action fontencc.h
2714 action fontmisc.h
2715 action fontmod.h
2716 action fontshow.h
2717 action fontutil.h
2718 action fontxlfd.h
2720 src_dir lib/font/stubs
2721 dst_dir lib/Xfont/src/stubs
2723 action cauthgen.c
2724 action csignal.c
2725 action delfntcid.c
2726 action errorf.c
2727 action fatalerror.c
2728 action findoldfnt.c
2729 action getcres.c
2730 action getdefptsize.c
2731 action getnewfntcid.c
2732 action gettime.c
2733 action initfshdl.c
2734 action regfpefunc.c
2735 action rmfshdl.c
2736 action servclient.c
2737 action setfntauth.c
2738 action stfntcfnt.c
2739 action stubs.h
2740 action xpstubs.c
2742 src_dir lib/font/util
2743 dst_dir lib/Xfont/src/util
2745 action atom.c
2746 action fontaccel.c
2747 action fontnames.c
2748 action fontutil.c
2749 action fontxlfd.c
2750 action format.c
2751 action miscutil.c
2752 action patcache.c
2753 action private.c
2754 action utilbitmap.c
2756 src_dir lib/font/Speedo
2757 dst_dir lib/Xfont/src/Speedo
2759 action adobe-iso.h
2760 action bics-iso.h
2761 action bics-unicode.c
2762 action bics-unicode.h
2763 action do_char.c
2764 action do_trns.c
2765 action keys.h
2766 action out_bl2d.c
2767 action out_blk.c
2768 action out_outl.c
2769 action out_scrn.c
2770 action out_util.c
2771 action reset.c
2772 action set_spcs.c
2773 action set_trns.c
2774 action spdo_prv.h
2775 action speedo.h
2776 action spencode.c
2777 action sperr.c
2778 action spfile.c
2779 action spfont.c
2780 action spfuncs.c
2781 action spglyph.c
2782 action spinfo.c
2783 action spint.h
2784 action useropt.h
2786 src_dir lib/font/Type1
2787 dst_dir lib/Xfont/src/Type1
2789 action afm.c
2790 action AFM.h
2791 action arith.c
2792 action arith.h
2793 action blues.h
2794 action cidchar.c
2795 action cluts.h
2796 action curves.c
2797 action curves.h
2798 action digit.h
2799 action fontfcn.c
2800 action fontfcn.h
2801 action fonts.h
2802 action hdigit.h
2803 action hints.c
2804 action hints.h
2805 action lines.c
2806 action lines.h
2807 action objects.c
2808 action objects.h
2809 action paths.c
2810 action paths.h
2811 action pictures.h
2812 action range.h
2813 action regions.c
2814 action regions.h
2815 action scanfont.c
2816 action spaces.c
2817 action spaces.h
2818 action strokes.h
2819 action t1funcs.c
2820 action t1hdigit.h
2821 action t1imager.h
2822 action t1info.c
2823 action t1intf.h
2824 action t1io.c
2825 action t1malloc.c
2826 action t1snap.c
2827 action t1stdio.h
2828 action t1stub.c
2829 action t1unicode.c
2830 action t1unicode.h
2831 action token.c
2832 action token.h
2833 action tokst.h
2834 action trig.h
2835 action type1.c
2836 action util.c
2837 action util.h
2840 symlink_lib_fontenc() {
2841 src_dir lib/font/fontfile
2842 dst_dir lib/fontenc/src
2844 action fontenc.c
2845 action encparse.c
2846 action fontencI.h
2848 src_dir lib/font/include
2849 dst_dir lib/fontenc/include/X11/fonts
2851 action fontenc.h
2854 symlink_lib_xaw() {
2855 src_dir lib/Xaw
2857 dst_dir lib/Xaw/old-doc
2859 action CHANGES
2860 action Changelog
2862 dst_dir lib/Xaw/src
2864 action Actions.c
2865 action AllWidgets.c
2866 action AsciiSink.c
2867 action AsciiSrc.c
2868 action AsciiText.c
2869 action Box.c
2870 action Command.c
2871 action Converters.c
2872 action Dialog.c
2873 action DisplayList.c
2874 action Form.c
2875 action Grip.c
2876 action Label.c
2877 action List.c
2878 action MenuButton.c
2879 action MultiSink.c
2880 action MultiSrc.c
2881 action OS.c
2882 action Paned.c
2883 action Panner.c
2884 action Pixmap.c
2885 action Porthole.c
2886 action PrintShell.c
2887 action Repeater.c
2888 action Scrollbar.c
2889 action sharedlib.c
2890 action Simple.c
2891 action SimpleMenu.c
2892 action SmeBSB.c
2893 action Sme.c
2894 action SmeLine.c
2895 action StripChart.c
2896 action TextAction.c
2897 action Text.c
2898 action TextPop.c
2899 action TextSink.c
2900 action TextSrc.c
2901 action TextTr.c
2902 action Tip.c
2903 action Toggle.c
2904 action Tree.c
2905 action Vendor.c
2906 action Viewport.c
2907 action XawI18n.c
2908 action XawIm.c
2909 action XawInit.c
2911 action Private.h
2912 action XawI18n.h
2914 dst_dir lib/Xaw/include/X11/Xaw
2916 action AllWidgets.h
2917 action AsciiSink.h
2918 action AsciiSinkP.h
2919 action AsciiSrc.h
2920 action AsciiSrcP.h
2921 action AsciiText.h
2922 action AsciiTextP.h
2923 action Box.h
2924 action BoxP.h
2925 action Cardinals.h
2926 action Command.h
2927 action CommandP.h
2928 action Dialog.h
2929 action DialogP.h
2930 action Form.h
2931 action FormP.h
2932 action Grip.h
2933 action GripP.h
2934 action Label.h
2935 action LabelP.h
2936 action List.h
2937 action ListP.h
2938 action MenuButton.h
2939 action MenuButtoP.h
2940 action MultiSink.h
2941 action MultiSinkP.h
2942 action MultiSrc.h
2943 action MultiSrcP.h
2944 action Paned.h
2945 action PanedP.h
2946 action Panner.h
2947 action PannerP.h
2948 action Porthole.h
2949 action PortholeP.h
2950 action Print.h
2951 action PrintSP.h
2952 action Repeater.h
2953 action RepeaterP.h
2954 action Reports.h
2955 action Scrollbar.h
2956 action ScrollbarP.h
2957 action Simple.h
2958 action SimpleMenP.h
2959 action SimpleMenu.h
2960 action SimpleP.h
2961 action SmeBSB.h
2962 action SmeBSBP.h
2963 action Sme.h
2964 action SmeLine.h
2965 action SmeLineP.h
2966 action SmeP.h
2967 action StripCharP.h
2968 action StripChart.h
2969 action Template.c
2970 action Template.h
2971 action TemplateP.h
2972 action Text.h
2973 action TextP.h
2974 action TextSink.h
2975 action TextSinkP.h
2976 action TextSrc.h
2977 action TextSrcP.h
2978 action Tip.h
2979 action TipP.h
2980 action Toggle.h
2981 action ToggleP.h
2982 action Tree.h
2983 action TreeP.h
2984 action VendorEP.h
2985 action Viewport.h
2986 action ViewportP.h
2987 action XawImP.h
2988 action XawInit.h
2990 dst_dir lib/Xaw/man
2992 action Xaw.man
2995 symlink_lib_fs() {
2996 src_dir lib/FS
2997 dst_dir lib/FS/src
2999 action FSCloseFt.c
3000 action FSClServ.c
3001 action FSConnServ.c
3002 action FSErrDis.c
3003 action FSErrHndlr.c
3004 action FSFlush.c
3005 action FSFontInfo.c
3006 action FSFtNames.c
3007 action FSGetCats.c
3008 action FSlibInt.c
3009 action FSListCats.c
3010 action FSListExt.c
3011 action FSMisc.c
3012 action FSNextEv.c
3013 action FSOpenFont.c
3014 action FSOpenServ.c
3015 action FSQGlyphs.c
3016 action FSQuExt.c
3017 action FSQXExt.c
3018 action FSQXInfo.c
3019 action FSServName.c
3020 action FSSetCats.c
3021 action FSSync.c
3022 action FSSynchro.c
3024 action FSlibint.h
3025 action FSlibos.h
3027 dst_dir lib/FS/include/X11/fonts
3029 action FSlib.h
3032 symlink_lib_xres() {
3033 src_dir lib/XRes
3034 dst_dir lib/XRes/src
3036 action XRes.c
3038 src_dir include/extensions
3039 dst_dir lib/XRes/include/X11/extensions
3041 action XRes.h
3043 src_dir lib/XRes
3044 dst_dir lib/XRes/man
3046 action XRes.man
3049 symlink_lib_randr()
3051 src_dir lib/Xrandr
3052 dst_dir lib/Xrandr/src
3054 action Xrandrint.h
3055 action Xrandr.c
3057 dst_dir lib/Xrandr/include/X11/extensions
3059 action Xrandr.h
3061 dst_dir lib/Xrandr/man
3063 action Xrandr.man Xrandr.3
3066 symlink_lib_windowswm() {
3067 src_dir lib/windows
3068 dst_dir lib/WindowsWM/src
3070 action windowswm.c
3072 dst_dir lib/WindowsWM/man
3074 action WindowsWM.man WindowsWM.3
3077 symlink_lib_xcursor()
3079 src_dir lib/Xcursor
3081 dst_dir lib/Xcursor/include/X11/Xcursor
3083 action Xcursor.h
3085 dst_dir lib/Xcursor/src
3087 action xcursorint.h
3088 action cursor.c
3089 action display.c
3090 action file.c
3091 action library.c
3092 action xlib.c
3094 dst_dir lib/Xcursor/man
3096 action Xcursor.man Xcursor.3
3099 symlink_lib_xtrap()
3101 src_dir lib/XTrap
3102 dst_dir lib/XTrap/src
3104 action XECallBcks.c
3105 action XEConTxt.c
3106 action XEDsptch.c
3107 action XEPrInfo.c
3108 action XERqsts.c
3109 action XEStrMap.c
3110 action XETrapInit.c
3111 action XEWrappers.c
3114 symlink_lib_xfontcache()
3116 src_dir lib/Xfontcache
3117 dst_dir lib/Xfontcache/src
3119 action FontCache.c
3121 dst_dir lib/Xfontcache/man
3123 action Xfontcache.man Xfontcache.3
3126 symlink_lib_xinerama()
3128 src_dir lib/Xinerama
3129 dst_dir lib/Xinerama/src
3131 action Xinerama.c
3134 symlink_lib_xprint_util()
3136 src_dir lib/XprintUtil
3137 dst_dir lib/XprintUtil/src
3139 action xprintutil.c
3140 action xprintutil_printtofile.c
3142 dst_dir lib/XprintUtil/include/X11/XprintUtil
3144 action xprintutil.h
3147 symlink_lib_xprint_app_util()
3149 src_dir lib/XprintAppUtil
3150 dst_dir lib/XprintAppUtil/src
3152 action xpapputil.c
3154 dst_dir lib/XprintAppUtil/include/X11/XprintAppUtil
3156 action xpapputil.h
3159 symlink_lib_xss()
3161 src_dir lib/Xss
3162 dst_dir lib/XScrnSaver/src
3164 action XScrnSaver.c
3166 dst_dir lib/XScrnSaver/man
3168 action Xss.man Xss.3
3171 symlink_lib_xxf86dga() {
3172 src_dir lib/Xxf86dga
3173 dst_dir lib/Xxf86dga/src
3175 action XF86DGA.c
3176 action XF86DGA2.c
3178 dst_dir lib/Xxf86dga/man
3180 action XDGA.man XDGA.3
3183 symlink_lib_xxf86misc() {
3184 src_dir lib/Xxf86misc
3185 dst_dir lib/Xxf86misc/src
3187 action XF86Misc.c
3189 dst_dir lib/Xxf86misc/man
3191 action XF86Misc.man XF86Misc.3
3194 symlink_lib_xxf86vm() {
3195 src_dir lib/Xxf86vm
3196 dst_dir lib/Xxf86vm/src
3198 action XF86VMode.c
3200 dst_dir lib/Xxf86vm/man
3202 action XF86VM.man XF86VM.3
3205 symlink_lib_xtst() {
3206 src_dir lib/Xtst
3207 dst_dir lib/Xtst/src
3209 action XRecord.c
3210 action XTest.c
3213 symlink_lib_xv() {
3214 src_dir lib/Xv
3215 dst_dir lib/Xv/src
3217 action Xv.c
3218 action Xvlibint.h
3220 src_dir include/extensions
3221 dst_dir lib/Xv/include/X11/extensions
3223 action Xvlib.h
3225 src_dir doc/man/Xv
3226 dst_dir lib/Xv/man
3228 action XvFreeAdaptorInfo.man XvFreeAdaptorInfo.3
3229 action XvFreeEncodingInfo.man XvFreeEncodingInfo.3
3230 action XvGetPortAttribute.man XvGetPortAttribute.3
3231 action XvGetStill.man XvGetStill.3
3232 action XvGetVideo.man XvGetVideo.3
3233 action XvGrabPort.man XvGrabPort.3
3234 action Xv.man Xv.3
3235 action XvPortNotify.man XvPortNotify.3
3236 action XvPutStill.man XvPutStill.3
3237 action XvPutVideo.man XvPutVideo.3
3238 action XvQueryAdaptors.man XvQueryAdaptors.3
3239 action XvQueryBestSize.man XvQueryBestSize.3
3240 action XvQueryEncodings.man XvQueryEncodings.3
3241 action XvQueryExtension.man XvQueryExtension.3
3242 action XvSelectPortNotify.man XvSelectPortNotify.3
3243 action XvSelectVideoNotify.man XvSelectVideoNotify.3
3244 action XvSetPortAttribute.man XvSetPortAttribute.3
3245 action XvStopVideo.man XvStopVideo.3
3246 action XvUngrabPort.man XvUngrabPort.3
3247 action XvVideoNotify.man XvVideoNotify.3
3250 symlink_lib_xvmc() {
3251 src_dir lib/XvMC
3252 dst_dir lib/XvMC/src
3254 action XvMC.c
3255 action XvMClibint.h
3257 src_dir lib/XvMC/wrapper
3259 action XvMCWrapper.c
3261 src_dir include/extensions
3262 dst_dir lib/XvMC/include/X11/extensions
3264 action XvMClib.h
3267 symlink_lib_xxf86rush() {
3268 src_dir lib/Xxf86rush
3269 dst_dir lib/Xxf86rush/src
3271 action XF86Rush.c
3274 symlink_lib_xkbfile() {
3275 src_dir lib/xkbfile
3276 dst_dir lib/xkbfile/src
3278 action cout.c
3279 action maprules.c
3280 action srvmisc.c
3281 action xkbatom.c
3282 action xkbbells.c
3283 action xkbconfig.c
3284 action xkbdraw.c
3285 action xkberrs.c
3286 action xkbmisc.c
3287 action xkbout.c
3288 action xkbtext.c
3289 action xkmout.c
3290 action xkmread.c
3291 action XKBfileInt.h
3292 action magic
3294 dst_dir lib/xkbfile/include/X11/extensions
3296 action XKBbells.h
3297 action XKBconfig.h
3298 action XKBfile.h
3299 action XKBrules.h
3300 action XKMformat.h
3301 action XKM.h
3304 symlink_lib_xkbui() {
3305 src_dir lib/xkbui
3306 dst_dir lib/xkbui/src
3308 action XKBui.c
3309 action XKBuiPriv.h
3311 dst_dir lib/xkbui/include/X11/extensions
3313 action XKBui.h
3316 symlink_lib_oldx() {
3317 src_dir lib/oldX
3318 dst_dir lib/oldX/src
3320 action XCrAssoc.c
3321 action XDelAssoc.c
3322 action XDestAssoc.c
3323 action XDraw.c
3324 action XLookAssoc.c
3325 action XMakeAssoc.c
3327 dst_dir lib/oldX/include/X11
3329 action X10.h
3333 symlink_lib_lbxutil() {
3334 src_dir lib/lbxutil/image
3335 dst_dir lib/lbxutil/src/image
3337 action dfaxg42d.c
3338 action dpackbits.c
3339 action efaxg42d.c
3340 action epackbits.c
3341 action lbxbwcodes.h
3342 action lbxfax.h
3343 action misc.c
3344 action mkg3states.c
3346 src_dir lib/lbxutil/delta
3347 dst_dir lib/lbxutil/src/delta
3349 action lbxdelta.c
3351 src_dir lib/lbxutil/lbx_zlib
3352 dst_dir lib/lbxutil/src/lbx_zlib
3354 action lbx_zlib.c
3355 action lbx_zlib.h
3356 action lbx_zlib_io.c
3357 action reqstats.c
3358 action reqstats.h
3361 symlink_lib_xft() {
3362 src_dir lib/Xft
3363 dst_dir lib/Xft
3365 action NEWS
3366 action README
3367 action AUTHORS
3368 action ChangeLog
3369 action COPYING
3370 action INSTALL
3372 action xft.pc.in
3373 action xft-config.in
3375 dst_dir lib/Xft/man
3377 action Xft.3.in
3378 action xft-config.1.in
3380 dst_dir lib/Xft/include/X11/Xft
3382 action Xft.h
3383 action XftCompat.h
3385 dst_dir lib/Xft/src
3387 action xftcolor.c
3388 action xftcore.c
3389 action xftdbg.c
3390 action xftdpy.c
3391 action xftdraw.c
3392 action xftextent.c
3393 action xftfont.c
3394 action xftfreetype.c
3395 action xftglyphs.c
3396 action xftinit.c
3397 action xftint.h
3398 action xftlist.c
3399 action xftname.c
3400 action xftrender.c
3401 action xftstr.c
3402 action xftswap.c
3403 action xftxlfd.c
3406 symlink_lib() {
3407 symlink_lib_xft
3408 symlink_lib_applewm
3409 symlink_lib_windowswm
3410 symlink_lib_dmx
3411 symlink_lib_composite
3412 symlink_lib_damage
3413 symlink_lib_evie
3414 symlink_lib_fixes
3415 symlink_lib_xau
3416 symlink_lib_xtrans
3417 symlink_lib_xdmcp
3418 symlink_lib_x11
3419 symlink_lib_ice
3420 symlink_lib_sm
3421 symlink_lib_xt
3422 symlink_lib_xext
3423 symlink_lib_xmu
3424 symlink_lib_xp
3425 symlink_lib_xpm
3426 symlink_lib_fontenc
3427 symlink_lib_xfont
3428 symlink_lib_xrender
3429 symlink_lib_xi
3430 symlink_lib_xaw
3431 symlink_lib_fs
3432 symlink_lib_xres
3433 symlink_lib_randr
3434 symlink_lib_xcursor
3435 symlink_lib_xtrap
3436 symlink_lib_xfontcache
3437 symlink_lib_xinerama
3438 symlink_lib_xprint_util
3439 symlink_lib_xprint_app_util
3440 symlink_lib_xss
3441 symlink_lib_xxf86dga
3442 symlink_lib_xxf86misc
3443 symlink_lib_xxf86vm
3444 symlink_lib_xtst
3445 symlink_lib_xv
3446 symlink_lib_xxf86rush
3447 symlink_lib_xkbfile
3448 symlink_lib_xkbui
3449 symlink_lib_oldx
3450 symlink_lib_xvmc
3451 symlink_lib_lbxutil
3454 #########
3456 # The app module
3458 #########
3460 symlink_app_twm() {
3461 src_dir programs/twm
3462 dst_dir app/twm/src
3464 action add_window.c
3465 action add_window.h
3466 action cursor.c
3467 action deftwmrc.sed
3468 action events.c
3469 action events.h
3470 action gc.c
3471 action gc.h
3472 action gram.y
3473 action iconmgr.c
3474 action iconmgr.h
3475 action icons.c
3476 action icons.h
3477 action lex.l
3478 action list.c
3479 action list.h
3480 action menus.c
3481 action menus.h
3482 action parse.c
3483 action parse.h
3484 action resize.c
3485 action resize.h
3486 action screen.h
3487 action session.c
3488 action session.h
3489 action siconify.bm
3490 action system.twmrc
3491 action twm.c
3492 action twm.h
3493 action util.c
3494 action util.h
3495 action version.c
3496 action version.h
3498 dst_dir app/twm/man
3500 action twm.man
3502 src_dir programs/twm/sample-twmrc
3503 dst_dir app/twm/sample-twmrc
3505 action jim.twmrc
3506 action keith.twmrc
3507 action lemke.twmrc
3510 symlink_app_xdpyinfo() {
3511 src_dir programs/xdpyinfo
3512 dst_dir app/xdpyinfo
3514 action xdpyinfo.c
3515 action xdpyinfo.man
3518 symlink_app_xhost() {
3519 src_dir programs/xhost
3520 dst_dir app/xhost
3522 action xhost.c
3523 action xhost.man
3526 symlink_app_appres() {
3527 src_dir programs/appres
3528 dst_dir app/appres
3530 action appres.c
3532 action appres.man
3536 symlink_app_bdftopcf() {
3537 src_dir programs/bdftopcf
3538 dst_dir app/bdftopcf
3540 action bdftopcf.c
3542 action bdftopcf.man
3546 symlink_app_beforelight() {
3547 src_dir programs/beforelight
3548 dst_dir app/beforelight
3550 action B4light.ad
3552 action b4light.c
3554 action b4light.man beforelight.man
3558 symlink_app_bitmap() {
3559 src_dir programs/bitmap
3560 dst_dir app/bitmap
3562 action Bitmap.ad
3563 action Bitmap-co.ad Bitmap-color.ad
3564 action Bitmap-nocase.ad
3566 action atobm.c
3567 action BitEdit.c
3568 action Bitmap.c
3569 action bmtoa.c
3570 action CutPaste.c
3571 action Dialog.c
3572 action Graphics.c
3573 action Handlers.c
3574 action ReqMach.c
3576 action Bitmap.h
3577 action BitmapP.h
3578 action Dialog.h
3579 action Requests.h
3581 action bitmap.man
3583 action Dashes
3584 action Down
3585 action Excl
3586 action FlipHoriz
3587 action FlipVert
3588 action Fold
3589 action Left
3590 action Right
3591 action RotateLeft
3592 action RotateRight
3593 action Stipple
3594 action Term
3595 action Up
3597 action bitmap.icon
3600 symlink_app_editres() {
3601 src_dir programs/editres
3602 dst_dir app/editres
3604 action Edit-col.ad
3605 action Editres.ad
3607 action actions.c
3608 action comm.c
3609 action editres.c
3610 action geometry.c
3611 action handler.c
3612 action setvalues.c
3613 action svpopup.c
3614 action utils.c
3615 action widgets.c
3616 action wtree.c
3618 action README
3620 action editresP.h
3622 action editres.man
3626 symlink_app_fonttosfnt() {
3627 src_dir programs/fonttosfnt
3628 dst_dir app/fonttosfnt
3630 action env.c
3631 action fonttosfnt.c
3632 action read.c
3633 action struct.c
3634 action util.c
3635 action write.c
3637 action fonttosfnt.h
3639 action fonttosfnt.man
3643 symlink_app_fslsfonts() {
3644 src_dir programs/fslsfonts
3645 dst_dir app/fslsfonts
3647 action fslsfonts.c
3649 action fslsfonts.man
3653 symlink_app_fstobdf() {
3654 src_dir programs/fstobdf
3655 dst_dir app/fstobdf
3657 action chars.c
3658 action fstobdf.c
3659 action header.c
3660 action props.c
3662 action fstobdf.h
3664 action fstobdf.man
3668 symlink_app_iceauth() {
3669 src_dir programs/iceauth
3670 dst_dir app/iceauth
3672 action iceauth.c
3673 action process.c
3675 action iceauth.h
3677 action iceauth.man
3681 symlink_app_ico() {
3682 src_dir programs/ico
3683 dst_dir app/ico
3685 action ico.c
3687 action allobjs.h
3688 action objcube.h
3689 action objico.h
3690 action objocta.h
3691 action objplane.h
3692 action objpyr.h
3693 action polyinfo.h
3695 action ico.man
3699 symlink_app_listres() {
3700 src_dir programs/listres
3701 dst_dir app/listres
3703 action listres.c
3705 action listres.man
3709 symlink_app_luit() {
3710 src_dir programs/luit
3711 dst_dir app/luit
3713 action charset.c
3714 action iso2022.c
3715 action locale.c
3716 action luit.c
3717 action other.c
3718 action parser.c
3719 action sys.c
3721 action charset.h
3722 action iso2022.h
3723 action luit.h
3724 action other.h
3725 action parser.h
3726 action sys.h
3728 action luit.man
3732 symlink_app_mkcfm() {
3733 src_dir programs/mkcfm
3734 dst_dir app/mkcfm
3736 action mkcfm.c
3737 action mkcfm.man
3740 symlink_app_makepsres() {
3741 src_dir programs/makepsres
3742 dst_dir app/makepsres
3744 action makepsres.c
3746 action makepsres.man
3750 symlink_app_mkfontdir() {
3751 src_dir programs/mkfontdir
3752 dst_dir app/mkfontdir
3754 action mkfontdir.cpp
3756 action mkfontdir.man
3760 symlink_app_mkfontscale() {
3761 src_dir programs/mkfontscale
3762 dst_dir app/mkfontscale
3764 action hash.c
3765 action ident.c
3766 action list.c
3767 action mkfontscale.c
3769 action data.h
3770 action hash.h
3771 action ident.h
3772 action list.h
3774 action mkfontscale.man
3778 symlink_app_oclock() {
3779 src_dir programs/oclock
3780 dst_dir app/oclock
3782 action Clock-col.ad
3784 action Clock.c
3785 action oclock.c
3786 action transform.c
3788 action Clock.h
3789 action ClockP.h
3790 action transform.h
3792 action oclock.man
3794 action oclock.bit
3795 action oclmask.bit
3798 symlink_app_pclcomp() {
3799 src_dir programs/pclcomp
3800 dst_dir app/pclcomp
3802 action pclcomp.c
3804 action README
3805 action printer.note
3807 action pclcomp.man
3811 symlink_app_proxymngr() {
3812 src_dir programs/proxymngr
3813 dst_dir app/proxymngr
3815 action config.c
3816 action main.c
3817 action pmdb.c
3819 action config.h
3820 action pmdb.h
3821 action pmint.h
3823 action proxymngr.man
3825 action pmconfig.cpp
3828 symlink_app_rgb() {
3829 src_dir programs/rgb
3830 dst_dir app/rgb
3832 action rgb.c
3833 action showrgb.c
3834 action showrgb.man
3835 action rgb.txt
3837 src_dir programs/rgb/others
3838 dst_dir app/rgb/others
3840 action old-rgb.txt
3841 action raveling.txt
3842 action README
3843 action thomas.txt
3847 symlink_app_setxkbmap() {
3848 src_dir programs/setxkbmap
3849 dst_dir app/setxkbmap
3851 action setxkbmap.c
3853 action setxkbmap.man
3856 symlink_app_showfont() {
3857 src_dir programs/showfont
3858 dst_dir app/showfont
3860 action showfont.c
3862 action showfont.man
3865 symlink_app_smproxy() {
3866 src_dir programs/smproxy
3867 dst_dir app/smproxy
3869 action save.c
3870 action smproxy.c
3872 action smproxy.h
3874 action smproxy.man
3877 symlink_app_viewres() {
3878 src_dir programs/viewres
3879 dst_dir app/viewres
3881 action Viewres.ad
3883 action viewres.c
3885 action viewres.man
3888 symlink_app_x11perf() {
3889 src_dir programs/x11perf
3890 dst_dir app/x11perf
3892 action bitmaps.c
3893 action do_arcs.c
3894 action do_blt.c
3895 action do_complex.c
3896 action do_dots.c
3897 action do_lines.c
3898 action do_movewin.c
3899 action do_rects.c
3900 action do_segs.c
3901 action do_simple.c
3902 action do_tests.c
3903 action do_text.c
3904 action do_traps.c
3905 action do_tris.c
3906 action do_valgc.c
3907 action do_windows.c
3908 action x11perf.c
3910 action bitmaps.h
3911 action x11perf.h
3913 action x11pcomp.man x11perfcomp.man
3914 action x11perf.man
3915 action Xmark.man
3917 action fillblnk.sh fillblnk
3918 action perfboth.sh perfboth
3919 action perfratio.sh perfratio
3920 action Xmark.sh Xmark
3922 action x11pcomp.cpp
3925 symlink_app_xauth() {
3926 src_dir programs/xauth
3927 dst_dir app/xauth
3929 action gethost.c
3930 action parsedpy.c
3931 action process.c
3932 action xauth.c
3934 action xauth.h
3936 action xauth.man
3939 symlink_app_xbiff() {
3940 src_dir programs/xbiff
3941 dst_dir app/xbiff
3943 action Mailbox.c
3944 action xbiff.c
3946 action Mailbox.h
3947 action MailboxP.h
3949 action xbiff.man
3951 src_dir programs/xbiff/bitmaps
3952 dst_dir app/xbiff/bitmaps
3954 action mail-down
3955 action mail-down-mask
3956 action mail-up
3957 action mail-up-mask
3960 symlink_app_xcalc() {
3961 src_dir programs/xcalc
3962 dst_dir app/xcalc
3964 action XCalc.ad
3965 action XCalc-col.ad
3967 action actions.c
3968 action math.c
3969 action xcalc.c
3971 action actions.h
3972 action xcalc.h
3974 action xcalc.man
3978 symlink_app_xclipboard() {
3979 src_dir programs/xclipboard
3980 dst_dir app/xclipboard
3982 action XClipboard.ad
3984 action xclipboard.c
3985 action xcutsel.c
3987 action xclipboard.man
3988 action xcutsel.man
3992 symlink_app_xclock() {
3993 src_dir programs/xclock
3994 dst_dir app/xclock
3996 action XClk-col.ad
3997 action XClock.ad
3999 action Clock.c
4000 action xclock.c
4002 action Clock.h
4003 action ClockP.h
4005 action xclock.man
4007 action clmask.bit
4008 action clock.bit
4012 symlink_app_xcmsdb() {
4013 src_dir programs/xcmsdb
4014 dst_dir app/xcmsdb
4016 action loadData.c
4017 action xcmsdb.c
4019 action SCCDFile.h
4021 action xcmsdb.man
4023 src_dir programs/xcmsdb/datafiles
4024 dst_dir app/xcmsdb/datafiles
4026 action sample1.dcc
4027 action sample2.dcc
4030 symlink_app_xconsole() {
4031 src_dir programs/xconsole
4032 dst_dir app/xconsole
4034 action XConsole.ad
4036 action xconsole.c
4038 action xconsole.man
4042 symlink_app_xcursorgen() {
4043 src_dir programs/xcursorgen
4044 dst_dir app/xcursorgen
4046 action xcursorgen.c
4047 action xcursorgen.man
4050 symlink_app_xdbedizzy() {
4051 src_dir programs/xdbedizzy
4052 dst_dir app/xdbedizzy
4054 action xdbedizzy.c
4056 action xdbedizzy.man
4058 action xdbedizzy.sgml
4061 symlink_app_xditview() {
4062 src_dir programs/xditview
4063 dst_dir app/xditview
4065 action Xdit-chrtr.ad Xditview-chrtr.ad
4066 action Xditview.ad
4068 action draw.c
4069 action Dvi.c
4070 action DviChar.c
4071 action font.c
4072 action lex.c
4073 action page.c
4074 action parse.c
4075 action xditview.c
4076 action XFontName.c
4078 action DviChar.h
4079 action Dvi.h
4080 action DviP.h
4081 action Menu.h
4082 action XFontName.h
4084 action xditview.man
4086 action xdit.bm
4087 action xdit_mask.bm
4089 action ldblarrow
4090 action rdblarrow
4093 symlink_app_xdriinfo() {
4094 src_dir programs/xdriinfo
4095 dst_dir app/xdriinfo
4097 action xdriinfo.c
4099 action xdriinfo.man
4103 symlink_app_xev() {
4104 src_dir programs/xev
4105 dst_dir app/xev
4107 action xev.c
4109 action xev.man
4113 symlink_app_xeyes() {
4114 src_dir programs/xeyes
4115 dst_dir app/xeyes
4117 action Eyes.c
4118 action transform.c
4119 action xeyes.c
4121 action Eyes.h
4122 action EyesP.h
4123 action transform.h
4125 action xeyes.man
4127 action eyes.bit
4128 action eyesmask.bit
4131 symlink_app_xf86dga() {
4132 src_dir programs/xf86dga
4133 dst_dir app/xf86dga
4135 action dga.c
4137 action dga.man
4141 symlink_app_xfd() {
4142 src_dir programs/xfd
4143 dst_dir app/xfd
4145 action Xfd.ad
4147 action grid.c
4148 action xfd.c
4150 action grid.h
4151 action gridP.h
4153 action xfd.man
4157 symlink_app_xfindproxy() {
4158 src_dir programs/xfindproxy
4159 dst_dir app/xfindproxy
4161 action xfindproxy.c
4163 action xfindproxy.h
4165 action xfindproxy.man
4169 symlink_app_xfontsel() {
4170 src_dir programs/xfontsel
4171 dst_dir app/xfontsel
4173 action XFontSel.ad
4175 action ULabel.c
4176 action xfontsel.c
4178 action ULabel.h
4179 action ULabelP.h
4181 action xfontsel.man
4185 symlink_app_xfsinfo() {
4186 src_dir programs/xfsinfo
4187 dst_dir app/xfsinfo
4189 action xfsinfo.c
4191 action xfsinfo.man
4195 symlink_app_xfwp() {
4196 src_dir programs/xfwp
4197 dst_dir app/xfwp
4199 action io.c
4200 action misc.c
4201 action pm.c
4202 action transport.c
4203 action xfwp.c
4205 action io.h
4206 action misc.h
4207 action pm.h
4208 action transport.h
4209 action xfwp.h
4211 action xfwp.man
4215 symlink_app_xgamma() {
4216 src_dir programs/xgamma
4217 dst_dir app/xgamma
4219 action xgamma.c
4221 action xgamma.man
4225 symlink_app_xgc() {
4226 src_dir programs/xgc
4227 dst_dir app/xgc
4229 action Xgc.ad
4231 action choice.c
4232 action dashlist.c
4233 action getfile.c
4234 action gram.y
4235 action interpret.c
4236 action lex.l
4237 action main.c
4238 action planemask.c
4239 action record.c
4240 action testfrac.c
4241 action tests.c
4242 action text.c
4244 action constants.h
4245 action main.h
4246 action xgc.h
4248 action xgc.man
4250 action Bugs
4251 action tile
4253 src_dir programs/xgc/Written
4254 dst_dir app/xgc/Written
4256 action FilledRects
4257 action Interface
4258 action Jim
4259 action Notes
4260 action Notes2
4261 action Outline
4262 action Widget
4265 symlink_app_xinit() {
4266 src_dir programs/xinit
4267 dst_dir app/xinit
4269 action xinit.c
4271 action README
4273 action startx.man
4274 action xinit.man
4276 action startx.cmd
4277 action xinitrc.cmd
4278 action xinit.def
4279 action startx.cpp
4280 action xinitrc.cpp
4283 symlink_app_xkbcomp() {
4284 src_dir programs/xkbcomp
4285 dst_dir app/xkbcomp
4287 action action.c
4288 action alias.c
4289 action compat.c
4290 action expr.c
4291 action geometry.c
4292 action indicators.c
4293 action keycodes.c
4294 action keymap.c
4295 action keytypes.c
4296 action listing.c
4297 action misc.c
4298 action parseutils.c
4299 action symbols.c
4300 action utils.c
4301 action vmod.c
4302 action xkbcomp.c
4303 action xkbparse.y
4304 action xkbpath.c
4305 action xkbscan.c
4307 action README
4308 action README.config
4309 action README.enhancing
4311 action action.h
4312 action alias.h
4313 action compat.h
4314 action expr.h
4315 action indicators.h
4316 action keycodes.h
4317 action misc.h
4318 action parseutils.h
4319 action tokens.h
4320 action utils.h
4321 action vmod.h
4322 action xkbcomp.h
4323 action xkbpath.h
4325 action xkbcomp.man
4329 symlink_app_xkbevd() {
4330 src_dir programs/xkbevd
4331 dst_dir app/xkbevd
4333 action cfgparse.y
4334 action cfgscan.c
4335 action evargs.c
4336 action printev.c
4337 action utils.c
4338 action xkbevd.c
4340 action tokens.h
4341 action utils.h
4342 action xkbevd.h
4344 action xkbevd.man
4346 action example.cf
4349 symlink_app_xkbprint() {
4350 src_dir programs/xkbprint
4351 dst_dir app/xkbprint
4353 action psgeom.c
4354 action utils.c
4355 action xkbprint.c
4357 action isokeys.h
4358 action utils.h
4359 action xkbprint.h
4361 action xkbprint.man
4365 symlink_app_xkbutils() {
4366 src_dir programs/xkbutils
4367 dst_dir app/xkbutils
4369 action LED.c
4370 action utils.c
4371 action xkbbell.c
4372 action xkbvleds.c
4373 action xkbwatch.c
4375 action LED.h
4376 action LEDP.h
4377 action utils.h
4381 symlink_app_xkill() {
4382 src_dir programs/xkill
4383 dst_dir app/xkill
4385 action xkill.c
4387 action xkill.man
4391 symlink_app_xload() {
4392 src_dir programs/xload
4393 dst_dir app/xload
4395 action XLoad.ad
4397 action get_load.c
4398 action get_rload.c
4399 action xload.c
4401 action xload.h
4403 action xload.man
4405 action xload.bit
4408 symlink_app_xlogo() {
4409 src_dir programs/xlogo
4410 dst_dir app/xlogo
4412 action XLogo.ad
4413 action XLogo-co.ad
4415 action Logo.c
4416 action print.c
4417 action RenderLogo.c
4418 action xlogo.c
4420 action Logo.h
4421 action LogoP.h
4422 action print.h
4423 action RenderLogo.h
4424 action xlogo.h
4426 action xlogo.man
4430 symlink_app_xlsatoms() {
4431 src_dir programs/xlsatoms
4432 dst_dir app/xlsatoms
4434 action xlsatoms.c
4436 action xlsatoms.man
4440 symlink_app_xlsclients() {
4441 src_dir programs/xlsclients
4442 dst_dir app/xlsclients
4444 action xlsclients.c
4446 action xlscli.man xlsclients.man
4450 symlink_app_xlsfonts() {
4451 src_dir programs/xlsfonts
4452 dst_dir app/xlsfonts
4454 action dsimple.c
4455 action xlsfonts.c
4457 action dsimple.h
4459 action xlsfonts.man
4460 action xlsfonts.sgml
4463 symlink_app_xmag() {
4464 src_dir programs/xmag
4465 dst_dir app/xmag
4467 action Xmag.ad
4469 action CutPaste.c
4470 action RootWin.c
4471 action Scale.c
4472 action xmag.c
4474 action CutPaste.h
4475 action RootWin.h
4476 action RootWinP.h
4477 action Scale.h
4478 action ScaleP.h
4480 action Scale.doc Scale.txt
4482 action xmag.man
4484 action xmag.icon
4487 symlink_app_xman() {
4488 src_dir programs/xman
4489 dst_dir app/xman
4491 action Xman-noxprint.ad
4492 action Xman-xprint.ad
4494 action buttons.c
4495 action globals.c
4496 action handler.c
4497 action help.c
4498 action main.c
4499 action man.c
4500 action misc.c
4501 action print.c
4502 action ScrollByL.c
4503 action search.c
4504 action tkfuncs.c
4505 action vendor.c
4507 action defs.h
4508 action globals.h
4509 action iconclosed.h
4510 action icon_help.h
4511 action icon_open.h
4512 action man.h
4513 action print.h
4514 action ScrollByL.h
4515 action ScrollByLP.h
4516 action vendor.h
4517 action version.h
4519 action xman.help
4520 action xman.man
4524 symlink_app_xmessage() {
4525 src_dir programs/xmessage
4526 dst_dir app/xmessage
4528 action Xmessage.ad
4529 action Xmessage-color.ad
4531 action makeform.c
4532 action readfile.c
4533 action xmessage.c
4535 action README
4537 action readfile.h
4538 action xmessage.h
4540 action xmessage.man
4542 action Tests
4545 symlink_app_xmh() {
4546 src_dir programs/xmh
4547 dst_dir app/xmh
4549 action Xmh.ad
4551 action bbox.c
4552 action command.c
4553 action compfuncs.c
4554 action folder.c
4555 action init.c
4556 action main.c
4557 action menu.c
4558 action miscfuncs.c
4559 action mlist.c
4560 action msg.c
4561 action pick.c
4562 action popup.c
4563 action screen.c
4564 action toc.c
4565 action tocfuncs.c
4566 action tocutil.c
4567 action tsource.c
4568 action util.c
4569 action viewfuncs.c
4571 action actions.h
4572 action bbox.h
4573 action bboxint.h
4574 action externs.h
4575 action globals.h
4576 action mlist.h
4577 action msg.h
4578 action toc.h
4579 action tocintrnl.h
4580 action tocutil.h
4581 action tsource.h
4582 action tsourceP.h
4583 action version.h
4584 action xmh.h
4586 action xmh.man
4588 action black6
4589 action box6
4590 action Xmh.sample
4593 symlink_app_xmodmap() {
4594 src_dir programs/xmodmap
4595 dst_dir app/xmodmap
4597 action exec.c
4598 action handle.c
4599 action pf.c
4600 action xmodmap.c
4602 action wq.h
4603 action xmodmap.h
4605 action xmodmap.man
4607 action swap.km
4610 symlink_app_xmore() {
4611 src_dir programs/xmore
4612 dst_dir app/xmore
4614 action XMore.ad
4616 action print.c
4617 action printdialog.c
4618 action xmore.c
4620 action printdialog.h
4621 action printdialogprivates.h
4622 action print.h
4623 action xmore.h
4625 action xmore.man
4626 action xmore.sgml
4629 symlink_app_xplsprinters() {
4630 src_dir programs/xplsprinters
4631 dst_dir app/xplsprinters
4633 action xplsprinters.c
4635 action xplsprinters.man
4637 action xplsprinters.sgml
4640 symlink_app_xpr() {
4641 src_dir programs/xpr
4642 dst_dir app/xpr
4644 action x2jet.c
4645 action x2pmp.c
4646 action xpr.c
4648 action lncmd.h
4649 action pmp.h
4650 action xpr.h
4652 action xdpr.man
4653 action xpr.man
4655 action xdpr.script
4658 symlink_app_xprehashprinterlist() {
4659 src_dir programs/xprehashprinterlist
4660 dst_dir app/xprehashprinterlist
4662 action xprehashprinterlist.c
4664 action xprehashprinterlist.man
4666 action xprehashprinterlist.sgml
4669 symlink_app_xrandr() {
4670 src_dir programs/xrandr
4671 dst_dir app/xrandr
4673 action xrandr.c
4675 action xrandr.man
4679 symlink_app_xrdb() {
4680 src_dir programs/xrdb
4681 dst_dir app/xrdb
4683 action xrdb.c
4685 action xrdb.man
4689 symlink_app_xrefresh() {
4690 src_dir programs/xrefresh
4691 dst_dir app/xrefresh
4693 action xrefresh.c
4695 action xrefresh.man
4699 symlink_app_xset() {
4700 src_dir programs/xset
4701 dst_dir app/xset
4703 action xset.c
4705 action xset.man
4709 symlink_app_xsetmode() {
4710 src_dir programs/xsetmode
4711 dst_dir app/xsetmode
4713 action xsetmode.c
4715 action xsetmode.man
4719 symlink_app_xsetpointer() {
4720 src_dir programs/xsetpointer
4721 dst_dir app/xsetpointer
4723 action xsetpointer.c
4725 action xsetpnt.man xsetpointer.man
4729 symlink_app_xsetroot() {
4730 src_dir programs/xsetroot
4731 dst_dir app/xsetroot
4733 action xsetroot.c
4735 action xsetroot.man
4739 symlink_app_xsm() {
4740 src_dir programs/xsm
4741 dst_dir app/xsm
4743 action XSm.ad
4745 action auth.c
4746 action choose.c
4747 action globals.c
4748 action info.c
4749 action list.c
4750 action lock.c
4751 action log.c
4752 action mainwin.c
4753 action misc.c
4754 action popup.c
4755 action printhex.c
4756 action prop.c
4757 action remote.c
4758 action restart.c
4759 action save.c
4760 action saveutil.c
4761 action signals.c
4762 action xsm.c
4763 action xtwatch.c
4765 action README
4767 action system.xsm
4769 action auth.h
4770 action choose.h
4771 action info.h
4772 action list.h
4773 action lock.h
4774 action log.h
4775 action mainwin.h
4776 action popup.h
4777 action prop.h
4778 action restart.h
4779 action save.h
4780 action saveutil.h
4781 action xsm.h
4782 action xtwatch.h
4784 action xsm.man
4788 symlink_app_xstdcmap() {
4789 src_dir programs/xstdcmap
4790 dst_dir app/xstdcmap
4792 action xstdcmap.c
4794 action xstdcmap.man
4798 symlink_app_xtrap() {
4799 src_dir programs/xtrap
4800 dst_dir app/xtrap
4802 action chparse.c
4803 action XEKeybCtrl.c
4804 action xtrapchar.c
4805 action xtrapin.c
4806 action xtrapinfo.c
4807 action xtrapout.c
4808 action xtrapproto.c
4809 action xtrapreset.c
4810 action xtrapstats.c
4812 action chparse.h
4813 action XEKeybCtrl.h
4815 action xtrap.man
4819 symlink_app_xvidtune() {
4820 src_dir programs/xvidtune
4821 dst_dir app/xvidtune
4823 action Xvidtune.cpp
4825 action xvidtune.c
4827 action xvidtune.man
4831 symlink_app_xvinfo() {
4832 src_dir programs/xvinfo
4833 dst_dir app/xvinfo
4835 action xvinfo.c
4837 action xvinfo.man
4840 symlink_app_xwud() {
4841 src_dir programs/xwud
4842 dst_dir app/xwud
4844 action xwud.c
4846 action xwud.man
4849 symlink_app_scripts() {
4850 src_dir programs/scripts
4851 dst_dir app/scripts
4853 action fontname.sh
4854 action fontprop.sh
4855 action xauth_switch_to_sun-des-1.cpp
4856 action xon.sh xon
4858 action xon.man
4861 symlink_app_rstart() {
4862 src_dir programs/rstart
4863 dst_dir app/rstart
4865 action auth.c
4866 action server.c
4868 action rstartd.man
4869 action rstart.man
4871 action client.cpp
4872 action server.cpp
4873 action config.cpp
4875 action server.os2
4877 # commands
4879 src_dir programs/rstart/commands
4880 dst_dir app/rstart/commands
4882 action ListContexts
4883 action ListGenericCommands
4884 action @List
4886 # x11r6
4888 src_dir programs/rstart/commands/x11r6
4889 dst_dir app/rstart/commands/x11r6
4891 action @List
4892 action LoadMonitor
4893 action Terminal
4895 # contexts
4897 src_dir programs/rstart/contexts
4898 dst_dir app/rstart/contexts
4900 action @List
4901 action @Aliases
4902 action default
4903 action x11r6
4905 # samples
4907 # commands
4909 src_dir programs/rstart/samples/commands
4910 dst_dir app/rstart/samples/commands
4912 action @List
4913 action ListContexts
4914 action ListGenericCommands
4916 # odt1
4918 src_dir programs/rstart/samples/commands/odt1
4919 dst_dir app/rstart/samples/commands/odt1
4921 action @List
4922 action LoadMonitor
4923 action Terminal
4925 # openwindows2
4927 src_dir programs/rstart/samples/commands/openwindows2
4928 dst_dir app/rstart/samples/commands/openwindows2
4930 action @List
4931 action LoadMonitor
4932 action Terminal
4934 # openwindow3
4936 src_dir programs/rstart/samples/commands/openwindows3
4937 dst_dir app/rstart/samples/commands/openwindows3
4939 action @List
4940 action LoadMonitor
4941 action Terminal
4943 # x11r5
4945 src_dir programs/rstart/samples/commands/x11r5
4946 dst_dir app/rstart/samples/commands/x11r5
4948 action @List
4949 action LoadMonitor
4950 action Terminal
4952 # contexts.odt1
4954 src_dir programs/rstart/samples/contexts.odt1
4955 dst_dir app/rstart/samples/contexts.odt1
4957 action @Aliases
4958 action @List
4959 action default
4960 action odt1
4962 # contexts.sun
4964 src_dir programs/rstart/samples/contexts.sun
4965 dst_dir app/rstart/samples/contexts.odt1
4967 action @Aliases
4968 action @List
4969 action default
4970 action openwindows2
4971 action openwindows3
4972 action x11r5
4973 action x11r6
4976 symlink_app_sessreg() {
4977 src_dir programs/xdm
4978 dst_dir app/sessreg
4980 action sessreg.c
4981 action sessreg.man
4984 symlink_app_xdm() {
4985 src_dir programs/xdm
4986 dst_dir app/xdm
4988 action access.c
4989 action auth.c
4990 action choose.c
4991 action chooser.c
4992 action daemon.c
4993 action dm.c
4994 action dpylist.c
4995 action error.c
4996 action file.c
4997 action genauth.c
4998 action krb5auth.c
4999 action mitauth.c
5000 action netaddr.c
5001 action policy.c
5002 action prngc.c
5003 action protodpy.c
5004 action reset.c
5005 action resource.c
5006 action rpcauth.c
5007 action server.c
5008 action session.c
5009 action socket.c
5010 action streams.c
5011 action util.c
5012 action xdmauth.c
5013 action xdmcp.c
5014 action xdmshell.c
5016 action dm_auth.h
5017 action dm_error.h
5018 action dm.h
5019 action dm_socket.h
5020 action greet.h
5022 action Chooser.ad
5024 action xdm.man xdm.man.cpp
5026 src_dir programs/xdm/greeter
5027 dst_dir app/xdm/greeter
5029 action greet.c
5030 action Login.c
5031 action Login.h
5032 action LoginP.h
5033 action verify.c
5035 src_dir programs/xdm/config
5036 dst_dir app/xdm/config
5038 action README
5040 action GiveConsole
5041 action TakeConsole
5043 action xorg-bw.xpm
5044 action xorg.xpm
5046 action Xreset
5047 action Xaccess
5048 action Xservers.fs
5049 action Xsession
5050 action Xsetup_0
5051 action Xstartup
5052 action Xwilling
5054 action Xres.cpp Xresources.cpp
5055 action Xserv.ws.cpp Xservers.ws.cpp
5056 action xdm-conf.cpp xdm-config.cpp
5059 symlink_app_xprop() {
5060 src_dir programs/xprop
5061 dst_dir app/xprop
5063 action xprop.c
5065 action xprop.man
5067 src_dir programs/xlsfonts
5069 action dsimple.c
5070 action dsimple.h
5073 symlink_app_xwd() {
5074 src_dir programs/xwd
5075 dst_dir app/xwd
5077 action list.c
5078 action multiVis.c
5079 action xwd.c
5081 action list.h
5082 action multiVis.h
5083 action wsutils.h
5085 action xwd.man
5087 src_dir programs/xlsfonts
5089 action dsimple.c
5090 action dsimple.h
5093 symlink_app_xwininfo() {
5094 src_dir programs/xwininfo
5095 dst_dir app/xwininfo
5097 action xwininfo.c
5099 action xwininfo.man
5101 src_dir programs/xlsfonts
5103 action dsimple.c
5104 action dsimple.h
5107 symlink_app_xphelloworld() {
5108 src_dir programs/xphelloworld/xpxmhelloworld
5109 dst_dir app/xphelloworld/xpxmhelloworld
5111 action xpxmhelloworld.man
5112 action xpxmhelloworld.c
5113 action xpxmhelloworld.sgml
5115 src_dir programs/xphelloworld/xpsimplehelloworld
5116 dst_dir app/xphelloworld/xpsimplehelloworld
5118 action xpsimplehelloworld.sgml
5119 action xpsimplehelloworld.c
5120 action xpsimplehelloworld.man
5122 src_dir programs/xphelloworld/xpxthelloworld
5123 dst_dir app/xphelloworld/xpxthelloworld
5125 action xpxthelloworld.man
5126 action xpxthelloworld.sgml
5127 action xpxthelloworld.c
5129 src_dir programs/xphelloworld/xpawhelloworld
5130 dst_dir app/xphelloworld/xpawhelloworld
5132 action xpawhelloworld.c
5133 action xpawhelloworld.man
5135 src_dir programs/xphelloworld/xphelloworld
5136 dst_dir app/xphelloworld/xphelloworld
5138 action xphelloworld.sgml
5139 action xphelloworld.c
5140 action xphelloworld.man
5143 symlink_app_lbxproxy() {
5144 src_dir programs/lbxproxy
5145 dst_dir app/lbxproxy
5147 action design
5148 action lbxproxy.def
5149 action lbxproxy.man
5151 src_dir programs/lbxproxy/config
5152 dst_dir app/lbxproxy/config
5154 action AtomControl
5156 src_dir programs/lbxproxy/di
5157 dst_dir app/lbxproxy/di
5159 action atomcache.c
5160 action cache.c
5161 action cmap.c
5162 action cmaputil.c
5163 action dispatch.c
5164 action extensions.c
5165 action gfx.c
5166 action globals.c
5167 action init.c
5168 action lbxfuncs.c
5169 action lbxutil.c
5170 action main.c
5171 action options.c
5172 action pm.c
5173 action props.c
5174 action reqtype.c
5175 action resource.c
5176 action swaprep.c
5177 action swapreq.c
5178 action tables.c
5179 action tags.c
5180 action unsquish.c
5181 action utils.c
5182 action wire.c
5183 action zeropad.c
5185 src_dir programs/lbxproxy/include
5186 dst_dir app/lbxproxy/include
5188 action assert.h
5189 action atomcache.h
5190 action cache.h
5191 action colormap.h
5192 action init.h
5193 action lbxext.h
5194 action lbx.h
5195 action misc.h
5196 action os.h
5197 action pm.h
5198 action pmP.h
5199 action proxyopts.h
5200 action reqtype.h
5201 action resource.h
5202 action swap.h
5203 action tags.h
5204 action util.h
5205 action wire.h
5207 src_dir programs/lbxproxy/os
5208 dst_dir app/lbxproxy/os
5210 action connection.c
5211 action io.c
5212 action osdep.h
5213 action osinit.c
5214 action WaitFor.c
5217 symlink_app_xedit() {
5218 src_dir programs/xedit
5219 dst_dir app/xedit
5221 action xedit.h
5222 action commands.c
5223 action hook.c
5224 action ispell.c
5225 action lisp.c
5226 action options.c
5227 action realpath.c
5228 action strcasecmp.c
5229 action util.c
5230 action xedit.c
5232 action Xedit-color.ad
5233 action Xedit-noxprint.ad
5234 action Xedit-xprint.ad
5236 action Xedit-sample
5238 dst_dir app/xedit/man
5239 action xedit.man xedit.1
5241 src_dir programs/xedit/lisp
5242 dst_dir app/xedit/lisp
5244 action bytecode.c
5245 action bytecode.h
5246 action compile.c
5247 action core.c
5248 action core.h
5249 action debugger.c
5250 action debugger.h
5251 action env.c
5252 action format.c
5253 action format.h
5254 action hash.c
5255 action hash.h
5256 action helper.c
5257 action helper.h
5258 action internal.h
5259 action io.c
5260 action io.h
5261 action lisp.c
5262 action lisp.h
5263 action lsp.c
5264 action math.c
5265 action math.h
5266 action mathimp.c
5267 action package.c
5268 action package.h
5269 action pathname.c
5270 action pathname.h
5271 action private.h
5272 action read.c
5273 action read.h
5274 action regex.c
5275 action regex.h
5276 action require.c
5277 action require.h
5278 action stream.c
5279 action stream.h
5280 action string.c
5281 action string.h
5282 action struct.c
5283 action struct.h
5284 action time.c
5285 action time.h
5286 action write.c
5287 action write.h
5288 action xedit.c
5289 action xedit.h
5290 action TODO
5291 action README
5293 src_dir programs/xedit/lisp/modules
5294 dst_dir app/xedit/lisp/modules
5296 action indent.lsp
5297 action lisp.lsp
5298 action syntax.lsp
5299 action xedit.lsp
5300 action psql.c
5301 action x11.c
5302 action xaw.c
5303 action xt.c
5305 src_dir programs/xedit/lisp/modules/progmodes
5306 dst_dir app/xedit/lisp/modules/progmodes
5308 action c.lsp
5309 action html.lsp
5310 action imake.lsp
5311 action lisp.lsp
5312 action make.lsp
5313 action man.lsp
5314 action patch.lsp
5315 action rpm.lsp
5316 action sgml.lsp
5317 action sh.lsp
5318 action xconf.lsp
5319 action xlog.lsp
5320 action xrdb.lsp
5322 src_dir programs/xedit/lisp/re
5323 dst_dir app/xedit/lisp/re
5325 action README
5326 action re.c
5327 action rec.c
5328 action re.h
5329 action reo.c
5330 action rep.h
5331 action tests.c
5332 action tests.txt
5334 src_dir programs/xedit/lisp/test
5335 dst_dir app/xedit/lisp/test
5337 action hello.lsp
5338 action list.lsp
5339 action math.lsp
5340 action psql-1.lsp
5341 action psql-2.lsp
5342 action psql-3.lsp
5343 action regex.lsp
5344 action stream.lsp
5345 action widgets.lsp
5347 src_dir programs/xedit/lisp/mp
5348 dst_dir app/xedit/lisp/mp
5350 action mp.c
5351 action mp.h
5352 action mpi.c
5353 action mpr.c
5355 src_dir programs/xmore
5356 dst_dir app/xedit
5358 action print.h
5359 action print.c
5360 action printdialog.h
5361 action printdialog.c
5362 action printdialogprivates.h
5365 symlink_app_xfs() {
5366 src_dir programs/xfs
5367 dst_dir app/xfs
5369 action xfs.def
5370 action xfs.man
5371 action README
5372 action config.cpp
5374 src_dir programs/xfs/difs
5375 dst_dir app/xfs/difs
5377 action atom.c
5378 action cache.c
5379 action charinfo.c
5380 action difsutils.c
5381 action dispatch.c
5382 action events.c
5383 action extensions.c
5384 action fontinfo.c
5385 action fonts.c
5386 action globals.c
5387 action initfonts.c
5388 action main.c
5389 action resource.c
5390 action swaprep.c
5391 action swapreq.c
5392 action tables.c
5394 src_dir programs/xfs/include
5395 dst_dir app/xfs/include
5397 action access.h
5398 action accstr.h
5399 action assert.h
5400 action auth.h
5401 action authstr.h
5402 action cache.h
5403 action cachestr.h
5404 action client.h
5405 action clientstr.h
5406 action closestr.h
5407 action closure.h
5408 action difsfn.h
5409 action difsfnst.h
5410 action difs.h
5411 action difsutils.h
5412 action dispatch.h
5413 action extentst.h
5414 action fsevents.h
5415 action fsresource.h
5416 action globals.h
5417 action misc.h
5418 action os.h
5419 action osstruct.h
5420 action servermd.h
5421 action site.h
5422 action swaprep.h
5423 action swapreq.h
5425 src_dir programs/xfs/os
5426 dst_dir app/xfs/os
5428 action access.c
5429 action config.c
5430 action config.h
5431 action configstr.h
5432 action connection.c
5433 action daemon.c
5434 action error.c
5435 action io.c
5436 action osdep.h
5437 action osglue.c
5438 action osinit.c
5439 action utils.c
5440 action waitfor.c
5443 symlink_app_xrx()
5445 src_dir programs/xrx/helper
5446 dst_dir app/xrx/helper
5448 action GetUrl.c
5449 action GetUrl.h
5450 action helper.c
5451 action xrx.man
5453 src_dir programs/xrx/libxplugin
5454 dst_dir app/xrx/libxplugin
5456 action README
5458 src_dir programs/xrx/rx
5459 dst_dir app/xrx/rx
5461 action XDpyName.h
5462 action XUrls.h
5463 action RxI.h
5464 action BuildReq.c
5465 action XDpyName.c
5466 action Rx.h
5467 action Prefs.c
5468 action Prefs.h
5469 action XAuth.c
5470 action PParse.c
5471 action XAuth.h
5472 action PRead.c
5473 action XUrls.c
5475 src_dir programs/xrx/xnest-plugin
5476 dst_dir app/xrx/xnest-plugin
5478 action PProcess.c
5479 action XnestDis.c
5480 action SetWin.c
5481 action RxPlugin.h
5482 action NewNDest.c
5484 src_dir programs/xrx/htdocs
5485 dst_dir app/xrx/htdocs
5487 action xclock
5488 action dtcm.html
5489 action excel.html
5490 action bitmap
5491 action bitmap.html
5492 action xclock.html
5493 action xload
5494 action dtcm
5495 action xload.html
5496 action excel
5498 src_dir programs/xrx/testplugin
5499 dst_dir app/xrx/testplugin
5501 action testplugin.man
5502 action testplugin.c
5504 src_dir programs/xrx/plugin
5505 dst_dir app/xrx/plugin
5507 action PProcess.c
5508 action stubs.c
5509 action libxrx.man
5510 action SetWin.c
5511 action Global.c
5512 action Main.c
5513 action RxPlugin.h
5514 action NewNDest.c
5516 src_dir programs/xrx/plugin/common
5517 dst_dir app/xrx/plugin/common
5519 action npunix.c
5521 src_dir programs/xrx/plugin/include
5522 dst_dir app/xrx/plugin/include
5524 action npapi.h
5525 action npupp.h
5526 action jri.h
5527 action jri_md.h
5528 action jritypes.h
5530 src_dir programs/xrx/cgi-bin
5531 dst_dir app/xrx/cgi-bin
5533 action xclock
5534 action dtcm.sh
5535 action bitmap
5536 action xload
5537 action dtcm
5538 action excel
5541 symlink_app() {
5542 symlink_app_xfs
5543 symlink_app_xedit
5544 symlink_app_lbxproxy
5545 symlink_app_xphelloworld
5546 symlink_app_xwininfo
5547 symlink_app_xwd
5548 symlink_app_xprop
5549 symlink_app_xwud
5550 symlink_app_xvinfo
5551 symlink_app_xvidtune
5552 symlink_app_xtrap
5553 symlink_app_xstdcmap
5554 symlink_app_xsm
5555 symlink_app_xsetroot
5556 symlink_app_xsetpointer
5557 symlink_app_xsetmode
5558 symlink_app_xset
5559 symlink_app_xrefresh
5560 symlink_app_xrdb
5561 symlink_app_xrandr
5562 symlink_app_xprehashprinterlist
5563 symlink_app_xpr
5564 symlink_app_xplsprinters
5565 symlink_app_xmore
5566 symlink_app_xmodmap
5567 symlink_app_xmh
5568 symlink_app_xmessage
5569 symlink_app_xman
5570 symlink_app_xmag
5571 symlink_app_xlsfonts
5572 symlink_app_xlsclients
5573 symlink_app_xlsatoms
5574 symlink_app_xlogo
5575 symlink_app_xload
5576 symlink_app_xkill
5577 symlink_app_xkbutils
5578 symlink_app_xkbprint
5579 symlink_app_xkbevd
5580 symlink_app_xkbcomp
5581 symlink_app_xinit
5582 symlink_app_xgc
5583 symlink_app_xgamma
5584 symlink_app_xfwp
5585 symlink_app_xfsinfo
5586 symlink_app_xfontsel
5587 symlink_app_xfindproxy
5588 symlink_app_xfd
5589 symlink_app_xf86dga
5590 symlink_app_xeyes
5591 symlink_app_xev
5592 symlink_app_xdriinfo
5593 symlink_app_xditview
5594 symlink_app_xdbedizzy
5595 symlink_app_xconsole
5596 symlink_app_xcmsdb
5597 symlink_app_xclock
5598 symlink_app_xclipboard
5599 symlink_app_xcalc
5600 symlink_app_xbiff
5601 symlink_app_xauth
5602 symlink_app_x11perf
5603 symlink_app_viewres
5604 symlink_app_smproxy
5605 symlink_app_showfont
5606 symlink_app_setxkbmap
5607 symlink_app_rstart
5608 symlink_app_rgb
5609 symlink_app_proxymngr
5610 symlink_app_pclcomp
5611 symlink_app_oclock
5612 symlink_app_mkfontdir
5613 symlink_app_mkfontscale
5614 symlink_app_makepsres
5615 symlink_app_mkcfm
5616 symlink_app_luit
5617 symlink_app_listres
5618 symlink_app_ico
5619 symlink_app_iceauth
5620 symlink_app_fstobdf
5621 symlink_app_fslsfonts
5622 symlink_app_fonttosfnt
5623 symlink_app_editres
5624 symlink_app_bitmap
5625 symlink_app_beforelight
5626 symlink_app_bdftopcf
5627 symlink_app_appres
5628 symlink_app_twm
5629 symlink_app_xdpyinfo
5630 symlink_app_xhost
5631 symlink_app_xcursorgen
5632 symlink_app_scripts
5633 symlink_app_xdm
5634 symlink_app_sessreg
5635 symlink_app_xrx
5636 # ...
5640 #########
5642 # The xserver module
5644 #########
5647 symlink_xserver_GL_apple() {
5648 src_dir programs/Xserver/GL/apple
5649 dst_dir xserver/xorg/GL/apple
5651 action aglGlx.c
5652 action indirect.c
5655 symlink_xserver_GL_dri() {
5656 src_dir programs/Xserver/GL/dri
5657 dst_dir xserver/xorg/hw/xfree86/dri
5659 action dri.c
5660 action dri.h
5661 action drimodule.c
5662 action dristruct.h
5663 action sarea.h
5664 action xf86dri.c
5666 # don't hate me
5667 # src_dir extras/drm/shared-core
5668 # action drm.h
5671 symlink_xserver_GL_glx() {
5672 src_dir programs/Xserver/GL/glx
5673 dst_dir xserver/xorg/GL/glx
5675 action g_disptab.c
5676 action g_disptab.h
5677 action g_disptab_EXT.c
5678 action g_disptab_EXT.h
5679 action g_render.c
5680 action g_renderswap.c
5681 action g_single.c
5682 action g_singleswap.c
5683 action global.c
5684 action glxbuf.c
5685 action glxbuf.h
5686 action glxcmds.c
5687 action glxcmdsswap.c
5688 action glxcontext.h
5689 action glxdrawable.h
5690 action glxerror.h
5691 action glxext.c
5692 action glxext.h
5693 action glxfb.c
5694 action glxfb.h
5695 action glximports.c
5696 action glximports.h
5697 action glxmem.c
5698 action glxmem.h
5699 action glxpix.c
5700 action glxpix.h
5701 action glxscreens.c
5702 action glxscreens.h
5703 action glxserver.h
5704 action glxutil.c
5705 action glxutil.h
5706 action impsize.h
5707 action render2.c
5708 action render2swap.c
5709 action renderpix.c
5710 action renderpixswap.c
5711 action rensize.c
5712 action rensizetab.c
5713 action single2.c
5714 action single2swap.c
5715 action singlepix.c
5716 action singlepixswap.c
5717 action singlesize.c
5718 action singlesize.h
5719 action unpack.h
5720 action xfont.c
5723 symlink_xserver_GL_include_GL() {
5724 src_dir programs/Xserver/GL/include/GL
5725 dst_dir xserver/xorg/GL/include/GL
5727 action glx_ansic.h
5728 action xf86glx.h
5731 symlink_xserver_GL_mesa_X() {
5732 src_dir programs/Xserver/GL/mesa/X
5733 dst_dir xserver/xorg/GL/mesa/X
5735 action xf86glx.c
5736 action xf86glx_util.c
5737 action xf86glx_util.h
5738 action xf86glxint.h
5741 symlink_xserver_GL_windows() {
5742 src_dir programs/Xserver/GL/windows
5743 dst_dir xserver/xorg/GL/windows
5745 action glwindows.h
5746 action glwrap.c
5747 action indirect.c
5749 action ChangeLog
5752 symlink_xserver_XTrap() {
5753 src_dir programs/Xserver/XTrap
5754 dst_dir xserver/xorg/XTrap
5756 action xf86XTrapModule.c
5757 action xtrapddmi.c
5758 action xtrapdi.c
5759 action xtrapdiswp.c
5760 action xtrapditbl.c
5763 symlink_xserver_Xext() {
5764 src_dir programs/Xserver/Xext
5765 dst_dir xserver/xorg/Xext
5767 action EVI.c
5768 action EVIstruct.h
5769 action appgroup.c
5770 action appgroup.h
5771 action bigreq.c
5772 action cup.c
5773 action dpms.c
5774 action dpmsproc.h
5775 action dpmsstubs.c
5776 action fontcache.c
5777 action mbuf.c
5778 action mbufbf.c
5779 action mbufpx.c
5780 action mitmisc.c
5781 action panoramiX.c
5782 action panoramiX.h
5783 action panoramiXSwap.c
5784 action panoramiXh.h
5785 action panoramiXprocs.c
5786 action panoramiXsrv.h
5787 action sampleEVI.c
5788 action saver.c
5789 action security.c
5790 action shape.c
5791 action shm.c
5792 action sleepuntil.c
5793 action sleepuntil.h
5794 action sync.c
5795 action xcmisc.c
5796 action xevie.c
5797 action xf86bigfont.c
5798 action xprint.c
5799 action xres.c
5800 action xtest.c
5801 action xtest1dd.c
5802 action xtest1dd.h
5803 action xtest1di.c
5804 action xvdisp.c
5805 action xvdisp.h
5806 action xvdix.h
5807 action xvmain.c
5808 action xvmc.c
5809 action xvmcext.h
5810 action SecurityPolicy
5811 action xtest1.frags README.xtest1-ddx
5813 # some of these are really DDX-specific despite being in Xext
5815 dst_dir xserver/xorg/hw/xfree86/dixmods/extmod
5816 action dgaproc.h
5817 action vidmodeproc.h
5818 action xf86dga.c
5819 action xf86dga2.c
5820 action xf86dgaext.h
5821 action xf86misc.c
5822 action xf86miscproc.h
5823 action xf86vmode.c
5824 action xvmod.c
5825 action xvmodproc.h
5827 dst_dir xserver/xorg/hw/dmx
5828 action dmx.c
5831 symlink_xserver_Xext_extmod() {
5832 src_dir programs/Xserver/Xext/extmod
5833 dst_dir xserver/xorg/hw/xfree86/dixmods/extmod
5835 action modinit.c
5836 action modinit.h
5839 symlink_xserver_Xi() {
5840 src_dir programs/Xserver/Xi
5841 dst_dir xserver/xorg/Xi
5843 action allowev.c
5844 action allowev.h
5845 action chgdctl.c
5846 action chgdctl.h
5847 action chgfctl.c
5848 action chgfctl.h
5849 action chgkbd.c
5850 action chgkbd.h
5851 action chgkmap.c
5852 action chgkmap.h
5853 action chgprop.c
5854 action chgprop.h
5855 action chgptr.c
5856 action chgptr.h
5857 action closedev.c
5858 action closedev.h
5859 action devbell.c
5860 action devbell.h
5861 action exevents.c
5862 action exglobals.h
5863 action extinit.c
5864 action getbmap.c
5865 action getbmap.h
5866 action getdctl.c
5867 action getdctl.h
5868 action getfctl.c
5869 action getfctl.h
5870 action getfocus.c
5871 action getfocus.h
5872 action getkmap.c
5873 action getkmap.h
5874 action getmmap.c
5875 action getmmap.h
5876 action getprop.c
5877 action getprop.h
5878 action getselev.c
5879 action getselev.h
5880 action getvers.c
5881 action getvers.h
5882 action grabdev.c
5883 action grabdev.h
5884 action grabdevb.c
5885 action grabdevb.h
5886 action grabdevk.c
5887 action grabdevk.h
5888 action gtmotion.c
5889 action gtmotion.h
5890 action listdev.c
5891 action listdev.h
5892 action opendev.c
5893 action opendev.h
5894 action queryst.c
5895 action queryst.h
5896 action selectev.c
5897 action selectev.h
5898 action sendexev.c
5899 action sendexev.h
5900 action setbmap.c
5901 action setbmap.h
5902 action setdval.c
5903 action setdval.h
5904 action setfocus.c
5905 action setfocus.h
5906 action setmmap.c
5907 action setmmap.h
5908 action setmode.c
5909 action setmode.h
5910 action stubs.c
5911 action ungrdev.c
5912 action ungrdev.h
5913 action ungrdevb.c
5914 action ungrdevb.h
5915 action ungrdevk.c
5916 action ungrdevk.h
5919 symlink_xserver_Xprint() {
5920 src_dir programs/Xserver/Xprint
5921 dst_dir xserver/xorg/Xprint
5923 action AttrValid.c
5924 action AttrValid.h
5925 action DiPrint.h
5926 action Init.c
5927 action Oid.c
5928 action Oid.h
5929 action OidDefs.h
5930 action OidStrs.h
5931 action Util.c
5932 action ValTree.c
5933 action attributes.c
5934 action attributes.h
5935 action ddxInit.c
5936 action mediaSizes.c
5937 action spooler.c
5938 action spooler.h
5940 dst_dir xserver/xorg/Xprint/doc
5941 action Xprt.html
5942 action Xprt.man Xprt.man.pre
5943 action Xprt.sgml
5946 symlink_xserver_Xprint_etc() {
5947 src_dir programs/Xserver/Xprint/etc/init.d
5948 dst_dir xserver/xorg/Xprint/etc/init.d
5950 action xprint.cpp
5952 src_dir programs/Xserver/Xprint/etc/profile.d
5953 dst_dir xserver/xorg/Xprint/etc/profile.d
5955 action xprint.csh
5956 action xprint.sh
5958 src_dir programs/Xserver/Xprint/etc/Xsession.d
5959 dst_dir xserver/xorg/Xprint/etc/Xsession.d
5961 action cde_xsessiond_xprint.sh
5964 symlink_xserver_Xprint_ps() {
5965 src_dir programs/Xserver/Xprint/ps
5966 dst_dir xserver/xorg/Xprint/ps
5968 action Ps.h
5969 action PsArc.c
5970 action PsArea.c
5971 action PsAttVal.c
5972 action PsAttr.c
5973 action PsCache.c
5974 action PsColor.c
5975 action PsDef.h
5976 action PsFTFonts.c
5977 action PsFonts.c
5978 action PsGC.c
5979 action PsImageUtil.c
5980 action PsInit.c
5981 action PsLine.c
5982 action PsMisc.c
5983 action PsPixel.c
5984 action PsPixmap.c
5985 action PsPolygon.c
5986 action PsPrint.c
5987 action PsSpans.c
5988 action PsText.c
5989 action PsWindow.c
5990 action psout.c
5991 action psout.h
5992 action psout_ft.c
5993 action psout_ftpstype1.c
5994 action psout_ftpstype3.c
5995 action ttf2pt1wrap.c
5998 symlink_xserver_Xprint_pcl() {
5999 src_dir programs/Xserver/Xprint/pcl
6000 dst_dir xserver/xorg/Xprint/pcl
6002 action Pcl.h
6003 action PclArc.c
6004 action PclArea.c
6005 action PclAttVal.c
6006 action PclAttr.c
6007 action PclColor.c
6008 action PclCursor.c
6009 action PclDef.h
6010 action PclFonts.c
6011 action PclGC.c
6012 action PclInit.c
6013 action PclLine.c
6014 action PclMisc.c
6015 action PclPixel.c
6016 action PclPixmap.c
6017 action PclPolygon.c
6018 action PclPrint.c
6019 action PclSFonts.c
6020 action PclSFonts.h
6021 action PclSpans.c
6022 action PclText.c
6023 action PclWindow.c
6024 action Pclmap.h
6027 symlink_xserver_Xprint_raster() {
6028 src_dir programs/Xserver/Xprint/raster
6029 dst_dir xserver/xorg/Xprint/raster
6031 action Raster.c
6032 action Raster.h
6033 action RasterAttVal.c
6036 symlink_xserver_afb() {
6037 src_dir programs/Xserver/afb
6038 dst_dir xserver/xorg/afb
6040 action afb.h
6041 action afbbitblt.c
6042 action afbblt.c
6043 action afbbres.c
6044 action afbbresd.c
6045 action afbbstore.c
6046 action afbclip.c
6047 action afbcmap.c
6048 action afbfillarc.c
6049 action afbfillrct.c
6050 action afbfillsp.c
6051 action afbfont.c
6052 action afbgc.c
6053 action afbgetsp.c
6054 action afbhrzvert.c
6055 action afbimage.c
6056 action afbimggblt.c
6057 action afbline.c
6058 action afbmisc.c
6059 action afbpixmap.c
6060 action afbply1rct.c
6061 action afbplygblt.c
6062 action afbpntarea.c
6063 action afbpntwin.c
6064 action afbpolypnt.c
6065 action afbpushpxl.c
6066 action afbscrinit.c
6067 action afbsetsp.c
6068 action afbtegblt.c
6069 action afbtile.c
6070 action afbwindow.c
6071 action afbzerarc.c
6073 action README
6074 action Xdaniver.doc
6077 symlink_xserver_cfb() {
6078 src_dir programs/Xserver/cfb
6079 dst_dir xserver/xorg/cfb
6081 action cfb.h
6082 action cfb16.h
6083 action cfb24.h
6084 action cfb32.h
6085 action cfb8bit.c
6086 action cfb8bit.h
6087 action cfb8line.c
6088 action cfballpriv.c
6089 action cfbbitblt.c
6090 action cfbblt.c
6091 action cfbbres.c
6092 action cfbbresd.c
6093 action cfbbstore.c
6094 action cfbcmap.c
6095 action cfbcppl.c
6096 action cfbfillarc.c
6097 action cfbfillrct.c
6098 action cfbfillsp.c
6099 action cfbgc.c
6100 action cfbgetsp.c
6101 action cfbglblt8.c
6102 action cfbhrzvert.c
6103 action cfbigblt8.c
6104 action cfbimage.c
6105 action cfbline.c
6106 action cfbmap.h
6107 action cfbmskbits.c
6108 action cfbmskbits.h
6109 action cfbpixmap.c
6110 action cfbply1rct.c
6111 action cfbpntwin.c
6112 action cfbpolypnt.c
6113 action cfbpush8.c
6114 action cfbrctstp8.c
6115 action cfbrrop.c
6116 action cfbrrop.h
6117 action cfbscrinit.c
6118 action cfbsetsp.c
6119 action cfbsolid.c
6120 action cfbtab.h
6121 action cfbteblt8.c
6122 action cfbtegblt.c
6123 action cfbtile32.c
6124 action cfbtileodd.c
6125 action cfbunmap.h
6126 action cfbwindow.c
6127 action cfbzerarc.c
6128 action stip68kgnu.h
6129 action stipmips.s
6130 action stipsparc.s
6131 action stipsprc32.s
6134 symlink_xserver_cfb24() {
6135 src_dir programs/Xserver/cfb24
6136 dst_dir xserver/xorg/cfb24
6138 action cfbrrop24.h
6141 symlink_xserver_composite() {
6142 src_dir programs/Xserver/composite
6143 dst_dir xserver/xorg/composite
6145 action compalloc.c
6146 action compext.c
6147 action compinit.c
6148 action compint.h
6149 action compwindow.c
6152 symlink_xserver_damageext() {
6153 src_dir programs/Xserver/damageext
6154 dst_dir xserver/xorg/damageext
6156 action damageext.c
6157 action damageext.h
6158 action damageextint.h
6161 symlink_xserver_dbe() {
6162 src_dir programs/Xserver/dbe
6163 dst_dir xserver/xorg/dbe
6165 action dbe.c
6166 action dbestruct.h
6167 action midbe.c
6168 action midbe.h
6169 action midbestr.h
6172 symlink_xserver_dix() {
6173 src_dir programs/Xserver/dix
6174 dst_dir xserver/xorg/dix
6176 action atom.c
6177 action colormap.c
6178 action cursor.c
6179 action devices.c
6180 action dispatch.c
6181 action dispatch.h
6182 action dixfonts.c
6183 action dixutils.c
6184 action events.c
6185 action extension.c
6186 action ffs.c
6187 action gc.c
6188 action globals.c
6189 action glyphcurs.c
6190 action grabs.c
6191 action initatoms.c
6192 action main.c
6193 action pixmap.c
6194 action privates.c
6195 action property.c
6196 action resource.c
6197 action swaprep.c
6198 action swapreq.c
6199 action tables.c
6200 action window.c
6201 action xpstubs.c
6203 action buildatoms
6204 action BuiltInAtoms
6205 action CHANGES
6208 symlink_xserver_fb() {
6209 src_dir programs/Xserver/fb
6210 dst_dir xserver/xorg/fb
6212 action fb.h
6213 action fb24_32.c
6214 action fb24_32.h
6215 action fballpriv.c
6216 action fbarc.c
6217 action fbbits.c
6218 action fbbits.h
6219 action fbblt.c
6220 action fbbltone.c
6221 action fbbstore.c
6222 action fbcmap.c
6223 action fbcompose.c
6224 action fbcopy.c
6225 action fbedge.c
6226 action fbedgeimp.h
6227 action fbfill.c
6228 action fbfillrect.c
6229 action fbfillsp.c
6230 action fbgc.c
6231 action fbgetsp.c
6232 action fbglyph.c
6233 action fbimage.c
6234 action fbline.c
6235 action fbmmx.c
6236 action fbmmx.h
6237 action fboverlay.c
6238 action fboverlay.h
6239 action fbpict.c
6240 action fbpict.h
6241 action fbpixmap.c
6242 action fbpoint.c
6243 action fbpseudocolor.c
6244 action fbpseudocolor.h
6245 action fbpush.c
6246 action fbrop.h
6247 action fbscreen.c
6248 action fbseg.c
6249 action fbsetsp.c
6250 action fbsolid.c
6251 action fbstipple.c
6252 action fbtile.c
6253 action fbtrap.c
6254 action fbutil.c
6255 action fbwindow.c
6258 symlink_xserver_hw_darwin() {
6259 src_dir programs/Xserver/hw/darwin
6260 dst_dir xserver/xorg/hw/darwin
6262 action darwin.c
6263 action darwin.h
6264 action darwinClut8.h
6265 action darwinEvents.c
6266 action darwinKeyboard.c
6267 action darwinKeyboard.h
6268 action darwinXinput.c
6270 action XDarwin.man
6273 symlink_xserver_hw_darwin_bundle() {
6274 src_dir programs/Xserver/hw/darwin/bundle
6275 dst_dir xserver/xorg/hw/darwin/bundle
6277 action startXClients.cpp
6278 action XDarwin.icns
6280 src_dir programs/Xserver/hw/darwin/bundle/Dutch.lproj
6281 dst_dir xserver/xorg/hw/darwin/bundle/Dutch.lproj
6283 action Credits.rtf
6284 action Localizable.strings
6285 action XDarwinHelp.html.cpp
6287 src_dir programs/Xserver/hw/darwin/bundle/Dutch.lproj/MainMenu.nib
6288 dst_dir xserver/xorg/hw/darwin/bundle/Dutch.lproj/MainMenu.nib
6290 action classes.nib
6291 action objects.nib
6293 src_dir programs/Xserver/hw/darwin/bundle/English.lproj
6294 dst_dir xserver/xorg/hw/darwin/bundle/English.lproj
6296 action Credits.rtf
6297 action InfoPlist.strings.cpp
6298 action Localizable.strings
6299 action XDarwinHelp.html.cpp
6301 src_dir programs/Xserver/hw/darwin/bundle/English.lproj/MainMenu.nib
6302 dst_dir xserver/xorg/hw/darwin/bundle/English.lproj/MainMenu.nib
6304 action classes.nib
6305 action objects.nib
6307 src_dir programs/Xserver/hw/darwin/bundle/French.lproj
6308 dst_dir xserver/xorg/hw/darwin/bundle/French.lproj
6310 action Credits.rtf
6311 action Localizable.strings
6312 action XDarwinHelp.html.cpp
6314 src_dir programs/Xserver/hw/darwin/bundle/French.lproj/MainMenu.nib
6315 dst_dir xserver/xorg/hw/darwin/bundle/French.lproj/MainMenu.nib
6317 action classes.nib
6318 action objects.nib
6320 src_dir programs/Xserver/hw/darwin/bundle/German.lproj
6321 dst_dir xserver/xorg/hw/darwin/bundle/German.lproj
6323 action Credits.rtf
6324 action Localizable.strings
6325 action XDarwinHelp.html.cpp
6327 src_dir programs/Xserver/hw/darwin/bundle/German.lproj/MainMenu.nib
6328 dst_dir xserver/xorg/hw/darwin/bundle/German.lproj/MainMenu.nib
6330 action classes.nib
6331 action objects.nib
6333 src_dir programs/Xserver/hw/darwin/bundle/Japanese.lproj
6334 dst_dir xserver/xorg/hw/darwin/bundle/Japanese.lproj
6336 action Credits.rtf
6337 action Localizable.strings
6338 action XDarwinHelp.html.cpp
6340 src_dir programs/Xserver/hw/darwin/bundle/Japanese.lproj/MainMenu.nib
6341 dst_dir xserver/xorg/hw/darwin/bundle/Japanese.lproj/MainMenu.nib
6343 action classes.nib
6344 action objects.nib
6346 src_dir programs/Xserver/hw/darwin/bundle/ko.lproj
6347 dst_dir xserver/xorg/hw/darwin/bundle/ko.lproj
6349 action Credits.rtf
6350 action Localizable.strings
6351 action XDarwinHelp.html.cpp
6353 src_dir programs/Xserver/hw/darwin/bundle/ko.lproj/MainMenu.nib
6354 dst_dir xserver/xorg/hw/darwin/bundle/ko.lproj/MainMenu.nib
6356 action classes.nib
6357 action objects.nib
6359 src_dir programs/Xserver/hw/darwin/bundle/Portuguese.lproj
6360 dst_dir xserver/xorg/hw/darwin/bundle/Portuguese.lproj
6362 action Credits.rtf
6363 action Localizable.strings
6364 action XDarwinHelp.html.cpp
6366 src_dir programs/Xserver/hw/darwin/bundle/Portuguese.lproj/MainMenu.nib
6367 dst_dir xserver/xorg/hw/darwin/bundle/Portuguese.lproj/MainMenu.nib
6369 action classes.nib
6370 action objects.nib
6372 src_dir programs/Xserver/hw/darwin/bundle/Spanish.lproj
6373 dst_dir xserver/xorg/hw/darwin/bundle/Spanish.lproj
6375 action Credits.rtf
6376 action Localizable.strings
6377 action XDarwinHelp.html.cpp
6379 src_dir programs/Xserver/hw/darwin/bundle/Spanish.lproj/MainMenu.nib
6380 dst_dir xserver/xorg/hw/darwin/bundle/Spanish.lproj/MainMenu.nib
6382 action classes.nib
6383 action objects.nib
6385 src_dir programs/Xserver/hw/darwin/bundle/Swedish.lproj
6386 dst_dir xserver/xorg/hw/darwin/bundle/Swedish.lproj
6388 action Credits.rtf
6389 action Localizable.strings
6390 action XDarwinHelp.html.cpp
6392 src_dir programs/Xserver/hw/darwin/bundle/Swedish.lproj/MainMenu.nib
6393 dst_dir xserver/xorg/hw/darwin/bundle/Swedish.lproj/MainMenu.nib
6395 action classes.nib
6396 action objects.nib
6399 symlink_xserver_hw_darwin_iokit() {
6400 src_dir programs/Xserver/hw/darwin/iokit
6401 dst_dir xserver/xorg/hw/darwin/iokit
6403 action xfIOKit.c
6404 action xfIOKit.h
6405 action xfIOKitCursor.c
6406 action xfIOKitStartup.c
6409 symlink_xserver_hw_darwin_quartz() {
6410 src_dir programs/Xserver/hw/darwin/quartz
6411 dst_dir xserver/xorg/hw/darwin/quartz
6413 action Preferences.h
6414 action XApplication.h
6415 action XDarwinStartup.c
6416 action XServer.h
6417 action applewm.c
6418 action applewmExt.h
6419 action keysym2ucs.c
6420 action keysym2ucs.h
6421 action pseudoramiX.c
6422 action pseudoramiX.h
6423 action quartz.c
6424 action quartz.h
6425 action quartzAudio.c
6426 action quartzAudio.h
6427 action quartzCommon.h
6428 action quartzCursor.c
6429 action quartzCursor.h
6430 action quartzKeyboard.c
6431 action quartzPasteboard.c
6432 action quartzPasteboard.h
6433 action quartzStartup.c
6435 action Preferences.m
6436 action quartzCocoa.m
6437 action XApplication.m
6438 action XServer.m
6440 action XDarwinStartup.man
6442 src_dir programs/Xserver/hw/darwin/quartz/XDarwin.pbproj
6443 dst_dir xserver/xorg/hw/darwin/quartz/XDarwin.pbproj
6444 action project.pbxproj
6447 symlink_xserver_hw_darwin_quartz_cr() {
6448 src_dir programs/Xserver/hw/darwin/quartz/cr
6449 dst_dir xserver/xorg/hw/darwin/quartz/cr
6451 action XView.h
6452 action cr.h
6454 action crAppleWM.m
6455 action crFrame.m
6456 action crScreen.m
6457 action XView.m
6460 symlink_xserver_hw_darwin_quartz_fullscreen() {
6461 src_dir programs/Xserver/hw/darwin/quartz/fullscreen
6462 dst_dir xserver/xorg/hw/darwin/quartz/fullscreen
6464 action fullscreen.c
6465 action quartzCursor.c
6466 action quartzCursor.h
6469 symlink_xserver_hw_darwin_quartz_xpr() {
6470 src_dir programs/Xserver/hw/darwin/quartz/xpr
6471 dst_dir xserver/xorg/hw/darwin/quartz/xpr
6473 action Xplugin.h
6474 action appledri.c
6475 action dri.c
6476 action dri.h
6477 action dristruct.h
6478 action x-hash.c
6479 action x-hash.h
6480 action x-hook.c
6481 action x-hook.h
6482 action x-list.c
6483 action x-list.h
6484 action xpr.h
6485 action xprAppleWM.c
6486 action xprCursor.c
6487 action xprFrame.c
6488 action xprScreen.c
6491 symlink_xserver_hw_darwin_utils() {
6492 src_dir programs/Xserver/hw/darwin/utils
6493 dst_dir xserver/xorg/hw/darwin/utils
6495 action dumpkeymap.c
6496 action dumpkeymap.man
6497 action README.txt
6500 symlink_xserver_hw_dmx() {
6501 src_dir programs/Xserver/hw/dmx
6502 dst_dir xserver/xorg/hw/dmx
6504 action dmx.h
6505 action dmx_glxvisuals.c
6506 action dmx_glxvisuals.h
6507 action dmxcb.c
6508 action dmxcb.h
6509 action dmxclient.h
6510 action dmxcmap.c
6511 action dmxcmap.h
6512 action dmxcursor.c
6513 action dmxcursor.h
6514 action dmxdpms.c
6515 action dmxdpms.h
6516 action dmxextension.c
6517 action dmxextension.h
6518 action dmxfont.c
6519 action dmxfont.h
6520 action dmxgc.c
6521 action dmxgc.h
6522 action dmxgcops.c
6523 action dmxgcops.h
6524 action dmxinit.c
6525 action dmxinit.h
6526 action dmxinput.c
6527 action dmxinput.h
6528 action dmxlog.c
6529 action dmxlog.h
6530 action dmxpict.c
6531 action dmxpict.h
6532 action dmxpixmap.c
6533 action dmxpixmap.h
6534 action dmxprop.c
6535 action dmxprop.h
6536 action dmxscrinit.c
6537 action dmxscrinit.h
6538 action dmxshadow.c
6539 action dmxshadow.h
6540 action dmxstat.c
6541 action dmxstat.h
6542 action dmxsync.c
6543 action dmxsync.h
6544 action dmxvisual.c
6545 action dmxvisual.h
6546 action dmxwindow.c
6547 action dmxwindow.h
6549 action Xdmx.man Xdmx.1
6552 symlink_xserver_hw_dmx_config() {
6553 src_dir programs/Xserver/hw/dmx/config
6554 dst_dir xserver/xorg/hw/dmx/config
6556 action Canvas.c
6557 action Canvas.h
6558 action CanvasP.h
6559 action dmxcompat.c
6560 action dmxcompat.h
6561 action dmxconfig.c
6562 action dmxconfig.h
6563 action dmxparse.c
6564 action dmxparse.h
6565 action dmxprint.c
6566 action dmxprint.h
6567 action dmxtodmx.c
6568 action dmxtodmx.man
6569 action parser.y
6570 action scanner.l
6571 action test-a.in
6572 action test-a.out
6573 action test-b.in
6574 action test-b.out
6575 action test-c.in
6576 action test-c.out
6577 action test-d.in
6578 action test-d.out
6579 action test-e.in
6580 action test-e.out
6581 action test-f.in
6582 action test-f.out
6583 action test-g.in
6584 action test-g.out
6585 action test-h.in
6586 action test-h.out
6587 action test-i.in
6588 action test-i.out
6589 action test-j.in
6590 action test-j.out
6591 action test-k.in
6592 action test-k.out
6593 action test-l.in
6594 action test-l.out
6595 action TODO
6596 action vdltodmx.c
6597 action vdltodmx.man
6598 action xdmxconfig.c
6599 action xdmxconfig.man
6602 symlink_xserver_hw_dmx_doc() {
6603 src_dir programs/Xserver/hw/dmx/doc
6604 dst_dir xserver/xorg/hw/dmx/doc
6606 action dmx.sgml
6607 action DMXSpec.txt
6608 action DMXSpec-v1.txt
6609 action dmx.txt
6610 action doxygen.conf
6611 action doxygen.css
6612 action doxygen.foot
6613 action doxygen.head
6614 action scaled.sgml
6615 action scaled.txt
6617 src_dir programs/Xserver/hw/dmx/doc/html
6618 dst_dir xserver/xorg/hw/dmx/doc/html
6620 action annotated.html
6621 action ChkNotMaskEv_8c.html
6622 action ChkNotMaskEv_8h.html
6623 action ChkNotMaskEv_8h-source.html
6624 action classes.html
6625 action dmx_8h.html
6626 action dmx_8h-source.html
6627 action dmxarg_8c.html
6628 action dmxarg_8h.html
6629 action dmxarg_8h-source.html
6630 action dmxbackend_8c.html
6631 action dmxbackend_8h.html
6632 action dmxbackend_8h-source.html
6633 action dmxcb_8c.html
6634 action dmxcb_8h.html
6635 action dmxcb_8h-source.html
6636 action dmxclient_8h.html
6637 action dmxclient_8h-source.html
6638 action dmxcmap_8c.html
6639 action dmxcmap_8h.html
6640 action dmxcmap_8h-source.html
6641 action dmxcommon_8c.html
6642 action dmxcommon_8h.html
6643 action dmxcommon_8h-source.html
6644 action dmxcompat_8c.html
6645 action dmxcompat_8h.html
6646 action dmxcompat_8h-source.html
6647 action dmxconfig_8c.html
6648 action dmxconfig_8h.html
6649 action dmxconfig_8h-source.html
6650 action dmxconsole_8c.html
6651 action dmxconsole_8h.html
6652 action dmxconsole_8h-source.html
6653 action dmxcursor_8c.html
6654 action dmxcursor_8h.html
6655 action dmxcursor_8h-source.html
6656 action dmxdetach_8c.html
6657 action dmxdpms_8c.html
6658 action dmxdpms_8h.html
6659 action dmxdpms_8h-source.html
6660 action dmxdummy_8c.html
6661 action dmxdummy_8h.html
6662 action dmxdummy_8h-source.html
6663 action dmxeq_8c.html
6664 action dmxeq_8h.html
6665 action dmxeq_8h-source.html
6666 action dmxevents_8c.html
6667 action dmxevents_8h.html
6668 action dmxevents_8h-source.html
6669 action dmxext_8h.html
6670 action dmxext_8h-source.html
6671 action dmxextension_8c.html
6672 action dmxextension_8h.html
6673 action dmxextension_8h-source.html
6674 action dmxfont_8c.html
6675 action dmxfont_8h.html
6676 action dmxfont_8h-source.html
6677 action dmxgc_8c.html
6678 action dmxgc_8h.html
6679 action dmxgc_8h-source.html
6680 action dmxgcops_8c.html
6681 action dmxgcops_8h.html
6682 action dmxgcops_8h-source.html
6683 action dmx__glxvisuals_8h-source.html
6684 action dmxinit_8c.html
6685 action dmxinit_8h.html
6686 action dmxinit_8h-source.html
6687 action dmxinput_8c.html
6688 action dmxinput_8h.html
6689 action dmxinput_8h-source.html
6690 action dmxinputinit_8c.html
6691 action dmxinputinit_8h.html
6692 action dmxinputinit_8h-source.html
6693 action dmxlog_8c.html
6694 action dmxlog_8h.html
6695 action dmxlog_8h-source.html
6696 action dmxmap_8c.html
6697 action dmxmap_8h.html
6698 action dmxmap_8h-source.html
6699 action dmxmotion_8c.html
6700 action dmxmotion_8h.html
6701 action dmxmotion_8h-source.html
6702 action dmxparse_8c.html
6703 action dmxparse_8h.html
6704 action dmxparse_8h-source.html
6705 action dmxpict_8c.html
6706 action dmxpict_8h.html
6707 action dmxpict_8h-source.html
6708 action dmxpixmap_8c.html
6709 action dmxpixmap_8h.html
6710 action dmxpixmap_8h-source.html
6711 action dmxprint_8c.html
6712 action dmxprint_8h.html
6713 action dmxprint_8h-source.html
6714 action dmxprop_8c.html
6715 action dmxprop_8h.html
6716 action dmxprop_8h-source.html
6717 action dmxproto_8h.html
6718 action dmxproto_8h-source.html
6719 action dmxscrinit_8c.html
6720 action dmxscrinit_8h.html
6721 action dmxscrinit_8h-source.html
6722 action dmxshadow_8c.html
6723 action dmxshadow_8h.html
6724 action dmxshadow_8h-source.html
6725 action dmxsigio_8c.html
6726 action dmxsigio_8h.html
6727 action dmxsigio_8h-source.html
6728 action dmxstat_8c.html
6729 action dmxstat_8h.html
6730 action dmxstat_8h-source.html
6731 action dmxsync_8c.html
6732 action dmxsync_8h.html
6733 action dmxsync_8h-source.html
6734 action dmxvisual_8c.html
6735 action dmxvisual_8h.html
6736 action dmxvisual_8h-source.html
6737 action dmxwindow_8c.html
6738 action dmxwindow_8h.html
6739 action dmxwindow_8h-source.html
6740 action dmxxinput_8c.html
6741 action doxygen.css
6742 action doxygen.png
6743 action files.html
6744 action ftv2blank.png
6745 action ftv2doc.png
6746 action ftv2folderclosed.png
6747 action ftv2folderopen.png
6748 action ftv2lastnode.png
6749 action ftv2link.png
6750 action ftv2mlastnode.png
6751 action ftv2mnode.png
6752 action ftv2node.png
6753 action ftv2plastnode.png
6754 action ftv2pnode.png
6755 action ftv2vertline.png
6756 action functions.html
6757 action functions_vars.html
6758 action globals_defs.html
6759 action globals_enum.html
6760 action globals_eval.html
6761 action globals_func.html
6762 action globals.html
6763 action globals_type.html
6764 action globals_vars.html
6765 action index.html
6766 action lib_2dmx_2dmx_8c.html
6767 action lnx-keyboard_8c.html
6768 action lnx-keyboard_8h.html
6769 action lnx-keyboard_8h-source.html
6770 action lnx-ms_8c.html
6771 action lnx-ms_8h.html
6772 action lnx-ms_8h-source.html
6773 action lnx-ps2_8c.html
6774 action lnx-ps2_8h.html
6775 action lnx-ps2_8h-source.html
6776 action main.html
6777 action programs_2Xserver_2Xext_2dmx_8c.html
6778 action struct__dmxArg.html
6779 action struct__dmxColormapPriv.html
6780 action structDMXConfigCmdStruct.html
6781 action struct__DMXConfigComment.html
6782 action struct__DMXConfigDisplay.html
6783 action struct__DMXConfigEntry.html
6784 action struct__DMXConfigFullDim.html
6785 action structDMXConfigListStruct.html
6786 action struct__DMXConfigNumber.html
6787 action struct__DMXConfigOption.html
6788 action struct__DMXConfigPair.html
6789 action struct__DMXConfigParam.html
6790 action struct__DMXConfigPartDim.html
6791 action struct__DMXConfigString.html
6792 action struct__DMXConfigSub.html
6793 action struct__DMXConfigToken.html
6794 action struct__DMXConfigVirtual.html
6795 action struct__DMXConfigWall.html
6796 action struct__dmxCursorPriv.html
6797 action structDMXDesktopAttributes.html
6798 action structDMXDesktopAttributesRec.html
6799 action struct__DMXEventMap.html
6800 action struct__dmxFontPriv.html
6801 action struct__dmxGCPriv.html
6802 action structdmxGlxVisualPrivate.html
6803 action struct__dmxGlyphPriv.html
6804 action structDMXInputAttributes.html
6805 action structDMXInputAttributesRec.html
6806 action struct__DMXInputInfo.html
6807 action struct__DMXLocalInitInfo.html
6808 action struct__DMXLocalInputInfo.html
6809 action struct__dmxPictPriv.html
6810 action struct__dmxPixPriv.html
6811 action structDMXScreenAttributes.html
6812 action structDMXScreenAttributesRec.html
6813 action struct__DMXScreenInfo.html
6814 action struct__DMXStatAvg.html
6815 action struct__DMXStatInfo.html
6816 action structDMXWindowAttributes.html
6817 action structDMXWindowAttributesRec.html
6818 action struct__dmxWinPriv.html
6819 action struct__Event.html
6820 action struct__EventQueue.html
6821 action struct__myPrivate.html
6822 action structxDMXAddInputReply.html
6823 action structxDMXAddInputReq.html
6824 action structxDMXAddScreenReply.html
6825 action structxDMXAddScreenReq.html
6826 action structxDMXChangeDesktopAttributesReply.html
6827 action structxDMXChangeDesktopAttributesReq.html
6828 action structxDMXChangeScreensAttributesReply.html
6829 action structxDMXChangeScreensAttributesReq.html
6830 action structxDMXForceWindowCreationReply.html
6831 action structxDMXForceWindowCreationReq.html
6832 action structxDMXGetDesktopAttributesReply.html
6833 action structxDMXGetDesktopAttributesReq.html
6834 action structxDMXGetInputAttributesReply.html
6835 action structxDMXGetInputAttributesReq.html
6836 action structxDMXGetInputCountReply.html
6837 action structxDMXGetInputCountReq.html
6838 action structxDMXGetScreenAttributesReply.html
6839 action structxDMXGetScreenAttributesReq.html
6840 action structxDMXGetScreenCountReply.html
6841 action structxDMXGetScreenCountReq.html
6842 action structxDMXGetWindowAttributesReply.html
6843 action structxDMXGetWindowAttributesReq.html
6844 action structxDMXQueryVersionReply.html
6845 action structxDMXQueryVersionReq.html
6846 action structxDMXRemoveInputReply.html
6847 action structxDMXRemoveInputReq.html
6848 action structxDMXRemoveScreenReply.html
6849 action structxDMXRemoveScreenReq.html
6850 action structxDMXSyncReply.html
6851 action structxDMXSyncReq.html
6852 action tree.html
6853 action usb-common_8c.html
6854 action usb-common_8h.html
6855 action usb-common_8h-source.html
6856 action usb-keyboard_8c.html
6857 action usb-keyboard_8h.html
6858 action usb-keyboard_8h-source.html
6859 action usb-mouse_8c.html
6860 action usb-mouse_8h.html
6861 action usb-mouse_8h-source.html
6862 action usb-other_8c.html
6863 action usb-other_8h.html
6864 action usb-other_8h-source.html
6865 action usb-private_8h.html
6866 action usb-private_8h-source.html
6869 symlink_xserver_hw_dmx_examples() {
6870 src_dir programs/Xserver/hw/dmx/examples
6871 dst_dir xserver/xorg/hw/dmx/examples
6873 action dmxaddinput.c
6874 action dmxaddscreen.c
6875 action dmxreconfig.c
6876 action dmxresize.c
6877 action dmxrminput.c
6878 action dmxrmscreen.c
6879 action dmxwininfo.c
6880 action ev.c
6881 action evi.c
6882 action res.c
6883 action xbell.c
6884 action xdmx.c
6885 action xinput.c
6886 action xled.c
6887 action xtest.c
6890 symlink_xserver_hw_dmx_glxProxy() {
6891 src_dir programs/Xserver/hw/dmx/glxProxy
6892 dst_dir xserver/xorg/hw/dmx/glxProxy
6894 action compsize.c
6895 action g_disptab.c
6896 action g_disptab.h
6897 action g_renderswap.c
6898 action global.c
6899 action glxcmds.c
6900 action glxcmdsswap.c
6901 action glxcontext.h
6902 action glxdrawable.h
6903 action glxerror.h
6904 action glxext.c
6905 action glxext.h
6906 action glxfbconfig.c
6907 action glxfbconfig.h
6908 action glxscreens.c
6909 action glxscreens.h
6910 action glxserver.h
6911 action glxsingle.c
6912 action glxsingle.h
6913 action glxswap.c
6914 action glxswap.h
6915 action glxutil.c
6916 action glxutil.h
6917 action glxvendor.c
6918 action glxvendor.h
6919 action glxvisuals.c
6920 action glxvisuals.h
6921 action render2swap.c
6922 action renderpixswap.c
6923 action unpack.h
6926 symlink_xserver_hw_dmx_input() {
6927 src_dir programs/Xserver/hw/dmx/input
6928 dst_dir xserver/xorg/hw/dmx/input
6930 action ChkNotMaskEv.c
6931 action ChkNotMaskEv.h
6932 action dmxarg.c
6933 action dmxarg.h
6934 action dmxbackend.c
6935 action dmxbackend.h
6936 action dmxcommon.c
6937 action dmxcommon.h
6938 action dmxconsole.c
6939 action dmxconsole.h
6940 action dmxdetach.c
6941 action dmxdummy.c
6942 action dmxdummy.h
6943 action dmxeq.c
6944 action dmxeq.h
6945 action dmxevents.c
6946 action dmxevents.h
6947 action dmxinputinit.c
6948 action dmxinputinit.h
6949 action dmxmap.c
6950 action dmxmap.h
6951 action dmxmotion.c
6952 action dmxmotion.h
6953 action dmxsigio.c
6954 action dmxsigio.h
6955 action dmxxinput.c
6956 action lnx-keyboard.c
6957 action lnx-keyboard.h
6958 action lnx-ms.c
6959 action lnx-ms.h
6960 action lnx-ps2.c
6961 action lnx-ps2.h
6962 action usb-common.c
6963 action usb-common.h
6964 action usb-keyboard.c
6965 action usb-keyboard.h
6966 action usb-mouse.c
6967 action usb-mouse.h
6968 action usb-other.c
6969 action usb-other.h
6970 action usb-private.h
6973 # We skip most of Xserver/hw/sun since it's no longer maintained, but a
6974 # couple of files are useful still
6975 symlink_xserver_hw_sun() {
6976 src_dir programs/Xserver/hw/sun
6978 dst_dir xserver/xorg/hw/xfree86/utils/kbd_mode
6979 action kbd_mode.c sun-kbd_mode.c
6980 action kbd_mode.man sun-kbd_mode.man.pre
6982 dst_dir app/constype
6983 action constype.c
6984 action constype.man
6987 symlink_xserver_hw_vfb() {
6988 src_dir programs/Xserver/hw/vfb
6989 dst_dir xserver/xorg/hw/vfb
6991 action InitInput.c
6992 action InitOutput.c
6993 action lk201kbd.h
6995 action Xvfb.man Xvfb.man.pre
6998 symlink_xserver_hw_xfree86() {
6999 src_dir programs/Xserver/hw/xfree86
7000 dst_dir xserver/xorg/hw/xfree86
7002 action xorgconf.cpp
7003 action Options
7006 symlink_xserver_hw_xfree86_common() {
7007 src_dir programs/Xserver/hw/xfree86/common
7008 dst_dir xserver/xorg/hw/xfree86/common
7010 action atKeynames.h
7011 action compiler.h
7012 action fourcc.h
7013 action scoasm.h
7014 action xf86.h
7015 action xf86AutoConfig.c
7016 action xf86Bus.c
7017 action xf86Bus.h
7018 action xf86Config.c
7019 action xf86Config.h
7020 action xf86Configure.c
7021 action xf86Cursor.c
7022 action xf86DGA.c
7023 action xf86DPMS.c
7024 action xf86Debug.c
7025 action xf86DefModes.c
7026 action xf86DoProbe.c
7027 action xf86DoScanPci.c
7028 action xf86Events.c
7029 action xf86Globals.c
7030 action xf86Helper.c
7031 action xf86InPriv.h
7032 action xf86Init.c
7033 action xf86Io.c
7034 action xf86Kbd.c
7035 action xf86KbdBSD.c
7036 action xf86KbdLnx.c
7037 action xf86KbdMach.c
7038 action xf86Keymap.h
7039 action xf86MiscExt.c
7040 action xf86Mode.c
7041 action xf86Module.h
7042 action xf86Opt.h
7043 action xf86Option.c
7044 action xf86PM.c
7045 action xf86PciInfo.h
7046 action xf86Priv.h
7047 action xf86Privstr.h
7048 action xf86RandR.c
7049 action xf86Resources.h
7050 action xf86Versions.c
7051 action xf86VidMode.c
7052 action xf86XKB.c
7053 action xf86Xinput.c
7054 action xf86Xinput.h
7055 action xf86cmap.c
7056 action xf86cmap.h
7057 action xf86fbBus.c
7058 action xf86fbman.c
7059 action xf86fbman.h
7060 action xf86isaBus.c
7061 action xf86noBus.c
7062 action xf86pciBus.c
7063 action xf86pciBus.h
7064 action xf86sbusBus.c
7065 action xf86sbusBus.h
7066 action xf86str.h
7067 action xf86xv.c
7068 action xf86xv.h
7069 action xf86xvmc.c
7070 action xf86xvmc.h
7071 action xf86xvpriv.h
7072 action xisb.c
7073 action xisb.h
7074 action xorgHelper.c
7076 action modeline2c.pl
7078 src_dir programs/Xserver/hw/xfree86
7079 action xf86Date.h
7080 action xf86Version.h
7081 action xorgVersion.h
7084 symlink_xserver_hw_xfree86_ddc() {
7085 src_dir programs/Xserver/hw/xfree86/ddc
7086 dst_dir xserver/xorg/hw/xfree86/ddc
7088 action ddcPriv.h
7089 action ddcProperty.c
7090 action edid.c
7091 action edid.h
7092 action interpret_edid.c
7093 action interpret_vdif.c
7094 action print_edid.c
7095 action print_vdif.c
7096 action vdif.h
7097 action xf86DDC.c
7098 action xf86DDC.h
7100 action DDC.HOWTO
7103 symlink_xserver_hw_xfree86_doc() {
7105 # Docs generic to all Xservers in xserver-xorg module:
7106 src_dir programs/Xserver
7107 dst_dir xserver/xorg/doc
7108 action Xserver.man Xserver.man.pre
7110 src_dir programs/Xserver/hw/xfree86/doc
7111 dst_dir xserver/xorg/doc
7112 action smartsched
7114 # Docs specific to XFree86 DDX/Xorg server:
7116 src_dir programs/Xserver/hw/xfree86
7117 dst_dir xserver/xorg/hw/xfree86/doc/man
7119 action Xorg.man Xorg.man.pre
7120 action xorg.conf.man xorg.conf.man.pre
7122 dst_dir xserver/xorg/hw/xfree86/doc/devel
7123 action DebuggingHints
7124 action Domain.note
7125 action RAC.Notes
7126 action Registry
7128 dst_dir xserver/xorg/hw/xfree86/doc/changelogs
7129 action CHANGELOG
7130 action CHANGELOG.ND
7131 action CHANGELOG.R5
7133 src_dir programs/Xserver/hw/xfree86/doc
7134 dst_dir xserver/xorg/hw/xfree86/doc/devel
7135 action exa-driver.txt
7136 action README.DRIcomp
7138 dst_dir xserver/xorg/hw/xfree86/doc
7139 action README.DRI
7140 action README.fonts
7141 action README.rapidaccess
7143 src_dir programs/Xserver/hw/xfree86/doc/sgml
7144 dst_dir xserver/xorg/hw/xfree86/doc/sgml
7146 action DESIGN.sgml
7148 # Docs about the entire Xorg distribution:
7150 dst_dir doc/old/sgml
7151 action Darwin.sgml
7152 action Install.sgml
7153 action LICENSE.sgml
7154 action LynxOS.sgml
7155 action NetBSD.sgml
7156 action OS2Notes.sgml
7157 action OpenBSD.sgml
7158 action README.sgml
7159 action RELNOTES.sgml
7160 action SCO.sgml
7161 action Solaris.sgml
7162 action Versions.sgml
7163 action XKB-Config.sgml
7164 action XKB-Enhancing.sgml
7165 action add.sh
7166 action dps.sgml
7167 action fonts.sgml
7168 action index.post
7169 action index.pre
7170 action mdefs.cpp mdefs.pre
7172 # Entity files and scripts needed for all sgml docs:
7174 dst_dir doc/xorg-sgml-doctools
7175 action defs.ent
7177 # Driver-specific docs:
7179 dst_dir driver/xf86-video-tga
7180 action DECtga.sgml README.sgml
7182 dst_dir driver/xf86-video-i128
7183 action I128.sgml README.sgml
7185 dst_dir driver/xf86-video-sis
7186 action SiS.sgml README.sgml
7188 dst_dir driver/xf86-video-apm
7189 action apm.sgml README.sgml
7191 dst_dir driver/xf86-video-ati
7192 action ati.sgml README.ati.sgml
7193 action r128.sgml README.r128.sgml
7195 dst_dir driver/xf86-video-chips
7196 action chips.sgml README.sgml
7198 dst_dir driver/xf86-video-cyrix
7199 action cyrix.sgml README.sgml
7201 dst_dir driver/xf86-video-i740
7202 action i740.sgml README.sgml
7204 dst_dir driver/xf86-video-i810
7205 action i810.sgml README.sgml
7207 dst_dir driver/xf86-input-mouse
7208 action mouse.sgml README.sgml
7210 dst_dir driver/xf86-video-newport
7211 action newport.sgml README.sgml
7213 dst_dir driver/xf86-video-rendition
7214 action rendition.sgml README.sgml
7216 dst_dir driver/xf86-video-s3virge
7217 action s3virge.sgml README.sgml
7219 # Japanese documentation
7220 src_dir programs/Xserver/hw/xfree86/doc/Japanese/sgml
7221 dst_dir doc/old/sgml/Japanese
7223 action 1st.sgml
7224 action read98.sgml
7227 symlink_xserver_hw_xfree86_etc() {
7228 src_dir programs/Xserver/hw/xfree86/etc
7230 dst_dir xserver/xorg/hw/xfree86/common
7231 action vesamodes
7232 action extramodes
7234 dst_dir xserver/xorg/hw/xfree86/utils/gtf
7235 action gtf.c
7236 action gtf.man gtf.man.pre
7238 dst_dir xserver/xorg/hw/xfree86/utils/ioport
7239 action ioport.c
7241 dst_dir xserver/xorg/hw/xfree86/utils/kbd_mode
7242 action kbd_mode.c bsd-kbd_mode.c
7243 action kbd_mode.man bsd-kbd_mode.man.pre
7245 dst_dir xserver/xorg/hw/xfree86/utils/pcitweak
7246 action pcitweak.c
7247 action pcitweak.man pcitweak.man.pre
7249 dst_dir xserver/xorg/hw/xfree86/os-support/solaris
7250 action apSolaris.shar
7253 symlink_xserver_hw_xfree86_x86emu() {
7254 src_dir extras/x86emu/include
7255 dst_dir xserver/xorg/hw/xfree86/x86emu
7257 action x86emu.h
7259 src_dir extras/x86emu/src/x86emu
7261 action debug.c
7262 action decode.c
7263 action fpu.c
7264 action ops2.c
7265 action ops.c
7266 action prim_ops.c
7267 action sys.c
7268 action validate.c
7270 dst_dir xserver/xorg/hw/xfree86/x86emu/x86emu
7271 src_dir extras/x86emu/include/x86emu
7273 action fpu_regs.h
7274 action regs.h
7275 action types.h
7277 src_dir extras/x86emu/src/x86emu/x86emu
7279 action debug.h
7280 action decode.h
7281 action fpu.h
7282 action ops.h
7283 action prim_asm.h
7284 action prim_ops.h
7285 action x86emui.h
7289 symlink_xserver_hw_xfree86_dixmods() {
7290 dst_dir xserver/xorg/hw/xfree86/dixmods
7292 src_dir programs/Xserver/GL
7293 action glxmodule.c
7295 src_dir programs/Xserver/GL/mesa/GLcore
7296 action GLcoremodule.c
7298 src_dir programs/Xserver/afb
7299 action afbmodule.c
7301 src_dir lib/font/bitmap/module
7302 action bitmapmod.c
7304 src_dir lib/font/FreeType/module
7305 action ftmodule.c
7307 src_dir lib/font/Type1/module
7308 action type1mod.c
7310 src_dir programs/Xserver/cfb
7311 action cfbmodule.c
7313 src_dir programs/Xserver/cfb16
7314 action cfbmodule.c cfb16module.c
7316 src_dir programs/Xserver/cfb24
7317 action cfbmodule.c cfb24module.c
7319 src_dir programs/Xserver/cfb32
7320 action cfbmodule.c cfb32module.c
7322 src_dir programs/Xserver/dbe
7323 action dbemodule.c
7325 src_dir programs/Xserver/fb
7326 action fbmodule.c
7328 src_dir programs/Xserver/miext/layer
7329 action laymodule.c
7331 src_dir programs/Xserver/miext/shadow
7332 action shmodule.c
7334 src_dir programs/Xserver/mfb
7335 action mfbmodule.c
7337 src_dir programs/Xserver/record
7338 action recordmod.c
7341 symlink_xserver_hw_xfree86_dummylib() {
7342 src_dir programs/Xserver/hw/xfree86/dummylib
7343 dst_dir xserver/xorg/hw/xfree86/dummylib
7345 action README
7346 action dummylib.h
7347 action fatalerror.c
7348 action getvalidbios.c
7349 action logvwrite.c
7350 action pcitestmulti.c
7351 action verrorf.c
7352 action xalloc.c
7353 action xf86addrestolist.c
7354 action xf86allocscripi.c
7355 action xf86drvmsg.c
7356 action xf86drvmsgverb.c
7357 action xf86errorf.c
7358 action xf86errorfverb.c
7359 action xf86getpagesize.c
7360 action xf86getverb.c
7361 action xf86info.c
7362 action xf86msg.c
7363 action xf86msgverb.c
7364 action xf86opt.c
7365 action xf86screens.c
7366 action xf86servisinit.c
7367 action xf86verbose.c
7369 src_dir lib/misc
7370 action strlcat.c
7371 action strlcpy.c
7374 symlink_xserver_hw_xfree86_exa() {
7375 src_dir programs/Xserver/hw/xfree86/exa
7376 dst_dir xserver/xorg/hw/xfree86/exa
7378 action exaasync.c
7379 action exa.c
7380 action exa.h
7381 action exaoffscreen.c
7382 action exapict.c
7383 action exaPriv.h
7386 symlink_xserver_hw_xfree86_fbdevhw() {
7387 src_dir programs/Xserver/hw/xfree86/fbdevhw
7388 dst_dir xserver/xorg/hw/xfree86/fbdevhw
7390 action fbdevhw.c
7391 action fbdevhw.h
7392 action fbdevhwstub.c
7393 action fbpriv.h
7394 action README
7395 action fbdevhw.man fbdevhw.man.pre
7398 symlink_xserver_hw_xfree86_getconfig() {
7399 src_dir programs/Xserver/hw/xfree86/getconfig
7400 dst_dir xserver/xorg/hw/xfree86/getconfig
7402 action cfg.man cfg.man.pre
7403 action cfg.sample
7404 action getconfig.man getconfig.man.pre
7405 action getconfig.pl
7406 action getconfig.sh getconfig
7407 action xorg.cfg
7410 symlink_xserver_hw_xfree86_i2c() {
7411 src_dir programs/Xserver/hw/xfree86/i2c
7412 dst_dir xserver/xorg/hw/xfree86/i2c
7414 action xf86i2c.c
7415 action xf86i2c.h
7416 action xf86i2cmodule.c
7418 src_dir programs/Xserver/hw/xfree86/drivers/i2c
7419 dst_dir xserver/xorg/hw/xfree86/i2c
7421 action i2c_def.h
7423 action bt829.c
7424 action bt829.h
7425 action bt829_module.c
7427 action fi1236.c
7428 action fi1236.h
7429 action fi1236_module.c
7431 action msp3430.c
7432 action msp3430.h
7433 action msp3430_module.c
7435 action tda8425.c
7436 action tda8425.h
7437 action tda8425_module.c
7439 action tda9850.c
7440 action tda9850.h
7441 action tda9850_module.c
7443 action tda9885.c
7444 action tda9885.h
7445 action tda9885_module.c
7447 action uda1380.c
7448 action uda1380.h
7449 action uda1380_module.c
7452 symlink_xserver_hw_xfree86_int10() {
7453 src_dir programs/Xserver/hw/xfree86/int10
7454 dst_dir xserver/xorg/hw/xfree86/int10
7456 action generic.c
7457 action helper_exec.c
7458 action helper_mem.c
7459 action pci.c
7460 action stub.c
7461 action x86emu.c
7462 action xf86int10.c
7463 action xf86int10.h
7464 action xf86int10module.c
7465 action xf86x86emu.c
7466 action xf86x86emu.h
7467 action INT10.HOWTO
7470 symlink_xserver_hw_xfree86_loader() {
7471 src_dir programs/Xserver/hw/xfree86/loader
7472 dst_dir xserver/xorg/hw/xfree86/loader
7474 action SparcMulDiv.S
7475 action aout.h
7476 action aoutloader.c
7477 action aoutloader.h
7478 action ar.h
7479 action coff.h
7480 action coffloader.c
7481 action coffloader.h
7482 action dixsym.c
7483 action dlloader.c
7484 action dlloader.h
7485 action elf.h
7486 action elfloader.c
7487 action elfloader.h
7488 action extsym.c
7489 action fontsym.c
7490 action hash.c
7491 action hash.h
7492 action loader.c
7493 action loader.h
7494 action loaderProcs.h
7495 action loadext.c
7496 action loadfont.c
7497 action loadmod.c
7498 action misym.c
7499 action os.c
7500 action sym.h
7501 action xf86sym.c
7504 symlink_xserver_hw_xfree86_ossupport() {
7505 src_dir programs/Xserver/hw/xfree86/os-support
7506 dst_dir xserver/xorg/hw/xfree86/os-support
7508 action assyntax.h
7509 action int10Defines.h
7510 action xf86OSKbd.h
7511 action xf86OSmouse.h
7512 action xf86OSpriv.h
7513 action xf86_OSlib.h
7514 action xf86_OSproc.h
7515 action xf86_ansic.h
7516 action xf86_libc.h
7517 action xf86drm.h
7518 action xf86drmCompat.h
7520 action README.OS-lib
7523 symlink_xserver_hw_xfree86_ossupport_bsd() {
7524 src_dir programs/Xserver/hw/xfree86/os-support/bsd
7525 dst_dir xserver/xorg/hw/xfree86/os-support/bsd
7527 action alpha_video.c
7528 action arm_video.c
7529 action bsdResource.c
7530 action bsd_KbdMap.c
7531 action bsd_VTsw.c
7532 action bsd_apm.c
7533 action bsd_axp.c
7534 action bsd_ev56.c
7535 action bsd_init.c
7536 action bsd_io.c
7537 action bsd_jstk.c
7538 action bsd_kbd.c
7539 action bsd_kbd.h
7540 action bsd_kmod.c
7541 action bsd_kqueue_apm.c
7542 action bsd_mouse.c
7543 action i386_video.c
7544 action memrange.h
7545 action ppc_video.c
7546 action sparc64_video.c
7549 symlink_xserver_hw_xfree86_ossupport_bsd_libusb() {
7550 src_dir programs/Xserver/hw/xfree86/os-support/bsd/libusb
7551 dst_dir xserver/xorg/hw/xfree86/os-support/bsd/libusb
7553 action data.c
7554 action descr.c
7555 action parse.c
7556 action usage.c
7557 action usb.h
7558 action usbvar.h
7559 action usb.3
7560 action usb_hid_usages
7563 symlink_xserver_hw_xfree86_ossupport_bsdi() {
7564 src_dir programs/Xserver/hw/xfree86/os-support/bsdi
7565 dst_dir xserver/xorg/hw/xfree86/os-support/bsdi
7567 action bsdi_init.c
7568 action bsdi_io.c
7569 action bsdi_mouse.c
7570 action bsdi_video.c
7573 symlink_xserver_hw_xfree86_ossupport_bus() {
7574 src_dir programs/Xserver/hw/xfree86/os-support/bus
7575 dst_dir xserver/xorg/hw/xfree86/os-support/bus
7577 action 460gxPCI.c
7578 action 460gxPCI.h
7579 action Pci.c
7580 action Pci.h
7581 action Sbus.c
7582 action altixPCI.c
7583 action altixPCI.h
7584 action axpPci.c
7585 action e8870PCI.c
7586 action e8870PCI.h
7587 action freebsdPci.c
7588 action ix86Pci.c
7589 action linuxPci.c
7590 action netbsdPci.c
7591 action ppcPci.c
7592 action sparcPci.c
7593 action xf86Pci.h
7594 action xf86Sbus.h
7595 action zx1PCI.c
7596 action zx1PCI.h
7599 symlink_xserver_hw_xfree86_ossupport_dgux() {
7600 src_dir programs/Xserver/hw/xfree86/os-support/dgux
7601 dst_dir xserver/xorg/hw/xfree86/os-support/dgux
7603 action bios_DGmmap.c
7604 action dgux_init.c
7605 action dgux_io.c
7606 action dgux_kbd.c
7607 action dgux_kbdEv.c
7608 action dgux_tty.c
7609 action dgux_video.c
7612 symlink_xserver_hw_xfree86_ossupport_drm() {
7613 src_dir programs/Xserver/hw/xfree86/os-support/linux/drm
7614 dst_dir xserver/xorg/hw/xfree86/os-support/drm
7616 action drmmodule.c
7617 action xf86drm.c
7618 action xf86drmHash.c
7619 action xf86drmRandom.c
7620 action xf86drmSL.c
7623 symlink_xserver_hw_xfree86_ossupport_hurd() {
7624 src_dir programs/Xserver/hw/xfree86/os-support/hurd
7625 dst_dir xserver/xorg/hw/xfree86/os-support/hurd
7627 action bios_mmap.c
7628 action hurd_init.c
7629 action hurd_io.c
7630 action hurd_mouse.c
7631 action hurd_video.c
7634 symlink_xserver_hw_xfree86_ossupport_linux() {
7635 src_dir programs/Xserver/hw/xfree86/os-support/linux
7636 dst_dir xserver/xorg/hw/xfree86/os-support/linux
7638 action agpgart.h
7639 action lnx.h
7640 action lnxResource.c
7641 action lnx_KbdMap.c
7642 action lnx_acpi.c
7643 action lnx_agp.c
7644 action lnx_apm.c
7645 action lnx_axp.c
7646 action lnx_ev56.c
7647 action lnx_font.c
7648 action lnx_ia64.c
7649 action lnx_init.c
7650 action lnx_io.c
7651 action lnx_jstk.c
7652 action lnx_kbd.c
7653 action lnx_kbd.h
7654 action lnx_kmod.c
7655 action lnx_mouse.c
7656 action lnx_pci.c
7657 action lnx_video.c
7660 symlink_xserver_hw_xfree86_ossupport_linux_int10() {
7661 src_dir programs/Xserver/hw/xfree86/os-support/linux/int10
7662 dst_dir xserver/xorg/hw/xfree86/os-support/linux/int10
7664 action linux.c
7667 symlink_xserver_hw_xfree86_ossupport_linux_int10_vm86() {
7668 src_dir programs/Xserver/hw/xfree86/os-support/linux/int10/vm86
7669 dst_dir xserver/xorg/hw/xfree86/os-support/linux/int10/vm86
7671 action linux_vm86.c
7674 symlink_xserver_hw_xfree86_ossupport_lynxos() {
7675 src_dir programs/Xserver/hw/xfree86/os-support/lynxos
7676 dst_dir xserver/xorg/hw/xfree86/os-support/lynxos
7678 action lynx_init.c
7679 action lynx_io.c
7680 action lynx_mmap.c
7681 action lynx_mouse.c
7682 action lynx_noinline.c
7683 action lynx_ppc.c
7684 action lynx_video.c
7685 action lynx_ppc.S
7688 symlink_xserver_hw_xfree86_ossupport_misc() {
7689 src_dir programs/Xserver/hw/xfree86/os-support/misc
7690 dst_dir xserver/xorg/hw/xfree86/os-support/misc
7692 action BUSmemcpy.c
7693 action Delay.c
7694 action IODelay.c
7695 action SlowBcopy.c
7696 action xf86_IlHack.c
7697 action xf86_Util.c
7699 action BUSmemcpy.S
7700 action IODelay.S
7701 action PortIO.S
7702 action SlowBcopy.S
7706 symlink_xserver_hw_xfree86_ossupport_nto() {
7707 src_dir programs/Xserver/hw/xfree86/os-support/nto
7708 dst_dir xserver/xorg/hw/xfree86/os-support/nto
7710 action nto_init.c
7711 action nto_io.c
7712 action nto_ioperm.c
7713 action nto_kbdEv.c
7714 action nto_mouse.c
7715 action nto_video.c
7716 action README
7719 symlink_xserver_hw_xfree86_ossupport_os2() {
7720 src_dir programs/Xserver/hw/xfree86/os-support/os2
7721 dst_dir xserver/xorg/hw/xfree86/os-support/os2
7723 action os2_VTsw.c
7724 action os2_bios.c
7725 action os2_diag.c
7726 action os2_init.c
7727 action os2_io.c
7728 action os2_ioperm.c
7729 action os2_kbd.c
7730 action os2_kbdEv.c
7731 action os2_mouse.c
7732 action os2_select.c
7733 action os2_select.h
7734 action os2_serial.c
7735 action os2_stubs.c
7736 action os2_video.c
7737 action README
7740 symlink_xserver_hw_xfree86_ossupport_os2_int10() {
7741 src_dir programs/Xserver/hw/xfree86/os-support/os2/int10
7742 dst_dir xserver/xorg/hw/xfree86/os-support/os2/int10
7744 action os2.c
7747 symlink_xserver_hw_xfree86_ossupport_pmax() {
7748 src_dir programs/Xserver/hw/xfree86/os-support/pmax
7749 dst_dir xserver/xorg/hw/xfree86/os-support/pmax
7751 action pmax_devs.c
7752 action pmax_init.c
7753 action pmax_map.c
7754 action pmax_mouse.c
7755 action pmax_pci.c
7756 action pmax_ppc.c
7759 symlink_xserver_hw_xfree86_ossupport_qnx4() {
7760 src_dir programs/Xserver/hw/xfree86/os-support/qnx4
7761 dst_dir xserver/xorg/hw/xfree86/os-support/qnx4
7763 action qnx_VTsw.c
7764 action qnx_init.c
7765 action qnx_io.c
7766 action qnx_kbd.c
7767 action qnx_mouse.c
7768 action qnx_select.c
7769 action qnx_utils.c
7770 action qnx_video.c
7773 symlink_xserver_hw_xfree86_ossupport_sco() {
7774 src_dir programs/Xserver/hw/xfree86/os-support/sco
7775 dst_dir xserver/xorg/hw/xfree86/os-support/sco
7777 action VTsw_sco.c
7778 action sco_init.c
7779 action sco_io.c
7780 action sco_iop.c
7781 action sco_mouse.c
7782 action sco_video.c
7785 symlink_xserver_hw_xfree86_ossupport_shared() {
7786 src_dir programs/Xserver/hw/xfree86/os-support/shared
7787 dst_dir xserver/xorg/hw/xfree86/os-support/shared
7789 action VTsw_noop.c
7790 action VTsw_usl.c
7791 action agp_noop.c
7792 action at_scancode.c
7793 action bios_devmem.c
7794 action bios_mmap.c
7795 action ia64Pci.c
7796 action ia64Pci.h
7797 action ioperm_noop.c
7798 action kbd.c
7799 action kmod_noop.c
7800 action libc_wrapper.c
7801 action pm_noop.c
7802 action posix_tty.c
7803 action sigio.c
7804 action sigiostubs.c
7805 action stdPci.c
7806 action stdResource.c
7807 action std_kbdEv.c
7808 action sysv_kbd.c
7809 action vidmem.c
7810 action xf86Axp.c
7811 action xf86Axp.h
7812 action inout.S
7815 symlink_xserver_hw_xfree86_ossupport_sunos() {
7816 src_dir programs/Xserver/hw/xfree86/os-support/sunos
7817 dst_dir xserver/xorg/hw/xfree86/os-support/solaris
7819 action sun_agp.c
7820 action agpgart.h
7821 action sun_bios.c
7822 action sun_init.c
7823 action sun_io.c
7824 action sun_kbd.h
7825 action sun_kbd.c
7826 action sun_kbdEv.c
7827 action sun_mouse.c
7828 action sun_vid.c
7829 action solaris-amd64.S
7830 action solaris-ia32.S
7831 action solaris-sparcv8plus.S
7832 action sun_inout.s
7835 symlink_xserver_hw_xfree86_ossupport_sysv() {
7836 src_dir programs/Xserver/hw/xfree86/os-support/sysv
7837 dst_dir xserver/xorg/hw/xfree86/os-support/sysv
7839 action sysv_init.c
7840 action sysv_io.c
7841 action sysv_mouse.c
7842 action sysv_video.c
7843 action xqueue.c
7844 action xqueue.h
7847 symlink_xserver_hw_xfree86_parser() {
7848 src_dir programs/Xserver/hw/xfree86/parser
7849 dst_dir xserver/xorg/hw/xfree86/parser
7851 action Configint.h
7852 action DRI.c
7853 action Device.c
7854 action Extensions.c
7855 action Files.c
7856 action Flags.c
7857 action Input.c
7858 action Keyboard.c
7859 action Layout.c
7860 action Module.c
7861 action Monitor.c
7862 action Pointer.c
7863 action Screen.c
7864 action Vendor.c
7865 action Video.c
7866 action configProcs.h
7867 action cpconfig.c
7868 action read.c
7869 action scan.c
7870 action write.c
7871 action xf86Optrec.h
7872 action xf86Parser.h
7873 action xf86tokens.h
7876 symlink_xserver_hw_xfree86_rac() {
7877 src_dir programs/Xserver/hw/xfree86/rac
7878 dst_dir xserver/xorg/hw/xfree86/rac
7880 action xf86RAC.c
7881 action xf86RAC.h
7882 action xf86RACmodule.c
7885 symlink_xserver_hw_xfree86_ramdac() {
7886 src_dir programs/Xserver/hw/xfree86/ramdac
7887 dst_dir xserver/xorg/hw/xfree86/ramdac
7889 action BT.c
7890 action BT.h
7891 action BTPriv.h
7892 action IBM.c
7893 action IBM.h
7894 action IBMPriv.h
7895 action TI.c
7896 action TI.h
7897 action TIPriv.h
7898 action xf86Cursor.c
7899 action xf86Cursor.h
7900 action xf86CursorPriv.h
7901 action xf86HWCurs.c
7902 action xf86RamDac.c
7903 action xf86RamDac.h
7904 action xf86RamDacCmap.c
7905 action xf86RamDacMod.c
7906 action xf86RamDacPriv.h
7908 action CURSOR.NOTES
7911 symlink_xserver_hw_xfree86_scanpci() {
7912 src_dir programs/Xserver/hw/xfree86/scanpci
7913 dst_dir xserver/xorg/hw/xfree86/scanpci
7915 action xf86PciData.h
7916 action xf86PciStdIds.h
7917 action xf86PciStr.h
7918 action xf86ScanPci.c
7919 action xf86ScanPci.h
7921 action pciid2c.pl
7923 src_dir programs/Xserver/hw/xfree86/etc
7924 action pci.ids
7925 action extrapci.ids
7927 dst_dir xserver/xorg/hw/xfree86/utils/scanpci
7928 action scanpci.c
7929 action scanpci.man scanpci.man.pre
7932 symlink_xserver_hw_xfree86_shadowfb() {
7933 src_dir programs/Xserver/hw/xfree86/shadowfb
7934 dst_dir xserver/xorg/hw/xfree86/shadowfb
7936 action sfbmodule.c
7937 action shadow.c
7938 action shadowfb.h
7941 symlink_xserver_hw_xfree86_vbe() {
7942 src_dir programs/Xserver/hw/xfree86/vbe
7943 dst_dir xserver/xorg/hw/xfree86/vbe
7945 action vbe.c
7946 action vbe.h
7947 action vbeModes.c
7948 action vbeModes.h
7949 action vbe_module.c
7952 symlink_xserver_hw_xfree86_vgahw() {
7953 src_dir programs/Xserver/hw/xfree86/vgahw
7954 dst_dir xserver/xorg/hw/xfree86/vgahw
7956 action vgaCmap.c
7957 action vgaHW.c
7958 action vgaHW.h
7959 action vgaHWmodule.c
7962 symlink_xserver_hw_xfree86_xaa() {
7963 src_dir programs/Xserver/hw/xfree86/xaa
7964 dst_dir xserver/xorg/hw/xfree86/xaa
7966 action xaa.h
7967 action xaaBitBlt.c
7968 action xaaBitOrder.c
7969 action xaaBitmap.c
7970 action xaaCpyArea.c
7971 action xaaCpyPlane.c
7972 action xaaCpyWin.c
7973 action xaaDashLine.c
7974 action xaaFallback.c
7975 action xaaFillArc.c
7976 action xaaFillPoly.c
7977 action xaaFillRect.c
7978 action xaaGC.c
7979 action xaaGCmisc.c
7980 action xaaImage.c
7981 action xaaInit.c
7982 action xaaInitAccel.c
7983 action xaaLine.c
7984 action xaaLineMisc.c
7985 action xaaNonTEGlyph.c
7986 action xaaNonTEText.c
7987 action xaaOffscreen.c
7988 action xaaOverlay.c
7989 action xaaOverlayDF.c
7990 action xaaPCache.c
7991 action xaaPaintWin.c
7992 action xaaPict.c
7993 action xaaROP.c
7994 action xaaRect.c
7995 action xaaSpans.c
7996 action xaaStateChange.c
7997 action xaaStipple.c
7998 action xaaTEGlyph.c
7999 action xaaTEText.c
8000 action xaaTables.c
8001 action xaaWideLine.c
8002 action xaaWrapper.c
8003 action xaaWrapper.h
8004 action xaacexp.h
8005 action xaalocal.h
8006 action xaarop.h
8007 action xaawrap.h
8008 action xaaTEGlyphBlt.S
8010 action XAA.HOWTO
8013 symlink_xserver_hw_xfree86_xf1bpp() {
8014 src_dir programs/Xserver/hw/xfree86/xf1bpp
8015 dst_dir xserver/xorg/hw/xfree86/xf1bpp
8017 action mfbmap.h
8018 action mfbmodule.c
8019 action mfbunmap.h
8020 action xf1bpp.h
8021 action mfbmap.sh
8022 action mfbunmap.sh
8025 symlink_xserver_hw_xfree86_xf4bpp() {
8026 src_dir programs/Xserver/hw/xfree86/xf4bpp
8027 dst_dir xserver/xorg/hw/xfree86/xf4bpp
8029 action OScompiler.h
8030 action emulOpStip.c
8031 action emulRepAre.c
8032 action emulTile.c
8033 action ibmTrace.h
8034 action mfbbres.c
8035 action mfbbresd.c
8036 action mfbfillarc.c
8037 action mfbhrzvert.c
8038 action mfbimggblt.c
8039 action mfbline.c
8040 action mfbzerarc.c
8041 action offscreen.c
8042 action ppcArea.c
8043 action ppcBStore.c
8044 action ppcCReduce.c
8045 action ppcClip.c
8046 action ppcCpArea.c
8047 action ppcDepth.c
8048 action ppcFillRct.c
8049 action ppcGC.c
8050 action ppcGCstr.h
8051 action ppcGetSp.c
8052 action ppcIO.c
8053 action ppcImg.c
8054 action ppcPixFS.c
8055 action ppcPixmap.c
8056 action ppcPntWin.c
8057 action ppcPolyPnt.c
8058 action ppcPolyRec.c
8059 action ppcQuery.c
8060 action ppcRslvC.c
8061 action ppcSetSp.c
8062 action ppcSpMcro.h
8063 action ppcWinFS.c
8064 action ppcWindow.c
8065 action vgaBitBlt.c
8066 action vgaGC.c
8067 action vgaImages.c
8068 action vgaReg.h
8069 action vgaSolid.c
8070 action vgaStipple.c
8071 action vgaVideo.h
8072 action vgamodule.c
8073 action wm3.c
8074 action wm3.h
8075 action xf4bpp.h
8077 action NOTES
8080 symlink_xserver_hw_xfree86_xf8_16bpp() {
8081 src_dir programs/Xserver/hw/xfree86/xf8_16bpp
8082 dst_dir xserver/xorg/hw/xfree86/xf8_16bpp
8084 action cfb8_16.h
8085 action cfb8_16module.c
8086 action cfbscrinit.c
8087 action cfbwindow.c
8090 symlink_xserver_hw_xfree86_xf8_32bpp() {
8091 src_dir programs/Xserver/hw/xfree86/xf8_32bpp
8092 dst_dir xserver/xorg/hw/xfree86/xf8_32bpp
8094 action cfb8_32.h
8095 action cfb8_32module.c
8096 action cfbbstore.c
8097 action cfbcpyarea.c
8098 action cfbcpyplane.c
8099 action cfbgc.c
8100 action cfbgcmisc.c
8101 action cfbgcunder.c
8102 action cfbimage.c
8103 action cfbpntwin.c
8104 action cfbscrinit.c
8105 action cfbwindow.c
8106 action xf86overlay.c
8109 symlink_xserver_hw_xfree86_xf8_32wid() {
8110 src_dir programs/Xserver/hw/xfree86/xf8_32wid
8111 dst_dir xserver/xorg/hw/xfree86/xf8_32wid
8113 action cfb8_32wid.h
8114 action cfb8_32widmodule.c
8115 action cfbscrinit.c
8116 action cfbwid.c
8117 action cfbwindow.c
8120 symlink_xserver_hw_xfree86_xf86cfg() {
8121 src_dir programs/Xserver/hw/xfree86/xf86cfg
8122 dst_dir xserver/xorg/hw/xfree86/utils/xorgcfg
8124 action TODO
8125 action XOrgCfg.cpp XOrgCfg.pre
8126 action accessx.c
8127 action card-cfg.c
8128 action card-cfg.h
8129 action card.xbm
8130 action card.xpm
8131 action cards.c
8132 action cards.h
8133 action computer.xpm
8134 action config.c
8135 action config.h
8136 action down.xbm
8137 action expert.c
8138 action help.c
8139 action help.h
8140 action interface.c
8141 action keyboard-cfg.c
8142 action keyboard-cfg.h
8143 action keyboard.xbm
8144 action keyboard.xpm
8145 action left.xbm
8146 action loader.c
8147 action loader.h
8148 action loadmod.c
8149 action monitor-cfg.c
8150 action monitor-cfg.h
8151 action monitor.xbm
8152 action monitor.xpm
8153 action mouse-cfg.c
8154 action mouse-cfg.h
8155 action mouse.xbm
8156 action mouse.xpm
8157 action narrower.xbm
8158 action options.c
8159 action options.h
8160 action right.xbm
8161 action screen-cfg.c
8162 action screen-cfg.h
8163 action screen.c
8164 action screen.h
8165 action shorter.xbm
8166 action startx.c
8167 action stubs.c
8168 action stubs.h
8169 action taller.xbm
8170 action text-mode.c
8171 action up.xbm
8172 action vidmode.c
8173 action vidmode.h
8174 action wider.xbm
8175 action xf86config.c
8176 action xf86config.h
8177 action xorgcfg.man xorgcfg.man.pre
8181 symlink_xserver_hw_xfree86_xf86config() {
8182 src_dir programs/Xserver/hw/xfree86/xf86config
8183 dst_dir xserver/xorg/hw/xfree86/utils/xorgconfig
8185 action Cards
8186 action Cards98
8187 action cards.c
8188 action cards.h
8189 action xorgconfig.c
8190 action xorgconfig.man xorgconfig.man.pre
8193 symlink_xserver_hw_xnest() {
8194 src_dir programs/Xserver/hw/xnest
8195 dst_dir xserver/xorg/hw/xnest
8197 action Args.c
8198 action Args.h
8199 action Color.c
8200 action Color.h
8201 action Cursor.c
8202 action Display.c
8203 action Display.h
8204 action Drawable.h
8205 action Events.c
8206 action Events.h
8207 action Font.c
8208 action GC.c
8209 action GCOps.c
8210 action GCOps.h
8211 action GetTime.c
8212 action Handlers.c
8213 action Handlers.h
8214 action Init.c
8215 action Init.h
8216 action Keyboard.c
8217 action Keyboard.h
8218 action Pixmap.c
8219 action Pointer.c
8220 action Pointer.h
8221 action Screen.c
8222 action Screen.h
8223 action TestExt.c
8224 action Visual.c
8225 action Visual.h
8226 action Window.c
8227 action XNCursor.h
8228 action XNFont.h
8229 action XNGC.h
8230 action XNPixmap.h
8231 action XNWindow.h
8232 action Xnest.h
8233 action icon
8234 action os2Stub.c
8235 action screensaver
8237 action Xnest.man Xnest.man.pre
8240 symlink_xserver_hw_xwin() {
8241 src_dir programs/Xserver/hw/xwin
8242 dst_dir xserver/xorg/hw/xwin
8244 action InitInput.c
8245 action InitOutput.c
8246 action ddraw.h
8247 action win.h
8248 action winallpriv.c
8249 action winauth.c
8250 action winblock.c
8251 action winclip.c
8252 action winclipboard.h
8253 action winclipboardinit.c
8254 action winclipboardtextconv.c
8255 action winclipboardthread.c
8256 action winclipboardunicode.c
8257 action winclipboardwndproc.c
8258 action winclipboardwrappers.c
8259 action winclipboardxevents.c
8260 action wincmap.c
8261 action winconfig.c
8262 action winconfig.h
8263 action wincreatewnd.c
8264 action wincursor.c
8265 action windialogs.c
8266 action winengine.c
8267 action winerror.c
8268 action winfillsp.c
8269 action winfont.c
8270 action wingc.c
8271 action wingetsp.c
8272 action winglobals.c
8273 action winkeybd.c
8274 action winkeybd.h
8275 action winkeyhook.c
8276 action winkeymap.h
8277 action winkeynames.h
8278 action winlayouts.h
8279 action winmessages.h
8280 action winmisc.c
8281 action winmouse.c
8282 action winms.h
8283 action winmsg.c
8284 action winmsg.h
8285 action winmultiwindowclass.c
8286 action winmultiwindowclass.h
8287 action winmultiwindowicons.c
8288 action winmultiwindowshape.c
8289 action winmultiwindowwindow.c
8290 action winmultiwindowwm.c
8291 action winmultiwindowwndproc.c
8292 action winnativegdi.c
8293 action winpfbdd.c
8294 action winpixmap.c
8295 action winpntwin.c
8296 action winpolyline.c
8297 action winprefs.c
8298 action winprefs.h
8299 action winprefsyacc.y
8300 action winprefslex.l
8301 action winpriv.c
8302 action winpriv.h
8303 action winprocarg.c
8304 action winpushpxl.c
8305 action winrandr.c
8306 action winregistry.c
8307 action winresource.h
8308 action winrop.c
8309 action winscrinit.c
8310 action winsetsp.c
8311 action winshaddd.c
8312 action winshadddnl.c
8313 action winshadgdi.c
8314 action wintrayicon.c
8315 action winvalargs.c
8316 action winvideo.c
8317 action winwakeup.c
8318 action winwin32rootless.c
8319 action winwin32rootlesswindow.c
8320 action winwin32rootlesswndproc.c
8321 action winwindow.c
8322 action winwindow.h
8323 action winwindowswm.c
8324 action winwndproc.c
8326 action XWin.rc
8327 action X.ico
8328 action X-boxed.ico
8330 action XWin.man XWin.1
8331 action XWinrc.man XWinrc.1
8333 action _usr_X11R6_lib_X11_system.XWinrc
8335 action ChangeLog
8336 action README
8339 symlink_xserver_hw_xwin_xlaunch() {
8340 src_dir programs/Xserver/hw/xwin/xlaunch
8341 dst_dir xserver/xorg/hw/xwin/xlaunch
8343 action config.cc
8344 action config.h
8345 action COPYING
8346 action main.cc
8347 action Makefile
8349 src_dir programs/Xserver/hw/xwin/xlaunch/resources
8350 dst_dir xserver/xorg/hw/xwin/xlaunch/resources
8352 action dialog.rc
8353 action fullscreen.bmp
8354 action images.rc
8355 action multiwindow.bmp
8356 action nodecoration.bmp
8357 action resources.h
8358 action resources.rc
8359 action strings.rc
8360 action windowed.bmp
8362 src_dir programs/Xserver/hw/xwin/xlaunch/window
8363 dst_dir xserver/xorg/hw/xwin/xlaunch/window
8365 action dialog.cc
8366 action dialog.h
8367 action util.cc
8368 action util.h
8369 action window.cc
8370 action window.h
8371 action wizard.cc
8372 action wizard.h
8375 symlink_xserver_ilbm() {
8376 src_dir programs/Xserver/ilbm
8377 dst_dir xserver/xorg/ilbm
8379 action ilbm.h
8380 action ilbmbitblt.c
8381 action ilbmblt.c
8382 action ilbmbres.c
8383 action ilbmbresd.c
8384 action ilbmbstore.c
8385 action ilbmclip.c
8386 action ilbmcmap.c
8387 action ilbmfillarc.c
8388 action ilbmfillrct.c
8389 action ilbmfillsp.c
8390 action ilbmfont.c
8391 action ilbmgc.c
8392 action ilbmgetsp.c
8393 action ilbmhrzvert.c
8394 action ilbmimage.c
8395 action ilbmimggblt.c
8396 action ilbmline.c
8397 action ilbmmisc.c
8398 action ilbmpixmap.c
8399 action ilbmply1rct.c
8400 action ilbmplygblt.c
8401 action ilbmpntarea.c
8402 action ilbmpntwin.c
8403 action ilbmpolypnt.c
8404 action ilbmpushpxl.c
8405 action ilbmscrinit.c
8406 action ilbmsetsp.c
8407 action ilbmtegblt.c
8408 action ilbmtile.c
8409 action ilbmwindow.c
8410 action ilbmzerarc.c
8412 action README
8415 symlink_xserver_include() {
8416 src_dir programs/Xserver/include
8417 dst_dir xserver/xorg/include
8419 action bstore.h
8420 action bstorestr.h
8421 action closestr.h
8422 action closure.h
8423 action colormap.h
8424 action colormapst.h
8425 action cursor.h
8426 action cursorstr.h
8427 action dixevents.h
8428 action dixfont.h
8429 action dixfontstr.h
8430 action dixgrabs.h
8431 action dix.h
8432 action dixstruct.h
8433 action exevents.h
8434 action extension.h
8435 action extinit.h
8436 action extnsionst.h
8437 action gc.h
8438 action gcstruct.h
8439 action globals.h
8440 action input.h
8441 action inputstr.h
8442 action misc.h
8443 action miscstruct.h
8444 action opaque.h
8445 action os.h
8446 action pixmap.h
8447 action pixmapstr.h
8448 action property.h
8449 action propertyst.h
8450 action region.h
8451 action regionstr.h
8452 action resource.h
8453 action rgb.h
8454 action screenint.h
8455 action scrnintstr.h
8456 action selection.h
8457 action servermd.h
8458 action site.h
8459 action swaprep.h
8460 action swapreq.h
8461 action validate.h
8462 action window.h
8463 action windowstr.h
8464 action XIstubs.h
8467 symlink_xserver_iplan2p2() {
8468 src_dir programs/Xserver/iplan2p2
8469 dst_dir xserver/xorg/iplan2p2
8472 symlink_xserver_iplan2p4() {
8473 src_dir programs/Xserver/iplan2p4
8474 dst_dir xserver/xorg/iplan2p4
8476 action ipl.h
8477 action iplallpriv.c
8478 action iplbitblt.c
8479 action iplblt.c
8480 action iplbres.c
8481 action iplbresd.c
8482 action iplbstore.c
8483 action iplcmap.c
8484 action iplfillarc.c
8485 action iplfillrct.c
8486 action iplfillsp.c
8487 action iplgc.c
8488 action iplgetsp.c
8489 action iplhrzvert.c
8490 action iplimage.c
8491 action iplline.c
8492 action iplmap.h
8493 action iplmergerop.h
8494 action iplmskbits.c
8495 action iplmskbits.h
8496 action iplpack.c
8497 action iplpack.h
8498 action iplpixmap.c
8499 action iplply1rct.c
8500 action iplpntwin.c
8501 action iplpolypnt.c
8502 action iplrrop.c
8503 action iplrrop.h
8504 action iplscrinit.c
8505 action iplsetsp.c
8506 action iplsolid.c
8507 action ipltegblt.c
8508 action ipltile32.c
8509 action ipltileodd.c
8510 action iplwindow.c
8513 symlink_xserver_iplan2p8() {
8514 src_dir programs/Xserver/iplan2p8
8515 dst_dir xserver/xorg/iplan2p8
8519 symlink_xserver_lbx() {
8520 src_dir programs/Xserver/lbx
8521 dst_dir xserver/xorg/lbx
8523 action lbxcmap.c
8524 action lbxdata.h
8525 action lbxdix.c
8526 action lbxexts.c
8527 action lbxgfx.c
8528 action lbxmain.c
8529 action lbxopts.c
8530 action lbxprop.c
8531 action lbxserve.h
8532 action lbxsquish.c
8533 action lbxsrvopts.h
8534 action lbxswap.c
8535 action lbxtables.c
8536 action lbxtags.c
8537 action lbxtags.h
8538 action lbxzerorep.c
8541 symlink_xserver_mfb() {
8542 src_dir programs/Xserver/mfb
8543 dst_dir xserver/xorg/mfb
8545 action fastblt.h
8546 action maskbits.c
8547 action maskbits.h
8548 action mergerop.h
8549 action mfb.h
8550 action mfbbitblt.c
8551 action mfbblt.c
8552 action mfbbres.c
8553 action mfbbresd.c
8554 action mfbbstore.c
8555 action mfbclip.c
8556 action mfbcmap.c
8557 action mfbfillarc.c
8558 action mfbfillrct.c
8559 action mfbfillsp.c
8560 action mfbfont.c
8561 action mfbgc.c
8562 action mfbgetsp.c
8563 action mfbhrzvert.c
8564 action mfbimage.c
8565 action mfbimggblt.c
8566 action mfbline.c
8567 action mfbmisc.c
8568 action mfbpixmap.c
8569 action mfbply1rct.c
8570 action mfbplygblt.c
8571 action mfbpntarea.c
8572 action mfbpntwin.c
8573 action mfbpolypnt.c
8574 action mfbpushpxl.c
8575 action mfbscrclse.c
8576 action mfbscrinit.c
8577 action mfbsetsp.c
8578 action mfbtegblt.c
8579 action mfbtile.c
8580 action mfbwindow.c
8581 action mfbzerarc.c
8584 symlink_xserver_mi() {
8585 src_dir programs/Xserver/mi
8586 dst_dir xserver/xorg/mi
8588 action cbrt.c
8589 action mi.h
8590 action miarc.c
8591 action mibank.c
8592 action mibank.h
8593 action mibitblt.c
8594 action mibstore.c
8595 action mibstore.h
8596 action mibstorest.h
8597 action miclipn.c
8598 action micmap.c
8599 action micmap.h
8600 action micoord.h
8601 action micursor.c
8602 action midash.c
8603 action midispcur.c
8604 action mieq.c
8605 action miexpose.c
8606 action mifillarc.c
8607 action mifillarc.h
8608 action mifillrct.c
8609 action mifpoly.h
8610 action mifpolycon.c
8611 action migc.c
8612 action migc.h
8613 action miglblt.c
8614 action miinitext.c
8615 action miline.h
8616 action mioverlay.c
8617 action mioverlay.h
8618 action mipointer.c
8619 action mipointer.h
8620 action mipointrst.h
8621 action mipoly.c
8622 action mipoly.h
8623 action mipolycon.c
8624 action mipolygen.c
8625 action mipolypnt.c
8626 action mipolyrect.c
8627 action mipolyseg.c
8628 action mipolytext.c
8629 action mipolyutil.c
8630 action mipushpxl.c
8631 action miregion.c
8632 action miscanfill.h
8633 action miscrinit.c
8634 action mispans.c
8635 action mispans.h
8636 action misprite.c
8637 action misprite.h
8638 action mispritest.h
8639 action mistruct.h
8640 action mivalidate.h
8641 action mivaltree.c
8642 action miwideline.c
8643 action miwideline.h
8644 action miwindow.c
8645 action mizerarc.c
8646 action mizerarc.h
8647 action mizerclip.c
8648 action mizerline.c
8651 symlink_xserver_miext_cw() {
8652 src_dir programs/Xserver/miext/cw
8653 dst_dir xserver/xorg/miext/cw
8655 action cw.c
8656 action cw.h
8657 action cw_ops.c
8658 action cw_render.c
8661 symlink_xserver_miext_damage() {
8662 src_dir programs/Xserver/miext/damage
8663 dst_dir xserver/xorg/miext/damage
8665 action damage.c
8666 action damage.h
8667 action damagestr.h
8670 symlink_xserver_miext_layer() {
8671 src_dir programs/Xserver/miext/layer
8672 dst_dir xserver/xorg/miext/layer
8674 action layer.h
8675 action layergc.c
8676 action layerinit.c
8677 action layerpict.c
8678 action layerstr.h
8679 action layerwin.c
8682 symlink_xserver_miext_rootless() {
8683 src_dir programs/Xserver/miext/rootless
8684 dst_dir xserver/xorg/miext/rootless
8686 action rootless.h
8687 action rootlessCommon.c
8688 action rootlessCommon.h
8689 action rootlessConfig.h
8690 action rootlessGC.c
8691 action rootlessScreen.c
8692 action rootlessValTree.c
8693 action rootlessWindow.c
8694 action rootlessWindow.h
8696 action README.txt
8699 symlink_xserver_miext_rootless_accel() {
8700 src_dir programs/Xserver/miext/rootless/accel
8701 dst_dir xserver/xorg/miext/rootless/accel
8703 action rlAccel.c
8704 action rlAccel.h
8705 action rlBlt.c
8706 action rlCopy.c
8707 action rlFill.c
8708 action rlFillRect.c
8709 action rlFillSpans.c
8710 action rlGlyph.c
8711 action rlSolid.c
8714 symlink_xserver_miext_rootless_safealpha() {
8715 src_dir programs/Xserver/miext/rootless/safeAlpha
8716 dst_dir xserver/xorg/miext/rootless/safeAlpha
8718 action safeAlpha.h
8719 action safeAlphaPicture.c
8720 action safeAlphaWindow.c
8723 symlink_xserver_miext_shadow() {
8724 src_dir programs/Xserver/miext/shadow
8725 dst_dir xserver/xorg/miext/shadow
8727 action shadow.c
8728 action shadow.h
8729 action shalloc.c
8730 action shpacked.c
8731 action shplanar.c
8732 action shplanar8.c
8733 action shrot16pack.c
8734 action shrot16pack_180.c
8735 action shrot16pack_270.c
8736 action shrot16pack_90.c
8737 action shrot32pack.c
8738 action shrot32pack_180.c
8739 action shrot32pack_270.c
8740 action shrot32pack_90.c
8741 action shrot8pack.c
8742 action shrot8pack_180.c
8743 action shrot8pack_270.c
8744 action shrot8pack_90.c
8745 action shrotate.c
8746 action shrotpack.h
8749 symlink_xserver_os() {
8750 src_dir programs/Xserver/os
8751 dst_dir xserver/xorg/os
8753 action WaitFor.c
8754 action access.c
8755 action auth.c
8756 action connection.c
8757 action io.c
8758 action k5auth.c
8759 action lbxio.c
8760 action log.c
8761 action mitauth.c
8762 action oscolor.c
8763 action osdep.h
8764 action osinit.c
8765 action rpcauth.c
8766 action secauth.c
8767 action utils.c
8768 action xalloc.c
8769 action xdmauth.c
8770 action xdmcp.c
8771 action xprintf.c
8774 symlink_xserver_randr() {
8775 src_dir programs/Xserver/randr
8776 dst_dir xserver/xorg/randr
8778 action mirandr.c
8779 action randr.c
8780 action randrstr.h
8783 symlink_xserver_record() {
8784 src_dir programs/Xserver/record
8785 dst_dir xserver/xorg/record
8787 action record.c
8788 action set.c
8789 action set.h
8792 symlink_xserver_render() {
8793 src_dir programs/Xserver/render
8794 dst_dir xserver/xorg/render
8796 action animcur.c
8797 action filter.c
8798 action glyph.c
8799 action glyphstr.h
8800 action miglyph.c
8801 action miindex.c
8802 action mipict.c
8803 action mipict.h
8804 action mirect.c
8805 action mitrap.c
8806 action mitri.c
8807 action picture.c
8808 action picture.h
8809 action picturestr.h
8810 action render.c
8811 action renderedge.c
8812 action renderedge.h
8815 symlink_xserver_xfixes() {
8816 src_dir programs/Xserver/xfixes
8817 dst_dir xserver/xorg/xfixes
8819 action cursor.c
8820 action region.c
8821 action saveset.c
8822 action select.c
8823 action xfixes.c
8824 action xfixes.h
8825 action xfixesint.h
8828 symlink_xserver_xkb() {
8829 src_dir programs/Xserver/xkb
8830 dst_dir xserver/xorg/xkb
8832 action ddxBeep.c
8833 action ddxConfig.c
8834 action ddxCtrls.c
8835 action ddxDevBtn.c
8836 action ddxFakeBtn.c
8837 action ddxFakeMtn.c
8838 action ddxInit.c
8839 action ddxKeyClick.c
8840 action ddxKillSrv.c
8841 action ddxLEDs.c
8842 action ddxList.c
8843 action ddxLoad.c
8844 action ddxPrivate.c
8845 action ddxVT.c
8846 action xkb.c
8847 action xkb.h
8848 action xkbAccessX.c
8849 action xkbActions.c
8850 action xkbDflts.h
8851 action xkbEvents.c
8852 action xkbInit.c
8853 action xkbLEDs.c
8854 action xkbPrKeyEv.c
8855 action xkbPrOtherEv.c
8856 action xkbSwap.c
8857 action xkbUtils.c
8859 src_dir lib/X11
8860 action XKBAlloc.c
8861 action XKBGAlloc.c
8862 action XKBMAlloc.c
8863 action XKBMisc.c
8865 src_dir lib/xkbfile
8866 action maprules.c
8867 action xkbconfig.c
8868 action xkberrs.c
8869 action xkbmisc.c xkbfmisc.c
8870 action xkbout.c
8871 action xkbtext.c
8872 action xkmread.c
8874 src_dir programs/xkbcomp/compiled
8875 action README README.compiled
8878 symlink_xserver_xprint_config_models() {
8879 # CANONBJ10E-GS
8880 src_dir programs/Xserver/XpConfig/C/print/models/CANONBJ10E-GS
8881 dst_dir xserver/xorg/XpConfig/C/print/models/CANONBJ10E-GS
8883 action model-config
8885 # CANONC3200-PS
8886 src_dir programs/Xserver/XpConfig/C/print/models/CANONC3200-PS
8887 dst_dir xserver/xorg/XpConfig/C/print/models/CANONC3200-PS
8889 action model-config
8891 # GSdefault
8892 src_dir programs/Xserver/XpConfig/C/print/models/GSdefault
8893 dst_dir xserver/xorg/XpConfig/C/print/models/GSdefault
8895 action model-config
8897 # HPDJ1600C
8898 src_dir programs/Xserver/XpConfig/C/print/models/HPDJ1600C
8899 dst_dir xserver/xorg/XpConfig/C/print/models/HPDJ1600C
8901 action model-config
8903 src_dir programs/Xserver/XpConfig/C/print/models/HPDJ1600C/fonts
8904 dst_dir xserver/xorg/XpConfig/C/print/models/HPDJ1600C/fonts
8906 action 9nb00051.pmf
8907 action 9nb00052.pmf
8908 action 9nb00053.pmf
8909 action 9nb00054.pmf
8910 action 9nb00055.pmf
8911 action 9nb00056.pmf
8912 action 9nb00057.pmf
8913 action 9nb00058.pmf
8914 action 9nb00059.pmf
8915 action 9nb00060.pmf
8916 action 9nb00061.pmf
8917 action 9nb00062.pmf
8918 action 9nb00063.pmf
8919 action 9nb00064.pmf
8920 action 9nb00065.pmf
8921 action 9nb00066.pmf
8922 action 9nb00067.pmf
8923 action 9nb00068.pmf
8924 action 9nb00069.pmf
8925 action 9nb00070.pmf
8926 action 9nb00071.pmf
8927 action 9nb00072.pmf
8928 action 9nb00073.pmf
8929 action 9nb00074.pmf
8930 action 9nb00075.pmf
8931 action 9nb00076.pmf
8932 action 9nb00077.pmf
8933 action 9nb00079.pmf
8934 action 9nb00080.pmf
8935 action 9nb00081.pmf
8936 action 9nb00082.pmf
8937 action 9nb00083.pmf
8938 action 9nb00084.pmf
8939 action 9nb00085.pmf
8940 action 9nb00086.pmf
8941 action 9nb00087.pmf
8942 action 9nb00088.pmf
8943 action 9nb00089.pmf
8944 action 9nb00090.pmf
8945 action 9nb00091.pmf
8946 action 9nb00092.pmf
8947 action 9nb00093.pmf
8948 action 9nb00094.pmf
8949 action fonts.alias
8950 action fonts.dir
8951 action lpr0ye1a.pmf
8952 action README
8954 # HPLJ4050-PS
8955 src_dir programs/Xserver/XpConfig/C/print/models/HPLJ4050-PS
8956 dst_dir xserver/xorg/XpConfig/C/print/models/HPLJ4050-PS
8958 action model-config
8960 # HPLJ4family
8961 src_dir programs/Xserver/XpConfig/C/print/models/HPLJ4family
8962 dst_dir xserver/xorg/XpConfig/C/print/models/HPLJ4family
8964 action model-config
8966 src_dir programs/Xserver/XpConfig/C/print/models/HPLJ4family/fonts
8967 dst_dir xserver/xorg/XpConfig/C/print/models/HPLJ4family/fonts
8969 action 9nb00051.pmf
8970 action 9nb00052.pmf
8971 action 9nb00053.pmf
8972 action 9nb00054.pmf
8973 action 9nb00055.pmf
8974 action 9nb00056.pmf
8975 action 9nb00057.pmf
8976 action 9nb00058.pmf
8977 action 9nb00059.pmf
8978 action 9nb00060.pmf
8979 action 9nb00061.pmf
8980 action 9nb00062.pmf
8981 action 9nb00063.pmf
8982 action 9nb00064.pmf
8983 action 9nb00065.pmf
8984 action 9nb00066.pmf
8985 action 9nb00067.pmf
8986 action 9nb00068.pmf
8987 action 9nb00069.pmf
8988 action 9nb00070.pmf
8989 action 9nb00071.pmf
8990 action 9nb00072.pmf
8991 action 9nb00073.pmf
8992 action 9nb00074.pmf
8993 action 9nb00075.pmf
8994 action 9nb00076.pmf
8995 action 9nb00077.pmf
8996 action 9nb00079.pmf
8997 action 9nb00080.pmf
8998 action 9nb00081.pmf
8999 action 9nb00082.pmf
9000 action 9nb00083.pmf
9001 action 9nb00084.pmf
9002 action 9nb00085.pmf
9003 action 9nb00086.pmf
9004 action 9nb00087.pmf
9005 action 9nb00088.pmf
9006 action 9nb00089.pmf
9007 action 9nb00090.pmf
9008 action 9nb00091.pmf
9009 action 9nb00092.pmf
9010 action 9nb00093.pmf
9011 action 9nb00094.pmf
9012 action fonts.alias
9013 action fonts.dir
9014 action lpr0ye1a.pmf
9015 action README
9017 # PS2PDFspooldir-GS
9018 src_dir programs/Xserver/XpConfig/C/print/models/PS2PDFspooldir-GS
9019 dst_dir xserver/xorg/XpConfig/C/print/models/PS2PDFspooldir-GS
9021 action model-config
9022 action ps2pdf_spooltodir.sh
9024 # PSdefault
9025 src_dir programs/Xserver/XpConfig/C/print/models/PSdefault
9026 dst_dir xserver/xorg/XpConfig/C/print/models/PSdefault
9028 action model-config
9030 src_dir programs/Xserver/XpConfig/C/print/models/PSdefault/fonts
9031 dst_dir xserver/xorg/XpConfig/C/print/models/PSdefault/fonts
9033 action AvantGarde-BookOblique.pmf
9034 action AvantGarde-Book.pmf
9035 action AvantGarde-DemiOblique.pmf
9036 action AvantGarde-Demi.pmf
9037 action Courier-BoldOblique.pmf
9038 action Courier-Bold.pmf
9039 action Courier-Oblique.pmf
9040 action Courier.pmf
9041 action Helvetica-BoldOblique.pmf
9042 action Helvetica-Bold.pmf
9043 action Helvetica-Oblique.pmf
9044 action Helvetica.pmf
9045 action LubalinGraph-BookOblique.pmf
9046 action LubalinGraph-Book.pmf
9047 action LubalinGraph-DemiOblique.pmf
9048 action LubalinGraph-Demi.pmf
9049 action NewCenturySchlbk-BoldItalic.pmf
9050 action NewCenturySchlbk-Bold.pmf
9051 action NewCenturySchlbk-Italic.pmf
9052 action NewCenturySchlbk-Roman.pmf
9053 action Souvenir-DemiItalic.pmf
9054 action Souvenir-Demi.pmf
9055 action Souvenir-LightItalic.pmf
9056 action Souvenir-Light.pmf
9057 action Symbol.pmf
9058 action Times-BoldItalic.pmf
9059 action Times-Bold.pmf
9060 action Times-Italic.pmf
9061 action Times-Roman.pmf
9062 action ZapfDingbats.pmf
9064 # PSspooldir
9065 src_dir programs/Xserver/XpConfig/C/print/models/PSspooldir
9066 dst_dir xserver/xorg/XpConfig/C/print/models/PSspooldir
9068 action model-config
9069 action spooltodir.sh
9071 # SPSPARC2
9072 src_dir programs/Xserver/XpConfig/C/print/models/SPSPARC2
9073 dst_dir xserver/xorg/XpConfig/C/print/models/SPSPARC2
9075 action model-config
9080 symlink_xserver_xprint_config() {
9081 src_dir programs/Xserver/XpConfig
9082 dst_dir xserver/xorg/XpConfig
9084 action README
9086 src_dir programs/Xserver/XpConfig/C/print
9087 dst_dir xserver/xorg/XpConfig/C/print
9089 action Xprinters
9091 src_dir programs/Xserver/XpConfig/C/print/attributes
9092 dst_dir xserver/xorg/XpConfig/C/print/attributes
9094 action document
9095 action job
9096 action printer
9098 src_dir programs/Xserver/XpConfig/C/print/ddx-config/raster
9099 dst_dir xserver/xorg/XpConfig/C/print/ddx-config/raster
9101 action pcl
9102 action postscript
9104 src_dir programs/Xserver/XpConfig/en_US/print/attributes
9105 dst_dir xserver/xorg/XpConfig/en_US/print/attributes
9107 action document
9109 symlink_xserver_xprint_config_models
9112 symlink_xserver() {
9113 symlink_xserver_GL_apple
9114 symlink_xserver_GL_dri
9115 symlink_xserver_GL_glx
9116 symlink_xserver_GL_include_GL
9117 symlink_xserver_GL_mesa_X
9118 symlink_xserver_GL_windows
9119 symlink_xserver_XTrap
9120 symlink_xserver_Xext
9121 symlink_xserver_Xext_extmod
9122 symlink_xserver_Xi
9123 symlink_xserver_Xprint
9124 symlink_xserver_Xprint_etc
9125 symlink_xserver_Xprint_ps
9126 symlink_xserver_Xprint_pcl
9127 symlink_xserver_Xprint_raster
9128 symlink_xserver_afb
9129 symlink_xserver_cfb
9130 symlink_xserver_cfb24
9131 symlink_xserver_composite
9132 symlink_xserver_damageext
9133 symlink_xserver_dbe
9134 symlink_xserver_dix
9135 symlink_xserver_fb
9136 symlink_xserver_hw_darwin
9137 symlink_xserver_hw_darwin_bundle
9138 symlink_xserver_hw_darwin_iokit
9139 symlink_xserver_hw_darwin_quartz
9140 symlink_xserver_hw_darwin_quartz_cr
9141 symlink_xserver_hw_darwin_quartz_fullscreen
9142 symlink_xserver_hw_darwin_quartz_xpr
9143 symlink_xserver_hw_darwin_utils
9144 symlink_xserver_hw_dmx
9145 symlink_xserver_hw_dmx_config
9146 symlink_xserver_hw_dmx_doc
9147 symlink_xserver_hw_dmx_examples
9148 symlink_xserver_hw_dmx_glxProxy
9149 symlink_xserver_hw_dmx_input
9150 symlink_xserver_hw_sun
9151 symlink_xserver_hw_vfb
9152 symlink_xserver_hw_xfree86
9153 symlink_xserver_hw_xfree86_common
9154 symlink_xserver_hw_xfree86_ddc
9155 symlink_xserver_hw_xfree86_x86emu
9156 symlink_xserver_hw_xfree86_dixmods
9157 symlink_xserver_hw_xfree86_doc
9158 symlink_xserver_hw_xfree86_dummylib
9159 symlink_xserver_hw_xfree86_etc
9160 symlink_xserver_hw_xfree86_exa
9161 symlink_xserver_hw_xfree86_fbdevhw
9162 symlink_xserver_hw_xfree86_getconfig
9163 symlink_xserver_hw_xfree86_i2c
9164 symlink_xserver_hw_xfree86_int10
9165 symlink_xserver_hw_xfree86_loader
9166 symlink_xserver_hw_xfree86_ossupport
9167 symlink_xserver_hw_xfree86_ossupport_bsd
9168 symlink_xserver_hw_xfree86_ossupport_bsd_libusb
9169 symlink_xserver_hw_xfree86_ossupport_bsdi
9170 symlink_xserver_hw_xfree86_ossupport_bus
9171 symlink_xserver_hw_xfree86_ossupport_dgux
9172 symlink_xserver_hw_xfree86_ossupport_drm
9173 symlink_xserver_hw_xfree86_ossupport_hurd
9174 symlink_xserver_hw_xfree86_ossupport_linux
9175 symlink_xserver_hw_xfree86_ossupport_linux_int10
9176 symlink_xserver_hw_xfree86_ossupport_linux_int10_vm86
9177 symlink_xserver_hw_xfree86_ossupport_lynxos
9178 symlink_xserver_hw_xfree86_ossupport_misc
9179 symlink_xserver_hw_xfree86_ossupport_nto
9180 symlink_xserver_hw_xfree86_ossupport_os2
9181 symlink_xserver_hw_xfree86_ossupport_os2_int10
9182 symlink_xserver_hw_xfree86_ossupport_pmax
9183 symlink_xserver_hw_xfree86_ossupport_qnx4
9184 symlink_xserver_hw_xfree86_ossupport_sco
9185 symlink_xserver_hw_xfree86_ossupport_shared
9186 symlink_xserver_hw_xfree86_ossupport_sunos
9187 symlink_xserver_hw_xfree86_ossupport_sysv
9188 symlink_xserver_hw_xfree86_parser
9189 symlink_xserver_hw_xfree86_rac
9190 symlink_xserver_hw_xfree86_ramdac
9191 symlink_xserver_hw_xfree86_scanpci
9192 symlink_xserver_hw_xfree86_shadowfb
9193 symlink_xserver_hw_xfree86_vbe
9194 symlink_xserver_hw_xfree86_vgahw
9195 symlink_xserver_hw_xfree86_xaa
9196 symlink_xserver_hw_xfree86_xf1bpp
9197 symlink_xserver_hw_xfree86_xf4bpp
9198 symlink_xserver_hw_xfree86_xf8_16bpp
9199 symlink_xserver_hw_xfree86_xf8_32bpp
9200 symlink_xserver_hw_xfree86_xf8_32wid
9201 symlink_xserver_hw_xfree86_xf86cfg
9202 symlink_xserver_hw_xfree86_xf86config
9203 symlink_xserver_hw_xnest
9204 symlink_xserver_hw_xwin
9205 symlink_xserver_hw_xwin_xlaunch
9206 symlink_xserver_ilbm
9207 symlink_xserver_include
9208 symlink_xserver_iplan2p2
9209 symlink_xserver_iplan2p4
9210 symlink_xserver_iplan2p8
9211 symlink_xserver_lbx
9212 symlink_xserver_mfb
9213 symlink_xserver_mi
9214 symlink_xserver_miext_cw
9215 symlink_xserver_miext_damage
9216 symlink_xserver_miext_layer
9217 symlink_xserver_miext_rootless
9218 symlink_xserver_miext_rootless_accel
9219 symlink_xserver_miext_rootless_safealpha
9220 symlink_xserver_miext_shadow
9221 symlink_xserver_os
9222 symlink_xserver_randr
9223 symlink_xserver_record
9224 symlink_xserver_render
9225 symlink_xserver_xfixes
9226 symlink_xserver_xkb
9227 symlink_xserver_xprint_config
9228 # ...
9231 #########
9233 # The driver module
9235 #########
9238 symlink_driver_apm() {
9239 src_dir programs/Xserver/hw/xfree86/drivers/apm
9240 dst_dir driver/xf86-video-apm
9242 action README
9244 src_dir programs/Xserver/hw/xfree86/drivers/apm
9245 dst_dir driver/xf86-video-apm/src
9247 action apm.h
9248 action apm_accel.c
9249 action apm_cursor.c
9250 action apm_dga.c
9251 action apm_driver.c
9252 action apm_funcs.c
9253 action apm_i2c.c
9254 action apm_regs.h
9255 action apm_rush.c
9256 action apm_video.c
9258 dst_dir driver/xf86-video-apm/man
9260 action apm.man apm.4
9263 symlink_driver_ark() {
9264 src_dir programs/Xserver/hw/xfree86/drivers/ark
9265 dst_dir driver/xf86-video-ark/src
9267 action ark.h
9268 action ark_accel.c
9269 action ark_driver.c
9270 action ark_reg.h
9272 dst_dir driver/xf86-video-ark/man
9276 symlink_driver_ati() {
9277 src_dir programs/Xserver/hw/xfree86/drivers/ati
9278 dst_dir driver/xf86-video-ati/src
9280 action ati.c
9281 action ati.h
9282 action atiaccel.c
9283 action atiaccel.h
9284 action atiadapter.c
9285 action atiadapter.h
9286 action atiadjust.c
9287 action atiadjust.h
9288 action atiaudio.c
9289 action atiaudio.h
9290 action atibank.c
9291 action atibank.h
9292 action atibus.c
9293 action atibus.h
9294 action atichip.c
9295 action atichip.h
9296 action aticlock.c
9297 action aticlock.h
9298 action aticonfig.c
9299 action aticonfig.h
9300 action aticonsole.c
9301 action aticonsole.h
9302 action aticrtc.h
9303 action aticursor.c
9304 action aticursor.h
9305 action atidac.c
9306 action atidac.h
9307 action atidecoder.c
9308 action atidecoder.h
9309 action atidga.c
9310 action atidga.h
9311 action atidri.c
9312 action atidri.h
9313 action atidripriv.h
9314 action atidsp.c
9315 action atidsp.h
9316 action atifillin.c
9317 action atifillin.h
9318 action atii2c.c
9319 action atii2c.h
9320 action atiident.c
9321 action atiident.h
9322 action atiio.h
9323 action atiload.c
9324 action atiload.h
9325 action atilock.c
9326 action atilock.h
9327 action atimach64.c
9328 action atimach64.h
9329 action atimach64accel.c
9330 action atimach64accel.h
9331 action atimach64cursor.c
9332 action atimach64cursor.h
9333 action atimach64i2c.c
9334 action atimach64i2c.h
9335 action atimach64io.c
9336 action atimach64io.h
9337 action atimach64xv.c
9338 action atimach64xv.h
9339 action atimisc.c
9340 action atimode.c
9341 action atimode.h
9342 action atimodule.c
9343 action atimodule.h
9344 action atimono.h
9345 action atioption.c
9346 action atioption.h
9347 action atipreinit.c
9348 action atipreinit.h
9349 action atiprint.c
9350 action atiprint.h
9351 action atipriv.h
9352 action atiprobe.c
9353 action atiprobe.h
9354 action atiregs.h
9355 action atirgb514.c
9356 action atirgb514.h
9357 action atiscreen.c
9358 action atiscreen.h
9359 action atistruct.h
9360 action atituner.c
9361 action atituner.h
9362 action atiutil.c
9363 action atiutil.h
9364 action ativalid.c
9365 action ativalid.h
9366 action ativersion.h
9367 action ativga.c
9368 action ativga.h
9369 action ativgaio.c
9370 action ativgaio.h
9371 action atividmem.c
9372 action atividmem.h
9373 action atiwonder.c
9374 action atiwonder.h
9375 action atiwonderio.c
9376 action atiwonderio.h
9377 action atixv.c
9378 action atixv.h
9379 action generic_bus.h
9380 action mach64_common.h
9381 action mach64_dri.h
9382 action mach64_sarea.h
9383 action r128.h
9384 action r128_accel.c
9385 action r128_chipset.h
9386 action r128_common.h
9387 action r128_cursor.c
9388 action r128_dga.c
9389 action r128_dri.c
9390 action r128_dri.h
9391 action r128_dripriv.h
9392 action r128_driver.c
9393 action r128_misc.c
9394 action r128_probe.c
9395 action r128_probe.h
9396 action r128_reg.h
9397 action r128_sarea.h
9398 action r128_version.h
9399 action r128_video.c
9400 action radeon.h
9401 action radeon_accel.c
9402 action radeon_accelfuncs.c
9403 action radeon_bios.c
9404 action radeon_chipset.h
9405 action radeon_common.h
9406 action radeon_commonfuncs.c
9407 action radeon_cursor.c
9408 action radeon_dga.c
9409 action radeon_dri.c
9410 action radeon_dri.h
9411 action radeon_dripriv.h
9412 action radeon_driver.c
9413 action radeon_exa.c
9414 action radeon_exa_funcs.c
9415 action radeon_exa_render.c
9416 action radeon_macros.h
9417 action radeon_mergedfb.c
9418 action radeon_mergedfb.h
9419 action radeon_misc.c
9420 action radeon_mm_i2c.c
9421 action radeon_probe.c
9422 action radeon_probe.h
9423 action radeon_reg.h
9424 action radeon_render.c
9425 action radeon_sarea.h
9426 action radeon_version.h
9427 action radeon_video.c
9428 action radeon_video.h
9429 action radeon_vip.c
9430 action theatre.c
9431 action theatre.h
9432 action theatre200.c
9433 action theatre200.h
9434 action theatre200_module.c
9435 action theatre_detect.c
9436 action theatre_detect.h
9437 action theatre_detect_module.c
9438 action theatre_module.c
9439 action theatre_reg.h
9441 dst_dir driver/xf86-video-ati/man
9443 action ati.man ati.4
9444 action r128.man r128.4
9445 action radeon.man radeon.4
9448 symlink_driver_chips() {
9449 src_dir programs/Xserver/hw/xfree86/drivers/chips
9450 dst_dir driver/xf86-video-chips/src
9452 action ct_BlitMM.h
9453 action ct_Blitter.h
9454 action ct_BltHiQV.h
9455 action ct_accel.c
9456 action ct_bank.c
9457 action ct_cursor.c
9458 action ct_ddc.c
9459 action ct_dga.c
9460 action ct_driver.c
9461 action ct_driver.h
9462 action ct_regs.c
9463 action ct_shadow.c
9464 action ct_video.c
9466 dst_dir driver/xf86-video-chips/man
9468 action chips.man chips.4
9470 src_dir programs/Xserver/hw/xfree86/drivers/chips/util
9471 dst_dir driver/xf86-video-chips/util
9473 action AsmMacros.h
9474 action dRegs.c
9475 action modClock.c
9476 action mRegs.c
9479 symlink_driver_cirrus() {
9480 src_dir programs/Xserver/hw/xfree86/drivers/cirrus
9481 dst_dir driver/xf86-video-cirrus
9483 action README.multihead
9485 src_dir programs/Xserver/hw/xfree86/drivers/cirrus
9486 dst_dir driver/xf86-video-cirrus/src
9488 action CirrusClk.c
9489 action alp.h
9490 action alp_driver.c
9491 action alp_hwcurs.c
9492 action alp_i2c.c
9493 action alp_xaa.c
9494 action alp_xaam.c
9495 action cir.h
9496 action cir_dga.c
9497 action cir_driver.c
9498 action cir_shadow.c
9499 action lg.h
9500 action lg_driver.c
9501 action lg_hwcurs.c
9502 action lg_i2c.c
9503 action lg_xaa.c
9504 action lg_xaa.h
9506 dst_dir driver/xf86-video-cirrus/man
9508 action cirrus.man cirrus.4
9511 symlink_driver_cyrix() {
9512 src_dir programs/Xserver/hw/xfree86/drivers/cyrix
9513 dst_dir driver/xf86-video-cyrix
9515 action README
9516 action ChangeLog
9518 src_dir programs/Xserver/hw/xfree86/drivers/cyrix
9519 dst_dir driver/xf86-video-cyrix/src
9521 action cyrix.h
9522 action cyrix_accel.c
9523 action cyrix_bank.c
9524 action cyrix_driver.c
9525 action cyrix_helper.c
9526 action cyrix_shadow.c
9528 dst_dir driver/xf86-video-cyrix/man
9530 action cyrix.man cyrix.4
9533 symlink_driver_dummy() {
9534 src_dir programs/Xserver/hw/xfree86/drivers/dummy
9535 dst_dir driver/xf86-video-dummy/src
9537 action dummy.h
9538 action dummy_cursor.c
9539 action dummy_dga.c
9540 action dummy_driver.c
9542 dst_dir driver/xf86-video-dummy/man
9546 symlink_driver_fbdev() {
9547 src_dir programs/Xserver/hw/xfree86/drivers/fbdev
9548 dst_dir driver/xf86-video-fbdev/src
9550 action fbdev.c
9552 dst_dir driver/xf86-video-fbdev/man
9554 action fbdev.man fbdev.4
9557 symlink_driver_glide() {
9558 src_dir programs/Xserver/hw/xfree86/drivers/glide
9559 dst_dir driver/xf86-video-glide/src
9561 action glide_driver.c
9563 dst_dir driver/xf86-video-glide/man
9565 action glide.man glide.4
9568 symlink_driver_glint() {
9569 src_dir programs/Xserver/hw/xfree86/drivers/glint
9570 dst_dir driver/xf86-video-glint
9572 action DRI.txt
9573 action README.pm3
9575 src_dir programs/Xserver/hw/xfree86/drivers/glint
9576 dst_dir driver/xf86-video-glint/src
9578 action IBMramdac.c
9579 action TIramdac.c
9580 action glint.h
9581 action glint_common.h
9582 action glint_dga.c
9583 action glint_dri.c
9584 action glint_dri.h
9585 action glint_dripriv.h
9586 action glint_driver.c
9587 action glint_regs.h
9588 action glint_shadow.c
9589 action pm2_accel.c
9590 action pm2_dac.c
9591 action pm2_video.c
9592 action pm2ramdac.c
9593 action pm2v_dac.c
9594 action pm2vramdac.c
9595 action pm3_accel.c
9596 action pm3_dac.c
9597 action pm3_regs.h
9598 action pm3_video.c
9599 action pm_accel.c
9600 action pm_dac.c
9601 action sx_accel.c
9602 action tx_accel.c
9603 action tx_dac.c
9605 dst_dir driver/xf86-video-glint/man
9607 action glint.man glint.4
9610 symlink_driver_i128() {
9611 src_dir programs/Xserver/hw/xfree86/drivers/i128
9612 dst_dir driver/xf86-video-i128/src
9614 action IBMRGB.h
9615 action Ti302X.h
9616 action i128.h
9617 action i128IBMDAC.c
9618 action i128_driver.c
9619 action i128accel.c
9620 action i128dga.c
9621 action i128exa.c
9622 action i128init.c
9623 action i128reg.h
9625 dst_dir driver/xf86-video-i128/man
9627 action i128.man i128.4
9630 symlink_driver_i740() {
9631 src_dir programs/Xserver/hw/xfree86/drivers/i740
9632 dst_dir driver/xf86-video-i740/src
9634 action i740.h
9635 action i740_accel.c
9636 action i740_cursor.c
9637 action i740_dga.c
9638 action i740_dga.h
9639 action i740_driver.c
9640 action i740_i2c.c
9641 action i740_io.c
9642 action i740_macros.h
9643 action i740_reg.h
9644 action i740_video.c
9646 dst_dir driver/xf86-video-i740/man
9648 action i740.man i740.4
9651 symlink_driver_i810() {
9652 src_dir programs/Xserver/hw/xfree86/drivers/i810
9653 dst_dir driver/xf86-video-i810/src
9655 action common.h
9656 action i810.h
9657 action i810_accel.c
9658 action i810_common.h
9659 action i810_cursor.c
9660 action i810_dga.c
9661 action i810_dri.c
9662 action i810_dri.h
9663 action i810_driver.c
9664 action i810_hwmc.c
9665 action i810_io.c
9666 action i810_memory.c
9667 action i810_reg.h
9668 action i810_video.c
9669 action i810_wmark.c
9670 action i830.h
9671 action i830_accel.c
9672 action i830_common.h
9673 action i830_cursor.c
9674 action i830_dga.c
9675 action i830_dri.c
9676 action i830_dri.h
9677 action i830_driver.c
9678 action i830_memory.c
9679 action i830_modes.c
9680 action i830_shadow.c
9681 action i830_video.c
9683 dst_dir driver/xf86-video-i810/man
9685 action i810.man i810.4
9687 src_dir lib/XvMC/hw/i810
9688 dst_dir driver/xf86-video-i810/src/xvmc
9690 action I810XvMC.c
9691 action I810XvMC.h
9694 symlink_driver_imstt() {
9695 src_dir programs/Xserver/hw/xfree86/drivers/imstt
9696 dst_dir driver/xf86-video-imstt/src
9698 action imstt.h
9699 action imstt_accel.c
9700 action imstt_driver.c
9701 action imstt_reg.h
9703 dst_dir driver/xf86-video-imstt/man
9705 action imstt.man imstt.4
9708 symlink_driver_mga() {
9709 src_dir programs/Xserver/hw/xfree86/drivers/mga
9710 dst_dir driver/xf86-video-mga
9712 action mga_PInS.txt
9713 action README_HALLIB
9715 src_dir programs/Xserver/hw/xfree86/drivers/mga/util
9716 dst_dir driver/xf86-video-mga/util
9718 action README
9719 action stormdwg.c
9721 src_dir programs/Xserver/hw/xfree86/drivers/mga
9722 dst_dir driver/xf86-video-mga/src
9724 action client.h
9725 action clientlx.c
9726 action mga.h
9727 action mga_arc.c
9728 action mga_bios.c
9729 action mga_common.h
9730 action mga_dac3026.c
9731 action mga_dacG.c
9732 action mga_dga.c
9733 action mga_dh.c
9734 action mga_dri.c
9735 action mga_dri.h
9736 action mga_dripriv.h
9737 action mga_driver.c
9738 action mga_esc.c
9739 action mga_g450pll.c
9740 action mga_halmod.c
9741 action mga_hwcurs.c
9742 action mga_macros.h
9743 action mga_map.h
9744 action mga_maven.h
9745 action mga_merge.c
9746 action mga_merge.h
9747 action mga_reg.h
9748 action mga_sarea.h
9749 action mga_shadow.c
9750 action mga_storm.c
9751 action mga_ucode.h
9752 action mga_video.c
9753 action mgareg_flags.h
9755 src_dir programs/Xserver/hw/xfree86/drivers/mga/HALlib
9757 action binding.h
9759 src_dir programs/Xserver/hw/xfree86/drivers/mga
9760 dst_dir driver/xf86-video-mga/man
9762 action mga.man mga.4
9765 symlink_driver_neomagic() {
9766 src_dir programs/Xserver/hw/xfree86/drivers/neomagic
9767 dst_dir driver/xf86-video-neomagic
9769 action NM-reg.txt
9770 action README
9771 action TODO
9773 src_dir programs/Xserver/hw/xfree86/drivers/neomagic
9774 dst_dir driver/xf86-video-neomagic/src
9776 action neo.h
9777 action neo_2070.c
9778 action neo_2090.c
9779 action neo_2097.c
9780 action neo_2200.c
9781 action neo_bank.c
9782 action neo_cursor.c
9783 action neo_dga.c
9784 action neo_driver.c
9785 action neo_i2c.c
9786 action neo_macros.h
9787 action neo_reg.h
9788 action neo_shadow.c
9789 action neo_video.c
9790 action neo_video.h
9792 dst_dir driver/xf86-video-neomagic/man
9794 action neomagic.man neomagic.4
9797 symlink_driver_newport() {
9798 src_dir programs/Xserver/hw/xfree86/drivers/newport
9799 dst_dir driver/xf86-video-newport
9801 action XF86Config.indy
9803 src_dir programs/Xserver/hw/xfree86/drivers/newport
9804 dst_dir driver/xf86-video-newport/src
9806 action newport.h
9807 action newport_accel.c
9808 action newport_cmap.c
9809 action newport_cursor.c
9810 action newport_driver.c
9811 action newport_regs.c
9812 action newport_regs.h
9813 action newport_shadow.c
9815 dst_dir driver/xf86-video-newport/man
9817 action newport.man newport.4
9820 symlink_driver_nsc() {
9821 src_dir programs/Xserver/hw/xfree86/drivers/nsc
9822 dst_dir driver/xf86-video-nsc/src
9824 action durango.c
9825 action nsc.h
9826 action nsc_driver.c
9827 action nsc_fourcc.h
9828 action nsc_galfns.c
9829 action nsc_galstub.c
9830 action nsc_gx1_accel.c
9831 action nsc_gx1_cursor.c
9832 action nsc_gx1_dga.c
9833 action nsc_gx1_driver.c
9834 action nsc_gx1_shadow.c
9835 action nsc_gx1_video.c
9836 action nsc_gx2_accel.c
9837 action nsc_gx2_cursor.c
9838 action nsc_gx2_dga.c
9839 action nsc_gx2_driver.c
9840 action nsc_gx2_shadow.c
9841 action nsc_gx2_vga.c
9842 action nsc_gx2_video.c
9843 action nsc_regacc.c
9844 action nsc_msr_asm.S
9845 action panel.c
9847 dst_dir driver/xf86-video-nsc/man
9849 action nsc.man nsc.4
9851 src_dir programs/Xserver/hw/xfree86/drivers/nsc/gfx
9852 dst_dir driver/xf86-video-nsc/src/gfx
9854 action disp_gu1.c
9855 action disp_gu2.c
9856 action gfx_dcdr.c
9857 action gfx_defs.h
9858 action gfx_disp.c
9859 action gfx_i2c.c
9860 action gfx_init.c
9861 action gfx_mode.h
9862 action gfx_msr.c
9863 action gfx_regs.h
9864 action gfx_rndr.c
9865 action gfx_rtns.h
9866 action gfx_tv.c
9867 action gfx_type.h
9868 action gfx_vga.c
9869 action gfx_vid.c
9870 action gfx_vip.c
9871 action i2c_acc.c
9872 action i2c_gpio.c
9873 action init_gu1.c
9874 action init_gu2.c
9875 action msr_rdcl.c
9876 action rndr_gu1.c
9877 action rndr_gu2.c
9878 action saa7114.c
9879 action tv_1200.c
9880 action vga_gu1.c
9881 action vid_1200.c
9882 action vid_5530.c
9883 action vid_rdcl.c
9884 action vip_1200.c
9886 # These files are not actually used, but it probably makes sense to
9887 # distribute them along with the rest of gfx
9889 action durango.c
9890 action gfx_tv.h
9891 action history.h
9892 action release.txt
9893 action tv_fs450.c
9894 action tv_fs450.h
9895 action tv_fs451.c
9896 action tv_geode.c
9897 action vid_1400.c
9898 action vip_1400.c
9900 src_dir programs/Xserver/hw/xfree86/drivers/nsc/panel
9901 dst_dir driver/xf86-video-nsc/src/panel
9903 action 92xx.h
9904 action cen9211.c
9905 action cen9211.h
9906 action dora9211.c
9907 action dora9211.h
9908 action drac9210.c
9909 action drac9210.h
9910 action gx2_9211.c
9911 action gx2_9211.h
9912 action panel.c
9913 action panel.h
9914 action platform.c
9915 action pnl_bios.c
9916 action pnl_defs.h
9917 action pnl_init.c
9919 action readme.txt
9922 symlink_driver_nv() {
9923 src_dir programs/Xserver/hw/xfree86/drivers/nv
9924 dst_dir driver/xf86-video-nv/src
9926 action nv_const.h
9927 action nv_cursor.c
9928 action nv_dac.c
9929 action nv_dga.c
9930 action nv_dma.h
9931 action nv_driver.c
9932 action nv_hw.c
9933 action nv_include.h
9934 action nv_local.h
9935 action nv_proto.h
9936 action nv_setup.c
9937 action nv_shadow.c
9938 action nv_type.h
9939 action nv_video.c
9940 action nv_xaa.c
9941 action nvreg.h
9942 action nvvga.h
9943 action riva_const.h
9944 action riva_cursor.c
9945 action riva_dac.c
9946 action riva_dga.c
9947 action riva_driver.c
9948 action riva_hw.c
9949 action riva_hw.h
9950 action riva_include.h
9951 action riva_local.h
9952 action riva_proto.h
9953 action riva_setup.c
9954 action riva_shadow.c
9955 action riva_tbl.h
9956 action riva_type.h
9957 action riva_xaa.c
9959 dst_dir driver/xf86-video-nv/man
9960 action nv.man nv.4
9962 src_dir programs/Xserver/hw/xfree86/doc
9963 dst_dir driver/xf86-video-nv
9964 action README.NV1
9967 symlink_driver_rendition() {
9968 src_dir programs/Xserver/hw/xfree86/drivers/rendition
9969 dst_dir driver/xf86-video-rendition/src
9971 action README.uc
9972 action accel.h
9973 action accelX.c
9974 action cmd2d.h
9975 action commonregs.h
9976 action cscode.h
9977 action hwcursor.c
9978 action hwcursor.h
9979 action rendition.c
9980 action rendition.h
9981 action rendition_options.h
9982 action rendition_shadow.c
9983 action rendition_shadow.h
9984 action v10002d.uc
9985 action v20002d.uc
9986 action v1kregs.h
9987 action v1krisc.c
9988 action v1krisc.h
9989 action v2kregs.h
9990 action vboard.c
9991 action vboard.h
9992 action vloaduc.c
9993 action vloaduc.h
9994 action vmisc.c
9995 action vmisc.h
9996 action vmodes.c
9997 action vmodes.h
9998 action vos.h
9999 action vramdac.c
10000 action vramdac.h
10001 action vtypes.h
10003 action vgafont-std.data
10004 action vgafont-vrx.data
10005 action vgapalette.data
10007 dst_dir driver/xf86-video-rendition/man
10009 action rendition.man rendition.4
10012 symlink_driver_s3() {
10013 src_dir programs/Xserver/hw/xfree86/drivers/s3
10014 dst_dir driver/xf86-video-s3/src
10016 action newmmio.h
10017 action s3.h
10018 action s3_IBMRGB.c
10019 action s3_Ti.c
10020 action s3_Trio64DAC.c
10021 action s3_accel.c
10022 action s3_bios.c
10023 action s3_cursor.c
10024 action s3_dga.c
10025 action s3_driver.c
10026 action s3_reg.h
10027 action s3_video.c
10029 dst_dir driver/xf86-video-s3/man
10033 symlink_driver_s3virge() {
10034 src_dir programs/Xserver/hw/xfree86/drivers/s3virge
10035 dst_dir driver/xf86-video-s3virge
10037 action CALLMAP
10038 action README
10039 action TODO_NOTES
10041 src_dir programs/Xserver/hw/xfree86/drivers/s3virge
10042 dst_dir driver/xf86-video-s3virge/src
10044 action newmmio.h
10045 action regs3v.h
10046 action s3v.h
10047 action s3v_accel.c
10048 action s3v_dac.c
10049 action s3v_dga.c
10050 action s3v_driver.c
10051 action s3v_hwcurs.c
10052 action s3v_i2c.c
10053 action s3v_macros.h
10054 action s3v_rop.h
10055 action s3v_shadow.c
10056 action s3v_xv.c
10058 dst_dir driver/xf86-video-s3virge/man
10060 action s3virge.man s3virge.4
10063 symlink_driver_savage() {
10064 src_dir programs/Xserver/hw/xfree86/drivers/savage
10065 dst_dir driver/xf86-video-savage/src
10067 action savage_accel.c
10068 action savage_bci.h
10069 action savage_common.h
10070 action savage_cursor.c
10071 action savage_dga.c
10072 action savage_dri.c
10073 action savage_dri.h
10074 action savage_dripriv.h
10075 action savage_driver.c
10076 action savage_driver.h
10077 action savage_drm.h
10078 action savage_hwmc.c
10079 action savage_i2c.c
10080 action savage_image.c
10081 action savage_regs.h
10082 action savage_sarea.h
10083 action savage_shadow.c
10084 action savage_streams.c
10085 action savage_streams.h
10086 action savage_vbe.c
10087 action savage_vbe.h
10088 action savage_video.c
10090 dst_dir driver/xf86-video-savage/man
10092 action savage.man savage.4
10095 symlink_driver_siliconmotion() {
10096 src_dir programs/Xserver/hw/xfree86/drivers/siliconmotion
10097 dst_dir driver/xf86-video-siliconmotion
10099 action README
10100 action CALLMAP
10101 action Release.txt
10103 src_dir programs/Xserver/hw/xfree86/drivers/siliconmotion
10104 dst_dir driver/xf86-video-siliconmotion/src
10106 action regsmi.h
10107 action smi.h
10108 action smi_accel.c
10109 action smi_dac.c
10110 action smi_dga.c
10111 action smi_driver.c
10112 action smi_hwcurs.c
10113 action smi_i2c.c
10114 action smi_shadow.c
10115 action smi_video.c
10116 action smi_video.h
10118 dst_dir driver/xf86-video-siliconmotion/man
10120 action siliconmotion.man siliconmotion.4
10123 symlink_driver_sis() {
10124 src_dir programs/Xserver/hw/xfree86/drivers/sis
10125 dst_dir driver/xf86-video-sis/src
10127 action 300vtbl.h
10128 action 310vtbl.h
10129 action init.c
10130 action init.h
10131 action init301.c
10132 action init301.h
10133 action initdef.h
10134 action initextx.c
10135 action initextx.h
10136 action oem300.h
10137 action oem310.h
10138 action osdef.h
10139 action sis.h
10140 action sis300_accel.c
10141 action sis300_accel.h
10142 action sis310_accel.c
10143 action sis310_accel.h
10144 action sis6326_video.c
10145 action sis_accel.c
10146 action sis_accel.h
10147 action sis_common.h
10148 action sis_cursor.c
10149 action sis_cursor.h
10150 action sis_dac.c
10151 action sis_dac.h
10152 action sis_dga.c
10153 action sis_dri.c
10154 action sis_dri.h
10155 action sis_driver.c
10156 action sis_driver.h
10157 action sis_memcpy.c
10158 action sis_opt.c
10159 action sis_regs.h
10160 action sis_setup.c
10161 action sis_shadow.c
10162 action sis_utility.c
10163 action sis_vb.c
10164 action sis_vga.c
10165 action sis_video.c
10166 action sis_video.h
10167 action sis_videostr.h
10168 action vgatypes.h
10169 action vstruct.h
10171 dst_dir driver/xf86-video-sis/man
10173 action sis.man sis.4
10176 symlink_driver_sisusb() {
10177 src_dir programs/Xserver/hw/xfree86/drivers/sisusb
10178 dst_dir driver/xf86-video-sisusb/src
10180 action sisusb.h
10181 action sisusb_accel.c
10182 action sisusb_accel.h
10183 action sisusb_cursor.c
10184 action sisusb_cursor.h
10185 action sisusb_dac.c
10186 action sisusb_dac.h
10187 action sisusb_driver.c
10188 action sisusb_driver.h
10189 action sisusb_init.c
10190 action sisusb_init.h
10191 action sisusb_opt.c
10192 action sisusb_osdef.h
10193 action sisusb_regs.h
10194 action sisusb_setup.c
10195 action sisusb_shadow.c
10196 action sisusb_struct.h
10197 action sisusb_types.h
10198 action sisusb_utility.c
10199 action sisusb_vga.c
10200 action sisusb_video.c
10201 action sisusb_video.h
10202 action sisusb_videostr.h
10204 dst_dir driver/xf86-video-sisusb/man
10206 action sisusb.man sisusb.4
10209 symlink_driver_sunbw2() {
10210 src_dir programs/Xserver/hw/xfree86/drivers/sunbw2
10211 dst_dir driver/xf86-video-sunbw2/src
10213 action bw2.h
10214 action bw2_driver.c
10216 dst_dir driver/xf86-video-sunbw2/man
10218 action sunbw2.man sunbw2.4
10221 symlink_driver_suncg14() {
10222 src_dir programs/Xserver/hw/xfree86/drivers/suncg14
10223 dst_dir driver/xf86-video-suncg14/src
10225 action cg14.h
10226 action cg14_driver.c
10228 dst_dir driver/xf86-video-suncg14/man
10230 action suncg14.man subcg14.4
10233 symlink_driver_suncg3() {
10234 src_dir programs/Xserver/hw/xfree86/drivers/suncg3
10235 dst_dir driver/xf86-video-suncg3/src
10237 action cg3.h
10238 action cg3_driver.c
10240 dst_dir driver/xf86-video-suncg3/man
10242 action suncg3.man subcg3.4
10245 symlink_driver_suncg6() {
10246 src_dir programs/Xserver/hw/xfree86/drivers/suncg6
10247 dst_dir driver/xf86-video-suncg6/src
10249 action cg6.h
10250 action cg6_cursor.c
10251 action cg6_driver.c
10252 action cg6_regs.h
10254 dst_dir driver/xf86-video-suncg6/man
10256 action suncg6.man subcg6.4
10259 symlink_driver_sunffb() {
10260 src_dir programs/Xserver/hw/xfree86/drivers/sunffb
10261 dst_dir driver/xf86-video-sunffb/src
10263 action ffb.h
10264 action ffb_accel.c
10265 action ffb_attr.c
10266 action ffb_bcopy.c
10267 action ffb_checks.c
10268 action ffb_circle.c
10269 action ffb_clip.c
10270 action ffb_clip.h
10271 action ffb_cplane.c
10272 action ffb_cursor.c
10273 action ffb_dac.c
10274 action ffb_dac.h
10275 action ffb_dbe.c
10276 action ffb_ddc.c
10277 action ffb_dga.c
10278 action ffb_dri.c
10279 action ffb_drishare.h
10280 action ffb_driver.c
10281 action ffb_fifo.h
10282 action ffb_frect.c
10283 action ffb_fspans.c
10284 action ffb_gc.c
10285 action ffb_gc.h
10286 action ffb_glyph.c
10287 action ffb_gspans.c
10288 action ffb_line.c
10289 action ffb_loops.h
10290 action ffb_plygon.c
10291 action ffb_point.c
10292 action ffb_rcache.h
10293 action ffb_rect.c
10294 action ffb_regs.h
10295 action ffb_seg.c
10296 action ffb_sspans.c
10297 action ffb_stip.c
10298 action ffb_stip.h
10299 action ffb_stubs.c
10300 action ffb_wid.c
10301 action ffb_wline.c
10302 action ffb_zeroarc.c
10303 action ffb_asm.s
10304 action VISmoveImage.s
10306 dst_dir driver/xf86-video-sunffb/man
10308 action sunffb.man sunffb.4
10311 symlink_driver_sunleo() {
10312 src_dir programs/Xserver/hw/xfree86/drivers/sunleo
10313 dst_dir driver/xf86-video-sunleo/src
10315 action leo.h
10316 action leo_accel.c
10317 action leo_checks.c
10318 action leo_cursor.c
10319 action leo_driver.c
10320 action leo_frect.c
10321 action leo_frectsp.c
10322 action leo_fspans.c
10323 action leo_fspanssp.c
10324 action leo_glyph.c
10325 action leo_regs.h
10327 dst_dir driver/xf86-video-sunleo/man
10329 action sunleo.man sunleo.4
10332 symlink_driver_suntcx() {
10333 src_dir programs/Xserver/hw/xfree86/drivers/suntcx
10334 dst_dir driver/xf86-video-suntcx/src
10336 action tcx.h
10337 action tcx_cursor.c
10338 action tcx_driver.c
10339 action tcx_regs.h
10341 dst_dir driver/xf86-video-suntcx/man
10343 action suntcx.man suntcx.4
10346 symlink_driver_tdfx() {
10347 src_dir programs/Xserver/hw/xfree86/drivers/tdfx
10348 dst_dir driver/xf86-video-tdfx/src
10350 action tdfx.h
10351 action tdfx_accel.c
10352 action tdfx_dga.c
10353 action tdfx_dri.c
10354 action tdfx_dri.h
10355 action tdfx_dripriv.h
10356 action tdfx_driver.c
10357 action tdfx_hwcurs.c
10358 action tdfx_io.c
10359 action tdfx_priv.c
10360 action tdfx_priv.h
10361 action tdfx_sli.c
10362 action tdfx_video.c
10363 action tdfxdefs.h
10365 dst_dir driver/xf86-video-tdfx/man
10367 action tdfx.man tdfx.4
10370 symlink_driver_tga() {
10371 src_dir programs/Xserver/hw/xfree86/drivers/tga
10372 dst_dir driver/xf86-video-tga/src
10374 action BT463ramdac.c
10375 action BTramdac.c
10376 action IBM561ramdac.c
10377 action ICS1562.c
10378 action tga.h
10379 action tga_accel.c
10380 action tga_cursor.c
10381 action tga_dac.c
10382 action tga_driver.c
10383 action tga_line.c
10384 action tga_regs.h
10386 dst_dir driver/xf86-video-tga/man
10390 symlink_driver_trident() {
10391 src_dir programs/Xserver/hw/xfree86/drivers/trident
10392 dst_dir driver/xf86-video-trident/src
10394 action blade_accel.c
10395 action image_accel.c
10396 action trident.h
10397 action trident_accel.c
10398 action trident_bank.c
10399 action trident_dac.c
10400 action trident_dga.c
10401 action trident_driver.c
10402 action trident_i2c.c
10403 action trident_regs.h
10404 action trident_shadow.c
10405 action trident_tv.c
10406 action trident_video.c
10407 action tridenthelper.c
10408 action tridentramdac.c
10409 action tvga_dac.c
10410 action xp_accel.c
10412 dst_dir driver/xf86-video-trident/man
10414 action trident.man trident.4
10417 symlink_driver_tseng() {
10418 src_dir programs/Xserver/hw/xfree86/drivers/tseng
10419 dst_dir driver/xf86-video-tseng/src
10421 action README
10423 src_dir programs/Xserver/hw/xfree86/drivers/tseng
10424 dst_dir driver/xf86-video-tseng/src
10426 action tseng.h
10427 action tseng_accel.c
10428 action tseng_acl.c
10429 action tseng_acl.h
10430 action tseng_bank.c
10431 action tseng_clock.c
10432 action tseng_colexp.c
10433 action tseng_cursor.c
10434 action tseng_dga.c
10435 action tseng_dpms.c
10436 action tseng_driver.c
10437 action tseng_inline.h
10438 action tseng_ramdac.c
10440 dst_dir driver/xf86-video-tseng/man
10442 action tseng.man tseng.4
10445 symlink_driver_v4l() {
10446 src_dir programs/Xserver/hw/xfree86/drivers/v4l
10447 dst_dir driver/xf86-video-v4l
10449 action README
10451 dst_dir driver/xf86-video-v4l/src
10453 action v4l.c
10454 action videodev.h
10456 dst_dir driver/xf86-video-v4l/man
10458 action v4l.man v4l.4
10461 symlink_driver_vesa() {
10462 src_dir programs/Xserver/hw/xfree86/drivers/vesa
10463 dst_dir driver/xf86-video-vesa/src
10465 action vesa.c
10466 action vesa.h
10468 dst_dir driver/xf86-video-vesa/man
10470 action vesa.man vesa.4
10473 symlink_driver_vga() {
10474 src_dir programs/Xserver/hw/xfree86/drivers/vga
10475 dst_dir driver/xf86-video-vga/src
10477 action generic.c
10479 dst_dir driver/xf86-video-vga/man
10481 action vga.man vga.4
10484 symlink_driver_via() {
10485 src_dir programs/Xserver/hw/xfree86/drivers/via
10486 dst_dir driver/xf86-video-via/src
10488 action via.h
10489 action via_accel.c
10490 action via_bios.h
10491 action via_bandwidth.c
10492 action via_cursor.c
10493 action via_dga.c
10494 action via_dri.c
10495 action via_dri.h
10496 action via_driver.c
10497 action via_driver.h
10498 action via_i2c.c
10499 action via_id.c
10500 action via_id.h
10501 action via_memcpy.c
10502 action via_memcpy.h
10503 action via_memory.c
10504 action via_mode.c
10505 action via_mode.h
10506 action via_priv.h
10507 action via_regs.h
10508 action via_shadow.c
10509 action via_swov.c
10510 action via_swov.h
10511 action via_vgahw.c
10512 action via_vgahw.h
10513 action via_video.c
10514 action via_video.h
10515 action via_vt162x.c
10516 action via_vt162x.h
10517 action via_xvmc.c
10518 action via_xvmc.h
10519 action via_xvpriv.h
10520 action via_drmclient.h
10521 action via_vbe.c
10523 dst_dir driver/xf86-video-via/man
10525 action via.man via.4
10527 src_dir lib/XvMC/hw/via
10528 dst_dir driver/xf86-video-via/src/xvmc
10530 action driDrawable.c
10531 action driDrawable.h
10532 action viaLowLevel.h
10533 action viaXvMC.c
10534 action viaXvMCPriv.h
10535 action xf86dri.c
10536 action xf86dri.h
10537 action xf86dristr.h
10539 src_dir lib/XvMC/hw/via/unichrome
10540 dst_dir driver/xf86-video-via/src/xvmc/unichrome
10542 action viaLowLevel.c
10544 src_dir lib/XvMC/hw/via/unichromeProA
10545 dst_dir driver/xf86-video-via/src/xvmc/unichromeProA
10547 action viaLowLevelPro.c
10550 symlink_driver_vmware() {
10551 src_dir programs/Xserver/hw/xfree86/drivers/vmware
10552 dst_dir driver/xf86-video-vmware
10554 action README
10556 src_dir programs/Xserver/hw/xfree86/drivers/vmware
10557 dst_dir driver/xf86-video-vmware/src
10559 action bits2pixels.c
10560 action bits2pixels.h
10561 action guest_os.h
10562 action includeCheck.h
10563 action offscreen_manager.c
10564 action offscreen_manager.h
10565 action svga_limits.h
10566 action svga_reg.h
10567 action svga_struct.h
10568 action vm_basic_types.h
10569 action vm_device_version.h
10570 action vmware.c
10571 action vmware.h
10572 action vmwarecurs.c
10573 action vmwarexaa.c
10575 dst_dir driver/xf86-video-vmware/man
10577 action vmware.man vmware.4
10580 symlink_driver_voodoo() {
10581 src_dir programs/Xserver/hw/xfree86/drivers/voodoo
10582 dst_dir driver/xf86-video-voodoo
10584 action README
10585 action TODO
10587 src_dir programs/Xserver/hw/xfree86/drivers/voodoo
10588 dst_dir driver/xf86-video-voodoo/src
10590 action voodoo.h
10591 action voodoo_dga.c
10592 action voodoo_driver.c
10593 action voodoo_hardware.c
10595 dst_dir driver/xf86-video-voodoo/man
10597 action voodoo.man voodoo.4
10600 symlink_driver_wsfb() {
10601 src_dir programs/Xserver/hw/xfree86/drivers/wsfb
10602 dst_dir driver/xf86-video-wsfb/src
10604 action wsfb_driver.c
10606 dst_dir driver/xf86-video-wsfb/man
10608 action wsfb.man wsfb.4
10611 symlink_driver_acecad() {
10612 src_dir programs/Xserver/hw/xfree86/input/acecad
10613 dst_dir driver/xf86-input-acecad/src
10615 action acecad.c
10616 action acecad.h
10618 dst_dir driver/xf86-input-acecad/man
10620 action acecad.man acecad.4
10623 symlink_driver_aiptek() {
10624 src_dir programs/Xserver/hw/xfree86/input/aiptek
10625 dst_dir driver/xf86-input-aiptek/src
10627 action xf86Aiptek.c
10628 action xf86Aiptek.h
10630 dst_dir driver/xf86-input-aiptek/man
10632 action aiptek.man aiptek.4
10635 symlink_driver_calcomp() {
10636 src_dir programs/Xserver/hw/xfree86/input/calcomp
10637 dst_dir driver/xf86-input-calcomp/src
10639 action xf86Calcomp.c
10640 action xf86Calcomp.h
10642 dst_dir driver/xf86-input-calcomp/man
10644 action calcomp.man calcomp.4
10647 symlink_driver_citron() {
10648 src_dir programs/Xserver/hw/xfree86/input/citron
10649 dst_dir driver/xf86-input-citron/src
10651 action citron.c
10652 action citron.h
10654 dst_dir driver/xf86-input-citron/man
10656 action citron.man citron.4
10659 symlink_driver_digitaledge() {
10660 src_dir programs/Xserver/hw/xfree86/input/digitaledge
10661 dst_dir driver/xf86-input-digitaledge/src
10663 action DigitalEdge.c
10665 dst_dir driver/xf86-input-digitaledge/man
10669 symlink_driver_dmc() {
10670 src_dir programs/Xserver/hw/xfree86/input/dmc
10671 dst_dir driver/xf86-input-dmc/src
10673 action xf86DMC.c
10674 action xf86DMC.h
10676 dst_dir driver/xf86-input-dmc/man
10678 action dmc.man dmc.4
10681 symlink_driver_dynapro() {
10682 src_dir programs/Xserver/hw/xfree86/input/dynapro
10683 dst_dir driver/xf86-input-dynapro/src
10685 action xf86Dyna.c
10686 action xf86Dyna.h
10688 dst_dir driver/xf86-input-dynapro/man
10690 action dynapro.man dynapro.4
10693 symlink_driver_elo2300() {
10694 src_dir programs/Xserver/hw/xfree86/input/elo2300
10695 dst_dir driver/xf86-input-elo2300/src
10697 action elo.c
10698 action elo.h
10700 dst_dir driver/xf86-input-elo2300/man
10704 symlink_driver_elographics() {
10705 src_dir programs/Xserver/hw/xfree86/input/elographics
10706 dst_dir driver/xf86-input-elographics/src
10708 action xf86Elo.c
10710 dst_dir driver/xf86-input-elographics/man
10712 action elographics.man elographics.4
10715 symlink_driver_evdev() {
10716 src_dir programs/Xserver/hw/xfree86/input/evdev
10717 dst_dir driver/xf86-input-evdev/src
10719 action evdev.c
10721 dst_dir driver/xf86-input-evdev/man
10725 symlink_driver_fpit() {
10726 src_dir programs/Xserver/hw/xfree86/input/fpit
10728 dst_dir driver/xf86-input-fpit
10729 action readme.txt
10731 dst_dir driver/xf86-input-fpit/src
10732 action xf86Fpit.c
10734 dst_dir driver/xf86-input-fpit/man
10735 action fpit.man fpit.4
10738 symlink_driver_hyperpen() {
10739 src_dir programs/Xserver/hw/xfree86/input/hyperpen
10740 dst_dir driver/xf86-input-hyperpen/src
10742 action xf86HyperPen.c
10744 dst_dir driver/xf86-input-hyperpen/man
10748 symlink_driver_jamstudio() {
10749 src_dir programs/Xserver/hw/xfree86/input/jamstudio
10750 dst_dir driver/xf86-input-jamstudio/src
10752 action js_x.c
10754 dst_dir driver/xf86-input-jamstudio/man
10756 action js_x.man js_x.4
10759 symlink_driver_joystick() {
10760 src_dir programs/Xserver/hw/xfree86/input/joystick
10761 dst_dir driver/xf86-input-joystick/src
10763 action xf86Jstk.c
10765 dst_dir driver/xf86-input-joystick/man
10769 symlink_driver_keyboard() {
10770 src_dir programs/Xserver/hw/xfree86/input/keyboard
10771 dst_dir driver/xf86-input-keyboard/src
10773 action kbd.c
10775 dst_dir driver/xf86-input-keyboard/man
10777 action kbd.man kbd.4
10778 action keyboard.man keyboard.4
10781 symlink_driver_magellan() {
10782 src_dir programs/Xserver/hw/xfree86/input/magellan
10783 dst_dir driver/xf86-input-magellan/src
10785 action magellan.c
10786 action magellan.h
10788 dst_dir driver/xf86-input-magellan/man
10792 symlink_driver_magictouch() {
10793 src_dir programs/Xserver/hw/xfree86/input/magictouch
10794 dst_dir driver/xf86-input-magictouch/src
10796 action xf86MagicTouch.c
10798 dst_dir driver/xf86-input-magictouch/man
10800 action magictouch.man magictouch.4
10803 symlink_driver_microtouch() {
10804 src_dir programs/Xserver/hw/xfree86/input/microtouch
10805 dst_dir driver/xf86-input-microtouch/src
10807 action microtouch.c
10808 action microtouch.h
10810 dst_dir driver/xf86-input-microtouch/man
10812 action microtouch.man microtouch.4
10815 symlink_driver_mouse() {
10816 src_dir programs/Xserver/hw/xfree86/input/mouse
10817 dst_dir driver/xf86-input-mouse/src
10819 action mouse.c
10820 action mouse.h
10821 action mousePriv.h
10822 action pnp.c
10824 dst_dir driver/xf86-input-mouse/man
10826 action mouse.man mouse.4
10829 symlink_driver_mutouch() {
10830 src_dir programs/Xserver/hw/xfree86/input/mutouch
10831 dst_dir driver/xf86-input-mutouch/src
10833 action xf86MuTouch.c
10835 dst_dir driver/xf86-input-mutouch/man
10837 action mutouch.man mutouch.4
10840 symlink_driver_palmax() {
10841 src_dir programs/Xserver/hw/xfree86/input/palmax
10842 dst_dir driver/xf86-input-palmax/src
10844 action xf86Palmax.c
10846 dst_dir driver/xf86-input-palmax/man
10848 action palmax.man palmax.4
10851 symlink_driver_penmount() {
10852 src_dir programs/Xserver/hw/xfree86/input/penmount
10853 dst_dir driver/xf86-input-penmount/src
10855 action xf86PM.c
10856 action xf86PM.h
10858 dst_dir driver/xf86-input-penmount/man
10860 action penmount.man penmount.4
10863 symlink_driver_spaceorb() {
10864 src_dir programs/Xserver/hw/xfree86/input/spaceorb
10865 dst_dir driver/xf86-input-spaceorb/src
10867 action spaceorb.c
10868 action spaceorb.h
10870 dst_dir driver/xf86-input-spaceorb/man
10874 symlink_driver_summa() {
10875 src_dir programs/Xserver/hw/xfree86/input/summa
10876 dst_dir driver/xf86-input-summa/src
10878 action xf86Summa.c
10880 dst_dir driver/xf86-input-summa/man
10884 symlink_driver_tek4957() {
10885 src_dir programs/Xserver/hw/xfree86/input/tek4957
10886 dst_dir driver/xf86-input-tek4957/src
10888 action xf86Tek4957.c
10890 dst_dir driver/xf86-input-tek4957/man
10892 action tek4957.man tek4957.4
10895 symlink_driver_ur98() {
10896 src_dir programs/Xserver/hw/xfree86/input/ur98
10897 dst_dir driver/xf86-input-ur98/src
10899 action xf86Ur-98.c
10901 dst_dir driver/xf86-input-ur98/man
10903 action ur98.man ur98.4
10906 symlink_driver_void() {
10907 src_dir programs/Xserver/hw/xfree86/input/void
10908 dst_dir driver/xf86-input-void/src
10910 action void.c
10912 dst_dir driver/xf86-input-void/man
10914 action void.man void.4
10917 symlink_driver() {
10918 symlink_driver_apm
10919 symlink_driver_ark
10920 symlink_driver_ati
10921 symlink_driver_chips
10922 symlink_driver_cirrus
10923 symlink_driver_cyrix
10924 symlink_driver_dummy
10925 symlink_driver_fbdev
10926 symlink_driver_glide
10927 symlink_driver_glint
10928 symlink_driver_i128
10929 symlink_driver_i740
10930 symlink_driver_i810
10931 symlink_driver_imstt
10932 symlink_driver_mga
10933 symlink_driver_neomagic
10934 symlink_driver_newport
10935 symlink_driver_nsc
10936 symlink_driver_nv
10937 symlink_driver_rendition
10938 symlink_driver_s3
10939 symlink_driver_s3virge
10940 symlink_driver_savage
10941 symlink_driver_siliconmotion
10942 symlink_driver_sis
10943 symlink_driver_sisusb
10944 symlink_driver_sunbw2
10945 symlink_driver_suncg14
10946 symlink_driver_suncg3
10947 symlink_driver_suncg6
10948 symlink_driver_sunffb
10949 symlink_driver_sunleo
10950 symlink_driver_suntcx
10951 symlink_driver_tdfx
10952 symlink_driver_tga
10953 symlink_driver_trident
10954 symlink_driver_tseng
10955 symlink_driver_v4l
10956 symlink_driver_vesa
10957 symlink_driver_vga
10958 symlink_driver_via
10959 symlink_driver_vmware
10960 symlink_driver_voodoo
10961 symlink_driver_wsfb
10963 symlink_driver_acecad
10964 symlink_driver_aiptek
10965 symlink_driver_calcomp
10966 symlink_driver_citron
10967 symlink_driver_digitaledge
10968 symlink_driver_dmc
10969 symlink_driver_dynapro
10970 symlink_driver_elo2300
10971 symlink_driver_elographics
10972 symlink_driver_evdev
10973 symlink_driver_fpit
10974 symlink_driver_hyperpen
10975 symlink_driver_jamstudio
10976 symlink_driver_joystick
10977 symlink_driver_keyboard
10978 symlink_driver_magellan
10979 symlink_driver_magictouch
10980 symlink_driver_microtouch
10981 symlink_driver_mouse
10982 symlink_driver_mutouch
10983 symlink_driver_palmax
10984 symlink_driver_penmount
10985 symlink_driver_spaceorb
10986 symlink_driver_summa
10987 symlink_driver_tek4957
10988 symlink_driver_ur98
10989 symlink_driver_void
10990 # ...
10994 #########
10996 # The font module
10998 #########
11000 symlink_font_adobe_100dpi() {
11001 src_dir fonts/bdf/100dpi
11002 dst_dir font/adobe-100dpi
11004 action courB08.bdf
11005 action courB10.bdf
11006 action courB12.bdf
11007 action courB14.bdf
11008 action courB18.bdf
11009 action courB24.bdf
11010 action courBO08.bdf
11011 action courBO10.bdf
11012 action courBO12.bdf
11013 action courBO14.bdf
11014 action courBO18.bdf
11015 action courBO24.bdf
11016 action courO08.bdf
11017 action courO10.bdf
11018 action courO12.bdf
11019 action courO14.bdf
11020 action courO18.bdf
11021 action courO24.bdf
11022 action courR08.bdf
11023 action courR10.bdf
11024 action courR12.bdf
11025 action courR14.bdf
11026 action courR18.bdf
11027 action courR24.bdf
11028 action helvB08.bdf
11029 action helvB10.bdf
11030 action helvB12.bdf
11031 action helvB14.bdf
11032 action helvB18.bdf
11033 action helvB24.bdf
11034 action helvBO08.bdf
11035 action helvBO10.bdf
11036 action helvBO12.bdf
11037 action helvBO14.bdf
11038 action helvBO18.bdf
11039 action helvBO24.bdf
11040 action helvO08.bdf
11041 action helvO10.bdf
11042 action helvO12.bdf
11043 action helvO14.bdf
11044 action helvO18.bdf
11045 action helvO24.bdf
11046 action helvR08.bdf
11047 action helvR10.bdf
11048 action helvR12.bdf
11049 action helvR14.bdf
11050 action helvR18.bdf
11051 action helvR24.bdf
11052 action ncenB08.bdf
11053 action ncenB10.bdf
11054 action ncenB12.bdf
11055 action ncenB14.bdf
11056 action ncenB18.bdf
11057 action ncenB24.bdf
11058 action ncenBI08.bdf
11059 action ncenBI10.bdf
11060 action ncenBI12.bdf
11061 action ncenBI14.bdf
11062 action ncenBI18.bdf
11063 action ncenBI24.bdf
11064 action ncenI08.bdf
11065 action ncenI10.bdf
11066 action ncenI12.bdf
11067 action ncenI14.bdf
11068 action ncenI18.bdf
11069 action ncenI24.bdf
11070 action ncenR08.bdf
11071 action ncenR10.bdf
11072 action ncenR12.bdf
11073 action ncenR14.bdf
11074 action ncenR18.bdf
11075 action ncenR24.bdf
11076 action symb08.bdf
11077 action symb10.bdf
11078 action symb12.bdf
11079 action symb14.bdf
11080 action symb18.bdf
11081 action symb24.bdf
11082 action timB08.bdf
11083 action timB10.bdf
11084 action timB12.bdf
11085 action timB14.bdf
11086 action timB18.bdf
11087 action timB24.bdf
11088 action timBI08.bdf
11089 action timBI10.bdf
11090 action timBI12.bdf
11091 action timBI14.bdf
11092 action timBI18.bdf
11093 action timBI24.bdf
11094 action timI08.bdf
11095 action timI10.bdf
11096 action timI12.bdf
11097 action timI14.bdf
11098 action timI18.bdf
11099 action timI24.bdf
11100 action timR08.bdf
11101 action timR10.bdf
11102 action timR12.bdf
11103 action timR14.bdf
11104 action timR18.bdf
11105 action timR24.bdf
11108 symlink_font_adobe_utopia_100dpi() {
11109 src_dir fonts/bdf/100dpi
11110 dst_dir font/adobe-utopia-100dpi
11112 # XXX These fonts are copyright Adobe, but all rights reserved
11113 action UTB___10.bdf
11114 action UTB___12.bdf
11115 action UTB___14.bdf
11116 action UTB___18.bdf
11117 action UTB___24.bdf
11118 action UTBI__10.bdf
11119 action UTBI__12.bdf
11120 action UTBI__14.bdf
11121 action UTBI__18.bdf
11122 action UTBI__24.bdf
11123 action UTI___10.bdf
11124 action UTI___12.bdf
11125 action UTI___14.bdf
11126 action UTI___18.bdf
11127 action UTI___24.bdf
11128 action UTRG__10.bdf
11129 action UTRG__12.bdf
11130 action UTRG__14.bdf
11131 action UTRG__18.bdf
11132 action UTRG__24.bdf
11135 symlink_font_bh_100dpi() {
11136 src_dir fonts/bdf/100dpi
11137 dst_dir font/bh-100dpi
11139 action lubB08.bdf
11140 action lubB10.bdf
11141 action lubB12.bdf
11142 action lubB14.bdf
11143 action lubB18.bdf
11144 action lubB19.bdf
11145 action lubB24.bdf
11146 action lubBI08.bdf
11147 action lubBI10.bdf
11148 action lubBI12.bdf
11149 action lubBI14.bdf
11150 action lubBI18.bdf
11151 action lubBI19.bdf
11152 action lubBI24.bdf
11153 action lubI08.bdf
11154 action lubI10.bdf
11155 action lubI12.bdf
11156 action lubI14.bdf
11157 action lubI18.bdf
11158 action lubI19.bdf
11159 action lubI24.bdf
11160 action luBIS08.bdf
11161 action luBIS10.bdf
11162 action luBIS12.bdf
11163 action luBIS14.bdf
11164 action luBIS18.bdf
11165 action luBIS19.bdf
11166 action luBIS24.bdf
11167 action lubR08.bdf
11168 action lubR10.bdf
11169 action lubR12.bdf
11170 action lubR14.bdf
11171 action lubR18.bdf
11172 action lubR19.bdf
11173 action lubR24.bdf
11174 action luBS08.bdf
11175 action luBS10.bdf
11176 action luBS12.bdf
11177 action luBS14.bdf
11178 action luBS18.bdf
11179 action luBS19.bdf
11180 action luBS24.bdf
11181 action luIS08.bdf
11182 action luIS10.bdf
11183 action luIS12.bdf
11184 action luIS14.bdf
11185 action luIS18.bdf
11186 action luIS19.bdf
11187 action luIS24.bdf
11188 action luRS08.bdf
11189 action luRS10.bdf
11190 action luRS12.bdf
11191 action luRS14.bdf
11192 action luRS18.bdf
11193 action luRS19.bdf
11194 action luRS24.bdf
11196 action LU_LEGALNOTICE
11199 symlink_font_bh_lucidatypewriter_100dpi() {
11200 src_dir fonts/bdf/100dpi
11201 dst_dir font/bh-lucidatypewriter-100dpi
11203 action lutBS08.bdf
11204 action lutBS10.bdf
11205 action lutBS12.bdf
11206 action lutBS14.bdf
11207 action lutBS18.bdf
11208 action lutBS19.bdf
11209 action lutBS24.bdf
11210 action lutRS08.bdf
11211 action lutRS10.bdf
11212 action lutRS12.bdf
11213 action lutRS14.bdf
11214 action lutRS18.bdf
11215 action lutRS19.bdf
11216 action lutRS24.bdf
11219 symlink_font_bitstream_100dpi() {
11220 src_dir fonts/bdf/100dpi
11221 dst_dir font/bitstream-100dpi
11223 action charB08.bdf
11224 action charB10.bdf
11225 action charB12.bdf
11226 action charB14.bdf
11227 action charB18.bdf
11228 action charB24.bdf
11229 action charBI08.bdf
11230 action charBI10.bdf
11231 action charBI12.bdf
11232 action charBI14.bdf
11233 action charBI18.bdf
11234 action charBI24.bdf
11235 action charI08.bdf
11236 action charI10.bdf
11237 action charI12.bdf
11238 action charI14.bdf
11239 action charI18.bdf
11240 action charI24.bdf
11241 action charR08.bdf
11242 action charR10.bdf
11243 action charR12.bdf
11244 action charR14.bdf
11245 action charR18.bdf
11246 action charR24.bdf
11247 action tech14.bdf
11248 action techB14.bdf
11249 action term14.bdf
11250 action termB14.bdf
11253 symlink_font_adobe_75dpi() {
11254 src_dir fonts/bdf/75dpi
11255 dst_dir font/adobe-75dpi
11257 action courB08.bdf
11258 action courB10.bdf
11259 action courB12.bdf
11260 action courB14.bdf
11261 action courB18.bdf
11262 action courB24.bdf
11263 action courBO08.bdf
11264 action courBO10.bdf
11265 action courBO12.bdf
11266 action courBO14.bdf
11267 action courBO18.bdf
11268 action courBO24.bdf
11269 action courO08.bdf
11270 action courO10.bdf
11271 action courO12.bdf
11272 action courO14.bdf
11273 action courO18.bdf
11274 action courO24.bdf
11275 action courR08.bdf
11276 action courR10.bdf
11277 action courR12.bdf
11278 action courR14.bdf
11279 action courR18.bdf
11280 action courR24.bdf
11281 action helvB08.bdf
11282 action helvB10.bdf
11283 action helvB12.bdf
11284 action helvB14.bdf
11285 action helvB18.bdf
11286 action helvB24.bdf
11287 action helvBO08.bdf
11288 action helvBO10.bdf
11289 action helvBO12.bdf
11290 action helvBO14.bdf
11291 action helvBO18.bdf
11292 action helvBO24.bdf
11293 action helvO08.bdf
11294 action helvO10.bdf
11295 action helvO12.bdf
11296 action helvO14.bdf
11297 action helvO18.bdf
11298 action helvO24.bdf
11299 action helvR08.bdf
11300 action helvR10.bdf
11301 action helvR12.bdf
11302 action helvR14.bdf
11303 action helvR18.bdf
11304 action helvR24.bdf
11305 action ncenB08.bdf
11306 action ncenB10.bdf
11307 action ncenB12.bdf
11308 action ncenB14.bdf
11309 action ncenB18.bdf
11310 action ncenB24.bdf
11311 action ncenBI08.bdf
11312 action ncenBI10.bdf
11313 action ncenBI12.bdf
11314 action ncenBI14.bdf
11315 action ncenBI18.bdf
11316 action ncenBI24.bdf
11317 action ncenI08.bdf
11318 action ncenI10.bdf
11319 action ncenI12.bdf
11320 action ncenI14.bdf
11321 action ncenI18.bdf
11322 action ncenI24.bdf
11323 action ncenR08.bdf
11324 action ncenR10.bdf
11325 action ncenR12.bdf
11326 action ncenR14.bdf
11327 action ncenR18.bdf
11328 action ncenR24.bdf
11329 action symb08.bdf
11330 action symb10.bdf
11331 action symb12.bdf
11332 action symb14.bdf
11333 action symb18.bdf
11334 action symb24.bdf
11335 action timB08.bdf
11336 action timB10.bdf
11337 action timB12.bdf
11338 action timB14.bdf
11339 action timB18.bdf
11340 action timB24.bdf
11341 action timBI08.bdf
11342 action timBI10.bdf
11343 action timBI12.bdf
11344 action timBI14.bdf
11345 action timBI18.bdf
11346 action timBI24.bdf
11347 action timI08.bdf
11348 action timI10.bdf
11349 action timI12.bdf
11350 action timI14.bdf
11351 action timI18.bdf
11352 action timI24.bdf
11353 action timR08.bdf
11354 action timR10.bdf
11355 action timR12.bdf
11356 action timR14.bdf
11357 action timR18.bdf
11358 action timR24.bdf
11361 symlink_font_adobe_utopia_75dpi() {
11362 src_dir fonts/bdf/75dpi
11363 dst_dir font/adobe-utopia-75dpi
11365 # XXX These fonts are copyright Adobe, but all rights reserved
11366 action UTB___10.bdf
11367 action UTB___12.bdf
11368 action UTB___14.bdf
11369 action UTB___18.bdf
11370 action UTB___24.bdf
11371 action UTBI__10.bdf
11372 action UTBI__12.bdf
11373 action UTBI__14.bdf
11374 action UTBI__18.bdf
11375 action UTBI__24.bdf
11376 action UTI___10.bdf
11377 action UTI___12.bdf
11378 action UTI___14.bdf
11379 action UTI___18.bdf
11380 action UTI___24.bdf
11381 action UTRG__10.bdf
11382 action UTRG__12.bdf
11383 action UTRG__14.bdf
11384 action UTRG__18.bdf
11385 action UTRG__24.bdf
11388 symlink_font_bh_75dpi() {
11389 src_dir fonts/bdf/75dpi
11390 dst_dir font/bh-75dpi
11392 action lubB08.bdf
11393 action lubB10.bdf
11394 action lubB12.bdf
11395 action lubB14.bdf
11396 action lubB18.bdf
11397 action lubB19.bdf
11398 action lubB24.bdf
11399 action lubBI08.bdf
11400 action lubBI10.bdf
11401 action lubBI12.bdf
11402 action lubBI14.bdf
11403 action lubBI18.bdf
11404 action lubBI19.bdf
11405 action lubBI24.bdf
11406 action lubI08.bdf
11407 action lubI10.bdf
11408 action lubI12.bdf
11409 action lubI14.bdf
11410 action lubI18.bdf
11411 action lubI19.bdf
11412 action lubI24.bdf
11413 action luBIS08.bdf
11414 action luBIS10.bdf
11415 action luBIS12.bdf
11416 action luBIS14.bdf
11417 action luBIS18.bdf
11418 action luBIS19.bdf
11419 action luBIS24.bdf
11420 action lubR08.bdf
11421 action lubR10.bdf
11422 action lubR12.bdf
11423 action lubR14.bdf
11424 action lubR18.bdf
11425 action lubR19.bdf
11426 action lubR24.bdf
11427 action luBS08.bdf
11428 action luBS10.bdf
11429 action luBS12.bdf
11430 action luBS14.bdf
11431 action luBS18.bdf
11432 action luBS19.bdf
11433 action luBS24.bdf
11434 action luIS08.bdf
11435 action luIS10.bdf
11436 action luIS12.bdf
11437 action luIS14.bdf
11438 action luIS18.bdf
11439 action luIS19.bdf
11440 action luIS24.bdf
11441 action luRS08.bdf
11442 action luRS10.bdf
11443 action luRS12.bdf
11444 action luRS14.bdf
11445 action luRS18.bdf
11446 action luRS19.bdf
11447 action luRS24.bdf
11449 action LU_LEGALNOTICE
11452 symlink_font_bh_lucidatypewriter_75dpi() {
11453 src_dir fonts/bdf/75dpi
11454 dst_dir font/bh-lucidatypewriter-75dpi
11456 action lutBS08.bdf
11457 action lutBS10.bdf
11458 action lutBS12.bdf
11459 action lutBS14.bdf
11460 action lutBS18.bdf
11461 action lutBS19.bdf
11462 action lutBS24.bdf
11463 action lutRS08.bdf
11464 action lutRS10.bdf
11465 action lutRS12.bdf
11466 action lutRS14.bdf
11467 action lutRS18.bdf
11468 action lutRS19.bdf
11469 action lutRS24.bdf
11472 symlink_font_bitstream_75dpi() {
11473 src_dir fonts/bdf/75dpi
11474 dst_dir font/bitstream-75dpi
11476 action charB08.bdf
11477 action charB10.bdf
11478 action charB12.bdf
11479 action charB14.bdf
11480 action charB18.bdf
11481 action charB24.bdf
11482 action charBI08.bdf
11483 action charBI10.bdf
11484 action charBI12.bdf
11485 action charBI14.bdf
11486 action charBI18.bdf
11487 action charBI24.bdf
11488 action charI08.bdf
11489 action charI10.bdf
11490 action charI12.bdf
11491 action charI14.bdf
11492 action charI18.bdf
11493 action charI24.bdf
11494 action charR08.bdf
11495 action charR10.bdf
11496 action charR12.bdf
11497 action charR14.bdf
11498 action charR18.bdf
11499 action charR24.bdf
11500 action tech14.bdf
11501 action techB14.bdf
11502 action term14.bdf
11503 action termB14.bdf
11506 symlink_font_cronyx_cyrillic() {
11507 src_dir fonts/bdf/cyrillic
11508 dst_dir font/cronyx-cyrillic
11510 action crox1cb.bdf
11511 action crox1c.bdf
11512 action crox1cbo.bdf
11513 action crox1co.bdf
11514 action crox1hb.bdf
11515 action crox1h.bdf
11516 action crox1hbo.bdf
11517 action crox1ho.bdf
11518 action crox1tb.bdf
11519 action crox1t.bdf
11520 action crox1tbo.bdf
11521 action crox1to.bdf
11522 action crox2cb.bdf
11523 action crox2c.bdf
11524 action crox2cbo.bdf
11525 action crox2co.bdf
11526 action crox2hb.bdf
11527 action crox2h.bdf
11528 action crox2hbo.bdf
11529 action crox2ho.bdf
11530 action crox2tb.bdf
11531 action crox2t.bdf
11532 action crox2tbo.bdf
11533 action crox2to.bdf
11534 action crox3cb.bdf
11535 action crox3c.bdf
11536 action crox3cbo.bdf
11537 action crox3co.bdf
11538 action crox3hb.bdf
11539 action crox3h.bdf
11540 action crox3hbo.bdf
11541 action crox3ho.bdf
11542 action crox3tb.bdf
11543 action crox3t.bdf
11544 action crox3tbo.bdf
11545 action crox3to.bdf
11546 action crox4hb.bdf
11547 action crox4h.bdf
11548 action crox4hbo.bdf
11549 action crox4ho.bdf
11550 action crox4tb.bdf
11551 action crox4t.bdf
11552 action crox4tbo.bdf
11553 action crox4to.bdf
11554 action crox5hb.bdf
11555 action crox5h.bdf
11556 action crox5hbo.bdf
11557 action crox5ho.bdf
11558 action crox5tb.bdf
11559 action crox5t.bdf
11560 action crox5tbo.bdf
11561 action crox5to.bdf
11562 action crox6hb.bdf
11563 action crox6h.bdf
11564 action crox6hbo.bdf
11565 action crox6ho.bdf
11566 action crox6tb.bdf
11567 action crox6t.bdf
11568 action crox6tbo.bdf
11569 action crox6to.bdf
11570 action koi10x16b.bdf
11571 action koi10x20.bdf
11572 action koi6x10.bdf
11573 action koinil2.bdf
11575 action COPYRIGHT
11578 symlink_font_misc_cyrillic() {
11579 src_dir fonts/bdf/cyrillic
11580 dst_dir font/misc-cyrillic
11582 # XXX Should these be broken into three different components?
11584 # XXX "May be distributed and modified without restrictions"
11585 action koi12x24b.bdf
11586 action koi8x16b.bdf
11587 action koi8x16.bdf
11589 # XXX Same license as cronyx-cyrillic
11590 action koi12x24.bdf
11591 action koi6x13.bdf
11593 # XXX public domain
11594 action koi5x8.bdf
11595 action koi6x13b.bdf
11596 action koi6x9.bdf
11597 action koi7x14b.bdf
11598 action koi7x14.bdf
11599 action koi8x13.bdf
11600 action koi9x15b.bdf
11601 action koi9x15.bdf
11602 action koi9x18b.bdf
11603 action koi9x18.bdf
11606 symlink_font_screen_cyrillic() {
11607 src_dir fonts/bdf/cyrillic
11608 dst_dir font/screen-cyrillic
11610 # XXX no copyright/license at all
11611 action screen8x16b.bdf
11612 action screen8x16.bdf
11615 symlink_font_winitzki_cyrillic() {
11616 src_dir fonts/bdf/cyrillic
11617 dst_dir font/winitzki-cyrillic
11619 action proof9x16.bdf
11622 symlink_font_cursor_misc() {
11623 src_dir fonts/bdf/misc
11624 dst_dir font/cursor-misc
11626 # XXX Does "unencumbered" mean the same thing as public domain
11627 # in this context?
11628 action cursor.bdf
11631 symlink_font_daewoo_misc() {
11632 src_dir fonts/bdf/misc
11633 dst_dir font/daewoo-misc
11635 # XXX These fonts are copyright, but no permissions are given
11636 action hanglg16.bdf
11637 action hanglm16.bdf
11638 action hanglm24.bdf
11641 symlink_font_dec_misc() {
11642 src_dir fonts/bdf/misc
11643 dst_dir font/dec-misc
11645 action deccurs.bdf
11646 action decsess.bdf
11649 symlink_font_isas_misc() {
11650 src_dir fonts/bdf/misc
11651 dst_dir font/isas-misc
11653 action gb16fs.bdf
11654 action gb16st.bdf
11655 action gb24st.bdf
11658 symlink_font_jis_misc() {
11659 src_dir fonts/bdf/misc
11660 dst_dir font/jis-misc
11662 # XXX Verify license restrictions
11663 action jiskan16.bdf
11664 action jiskan24.bdf
11667 symlink_font_micro_misc() {
11668 src_dir fonts/bdf/misc
11669 dst_dir font/micro-misc
11671 action micro.bdf
11674 symlink_font_misc_misc() {
11675 src_dir fonts/bdf/misc
11676 dst_dir font/misc-misc
11678 action 10x20.bdf
11679 action 12x13ja.bdf
11680 action 18x18ja.bdf
11681 action 18x18ko.bdf
11682 action 4x6.bdf
11683 action 5x7.bdf
11684 action 5x8.bdf
11685 action 6x10.bdf
11686 action 6x12.bdf
11687 action 6x13B.bdf
11688 action 6x13.bdf
11689 action 6x13O.bdf
11690 action 6x9.bdf
11691 action 7x13B.bdf
11692 action 7x13.bdf
11693 action 7x13O.bdf
11694 action 7x14B.bdf
11695 action 7x14.bdf
11696 action 8x13B.bdf
11697 action 8x13.bdf
11698 action 8x13O.bdf
11699 action 9x15B.bdf
11700 action 9x15.bdf
11701 action 9x18B.bdf
11702 action 9x18.bdf
11703 action k14.bdf
11705 # XXX This font does not have any COPYRIGHT
11706 action nil2.bdf
11709 symlink_font_schumacher_misc() {
11710 src_dir fonts/bdf/misc
11711 dst_dir font/schumacher-misc
11713 action clB6x10.bdf
11714 action clB6x12.bdf
11715 action clB8x10.bdf
11716 action clB8x12.bdf
11717 action clB8x13.bdf
11718 action clB8x14.bdf
11719 action clB8x16.bdf
11720 action clB8x8.bdf
11721 action clB9x15.bdf
11722 action clI6x12.bdf
11723 action clI8x8.bdf
11724 action clR4x6.bdf
11725 action clR5x10.bdf
11726 action clR5x6.bdf
11727 action clR5x8.bdf
11728 action clR6x10.bdf
11729 action clR6x12.bdf
11730 action clR6x13.bdf
11731 action clR6x6.bdf
11732 action clR6x8.bdf
11733 action clR7x10.bdf
11734 action clR7x12.bdf
11735 action clR7x14.bdf
11736 action clR7x8.bdf
11737 action clR8x10.bdf
11738 action clR8x12.bdf
11739 action clR8x13.bdf
11740 action clR8x14.bdf
11741 action clR8x16.bdf
11742 action clR8x8.bdf
11743 action clR9x15.bdf
11746 symlink_font_sony_misc() {
11747 src_dir fonts/bdf/misc
11748 dst_dir font/sony-misc
11750 action 12x24.bdf
11751 action 12x24rk.bdf
11752 action 8x16.bdf
11753 action 8x16rk.bdf
11756 symlink_font_sun_misc() {
11757 src_dir fonts/bdf/misc
11758 dst_dir font/sun-misc
11760 action olcursor.bdf
11761 action olgl10.bdf
11762 action olgl12.bdf
11763 action olgl14.bdf
11764 action olgl19.bdf
11767 symlink_font_bh_ttf() {
11768 src_dir fonts/scaled/TTF
11769 dst_dir font/bh-ttf
11771 action luximbi.ttf
11772 action luximb.ttf
11773 action luximri.ttf
11774 action luximr.ttf
11775 action luxirbi.ttf
11776 action luxirb.ttf
11777 action luxirri.ttf
11778 action luxirr.ttf
11779 action luxisbi.ttf
11780 action luxisb.ttf
11781 action luxisri.ttf
11782 action luxisr.ttf
11784 action COPYRIGHT.BH
11787 symlink_font_adobe_utopia_type1() {
11788 src_dir fonts/scaled/Type1
11789 dst_dir font/adobe-utopia-type1
11791 # XXX These fonts are copyright Adobe, but all rights reserved
11792 action UTB_____.afm
11793 action UTBI____.afm
11794 action UTBI____.pfa
11795 action UTB_____.pfa
11796 action UTI_____.afm
11797 action UTI_____.pfa
11798 action UTRG____.afm
11799 action UTRG____.pfa
11802 symlink_font_bh_type1() {
11803 src_dir fonts/scaled/Type1
11804 dst_dir font/bh-type1
11806 action l047013t.afm
11807 action l047013t.pfa
11808 action l047016t.afm
11809 action l047016t.pfa
11810 action l047033t.afm
11811 action l047033t.pfa
11812 action l047036t.afm
11813 action l047036t.pfa
11814 action l048013t.afm
11815 action l048013t.pfa
11816 action l048016t.afm
11817 action l048016t.pfa
11818 action l048033t.afm
11819 action l048033t.pfa
11820 action l048036t.afm
11821 action l048036t.pfa
11822 action l049013t.afm
11823 action l049013t.pfa
11824 action l049016t.afm
11825 action l049016t.pfa
11826 action l049033t.afm
11827 action l049033t.pfa
11828 action l049036t.afm
11829 action l049036t.pfa
11831 action COPYRIGHT.BH
11834 symlink_font_bitstream_type1() {
11835 src_dir fonts/scaled/Type1
11836 dst_dir font/bitstream-type1
11838 action c0419bt_.afm
11839 action c0419bt_.pfb
11840 action c0582bt_.afm
11841 action c0582bt_.pfb
11842 action c0583bt_.afm
11843 action c0583bt_.pfb
11844 action c0611bt_.afm
11845 action c0611bt_.pfb
11846 action c0632bt_.afm
11847 action c0632bt_.pfb
11848 action c0633bt_.afm
11849 action c0633bt_.pfb
11850 action c0648bt_.afm
11851 action c0648bt_.pfb
11852 action c0649bt_.afm
11853 action c0649bt_.pfb
11855 action Copyright
11858 symlink_font_ibm_type1() {
11859 src_dir fonts/scaled/Type1
11860 dst_dir font/ibm-type1
11862 action cour.afm
11863 action courb.afm
11864 action courbi.afm
11865 action courbi.pfa
11866 action courb.pfa
11867 action couri.afm
11868 action couri.pfa
11869 action cour.pfa
11871 action COPYRIGHT.IBM
11874 symlink_font_xfree86_type1() {
11875 src_dir fonts/scaled/Type1
11876 dst_dir font/xfree86-type1
11878 action cursor.pfa
11881 symlink_font_arabic_misc() {
11882 src_dir extras/fonts/arabic24
11883 dst_dir font/arabic-misc
11885 action arabic24.bdf
11887 action README
11888 action uniarab.txt
11891 symlink_font_mutt_misc() {
11892 src_dir extras/fonts/ClearlyU
11893 dst_dir font/mutt-misc
11895 action cu12.bdf
11896 action cu-alt12.bdf
11897 action cu-arabic12.bdf
11898 action cuarabic12.bdf
11899 action cu-devnag12.bdf
11900 action cudevnag12.bdf
11901 action cu-lig12.bdf
11902 action cu-pua12.bdf
11904 action README
11908 symlink_font_misc_ethiopic() {
11909 src_dir fonts/scaled/Ethiopic
11910 dst_dir font/misc-ethiopic
11912 action GohaTibebZemen.otf
11913 action GohaTibebZemen.ttf
11915 action license.txt
11918 symlink_font_misc_meltho() {
11919 src_dir fonts/scaled/Meltho
11920 dst_dir font/misc-meltho
11922 action SyrCOMAdiabene.otf
11923 action SyrCOMAntioch.otf
11924 action SyrCOMBatnanBold.otf
11925 action SyrCOMBatnan.otf
11926 action SyrCOMCtesiphon.otf
11927 action SyrCOMEdessa.otf
11928 action SyrCOMJerusalemBold.otf
11929 action SyrCOMJerusalemItalic.otf
11930 action SyrCOMJerusalem.otf
11931 action SyrCOMJerusalemOutline.otf
11932 action SyrCOMKharput.otf
11933 action SyrCOMMalankara.otf
11934 action SyrCOMMardinBold.otf
11935 action SyrCOMMardin.otf
11936 action SyrCOMMidyat.otf
11937 action SyrCOMNisibin.otf
11938 action SyrCOMNisibinOutline.otf
11939 action SyrCOMQenNeshrin.otf
11940 action SyrCOMTalada.otf
11941 action SyrCOMTurAbdin.otf
11942 action SyrCOMUrhoyBold.otf
11943 action SyrCOMUrhoy.otf
11945 action license.txt
11946 action README
11949 symlink_font_bistream_speedo() {
11950 src_dir fonts/scaled/Speedo
11951 dst_dir font/bitstream-speedo
11953 action font0419.spd
11954 action font0582.spd
11955 action font0583.spd
11956 action font0611.spd
11957 action font0648.spd
11958 action font0649.spd
11959 action font0709.spd
11960 action font0710.spd
11962 action fonts.scale
11963 action COPYRIGHT
11967 symlink_font_alias() {
11968 src_dir fonts/bdf/100dpi
11969 dst_dir font/alias/100dpi
11971 action fonts.alias
11973 src_dir fonts/bdf/75dpi
11974 dst_dir font/alias/75dpi
11976 action fonts.alias
11978 src_dir fonts/bdf/cyrillic
11979 dst_dir font/alias/cyrillic
11981 action fonts.alias
11983 src_dir fonts/bdf/misc
11984 dst_dir font/alias/misc
11986 action fonts.alias
11989 symlink_font_util() {
11990 src_dir fonts/util
11991 dst_dir font/util
11993 action 8859-1.TXT map-ISO8859-1
11994 action 8859-2.TXT map-ISO8859-2
11995 action 8859-3.TXT map-ISO8859-3
11996 action 8859-4.TXT map-ISO8859-4
11997 action 8859-5.TXT map-ISO8859-5
11998 action 8859-6.TXT map-ISO8859-6
11999 action 8859-7.TXT map-ISO8859-7
12000 action 8859-8.TXT map-ISO8859-8
12001 action 8859-9.TXT map-ISO8859-9
12002 action 8859-10.TXT map-ISO8859-10
12003 action 8859-11.TXT map-ISO8859-11
12004 action 8859-13.TXT map-ISO8859-13
12005 action 8859-14.TXT map-ISO8859-14
12006 action 8859-15.TXT map-ISO8859-15
12007 action 8859-16.TXT map-ISO8859-16
12008 action JIS0201.TXT map-JISX0201.1976-0
12009 action KOI8-R.TXT map-KOI8-R
12011 action bdftruncate.man
12012 action bdftruncate.pl
12014 action ucs2any.c
12015 action ucs2any.man
12018 symlink_font_encodings() {
12019 src_dir fonts/encodings
12020 dst_dir font/encodings
12022 action adobe-dingbats.enc
12023 action adobe-standard.enc
12024 action adobe-symbol.enc
12025 action ansi-1251.enc
12026 action armscii-8.enc
12027 action ascii-0.enc
12028 action dec-special.enc
12029 action ibm-cp437.enc
12030 action ibm-cp850.enc
12031 action ibm-cp852.enc
12032 action ibm-cp866.enc
12033 action iso8859-11.enc
12034 action iso8859-13.enc
12035 action iso8859-16.enc
12036 action iso8859-6.16.enc
12037 action iso8859-6.8x.enc
12038 action microsoft-cp1250.enc
12039 action microsoft-cp1251.enc
12040 action microsoft-cp1252.enc
12041 action microsoft-cp1253.enc
12042 action microsoft-cp1254.enc
12043 action microsoft-cp1255.enc
12044 action microsoft-cp1256.enc
12045 action microsoft-cp1257.enc
12046 action microsoft-cp1258.enc
12047 action microsoft-win3.1.enc
12048 action mulearabic-0.enc
12049 action mulearabic-1.enc
12050 action mulearabic-2.enc
12051 action mulelao-1.enc
12052 action suneu-greek.enc
12053 action tcvn-0.enc
12054 action tis620-2.enc
12055 action viscii1.1-1.enc
12057 src_dir fonts/encodings/large
12058 dst_dir font/encodings/large
12060 action big5.eten-0.enc
12061 action big5hkscs-0.enc
12062 action cns11643-1.enc
12063 action cns11643-2.enc
12064 action cns11643-3.enc
12065 action gb18030-0.enc
12066 action gb18030.2000-0.enc
12067 action gb18030.2000-1.enc
12068 action gb2312.1980-0.enc
12069 action gbk-0.enc
12070 action jisx0201.1976-0.enc
12071 action jisx0208.1990-0.enc
12072 action jisx0212.1990-0.enc
12073 action ksc5601.1987-0.enc
12074 action ksc5601.1992-3.enc
12075 action sun.unicode.india-0.enc
12078 symlink_font() {
12079 symlink_font_adobe_100dpi
12080 symlink_font_adobe_utopia_100dpi
12081 symlink_font_bh_100dpi
12082 symlink_font_bh_lucidatypewriter_100dpi
12083 symlink_font_bitstream_100dpi
12085 symlink_font_adobe_75dpi
12086 symlink_font_adobe_utopia_75dpi
12087 symlink_font_bh_75dpi
12088 symlink_font_bh_lucidatypewriter_75dpi
12089 symlink_font_bitstream_75dpi
12091 symlink_font_cronyx_cyrillic
12092 symlink_font_misc_cyrillic
12093 symlink_font_screen_cyrillic
12094 symlink_font_winitzki_cyrillic
12096 symlink_font_cursor_misc
12097 symlink_font_daewoo_misc
12098 symlink_font_dec_misc
12099 symlink_font_isas_misc
12100 symlink_font_jis_misc
12101 symlink_font_micro_misc
12102 symlink_font_misc_misc
12103 symlink_font_schumacher_misc
12104 symlink_font_sony_misc
12105 symlink_font_sun_misc
12107 symlink_font_bh_ttf
12109 symlink_font_adobe_utopia_type1
12110 symlink_font_bh_type1
12111 symlink_font_bitstream_type1
12112 symlink_font_ibm_type1
12113 symlink_font_xfree86_type1
12115 symlink_font_mutt_misc
12116 symlink_font_arabic_misc
12118 symlink_font_misc_meltho
12119 symlink_font_misc_ethiopic
12121 symlink_font_bistream_speedo
12123 symlink_font_alias
12124 symlink_font_util
12126 symlink_font_encodings
12130 #########
12132 # The doc module
12134 #########
12136 symlink_doc_old() {
12137 src_dir doc/hardcopy
12138 dst_dir doc/old/hardcopy
12140 src_dir doc/hardcopy/BDF
12141 dst_dir doc/old/hardcopy/BDF
12143 action bdf.PS.gz
12145 src_dir doc/hardcopy/CTEXT
12146 dst_dir doc/old/hardcopy/CTEXT
12148 action ctext.PS.gz
12150 src_dir doc/hardcopy/FSProtocol
12151 dst_dir doc/old/hardcopy/FSProtocol
12153 action fsproto.PS.gz
12155 src_dir doc/hardcopy/i18n
12156 dst_dir doc/old/hardcopy/i18n
12158 action Framework.PS.gz
12159 action LocaleDB.PS.gz
12160 action Trans.PS.gz
12162 src_dir doc/hardcopy/ICCCM
12163 dst_dir doc/old/hardcopy/ICCCM
12165 action icccm.PS.gz
12166 action icccm.idx.PS.gz
12168 src_dir doc/hardcopy/ICE
12169 dst_dir doc/old/hardcopy/ICE
12171 action ICElib.PS.gz
12172 action ice.PS.gz
12174 src_dir doc/hardcopy/man
12175 dst_dir doc/old/hardcopy/man
12177 action man.PS.gz
12179 src_dir doc/hardcopy/rstart
12180 dst_dir doc/old/hardcopy/rstart
12182 action rstart.PS.gz
12184 src_dir doc/hardcopy/RX
12185 dst_dir doc/old/hardcopy/RX
12187 action RX.PS.gz
12189 src_dir doc/hardcopy/saver
12190 dst_dir doc/old/hardcopy/saver
12192 action saver.PS.gz
12194 src_dir doc/hardcopy/SM
12195 dst_dir doc/old/hardcopy/SM
12197 action SMlib.PS.gz
12198 action xsmp.PS.gz
12200 src_dir doc/hardcopy/X11
12201 dst_dir doc/old/hardcopy/X11
12203 action xlib.PS.gz
12204 action xlib.idx.PS.gz
12206 src_dir doc/hardcopy/Xaw
12207 dst_dir doc/old/hardcopy/Xaw
12209 action widg.idx.PS.gz
12210 action widgets.PS.gz
12212 src_dir doc/hardcopy/XDMCP
12213 dst_dir doc/old/hardcopy/XDMCP
12215 action xdmcp.PS.gz
12217 src_dir doc/hardcopy/Xext
12218 dst_dir doc/old/hardcopy/Xext
12220 action AppGroup.PS.gz
12221 action DPMS.PS.gz
12222 action DPMSLib.PS.gz
12223 action bigreq.PS.gz
12224 action buffer.PS.gz
12225 action dbe.PS.gz
12226 action dbelib.PS.gz
12227 action evi.PS.gz
12228 action lbx.PS.gz
12229 action lbx.html
12230 action lbxTOC.html
12231 action lbxalg.PS.gz
12232 action mit-shm.PS.gz
12233 action record.PS.gz
12234 action recordlib.PS.gz
12235 action security.PS.gz
12236 action shape.PS.gz
12237 action shapelib.PS.gz
12238 action sync.PS.gz
12239 action synclib.PS.gz
12240 action tog-cup.PS.gz
12241 action xc-misc.PS.gz
12242 action xtest.PS.gz
12243 action xtestlib.PS.gz
12245 src_dir doc/hardcopy/xfs
12246 dst_dir doc/old/hardcopy/xfs
12248 action design.PS.gz
12250 src_dir doc/hardcopy/Xi
12251 dst_dir doc/old/hardcopy/Xi
12253 action lib.PS.gz
12254 action port.PS.gz
12255 action proto.PS.gz
12257 src_dir doc/hardcopy/XIM
12258 dst_dir doc/old/hardcopy/XIM
12260 action xim.PS.gz
12262 src_dir doc/hardcopy/XKB
12263 dst_dir doc/old/hardcopy/XKB
12265 action XKBlib.ps.gz
12266 action XKBproto.ps.gz
12268 src_dir doc/hardcopy/XLFD
12269 dst_dir doc/old/hardcopy/XLFD
12271 action xlfd.PS.gz
12273 src_dir doc/hardcopy/Xmu
12274 dst_dir doc/old/hardcopy/Xmu
12276 action xmu.PS.gz
12278 src_dir doc/hardcopy/XPRINT
12279 dst_dir doc/old/hardcopy/XPRINT
12281 action Xprint_FAQ.html
12282 action Xprint_FAQ.txt
12283 action Xprint_FAQ.xml
12284 action Xprint_old_FAQ.txt
12285 action docbook.css
12286 action dtprint_fspec.PS.gz
12287 action xp_library.PS.gz
12288 action xp_proto.PS.gz
12290 src_dir doc/hardcopy/XProtocol
12291 dst_dir doc/old/hardcopy/XProtocol
12293 action proto.PS.gz
12294 action proto.idx.PS.gz
12296 src_dir doc/hardcopy/Xserver
12297 dst_dir doc/old/hardcopy/Xserver
12299 action Xprt.PS.gz
12300 action analysis.PS.gz
12301 action appgroup.PS.gz
12302 action ddx.PS.gz
12303 action fontlib.PS.gz
12304 action secint.PS.gz
12306 src_dir doc/hardcopy/Xt
12307 dst_dir doc/old/hardcopy/Xt
12309 action intr.idx.PS.gz
12310 action intrinsics.PS.gz
12312 src_dir doc/hardcopy/xterm
12313 dst_dir doc/old/hardcopy/xterm
12315 action ctlseqs.PS.gz
12317 src_dir doc/hardcopy/xtrans
12318 dst_dir doc/old/hardcopy/xtrans
12320 action Xtrans.PS.gz
12322 src_dir doc/hardcopy/Xv
12323 dst_dir doc/old/hardcopy/Xv
12325 action video
12326 action xv-protocol-v2.PS
12328 src_dir doc/man/general
12329 dst_dir doc/old/man/general
12331 action Consortium.man
12332 action security.man
12333 action Standards.man
12334 action X.man
12335 action XOrgFoundation.man
12336 action Xprint.man
12337 action Xprint.sgml
12338 action XProjectTeam.man
12340 # FIXME: other man pages should be moved to the appropriate library
12342 src_dir doc/misc
12343 dst_dir doc/old/misc
12345 action xlogo.epsi
12347 src_dir doc/specs
12348 dst_dir doc/old/specs
12350 action specindex.html
12352 src_dir doc/specs/BDF
12353 dst_dir doc/old/specs/BDF
12355 action bdf.ms
12356 action fig1.ps
12357 action fig2.ps
12359 src_dir doc/specs/CTEXT
12360 dst_dir doc/old/specs/CTEXT
12362 action ctext.tbl.ms
12364 src_dir doc/specs/FSProtocol
12365 dst_dir doc/old/specs/FSProtocol
12367 action protocol.ms
12369 src_dir doc/specs/GL
12370 dst_dir doc/old/specs/GL
12372 action libGL.txt
12374 src_dir doc/specs/i18n
12375 dst_dir doc/old/specs/i18n
12377 action Framework.ms
12378 action LocaleDB.ms
12379 action Trans.ms
12381 src_dir doc/specs/ICCCM
12382 dst_dir doc/old/specs/ICCCM
12384 action icccm.ms
12385 action indexmacros.t
12387 src_dir doc/specs/ICE
12388 dst_dir doc/old/specs/ICE
12390 action ICElib.ms
12391 action ice.ms
12393 src_dir doc/specs/PM
12394 dst_dir doc/old/specs/PM
12396 action PM_spec
12398 src_dir doc/specs/Randr
12399 dst_dir doc/old/specs/Randr
12401 action protocol.txt
12403 src_dir doc/specs/Render
12404 dst_dir doc/old/specs/Render
12406 action library
12407 action protocol
12409 src_dir doc/specs/rstart
12410 dst_dir doc/old/specs/rstart
12412 action fix.awk
12413 action fix.nawk
12414 action fix.sed
12415 action rstart.ms
12416 action rstartd.txt
12417 action tmac.rfc
12419 src_dir doc/specs/RX
12420 dst_dir doc/old/specs/RX
12422 action RX.mif
12424 src_dir doc/specs/saver
12425 dst_dir doc/old/specs/saver
12427 action saver.ms
12429 src_dir doc/specs/SIAddresses
12430 dst_dir doc/old/specs/SIAddresses
12432 action IPv6.txt
12433 action README
12434 action hostname.txt
12435 action localuser.txt
12437 src_dir doc/specs/SM
12438 dst_dir doc/old/specs/SM
12440 action SMlib.ms
12441 action xsmp.ms
12443 src_dir doc/specs/X11
12444 dst_dir doc/old/specs/X11
12446 action AppA
12447 action AppB
12448 action AppC
12449 action AppD
12450 action CH01
12451 action CH02
12452 action CH03
12453 action CH04
12454 action CH05
12455 action CH06
12456 action CH07
12457 action CH08
12458 action CH09
12459 action CH10
12460 action CH11
12461 action CH12
12462 action CH13
12463 action CH14
12464 action CH15
12465 action CH16
12466 action abstract.t
12467 action credits.t
12468 action glossary
12469 action indexmacros.t
12470 action postproc
12472 src_dir doc/specs/Xaw
12473 dst_dir doc/old/specs/Xaw
12475 action AsciiSink
12476 action AsciiSource
12477 action AsciiText
12478 action Box
12479 action CH1
12480 action CH2
12481 action CH3.intro
12482 action CH4.intro
12483 action CH5.intro
12484 action CH6.intro
12485 action CH7.intro
12486 action Command
12487 action Dialog
12488 action Form
12489 action Grip
12490 action Label
12491 action List
12492 action MenuButton
12493 action Paned
12494 action Panner
12495 action Porthole
12496 action Repeater
12497 action Scrollbar
12498 action Simple
12499 action SimpleMenu
12500 action Sme
12501 action SmeBSB
12502 action SmeLine
12503 action StripChart
12504 action TPage_Credits
12505 action Template
12506 action Text
12507 action TextActions
12508 action TextCustom
12509 action TextFuncs
12510 action TextSink
12511 action TextSource
12512 action Toggle
12513 action Tree
12514 action Viewport
12515 action Xtk.widg.front
12516 action Xtk.widgets
12517 action block.awk
12518 action fixindex.awk
12519 action strings.mit
12520 action strings.xaw
12521 action widg.idxmac.t
12523 src_dir doc/specs/XDMCP
12524 dst_dir doc/old/specs/XDMCP
12526 action xdmcp.ms
12528 src_dir doc/specs/Xext
12529 dst_dir doc/old/specs/Xext
12531 action AppGroup.mif
12532 action DPMS.ms
12533 action DPMSLib.ms
12534 action bigreq.ms
12535 action buffer.ms
12536 action dbe.tex
12537 action dbelib.tex
12538 action evi.ms
12539 action lbx.book
12540 action lbx.mif
12541 action lbxalg.mif
12542 action mit-shm.ms
12543 action record.ms
12544 action recordlib.ms
12545 action security.tex
12546 action shape.ms
12547 action shapelib.ms
12548 action sync.tex
12549 action synclib.tex
12550 action tog-cup.ms
12551 action xc-misc.ms
12552 action xtest.ms
12553 action xtest1.info
12554 action xtest1.mm
12555 action xtestlib.ms
12557 src_dir doc/specs/xfs
12558 dst_dir doc/old/specs/xfs
12560 action FSlib.doc
12561 action design.ms
12563 src_dir doc/specs/Xi
12564 dst_dir doc/old/specs/Xi
12566 action encoding.ms
12567 action library.ms
12568 action porting.ms
12569 action protocol.ms
12571 src_dir doc/specs/XIM
12572 dst_dir doc/old/specs/XIM
12574 action xim.ms
12576 src_dir doc/specs/XKB/Proto
12577 dst_dir doc/old/specs/XKB/Proto
12579 action XKBproto.book
12580 action dflttrns.fm5
12581 action encoding.fm5
12582 action keysyms.fm5
12583 action protocol.fm5
12584 action prototoc.doc
12585 action title.fm5
12586 action types.fm5
12588 src_dir doc/specs/XKB/XKBlib
12589 dst_dir doc/old/specs/XKB/XKBlib
12591 action XKBlib.book
12592 action allchaps.fm5
12593 action allchaps.ix
12594 action allchaps.lof
12595 action allchaps.lot
12596 action allchaps.ps
12597 action allchaps.toc
12598 action fonts.fm5
12599 action title.fm5
12601 src_dir doc/specs/XLFD
12602 dst_dir doc/old/specs/XLFD
12604 action xlfd.tbl.ms
12606 src_dir doc/specs/Xmu
12607 dst_dir doc/old/specs/Xmu
12609 action Xmu.ms
12611 src_dir doc/specs/XPRINT
12612 dst_dir doc/old/specs/XPRINT
12614 action xp_library.book
12615 action xp_library.mif
12616 action xp_libraryIX.doc
12617 action xp_libraryTOC.doc
12618 action xp_library_cov.mif
12619 action xp_proto.book
12620 action xp_proto.mif
12621 action xp_protoIX.doc
12622 action xp_protoTOC.doc
12623 action xp_proto_cov.mif
12625 src_dir doc/specs/XProtocol
12626 dst_dir doc/old/specs/XProtocol
12628 action X11.encoding
12629 action X11.keysyms
12630 action X11.protocol
12631 action glossary
12632 action indexmacros.t
12633 action postproc
12635 src_dir doc/specs/Xserver
12636 dst_dir doc/old/specs/Xserver
12638 action Xprt.book
12639 action Xprt.mif
12640 action XprtIX.doc
12641 action XprtTOC.doc
12642 action Xprt_cov.mif
12643 action analysis.tex
12644 action appgroup.ms
12645 action ddx.tbl.ms
12646 action fontlib.ms
12647 action secint.tex
12649 src_dir doc/specs/Xt
12650 dst_dir doc/old/specs/Xt
12652 action CH01
12653 action CH02
12654 action CH03
12655 action CH04
12656 action CH05
12657 action CH06
12658 action CH07
12659 action CH08
12660 action CH09
12661 action CH10
12662 action CH11
12663 action CH12
12664 action CH13
12665 action Xtk.intr.front
12666 action appA
12667 action appB
12668 action appC
12669 action appD
12670 action appE
12671 action appF
12672 action intr.idxmac.t
12673 action postproc
12674 action strings.mit
12676 src_dir doc/specs/xterm
12677 dst_dir doc/old/specs/xterm
12679 action ctlseqs.ms
12681 src_dir doc/specs/xtrans
12682 dst_dir doc/old/specs/xtrans
12684 action Xtrans.mm
12686 src_dir doc/specs/Xv
12687 dst_dir doc/old/specs/Xv
12689 action xv-protocol-v2.txt
12691 src_dir doc/specs/XvMC
12692 dst_dir doc/old/specs/XvMC
12694 action XvMC_API.txt
12696 src_dir doc/util
12697 dst_dir doc/old/util
12699 action block.awk
12700 action fixindex.awk
12701 action indexmacros.t
12702 action macros.t
12704 src_dir
12705 dst_dir doc/old
12706 action registry
12709 symlink_doc() {
12710 symlink_doc_old
12711 # symlink_doc_man
12712 # ...
12716 #########
12718 # The util module
12720 #########
12722 symlink_util_xmkmf() {
12723 src_dir config/util
12724 dst_dir util/xmkmf
12726 action xmkmf.cpp
12727 action xmkmf.man
12730 symlink_util_cf() {
12731 src_dir config/cf
12732 dst_dir util/cf
12734 action Amoeba.cf
12735 action apollo.cf
12736 action bsd.cf
12737 action bsdi.cf
12738 action bsdiLib.rules
12739 action bsdiLib.tmpl
12740 action bsdLib.rules
12741 action bsdLib.tmpl
12742 action cde.rules
12743 action cde.tmpl
12744 action convex.cf
12745 action cray.cf
12746 action cross.def
12747 action cross.rules
12748 action cygwin.cf
12749 action cygwin.rules
12750 action cygwin.tmpl
12751 action darwin.cf
12752 action darwinLib.rules
12753 action darwinLib.tmpl
12754 action DGUX.cf
12755 action dmx.cf
12756 action DragonFly.cf
12757 action FreeBSD.cf
12758 action fujitsu.cf
12759 action generic.cf
12760 action gnu.cf
12761 action gnuLib.rules
12762 action gnuLib.tmpl
12763 action hp.cf
12764 action hpLib.rules
12765 action hpLib.tmpl
12766 action ibm.cf
12767 action ibmLib.rules
12768 action ibmLib.tmpl
12769 action Imake.cf
12770 action Imake.rules
12771 action Imake.tmpl
12772 action isc.cf
12773 action Library.tmpl
12774 action linux.cf
12775 action lnxdoc.rules
12776 action lnxdoc.tmpl
12777 action lnxLib.rules
12778 action lnxLib.tmpl
12779 action luna.cf
12780 action lynx.cf
12781 action mach.cf
12782 action macII.cf
12783 action mingw.cf
12784 action mingw.rules
12785 action mingw.tmpl
12786 action minix.cf
12787 action Mips.cf
12788 action Motif.rules
12789 action Motif.tmpl
12790 action moto.cf
12791 action ncr.cf
12792 action nec.cf
12793 action necLib.rules
12794 action necLib.tmpl
12795 action NetBSD.cf
12796 action noop.rules
12797 action nto.cf
12798 action nto.rules
12799 action Oki.cf
12800 action oldlib.rules
12801 action OpenBSD.cf
12802 action OpenBSDLib.rules
12803 action OpenBSDLib.tmpl
12804 action os2.cf
12805 action os2def.db
12806 action os2Lib.rules
12807 action os2Lib.tmpl
12808 action os2.rules
12809 action osf1.cf
12810 action osfLib.rules
12811 action osfLib.tmpl
12812 action pegasus.cf
12813 action QNX4.cf
12814 action QNX4.rules
12815 action README
12816 action sco5.cf
12817 action sco.cf
12818 action scoLib.rules
12819 action sequent.cf
12820 action sequentLib.rules
12821 action ServerLib.tmpl
12822 action Server.tmpl
12823 action sgi.cf
12824 action sgiLib.rules
12825 action sgiLib.tmpl
12826 action site.def
12827 action site.sample
12828 action sony.cf
12829 action sun.cf
12830 action sunLib.rules
12831 action sunLib.tmpl
12832 action sv3Lib.rules
12833 action sv3Lib.tmpl
12834 action sv4Lib.rules
12835 action sv4Lib.tmpl
12836 action svr3.cf
12837 action svr4.cf
12838 action Threads.tmpl
12839 action ultrix.cf
12840 action usl.cf
12841 action Win32.cf
12842 action Win32.rules
12843 action WinLib.tmpl
12844 action X11.rules
12845 action X11.tmpl
12846 action x386.cf
12847 action xf86.rules
12848 action xf86site.def
12849 action xf86.tmpl
12850 action xfree86.cf
12851 action xorg.cf
12852 action xorgsite.def
12853 action xorg.tmpl
12854 action xorgversion.def
12855 action xprint_host.def
12858 symlink_util_imake() {
12859 src_dir config/imake
12860 dst_dir util/imake
12862 action imake.c
12863 action imake.man
12864 action imakemdep.h
12867 symlink_util_makedepend() {
12868 src_dir config/makedepend
12869 dst_dir util/makedepend
12871 action cppsetup.c
12872 action def.h
12873 action ifparser.c
12874 action ifparser.h
12875 action include.c
12876 action main.c
12877 action mkdepend.man makedepend.man
12878 action parse.c
12879 action pr.c
12881 src_dir config/imake
12882 dst_dir util/makedepend
12884 action imakemdep.h
12887 symlink_util() {
12888 symlink_util_cf
12889 symlink_util_imake
12890 symlink_util_makedepend
12891 symlink_util_xmkmf
12892 # ...
12895 symlink_data_cursors_handhelds() {
12896 src_dir programs/xcursorgen/handhelds
12897 dst_dir data/cursors/handhelds
12899 action X_cursor.cfg
12900 action based_arrow_down.cfg
12901 action based_arrow_up.cfg
12902 action bottom_left_corner.cfg
12903 action bottom_right_corner.cfg
12904 action bottom_side.cfg
12905 action bottom_tee.cfg
12906 action center_ptr.cfg
12907 action circle.cfg
12908 action cross.cfg
12909 action dot.cfg
12910 action dotbox.cfg
12911 action double_arrow.cfg
12912 action draped_box.cfg
12913 action fleur.cfg
12914 action gumby.cfg
12915 action hand2.cfg
12916 action left_ptr.cfg
12917 action left_ptr_watch.cfg
12918 action left_side.cfg
12919 action left_tee.cfg
12920 action ll_angle.cfg
12921 action pencil.cfg
12922 action right_ptr.cfg
12923 action right_side.cfg
12924 action right_tee.cfg
12925 action sb_h_double_arrow.cfg
12926 action sb_right_arrow.cfg
12927 action sb_up_arrow.cfg
12928 action sb_v_double_arrow.cfg
12929 action shuttle.cfg
12930 action top_left_corner.cfg
12931 action top_right_corner.cfg
12932 action top_side.cfg
12933 action top_tee.cfg
12934 action watch.cfg
12935 action xterm.cfg
12938 symlink_data_cursors_redglass() {
12939 src_dir programs/xcursorgen/redglass
12940 dst_dir data/cursors/redglass
12942 action X_cursor-16.png
12943 action X_cursor-24.png
12944 action X_cursor-32.png
12945 action X_cursor-48.png
12946 action X_cursor-64.png
12947 action based_arrow_down-16.png
12948 action based_arrow_down-24.png
12949 action based_arrow_down-32.png
12950 action based_arrow_down-48.png
12951 action based_arrow_down-64.png
12952 action based_arrow_up-16.png
12953 action based_arrow_up-24.png
12954 action based_arrow_up-32.png
12955 action based_arrow_up-48.png
12956 action based_arrow_up-64.png
12957 action bottom_left_corner-16.png
12958 action bottom_left_corner-24.png
12959 action bottom_left_corner-32.png
12960 action bottom_left_corner-48.png
12961 action bottom_left_corner-64.png
12962 action bottom_right_corner-16.png
12963 action bottom_right_corner-24.png
12964 action bottom_right_corner-32.png
12965 action bottom_right_corner-48.png
12966 action bottom_right_corner-64.png
12967 action bottom_side-16.png
12968 action bottom_side-24.png
12969 action bottom_side-32.png
12970 action bottom_side-48.png
12971 action bottom_side-64.png
12972 action bottom_tee-16.png
12973 action bottom_tee-24.png
12974 action bottom_tee-32.png
12975 action bottom_tee-48.png
12976 action bottom_tee-64.png
12977 action center_ptr-16.png
12978 action center_ptr-24.png
12979 action center_ptr-32.png
12980 action center_ptr-48.png
12981 action center_ptr-64.png
12982 action circle-16.png
12983 action circle-24.png
12984 action circle-32.png
12985 action circle-48.png
12986 action circle-64.png
12987 action cross-16.png
12988 action cross-24.png
12989 action cross-32.png
12990 action cross-48.png
12991 action cross-64.png
12992 action dot-16.png
12993 action dot-24.png
12994 action dot-32.png
12995 action dot-48.png
12996 action dot-64.png
12997 action dotbox-16.png
12998 action dotbox-24.png
12999 action dotbox-32.png
13000 action dotbox-48.png
13001 action dotbox-64.png
13002 action double_arrow-16.png
13003 action double_arrow-24.png
13004 action double_arrow-32.png
13005 action double_arrow-48.png
13006 action double_arrow-64.png
13007 action draped_box-16.png
13008 action draped_box-24.png
13009 action draped_box-32.png
13010 action draped_box-48.png
13011 action draped_box-64.png
13012 action fleur-16.png
13013 action fleur-24.png
13014 action fleur-32.png
13015 action fleur-48.png
13016 action fleur-64.png
13017 action gumby-128.png
13018 action gumby-16.png
13019 action gumby-24.png
13020 action gumby-32.png
13021 action gumby-48.png
13022 action gumby-64.png
13023 action hand2-16.png
13024 action hand2-24.png
13025 action hand2-32.png
13026 action hand2-48.png
13027 action hand2-64.png
13028 action hourglass-135-16.png
13029 action hourglass-135-24.png
13030 action hourglass-135-32.png
13031 action hourglass-135-48.png
13032 action hourglass-135-64.png
13033 action hourglass-25-16.png
13034 action hourglass-25-24.png
13035 action hourglass-25-32.png
13036 action hourglass-25-48.png
13037 action hourglass-25-64.png
13038 action hourglass-45-16.png
13039 action hourglass-45-24.png
13040 action hourglass-45-32.png
13041 action hourglass-45-48.png
13042 action hourglass-45-64.png
13043 action hourglass-50-16.png
13044 action hourglass-50-24.png
13045 action hourglass-50-32.png
13046 action hourglass-50-48.png
13047 action hourglass-50-64.png
13048 action hourglass-75-16.png
13049 action hourglass-75-24.png
13050 action hourglass-75-32.png
13051 action hourglass-75-48.png
13052 action hourglass-75-64.png
13053 action hourglass-90-16.png
13054 action hourglass-90-24.png
13055 action hourglass-90-32.png
13056 action hourglass-90-48.png
13057 action hourglass-90-64.png
13058 action hourglass-empty-16.png
13059 action hourglass-empty-24.png
13060 action hourglass-empty-32.png
13061 action hourglass-empty-48.png
13062 action hourglass-empty-64.png
13063 action hourglass-full-16.png
13064 action hourglass-full-24.png
13065 action hourglass-full-32.png
13066 action hourglass-full-48.png
13067 action hourglass-full-64.png
13068 action left_ptr-16.png
13069 action left_ptr-24.png
13070 action left_ptr-32.png
13071 action left_ptr-48.png
13072 action left_ptr-64.png
13073 action left_ptr_watch-16.png
13074 action left_ptr_watch-24.png
13075 action left_ptr_watch-32.png
13076 action left_ptr_watch-48.png
13077 action left_ptr_watch-64.png
13078 action left_side-16.png
13079 action left_side-24.png
13080 action left_side-32.png
13081 action left_side-48.png
13082 action left_side-64.png
13083 action left_tee-16.png
13084 action left_tee-24.png
13085 action left_tee-32.png
13086 action left_tee-48.png
13087 action left_tee-64.png
13088 action ll_angle-16.png
13089 action ll_angle-24.png
13090 action ll_angle-32.png
13091 action ll_angle-48.png
13092 action ll_angle-64.png
13093 action pencil-16.png
13094 action pencil-24.png
13095 action pencil-32.png
13096 action pencil-48.png
13097 action pencil-64.png
13098 action right_ptr-16.png
13099 action right_ptr-24.png
13100 action right_ptr-32.png
13101 action right_ptr-48.png
13102 action right_ptr-64.png
13103 action right_side-16.png
13104 action right_side-24.png
13105 action right_side-32.png
13106 action right_side-48.png
13107 action right_side-64.png
13108 action right_tee-16.png
13109 action right_tee-24.png
13110 action right_tee-32.png
13111 action right_tee-48.png
13112 action right_tee-64.png
13113 action sb_h_double_arrow-16.png
13114 action sb_h_double_arrow-24.png
13115 action sb_h_double_arrow-32.png
13116 action sb_h_double_arrow-48.png
13117 action sb_h_double_arrow-64.png
13118 action sb_right_arrow-16.png
13119 action sb_right_arrow-24.png
13120 action sb_right_arrow-32.png
13121 action sb_right_arrow-48.png
13122 action sb_right_arrow-64.png
13123 action sb_up_arrow-16.png
13124 action sb_up_arrow-24.png
13125 action sb_up_arrow-32.png
13126 action sb_up_arrow-48.png
13127 action sb_up_arrow-64.png
13128 action sb_v_double_arrow-16.png
13129 action sb_v_double_arrow-24.png
13130 action sb_v_double_arrow-32.png
13131 action sb_v_double_arrow-48.png
13132 action sb_v_double_arrow-64.png
13133 action shuttle-16.png
13134 action shuttle-24.png
13135 action shuttle-32.png
13136 action shuttle-48.png
13137 action shuttle-64.png
13138 action top_left_corner-16.png
13139 action top_left_corner-24.png
13140 action top_left_corner-32.png
13141 action top_left_corner-48.png
13142 action top_left_corner-64.png
13143 action top_right_corner-16.png
13144 action top_right_corner-24.png
13145 action top_right_corner-32.png
13146 action top_right_corner-48.png
13147 action top_right_corner-64.png
13148 action top_side-16.png
13149 action top_side-24.png
13150 action top_side-32.png
13151 action top_side-48.png
13152 action top_side-64.png
13153 action top_tee-16.png
13154 action top_tee-24.png
13155 action top_tee-32.png
13156 action top_tee-48.png
13157 action top_tee-64.png
13158 action watch-16.png
13159 action watch-24.png
13160 action watch-32.png
13161 action watch-48.png
13162 action watch-64.png
13163 action xterm-16.png
13164 action xterm-24.png
13165 action xterm-32.png
13166 action xterm-48.png
13167 action xterm-64.png
13169 action X_cursor.cfg
13170 action based_arrow_down.cfg
13171 action based_arrow_up.cfg
13172 action bottom_left_corner.cfg
13173 action bottom_right_corner.cfg
13174 action bottom_side.cfg
13175 action bottom_tee.cfg
13176 action center_ptr.cfg
13177 action circle.cfg
13178 action cross.cfg
13179 action dot.cfg
13180 action dotbox.cfg
13181 action double_arrow.cfg
13182 action draped_box.cfg
13183 action fleur.cfg
13184 action gumby.cfg
13185 action hand2.cfg
13186 action left_ptr.cfg
13187 action left_ptr_watch.cfg
13188 action left_side.cfg
13189 action left_tee.cfg
13190 action ll_angle.cfg
13191 action pencil.cfg
13192 action right_ptr.cfg
13193 action right_side.cfg
13194 action right_tee.cfg
13195 action sb_h_double_arrow.cfg
13196 action sb_right_arrow.cfg
13197 action sb_up_arrow.cfg
13198 action sb_v_double_arrow.cfg
13199 action shuttle.cfg
13200 action top_left_corner.cfg
13201 action top_right_corner.cfg
13202 action top_side.cfg
13203 action top_tee.cfg
13204 action watch.cfg
13205 action xterm.cfg
13207 action based_arrow_down.xcf
13208 action based_arrow_up.xcf
13209 action basic_arrow.xcf
13210 action bottom_left_corner.xcf
13211 action bottom_right_corner.xcf
13212 action bottom_side.xcf
13213 action bottom_tee.xcf
13214 action center_ptr.xcf
13215 action circle.xcf
13216 action cross.xcf
13217 action dotbox.xcf
13218 action dot.xcf
13219 action double_arrow.xcf
13220 action draped_box.xcf
13221 action fleur.xcf
13222 action gumby.xcf
13223 action hand2.xcf
13224 action hourglass-135.xcf
13225 action hourglass-25.xcf
13226 action hourglass-45.xcf
13227 action hourglass-50.xcf
13228 action hourglass-75.xcf
13229 action hourglass-90.xcf
13230 action hourglass-empty.xcf
13231 action hourglass-full.xcf
13232 action hourglass-plain.xcf
13233 action left_ptr_watch.xcf
13234 action left_ptr.xcf
13235 action left_side.xcf
13236 action left_tee.xcf
13237 action ll_angle.xcf
13238 action pencil.xcf
13239 action right_ptr.xcf
13240 action right_side.xcf
13241 action right_tee.xcf
13242 action sb_h_double_arrow.xcf
13243 action sb_right_arrow.xcf
13244 action sb_up_arrow.xcf
13245 action sb_v_double_arrow.xcf
13246 action shuttle.xcf
13247 action top_left_corner.xcf
13248 action top_right_corner.xcf
13249 action top_side.xcf
13250 action top_tee.xcf
13251 action watch.xcf
13252 action X_cursor.xcf
13253 action xterm.xcf
13255 action gumby.svg
13258 symlink_data_cursors_whiteglass() {
13259 src_dir programs/xcursorgen/whiteglass
13260 dst_dir data/cursors/whiteglass
13262 action X_cursor-16.png
13263 action X_cursor-24.png
13264 action X_cursor-32.png
13265 action X_cursor-48.png
13266 action X_cursor-64.png
13267 action base_arrow_down-16.png
13268 action base_arrow_down-24.png
13269 action base_arrow_down-32.png
13270 action base_arrow_down-48.png
13271 action base_arrow_down-64.png
13272 action base_arrow_up-16.png
13273 action base_arrow_up-24.png
13274 action base_arrow_up-32.png
13275 action base_arrow_up-48.png
13276 action base_arrow_up-64.png
13277 action basic_arrow-16.png
13278 action basic_arrow-24.png
13279 action basic_arrow-32.png
13280 action basic_arrow-48.png
13281 action basic_arrow-64.png
13282 action boat-16.png
13283 action boat-24.png
13284 action boat-32.png
13285 action boat-48.png
13286 action boat-64.png
13287 action bottom_left_corner-16.png
13288 action bottom_left_corner-24.png
13289 action bottom_left_corner-32.png
13290 action bottom_left_corner-48.png
13291 action bottom_left_corner-64.png
13292 action bottom_right_corner-16.png
13293 action bottom_right_corner-24.png
13294 action bottom_right_corner-32.png
13295 action bottom_right_corner-48.png
13296 action bottom_right_corner-64.png
13297 action bottom_side-16.png
13298 action bottom_side-24.png
13299 action bottom_side-32.png
13300 action bottom_side-48.png
13301 action bottom_side-64.png
13302 action bottom_tee-16.png
13303 action bottom_tee-24.png
13304 action bottom_tee-32.png
13305 action bottom_tee-48.png
13306 action bottom_tee-64.png
13307 action center_ptr-16.png
13308 action center_ptr-24.png
13309 action center_ptr-32.png
13310 action center_ptr-48.png
13311 action center_ptr-64.png
13312 action circle-16.png
13313 action circle-24.png
13314 action circle-32.png
13315 action circle-48.png
13316 action circle-64.png
13317 action cross-16.png
13318 action cross-24.png
13319 action cross-32.png
13320 action cross-48.png
13321 action cross-64.png
13322 action dot-16.png
13323 action dot-24.png
13324 action dot-32.png
13325 action dot-48.png
13326 action dot-64.png
13327 action dot_box_mask-16.png
13328 action dot_box_mask-24.png
13329 action dot_box_mask-32.png
13330 action dot_box_mask-48.png
13331 action dot_box_mask-64.png
13332 action double_arrow-16.png
13333 action double_arrow-24.png
13334 action double_arrow-32.png
13335 action double_arrow-48.png
13336 action double_arrow-64.png
13337 action draped_box-16.png
13338 action draped_box-24.png
13339 action draped_box-32.png
13340 action draped_box-48.png
13341 action draped_box-64.png
13342 action exchange-16.png
13343 action exchange-24.png
13344 action exchange-32.png
13345 action exchange-48.png
13346 action exchange-64.png
13347 action fleur-16.png
13348 action fleur-24.png
13349 action fleur-32.png
13350 action fleur-48.png
13351 action fleur-64.png
13352 action gumby-128.png
13353 action gumby-16.png
13354 action gumby-24.png
13355 action gumby-32.png
13356 action gumby-48.png
13357 action gumby-64.png
13358 action hand1-16.png
13359 action hand1-24.png
13360 action hand1-32.png
13361 action hand1-48.png
13362 action hand1-64.png
13363 action hand2-16.png
13364 action hand2-24.png
13365 action hand2-32.png
13366 action hand2-48.png
13367 action hand2-64.png
13368 action left_ptr-16.png
13369 action left_ptr-24.png
13370 action left_ptr-32.png
13371 action left_ptr-48.png
13372 action left_ptr-64.png
13373 action left_ptr_watch-16.png
13374 action left_ptr_watch-24.png
13375 action left_ptr_watch-32.png
13376 action left_ptr_watch-48.png
13377 action left_ptr_watch-64.png
13378 action left_side-16.png
13379 action left_side-24.png
13380 action left_side-32.png
13381 action left_side-48.png
13382 action left_side-64.png
13383 action left_tee-16.png
13384 action left_tee-24.png
13385 action left_tee-32.png
13386 action left_tee-48.png
13387 action left_tee-64.png
13388 action ll_angle-16.png
13389 action ll_angle-24.png
13390 action ll_angle-32.png
13391 action ll_angle-48.png
13392 action ll_angle-64.png
13393 action lr_angle-16.png
13394 action lr_angle-24.png
13395 action lr_angle-32.png
13396 action lr_angle-48.png
13397 action lr_angle-64.png
13398 action pencil-16.png
13399 action pencil-24.png
13400 action pencil-32.png
13401 action pencil-48.png
13402 action pencil-64.png
13403 action pirate-16.png
13404 action pirate-24.png
13405 action pirate-32.png
13406 action pirate-48.png
13407 action pirate-64.png
13408 action question_arrow-16.png
13409 action question_arrow-24.png
13410 action question_arrow-32.png
13411 action question_arrow-48.png
13412 action question_arrow-64.png
13413 action right_ptr-16.png
13414 action right_ptr-24.png
13415 action right_ptr-32.png
13416 action right_ptr-48.png
13417 action right_ptr-64.png
13418 action right_side-16.png
13419 action right_side-24.png
13420 action right_side-32.png
13421 action right_side-48.png
13422 action right_side-64.png
13423 action right_tee-16.png
13424 action right_tee-24.png
13425 action right_tee-32.png
13426 action right_tee-48.png
13427 action right_tee-64.png
13428 action sailboat-16.png
13429 action sailboat-24.png
13430 action sailboat-32.png
13431 action sailboat-48.png
13432 action sailboat-64.png
13433 action sb_down_arrow-16.png
13434 action sb_down_arrow-24.png
13435 action sb_down_arrow-32.png
13436 action sb_down_arrow-48.png
13437 action sb_down_arrow-64.png
13438 action sb_h_double_arrow-16.png
13439 action sb_h_double_arrow-24.png
13440 action sb_h_double_arrow-32.png
13441 action sb_h_double_arrow-48.png
13442 action sb_h_double_arrow-64.png
13443 action sb_left_arrow-16.png
13444 action sb_left_arrow-24.png
13445 action sb_left_arrow-32.png
13446 action sb_left_arrow-48.png
13447 action sb_left_arrow-64.png
13448 action sb_right_arrow-16.png
13449 action sb_right_arrow-24.png
13450 action sb_right_arrow-32.png
13451 action sb_right_arrow-48.png
13452 action sb_right_arrow-64.png
13453 action sb_up_arrow-16.png
13454 action sb_up_arrow-24.png
13455 action sb_up_arrow-32.png
13456 action sb_up_arrow-48.png
13457 action sb_up_arrow-64.png
13458 action sb_v_double_arrow-16.png
13459 action sb_v_double_arrow-24.png
13460 action sb_v_double_arrow-32.png
13461 action sb_v_double_arrow-48.png
13462 action sb_v_double_arrow-64.png
13463 action shuttle-16.png
13464 action shuttle-24.png
13465 action shuttle-32.png
13466 action shuttle-48.png
13467 action shuttle-64.png
13468 action sizing-16.png
13469 action sizing-24.png
13470 action sizing-32.png
13471 action sizing-48.png
13472 action sizing-64.png
13473 action target-16.png
13474 action target-24.png
13475 action target-32.png
13476 action target-48.png
13477 action target-64.png
13478 action top_left_corner-16.png
13479 action top_left_corner-24.png
13480 action top_left_corner-32.png
13481 action top_left_corner-48.png
13482 action top_left_corner-64.png
13483 action top_right_corner-16.png
13484 action top_right_corner-24.png
13485 action top_right_corner-32.png
13486 action top_right_corner-48.png
13487 action top_right_corner-64.png
13488 action top_side-16.png
13489 action top_side-24.png
13490 action top_side-32.png
13491 action top_side-48.png
13492 action top_side-64.png
13493 action top_tee-16.png
13494 action top_tee-24.png
13495 action top_tee-32.png
13496 action top_tee-48.png
13497 action top_tee-64.png
13498 action trek-16.png
13499 action trek-24.png
13500 action trek-32.png
13501 action trek-48.png
13502 action trek-64.png
13503 action ul_angle-16.png
13504 action ul_angle-24.png
13505 action ul_angle-32.png
13506 action ul_angle-48.png
13507 action ul_angle-64.png
13508 action ur_angle-16.png
13509 action ur_angle-24.png
13510 action ur_angle-32.png
13511 action ur_angle-48.png
13512 action ur_angle-64.png
13513 action watch-16.png
13514 action watch-24.png
13515 action watch-32.png
13516 action watch-48.png
13517 action watch-64.png
13518 action xterm-16.png
13519 action xterm-24.png
13520 action xterm-32.png
13521 action xterm-48.png
13522 action xterm-64.png
13524 action X_cursor.cfg
13525 action base_arrow_down.cfg
13526 action base_arrow_up.cfg
13527 action basic_arrow.cfg
13528 action boat.cfg
13529 action bottom_left_corner.cfg
13530 action bottom_right_corner.cfg
13531 action bottom_side.cfg
13532 action bottom_tee.cfg
13533 action center_ptr.cfg
13534 action circle.cfg
13535 action cross.cfg
13536 action dot.cfg
13537 action dot_box_mask.cfg
13538 action double_arrow.cfg
13539 action draped_box.cfg
13540 action exchange.cfg
13541 action fleur.cfg
13542 action gumby.cfg
13543 action hand1.cfg
13544 action hand2.cfg
13545 action left_ptr.cfg
13546 action left_ptr_watch.cfg
13547 action left_side.cfg
13548 action left_tee.cfg
13549 action ll_angle.cfg
13550 action lr_angle.cfg
13551 action pencil.cfg
13552 action pirate.cfg
13553 action question_arrow.cfg
13554 action right_ptr.cfg
13555 action right_side.cfg
13556 action right_tee.cfg
13557 action sailboat.cfg
13558 action sb_down_arrow.cfg
13559 action sb_h_double_arrow.cfg
13560 action sb_left_arrow.cfg
13561 action sb_right_arrow.cfg
13562 action sb_up_arrow.cfg
13563 action sb_v_double_arrow.cfg
13564 action shuttle.cfg
13565 action sizing.cfg
13566 action target.cfg
13567 action top_left_corner.cfg
13568 action top_right_corner.cfg
13569 action top_side.cfg
13570 action top_tee.cfg
13571 action trek.cfg
13572 action ul_angle.cfg
13573 action ur_angle.cfg
13574 action watch.cfg
13575 action xterm.cfg
13577 action base_arrow_down.xcf
13578 action base_arrow_up.xcf
13579 action basic_arrow.xcf
13580 action boat.xcf
13581 action bottom_left_corner.xcf
13582 action bottom_right_corner.xcf
13583 action bottom_side.xcf
13584 action bottom_tee.xcf
13585 action center_ptr.xcf
13586 action circle.xcf
13587 action cross.xcf
13588 action dot_box_mask.xcf
13589 action dot.xcf
13590 action double_arrow.xcf
13591 action draped_box.xcf
13592 action exchange.xcf
13593 action fleur.xcf
13594 action gumby.xcf
13595 action hand1.xcf
13596 action hand2.xcf
13597 action left_ptr_watch.xcf
13598 action left_ptr.xcf
13599 action left_side.xcf
13600 action left_tee.xcf
13601 action ll_angle.xcf
13602 action lr_angle.xcf
13603 action pencil.xcf
13604 action pirate.xcf
13605 action question_arrow.xcf
13606 action right_ptr.xcf
13607 action right_side.xcf
13608 action right_tee.xcf
13609 action sailboat.xcf
13610 action sb_down_arrow.xcf
13611 action sb_h_double_arrow.xcf
13612 action sb_left_arrow.xcf
13613 action sb_right_arrow.xcf
13614 action sb_up_arrow.xcf
13615 action sb_v_double_arrow.xcf
13616 action shuttle.xcf
13617 action sizing.xcf
13618 action target.xcf
13619 action top_left_corner.xcf
13620 action top_right_corner.xcf
13621 action top_side.xcf
13622 action top_tee.xcf
13623 action trek.xcf
13624 action ul_angle.xcf
13625 action ur_angle.xcf
13626 action watch.xcf
13627 action X_cursor.xcf
13628 action xterm.xcf
13631 symlink_data_cursors() {
13632 symlink_data_cursors_handhelds
13633 symlink_data_cursors_redglass
13634 symlink_data_cursors_whiteglass
13637 symlink_data_bitmaps() {
13638 src_dir include/bitmaps
13639 dst_dir data/bitmaps
13641 action 1x1
13642 action 2x2
13643 action black
13644 action boxes
13645 action calculator
13646 action cntr_ptr
13647 action cntr_ptrmsk
13648 action cross_weave
13649 action dimple1
13650 action dimple3
13651 action dot
13652 action dropbar7
13653 action dropbar8
13654 action escherknot
13655 action flagdown
13656 action flagup
13657 action flipped_gray
13658 action gray
13659 action gray1
13660 action gray3
13661 action grid16
13662 action grid2
13663 action grid4
13664 action grid8
13665 action hlines2
13666 action hlines3
13667 action icon
13668 action keyboard16
13669 action left_ptr
13670 action left_ptrmsk
13671 action letters
13672 action light_gray
13673 action mailempty
13674 action mailemptymsk
13675 action mailfull
13676 action mailfullmsk
13677 action mensetmanus
13678 action menu10
13679 action menu12
13680 action menu16
13681 action menu6
13682 action menu8
13683 action noletters
13684 action opendot
13685 action opendotMask
13686 action plaid
13687 action right_ptr
13688 action right_ptrmsk
13689 action root_weave
13690 action scales
13691 action sipb
13692 action star
13693 action starMask
13694 action stipple
13695 action target
13696 action terminal
13697 action tie_fighter
13698 action vlines2
13699 action vlines3
13700 action weird_size
13701 action wide_weave
13702 action wingdogs
13703 action woman
13704 action xfd_icon
13705 action xlogo11
13706 action xlogo16
13707 action xlogo32
13708 action xlogo64
13709 action xsnow
13712 symlink_data_xkbdata() {
13713 src_dir programs/xkbcomp/torture
13714 dst_dir data/xkbdata/torture
13716 action indicator
13717 action indicator1
13718 action indicator2
13719 action indicator3
13720 action mod_compat
13721 action mod_compat1
13722 action mod_compat2
13723 action mod_compat3
13724 action mod_compat4
13725 action sym_interp
13726 action sym_interp1
13727 action sym_interp2
13728 action sym_interp3
13729 action sym_interp4
13730 action types
13732 src_dir programs/xkbcomp/types
13733 dst_dir data/xkbdata/types
13735 action README
13737 action basic
13738 action cancel
13739 action caps
13740 action complete
13741 action default
13742 action extra
13743 action iso9995
13744 action mousekeys
13745 action numpad
13746 action pc
13748 src_dir programs/xkbcomp/keycodes
13749 dst_dir data/xkbdata/keycodes
13751 action aliases
13752 action amiga
13753 action ataritt
13754 action fujitsu
13755 action hp
13756 action ibm
13757 action macintosh
13758 action powerpcps2
13759 action README
13760 action sony
13761 action sun
13762 action xfree86
13763 action xfree98
13765 src_dir programs/xkbcomp/keycodes/digital
13766 dst_dir data/xkbdata/keycodes/digital
13768 action lk
13769 action pc
13771 src_dir programs/xkbcomp/keycodes/sgi
13772 dst_dir data/xkbdata/keycodes/sgi
13774 action indigo
13775 action iris
13776 action indy
13778 src_dir programs/xkbcomp/rules
13779 dst_dir data/xkbdata/rules
13781 action README
13782 action sgi
13783 action sgi.lst
13784 action sun
13785 action sun.lst
13786 action xfree98
13787 action xfree98.lst
13788 action xkb.dtd
13789 action xml2lst.pl
13790 action xorg
13791 action xorg-it.lst
13792 action xorg.lst
13793 action xorg.xml
13795 src_dir programs/xkbcomp/compat
13796 dst_dir data/xkbdata/compat
13798 action accessx
13799 action basic
13800 action complete
13801 action default
13802 action iso9995
13803 action japan
13804 action keypad
13805 action ledcaps
13806 action lednum
13807 action ledscroll
13808 action misc
13809 action mousekeys
13810 action norepeat
13811 action pc
13812 action pc98
13813 action README
13814 action xfree86
13815 action xtest
13817 src_dir programs/xkbcomp/geometry
13818 dst_dir data/xkbdata/geometry
13820 action amiga
13821 action ataritt
13822 action chicony
13823 action dell
13824 action everex
13825 action fujitsu
13826 action hp
13827 action keytronic
13828 action kinesis
13829 action macintosh
13830 action microsoft
13831 action nec
13832 action northgate
13833 action pc
13834 action README
13835 action sony
13836 action sun
13837 action winbook
13839 src_dir programs/xkbcomp/geometry/sgi
13840 dst_dir data/xkbdata/geometry/sgi
13842 action indigo
13843 action indy
13844 action O2
13846 src_dir programs/xkbcomp/geometry/ibm
13847 dst_dir data/xkbdata/geometry/ibm
13849 action thinkpad
13851 src_dir programs/xkbcomp/geometry/digital
13852 dst_dir data/xkbdata/geometry/digital
13854 action lk
13855 action pc
13856 action unix
13858 src_dir programs/xkbcomp/semantics
13859 dst_dir data/xkbdata/semantics
13861 action basic
13862 action complete
13863 action default
13864 action xtest
13866 src_dir programs/xkbcomp/keymap
13867 dst_dir data/xkbdata/keymap
13869 action amiga
13870 action ataritt
13871 action macintosh
13872 action README
13873 action sony
13874 action xfree86
13875 action xfree98
13877 src_dir programs/xkbcomp/keymap/digital
13878 dst_dir data/xkbdata/keymap/digital
13880 action us
13882 src_dir programs/xkbcomp/keymap/sgi
13883 dst_dir data/xkbdata/keymap/sgi
13885 action be
13886 action bg
13887 action ca
13888 action cz
13889 action cz_qwerty
13890 action de
13891 action de_CH
13892 action dk
13893 action dvorak
13894 action en_US
13895 action es
13896 action fi
13897 action fr
13898 action fr_CH
13899 action gb
13900 action hu
13901 action it
13902 action jp
13903 action no
13904 action pl
13905 action pt
13906 action ru
13907 action se
13908 action sk
13909 action sk_qwerty
13910 action th
13911 action us
13913 src_dir programs/xkbcomp/keymap/sun
13914 dst_dir data/xkbdata/keymap/sun
13916 action de
13917 action es
13918 action fi
13919 action fr
13920 action no
13921 action pl
13922 action ru
13923 action se
13924 action uk
13925 action us
13927 src_dir programs/xkbcomp/symbols
13928 dst_dir data/xkbdata/symbols
13930 action al
13931 action altwin
13932 action am
13933 action apple
13934 action ar
13935 action az
13936 action be
13937 action ben
13938 action bg
13939 action br
13940 action bs
13941 action by
13942 action ca
13943 action ca_enhanced
13944 action capslock
13945 action compose
13946 action ctrl
13947 action cz
13948 action cz_qwerty
13949 action czsk
13950 action de
13951 action de_CH
13952 action dev
13953 action dk
13954 action dvorak
13955 action ee
13956 action el
13957 action en_US
13958 action es
13959 action eurosign
13960 action fi
13961 action fo
13962 action fr
13963 action fr_CH
13964 action gb
13965 action ge_la
13966 action ge_ru
13967 action group
13968 action guj
13969 action gur
13970 action hr
13971 action hr_US
13972 action hu
13973 action hu_qwerty
13974 action hu_US
13975 action ie
13976 action il
13977 action il_phonetic
13978 action inet
13979 action ir
13980 action is
13981 action iso9995-3
13982 action it
13983 action iu
13984 action jp
13985 action kan
13986 action keypad
13987 action la
13988 action level3
13989 action lo
13990 action lock
13991 action lt
13992 action lt_a
13993 action lt_p
13994 action lt_std
13995 action lv
13996 action mk
13997 action ml
13998 action mm
13999 action mn
14000 action mt
14001 action mt_us
14002 action nl
14003 action no
14004 action ogham
14005 action ori
14006 action pc104
14007 action pl
14008 action pl2
14009 action pt
14010 action ralt
14011 action README
14012 action ro
14013 action ro2
14014 action ru
14015 action sapmi
14016 action se
14017 action se_FI
14018 action se_NO
14019 action se_SE
14020 action si
14021 action sk
14022 action sk_qwerty
14023 action sr
14024 action srvr_ctrl
14025 action syr
14026 action syr_phonetic
14027 action tel
14028 action th
14029 action th_pat
14030 action th_tis
14031 action tj
14032 action tml
14033 action tr
14034 action tr_f
14035 action ua
14036 action us
14037 action us_group2
14038 action us_group3
14039 action us_intl
14040 action uz
14041 action vn
14042 action yu
14044 src_dir programs/xkbcomp/symbols/sun
14045 dst_dir data/xkbdata/symbols/sun
14047 action se
14048 action us
14049 action usb
14051 src_dir programs/xkbcomp/symbols/hp
14052 dst_dir data/xkbdata/symbols/hp
14054 action us
14056 src_dir programs/xkbcomp/symbols/macintosh
14057 dst_dir data/xkbdata/symbols/macintosh
14059 action de
14060 action de_CH
14061 action dk
14062 action es
14063 action fi
14064 action fr
14065 action fr_CH
14066 action gb
14067 action it
14068 action nl
14069 action no
14070 action pt
14071 action se
14072 action us
14074 src_dir programs/xkbcomp/symbols/pc
14075 dst_dir data/xkbdata/symbols/pc
14077 action al
14078 action am
14079 action ara
14080 action az
14081 action ba
14082 action bd
14083 action be
14084 action bg
14085 action br
14086 action bt
14087 action by
14088 action ca
14089 action ch
14090 action cz
14091 action de
14092 action dk
14093 action ee
14094 action es
14095 action fi
14096 action fo
14097 action fr
14098 action gb
14099 action ge
14100 action gr
14101 action hr
14102 action hu
14103 action ie
14104 action il
14105 action in
14106 action ir
14107 action is
14108 action it
14109 action jp
14110 action kg
14111 action la
14112 action latam
14113 action latin
14114 action lk
14115 action lt
14116 action lv
14117 action mao
14118 action mkd
14119 action mm
14120 action mn
14121 action mt
14122 action nl
14123 action no
14124 action pc
14125 action pk
14126 action pl
14127 action pt
14128 action ro
14129 action ru
14130 action se
14131 action si
14132 action sk
14133 action srp
14134 action sy
14135 action th
14136 action tj
14137 action tr
14138 action ua
14139 action us
14140 action uz
14141 action vn
14143 src_dir programs/xkbcomp/symbols/sgi
14144 dst_dir data/xkbdata/symbols/sgi
14146 action jp
14148 src_dir programs/xkbcomp/symbols/xfree68
14149 dst_dir data/xkbdata/symbols/xfree68
14151 action amiga
14152 action ataritt
14154 src_dir programs/xkbcomp/symbols/fujitsu
14155 dst_dir data/xkbdata/symbols/fujitsu
14157 action jp
14158 action us
14160 src_dir programs/xkbcomp/symbols/digital
14161 dst_dir data/xkbdata/symbols/digital
14163 action lk
14164 action pc
14165 action us
14166 action vt
14168 src_dir programs/xkbcomp/symbols/sony
14169 dst_dir data/xkbdata/symbols/sony
14171 action us
14173 src_dir programs/xkbcomp/symbols/nec
14174 dst_dir data/xkbdata/symbols/nec
14176 action jp
14179 symlink_data() {
14180 symlink_data_cursors
14181 symlink_data_bitmaps
14182 symlink_data_xkbdata
14186 ########
14188 # List of files that are deliberately not symlinked into
14189 # the modular tree
14191 #########
14193 # exclude $1 and everything in it
14194 exclude_directory()
14196 for dir in `find $SRC_DIR/$1 -type d` ; do
14197 dir=`echo $dir | sed s,$SRC_DIR,, | sed s,^/,,`
14198 src_dir $dir
14200 # Some versions of find do not support -maxdepth
14201 # for file in `find $SRC_DIR/$dir -maxdepth 1 -type f `; do
14202 # action `basename $file`
14203 # done
14204 for file in $SRC_DIR/$dir/*; do
14205 if [ -f $file ]; then
14206 action `basename $file`
14208 done
14209 done
14212 exclude_glob()
14214 for file in `find $SRC_DIR -name "$1"` ; do
14215 src_dir `dirname $file | sed s,$SRC_DIR,, | sed s,^/,,`
14216 action `basename $file`
14217 done
14220 exclude_xft_buildsystem()
14222 src_dir lib/Xft
14224 action aclocal.m4
14225 action autogen.sh
14226 action config.guess
14227 action config.h.in
14228 action config.sub
14229 action configure
14230 action configure.ac
14231 action depcomp
14232 action install-sh
14233 action ltmain.sh
14234 action Makefile.am
14235 action Makefile.in
14236 action missing
14237 action mkinstalldirs
14238 action Xft-def.cpp
14240 src_dir lib/Xft/config
14241 action config-subst
14244 exclude_render_buildsystem()
14246 src_dir lib/Xrender
14248 action AUTHORS
14249 action autogen.sh
14250 action ChangeLog
14251 action config.h
14252 action configure.ac
14253 action COPYING
14254 action INSTALL
14255 action NEWS
14256 action README
14257 action Xrender-def.cpp
14258 action xrender.pc.in
14261 exclude_composite_buildsystem()
14263 src_dir lib/Xcomposite
14265 action AUTHORS
14266 action autogen.sh
14267 action ChangeLog
14268 action configure.ac
14269 action COPYING
14270 action .cvsignore
14271 action INSTALL
14272 action Makefile.am
14273 action NEWS
14274 action README
14275 action xcomposite.pc.in
14278 exclude_cursor_buildsystem()
14280 src_dir lib/Xcursor
14282 action AUTHORS
14283 action autogen.sh
14284 action ChangeLog
14285 action config.h
14286 action config-subst
14287 action configure.ac
14288 action COPYING
14289 action INSTALL
14290 action Makefile.am
14291 action NEWS
14292 action README
14293 action xcursor-config.in
14294 action Xcursor-def.cpp
14295 action xcursor.pc.in
14298 exclude_damage_buildsystem()
14300 src_dir lib/Xdamage
14302 action AUTHORS
14303 action autogen.sh
14304 action ChangeLog
14305 action configure.ac
14306 action COPYING
14307 action .cvsignore
14308 action INSTALL
14309 action Makefile.am
14310 action NEWS
14311 action README
14312 action xdamage.pc.in
14315 exclude_fixes_buildsystem()
14317 src_dir lib/Xfixes
14319 action AUTHORS
14320 action autogen.sh
14321 action ChangeLog
14322 action configure.ac
14323 action COPYING
14324 action .cvsignore
14325 action INSTALL
14326 action Makefile.am
14327 action NEWS
14328 action README
14329 action Xfixes-def.cpp
14330 action xfixes.pc.in
14333 exclude_gl_apple()
14335 # These files should be part of Mesa,
14336 # according to Adam
14337 src_dir lib/GL/apple
14339 action appledri.c
14340 action appledri.h
14341 action appledristr.h
14342 action build-dispatch
14343 action dri_dispatch.c
14344 action dri_dispatch.defs
14345 action dri_dispatch.h
14346 action dri_driver.c
14347 action dri_driver.h
14348 action dri_glx.c
14349 action dri_glx.h
14352 symlink_non_linked_files()
14354 # SGI is upstream for these files. Not sure what to about them, but
14355 # one place they absolutely do _not_ belong, is in the X tree.
14356 exclude_directory doc/man/GL
14357 exclude_directory doc/man/GLU
14359 # This stuff is used to build binary distributions of the monolith.
14360 # It would have to be redone to do something similar for the modular.
14361 exclude_directory programs/Xserver/hw/xfree86/etc/bindist
14363 # DPS is not part of the modular tree
14364 exclude_directory lib/dps
14365 exclude_directory programs/dpsexec
14366 exclude_directory programs/dpsinfo
14367 exclude_directory programs/texteroids
14368 exclude_directory include/DPS
14369 exclude_directory config/pswrap
14370 exclude_directory lib/dpstk
14371 exclude_directory lib/psres
14373 # Speedo font support is deprecated in 7.0
14374 exclude_directory lib/font/Speedo
14376 # Exclude unmaintained sun and sunLynx
14377 exclude_directory programs/Xserver/hw/sun
14378 exclude_directory programs/Xserver/hw/sunLynx
14380 # Exclude deprecated wacom(4)
14381 exclude_directory programs/Xserver/hw/xfree86/input/wacom
14383 # Exclude old and known-broken sample(4)
14384 exclude_directory programs/Xserver/hw/xfree86/input/sample
14386 # Exclude xterm
14387 exclude_directory programs/xterm
14389 # Nobody should really care about Xft1 anymore
14390 exclude_directory lib/Xft1
14392 # these are included with Mesa
14393 exclude_directory programs/glxgears
14394 exclude_directory programs/glxinfo
14395 exclude_directory lib/GLw
14396 exclude_directory include/GL
14398 # exclude config/util - I don't think it's relevant for the modular tree
14399 exclude_directory config/util
14401 # These all have their own build systems in the modular tree
14402 exclude_xft_buildsystem
14403 exclude_render_buildsystem
14404 exclude_composite_buildsystem
14405 exclude_cursor_buildsystem
14406 exclude_damage_buildsystem
14407 exclude_fixes_buildsystem
14409 # By definition the monolith is not upstream for this
14410 exclude_directory extras
14412 # Exclude memleak (verified by keithp)
14413 exclude_directory util/memleak
14415 # Use upstream packaging of expat
14416 exclude_directory lib/expat
14418 # Exclude fontconfig
14419 exclude_directory programs/fc-cache
14420 exclude_directory programs/fc-list
14421 exclude_directory lib/fontconfig
14423 # Stuff that may be resurrected if someone complains enough
14424 exclude_directory programs/Xserver/hw/xfree86/etc
14426 # Exclude empty directory that just has README saying kdrive doesn't
14427 # live here any more
14428 exclude_directory programs/Xserver/hw/kdrive
14430 # Empty stubs for projects not yet checked into CVS
14431 exclude_directory programs/Xserver/Xprint/pdf
14432 exclude_directory programs/Xserver/Xprint/svg
14433 exclude_directory programs/Xserver/Xprint/windows
14435 # Exclude monolithic tree SDK
14436 exclude_directory programs/Xserver/hw/xfree86/sdk
14438 # Exclude platforms that are no longer maintained
14439 src_dir programs/Xserver/hw/xfree86/etc
14440 action install.sv3
14441 action mmapSVR3.shar
14442 action svr3_patch
14443 action svr3_rem_pch
14444 action svr4_patch
14445 action svr4_rem_pch
14447 # Upgrades stone age (pre-1994) config files to bronze age (1994)
14448 # config files. Not built in the monolith since XFree86 3.9 series
14449 # in 1998 and XFree86 has even deleted from their monolith.
14450 exclude_directory programs/Xserver/hw/xfree86/reconfig
14452 # These fonts are not needed because they are generated
14453 exclude_glob "*-L1.bdf"
14454 exclude_glob "*-JISX0201.bdf"
14456 # These files are not needed
14457 exclude_glob "Imakefile*"
14458 exclude_glob "jump_*"
14459 exclude_glob ".cvsignore"
14461 exclude_gl_apple
14463 # These files are only used by OS/2 and can be added back if a
14464 # maintainer steps up
14465 exclude_glob "*-def.cpp"
14466 src_dir programs/Xserver
14467 action XFree86.def
14468 action Xnest.def
14469 action Xorg.def
14470 action Xvfb.def
14471 src_dir programs/Xserver/hw/xfree86/xf86config
14472 action xf86config.cmd
14473 src_dir programs/Xserver/hw/xfree86/loader
14474 action os2funcs.c
14476 # This file is replaced by httptransport.c in the modular tree
14477 src_dir programs/xrx/helper
14478 action httptran.c
14480 # Some toplevel monolithic stuff
14481 src_dir
14482 action BUILD # description of the monolithic build system
14483 action ChangeLog # irrelevant to modular
14484 action Makefile # Only useful for monolith
14486 # These files generate the list of drivers (input and video) for the
14487 # monolithic build system and are not needed for the modular build
14488 src_dir programs/Xserver/hw/xfree86/drivers
14489 action confdrv.sh
14490 src_dir programs/Xserver/hw/xfree86/input
14491 action confdrv.sh
14493 # expat is external now
14494 src_dir lib/expat
14495 action expat_config.h
14497 # This file is replaced by a Makefile.am
14498 src_dir programs/Xserver/hw/xfree86/drivers/mga/util
14499 action Makefile
14501 # The via_drm.h file belongs in libdrm
14502 src_dir programs/Xserver/hw/xfree86/drivers/via
14503 action via_drm.h
14505 # This file is only useful in the monolith
14506 src_dir programs/Xserver/hw/dmx/doc
14507 action Makefile.linux
14509 # No longer needed as dlopen modules are default
14510 src_dir programs/Xserver/hw/xfree86/os-support/sunos
14511 action find_deps.pl
14513 # Obsolete docs
14514 src_dir programs/Xserver/hw/xfree86/doc/sgml
14515 action BUILD.sgml # - specific to the monolith
14516 # build system
14517 action Status.sgml # - obsolete
14518 action README.build-docs # - specific to monolith build
14520 src_dir programs/Xserver/hw/xfree86
14521 action XF86Conf.man
14522 action XF98Conf.cpp
14524 # These docs are only useful for monolith
14525 src_dir
14526 action LABEL
14527 action README
14528 action README.crypto
14529 action RELNOTES
14531 # This file is not used by in modular tree
14532 src_dir
14533 action xf86Date.h
14535 # This should be distributed to various font components
14536 src_dir fonts/bdf/misc
14537 action README
14539 # Using upstream version from Gnome
14540 src_dir fonts/scaled/TTF
14541 action COPYRIGHT.Vera
14543 # This file is not used by makedepend in the monolith
14544 src_dir config/makedepend
14545 action cpp.ed
14547 # This file is not used in the monolith
14548 src_dir config/docbook
14549 action docbookconv.sh
14551 # The following files are simple test files that should not be
14552 # included with the library
14553 src_dir lib/Xrandr
14554 action test.c
14555 src_dir lib/font/Type1
14556 action minimain.c
14557 action t1test.c
14559 # Don't symlink XFree86 xpm logos or sequent .Xdefaults from xdm
14560 src_dir programs/xdm/config
14561 action XFree86.xpm
14562 action XFree86bw.xpm
14563 action system.Xdefaults.sequent
14564 action system.xsession.sequent
14566 # Dead source file from cfb, never built in monolith
14567 src_dir programs/Xserver/cfb
14568 action stipple68k.s
14570 # Generated html, so don't symlink
14571 src_dir programs/xphelloworld/xphelloworld
14572 action xphelloworld.html
14574 src_dir programs/xphelloworld/xpsimplehelloworld
14575 action xpsimplehelloworld.html
14577 src_dir programs/xphelloworld/xpxmhelloworld
14578 action xpxmhelloworld.html
14580 src_dir programs/xphelloworld/xpxthelloworld
14581 action xpxthelloworld.html
14583 src_dir programs/xplsprinters
14584 action xplsprinters.html
14586 src_dir programs/xprehashprinterlist
14587 action xprehashprinterlist.html
14589 src_dir doc/man/general
14590 action Xprint.html
14592 # Unused symbol export control thing. No clue how this ever worked.
14593 exclude_glob "*.elist"
14595 # Highly non-free reimplementation of snprintf. If your libc is so
14596 # crippled as to need this, steal it from BSD's libc instead, thanks.
14597 src_dir lib/misc
14598 action snprintf.c
14599 action snprintf.h
14601 # A do-nothing header in Xevie. Take a drink.
14602 src_dir lib/Xevie
14603 action xevieplaceholder.h
14605 # Script to generate the list of widgets in the Xaw set. Hopefully
14606 # no one is adding new ones anymore...
14607 src_dir lib/Xaw
14608 action genlist.sh
14610 # Workarounds for long forgotten bugs in SunOS 4.1 & Solaris 2.3
14611 src_dir util/misc
14612 action dlsym.c
14613 action thr_stubs.c
14614 action rt.stdarg.h
14616 # Generated README files for the drivers
14617 src_dir programs/Xserver/hw/xfree86/doc
14618 action README.DECtga
14619 action README.I128
14620 action README.SiS
14621 action README.apm
14622 action README.chips
14623 action README.cyrix
14624 action README.i740
14625 action README.i810
14626 action README.mouse
14627 action README.newport
14628 action README.rendition
14629 action README.s3virge
14630 action README.ati
14631 action README.r128
14633 src_dir programs/Xserver/hw/xfree86/drivers/i740
14634 action README
14636 # We use the compiled version of ucs2any, so the perl version is no
14637 # longer needed or used
14638 src_dir fonts/util
14639 action ucs2any.pl
14641 # The .cf and .rules files are used only in the local xedit Imakefiles
14642 src_dir programs/xedit/lisp
14643 action lisp.cf
14644 action lisp.rules
14646 # The following file is duplicates the copyright that is already
14647 # present in the source files
14648 src_dir programs/rstart
14649 action c
14651 # These files are copies of FreeType source code
14652 src_dir lib/font/FreeType/module
14653 action ft2build.h
14654 action ftheader.h
14655 action ftmodule.h
14656 action ftoption.h
14657 action ftstdlib.h
14658 action fttypes.h
14659 action myftstdlib.h
14661 # This file is an older version of the README file already linked into
14662 # the neomagic driver
14663 src_dir programs/Xserver/hw/xfree86/doc
14664 action README.neomagic
14666 # This is just random libc implementations
14667 src_dir lib/Xbsd
14668 action Berklib.c
14670 # A file with no entries - and we already have an empty file
14671 # in the modular tree
14672 src_dir nls/Compose
14673 action zh_CN
14675 # These files are all generated from the sgml files in doc/old/sgml
14676 # When/if those files are converted to xml, we can maybe do something
14677 # with the generated results
14678 src_dir programs/Xserver/hw/xfree86/doc
14680 action README.Darwin
14681 action README.dps
14682 action OS2.Notes
14683 action LICENSE
14684 action Install
14685 action README.LynxOS
14686 action README.NetBSD
14687 action README.OpenBSD
14688 action README.SCO
14689 action README.Solaris
14690 action Versions
14691 action README.XKB-Config
14692 action README.XKB-Enhancing
14693 action BUILD
14694 action README
14695 action RELNOTES
14697 # Not really useful given bugzilla
14698 action BugReport.cpp
14700 # like anybody cared
14701 action CODING
14703 # Pc98 doc - FIXME maybe this is actually useful
14704 action VideoBoard98
14706 # Generated from sgml/DESIGN.sgml
14707 action DESIGN
14709 src_dir programs/Xserver/hw/xfree86/doc/Japanese
14710 action README98
14711 action README98.1st
14713 # These files are not even used by the monolith
14714 src_dir lib/X11/xlibi18n/im/ximcp
14715 action Ximcp.mapfile
14716 src_dir lib/X11/xlibi18n/lc/def
14717 action Xlc.mapfile
14718 src_dir lib/X11/xlibi18n/lc/gen
14719 action Xlc.mapfile
14720 src_dir lib/X11/xlibi18n/om/generic
14721 action Xom.mapfile
14723 # This file is part of the monolithic build system
14724 src_dir lib/X11/xlibi18n
14725 action Xi18nLib.conf
14727 # These files are needed for cross compilation and OS/2
14728 src_dir config/imake
14729 action ccimake.c
14730 action imakesvc.cmd
14731 action Makefile.ini
14734 print_source()
14736 echo $1 >> symlink-processed-files
14739 generate_monolith_files()
14741 for cvsdir in `find $SRC_DIR -name "CVS"` ; do
14742 for file in `cat $cvsdir/Entries | grep -v "^D" | cut -d"/" -f2 `; do
14743 echo `echo $cvsdir | sed s/CVS//`$file >> all-monolith-files
14744 done
14745 done
14748 list_missing()
14750 rm -f symlink-processed-files
14751 rm -f symlink-processed-files.sorted
14752 rm -f all-monolith-files
14753 rm -f all-monolith-files.sorted
14755 # make sure we are not excluding anything that doesn't exist
14756 ACTION=check_exist EXPLANATION="Checking that excluded files exist" run_module non_linked_files
14758 # generate a list of all files that this script is going to link
14759 run print_source "Generating list of linked files"
14761 # generate a list of all files that this script is explicityly *not* going to link
14762 ACTION=print_source EXPLANATION="Generating list of non-linked files" run_module non_linked_files
14764 # generate a list of all files in the xc directory, except those that
14765 # we already know we don't care about
14767 echo -n Generating list of all monolithic files ...\
14769 generate_monolith_files
14771 echo DONE
14773 echo -n Generating list of missing files in file \"missing-files\" ...\
14775 sort symlink-processed-files > symlink-processed-files.sorted
14776 sort all-monolith-files > all-monolith-files.sorted
14778 diff -u symlink-processed-files.sorted all-monolith-files.sorted | grep -v "^-" | grep "^\+" | cut -d "+" -f2 > missing-files
14780 echo DONE
14784 #########
14786 # Helper functions
14788 #########
14790 error() {
14791 echo
14792 echo \ \ \ error:\ \ \ $1
14793 exit
14796 # printing out what's going on
14797 run_module() {
14798 # $1 module
14799 # $2 explanation
14800 echo -n $EXPLANATION for $1 module ...\
14801 symlink_$1
14802 echo DONE
14805 run() {
14806 # $1 what to do
14807 # $2 explanation
14809 ACTION=$1 EXPLANATION=$2 run_module proto
14810 ACTION=$1 EXPLANATION=$2 run_module lib
14811 ACTION=$1 EXPLANATION=$2 run_module app
14812 ACTION=$1 EXPLANATION=$2 run_module xserver
14813 ACTION=$1 EXPLANATION=$2 run_module driver
14814 ACTION=$1 EXPLANATION=$2 run_module font
14815 ACTION=$1 EXPLANATION=$2 run_module doc
14816 ACTION=$1 EXPLANATION=$2 run_module util
14817 ACTION=$1 EXPLANATION=$2 run_module data
14820 src_dir() {
14821 if [ x$1 = x ]; then
14822 REAL_SRC_DIR=$SRC_DIR
14823 else
14824 REAL_SRC_DIR=$SRC_DIR/$1
14826 if [ ! -d $REAL_SRC_DIR ] ; then
14827 error "Source directory $REAL_SRC_DIR does not exist"
14831 dst_dir() {
14832 REAL_DST_DIR=$DST_DIR/$1
14833 if [ ! -d $REAL_DST_DIR ] ; then
14834 mkdir -p $REAL_DST_DIR
14838 action() {
14839 if [ -z $2 ] ; then
14840 $ACTION $REAL_SRC_DIR/$1 $REAL_DST_DIR/$1
14841 else
14842 $ACTION $REAL_SRC_DIR/$1 $REAL_DST_DIR/$2
14846 usage() {
14847 echo
14848 echo Usage:
14849 echo \ symlink.sh [ -m ] src-dir dst-dir
14850 echo
14851 echo \ src-dir: the xc directory of the monolithic source tree
14852 echo \ dst-dir: the modular source tree containing proto, app, lib, ...
14853 echo
14854 echo \ -m: Instead of symlinking the files, list the files from the source
14855 echo \ \ \ \ \ \ directory that are not processed by this script
14858 # Check commandline args
14859 check_args() {
14860 MISSING_FILES=no
14861 if [ x$1 = "x-m" ] ; then
14862 MISSING_FILES=yes
14863 shift
14866 if [ -z $1 ] ; then
14867 echo Missing source dir
14868 usage
14869 exit 1
14872 if [ -z $2 ] ; then
14873 echo Missing destination dir
14874 usage
14875 exit 1
14878 if [ ! -d $1 ] ; then
14879 echo $1 is not a dir
14880 usage
14881 exit 1
14884 if [ ! -d $2 ] ; then
14885 echo $2 is not a dir
14886 usage
14887 exit 1
14890 if [ $1 = $2 ] ; then
14891 echo source and destination can\'t be the same
14892 usage
14893 exit 1
14896 D=`dirname "$relpath"`
14897 B=`basename "$relpath"`
14898 abspath="`cd \"$D\" 2>/dev/null && pwd || echo \"$D\"`/$B"
14900 SRC_DIR=`( cd $1 ; pwd )`
14901 DST_DIR=`( cd $2 ; pwd )`
14904 check_args $1 $2 $3
14906 if [ $MISSING_FILES = yes ] ; then
14907 list_missing
14908 else
14909 run_symlink