Add app/xinput.
[xorg-util-modular.git] / symlink.sh
blob8ad2bced07cd0e65ac013865d56f21af78ad4335
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 this file is configurable in the modular tree
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
360 src_dir extras/Mesa/include/GL/internal
362 action dri_interface.h
365 symlink_proto_xf86misc() {
366 src_dir include/extensions
367 dst_dir proto/XF86Misc
369 action xf86misc.h
370 action xf86mscstr.h
373 symlink_proto_xf86rush() {
374 src_dir include/extensions
375 dst_dir proto/XF86Rush
377 action xf86rush.h
378 action xf86rushstr.h
381 symlink_proto_xf86vidmode() {
382 src_dir include/extensions
383 dst_dir proto/XF86VidMode
385 action xf86vmode.h
386 action xf86vmstr.h
389 symlink_proto_fonts() {
390 src_dir include/fonts
391 dst_dir proto/Fonts
393 action font.h
394 action fontproto.h
395 action fontstruct.h
396 action FS.h # not used in server
397 action fsmasks.h
398 action FSproto.h # not used in server
401 symlink_proto_gl() {
402 src_dir include/GL
403 dst_dir proto/GL
405 action glxint.h
406 action glxmd.h
407 action glxproto.h
408 action glxtokens.h
410 src_dir extras/Mesa/include/GL/internal
412 action glcore.h
415 symlink_proto() {
416 # Core protocol
417 symlink_proto_core
419 # Extension protocols
420 symlink_proto_applewm
421 symlink_proto_bigreq
422 symlink_proto_composite
423 symlink_proto_damage
424 symlink_proto_dmx
425 symlink_proto_evie
426 symlink_proto_fixes
427 symlink_proto_fontcache
428 symlink_proto_input
429 symlink_proto_kb
430 symlink_proto_pm
431 symlink_proto_print
432 symlink_proto_randr
433 symlink_proto_record
434 symlink_proto_render
435 symlink_proto_resource
436 symlink_proto_saver
437 symlink_proto_trap
438 symlink_proto_video
439 symlink_proto_windowswm
440 symlink_proto_xcmisc
441 symlink_proto_xext
442 symlink_proto_xf86bigfont
443 symlink_proto_xf86dga
444 symlink_proto_xf86dri
445 symlink_proto_xf86misc
446 symlink_proto_xf86rush
447 symlink_proto_xf86vidmode
448 symlink_proto_xinerama
450 # Font protocols
451 symlink_proto_fonts
453 # GL protocols
454 symlink_proto_gl
457 #########
459 # The lib module
461 #########
463 symlink_lib_applewm() {
464 src_dir lib/apple
465 dst_dir lib/AppleWM/src
467 action applewm.c
469 dst_dir lib/AppleWM/man
471 action AppleWM.man AppleWM.3
474 symlink_lib_dmx() {
475 src_dir lib/dmx
476 dst_dir lib/dmx/src
478 action dmx.c
480 src_dir doc/man/DMX
481 dst_dir lib/dmx/man
483 action DMXAddInput.man
484 action DMXAddScreen.man
485 action DMXChangeDesktopAttributes.man
486 action DMXChangeScreensAttributes.man
487 action DMXForceWindowCreation.man
488 action DMXGetDesktopAttributes.man
489 action DMXGetInputAttributes.man
490 action DMXGetInputCount.man
491 action DMXGetScreenAttributes.man
492 action DMXGetScreenCount.man
493 action DMXGetWindowAttributes.man
494 action DMX.man
495 action DMXQueryExtension.man
496 action DMXQueryVersion.man
497 action DMXRemoveInput.man
498 action DMXRemoveScreen.man
499 action DMXSync.man
502 symlink_lib_composite() {
503 src_dir lib/Xcomposite
504 dst_dir lib/Xcomposite
506 dst_dir lib/Xcomposite/include/X11/extensions
508 action Xcomposite.h
510 dst_dir lib/Xcomposite/src
512 action xcompositeint.h
513 action Xcomposite.c
516 symlink_lib_damage() {
517 src_dir lib/Xdamage
518 dst_dir lib/Xdamage
520 dst_dir lib/Xdamage/include/X11/extensions
522 action Xdamage.h
524 dst_dir lib/Xdamage/src
526 action xdamageint.h
527 action Xdamage.c
530 symlink_lib_evie() {
531 src_dir include/extensions
532 dst_dir lib/Xevie/include/X11/extensions
534 action Xevie.h
536 src_dir lib/Xevie
537 dst_dir lib/Xevie
539 action AUTHORS
540 action xevie.pc.in
542 dst_dir lib/Xevie/src
544 action Xevie.c
546 dst_dir lib/Xevie/man
548 action Xevie.man
551 symlink_lib_fixes() {
552 src_dir lib/Xfixes
553 dst_dir lib/Xfixes
555 dst_dir lib/Xfixes/src
557 action Cursor.c
558 action Region.c
559 action SaveSet.c
560 action Selection.c
561 action Xfixes.c
562 action Xfixesint.h
564 dst_dir lib/Xfixes/include/X11/extensions
566 action Xfixes.h
568 dst_dir lib/Xfixes/man
570 action Xfixes.man
573 symlink_lib_xau() {
574 src_dir lib/Xau
575 dst_dir lib/Xau
577 action README
579 action AuDispose.c
580 action AuFileName.c
581 action AuGetAddr.c
582 action AuGetBest.c
583 action AuLock.c
584 action AuRead.c
585 action Autest.c
586 action AuUnlock.c
587 action AuWrite.c
588 action k5encode.c
590 dst_dir lib/Xau/include/X11
592 action Xauth.h
594 src_dir doc/man/Xau
595 dst_dir lib/Xau
597 action Xau.man
600 symlink_lib_xtrans() {
601 src_dir lib/xtrans
602 dst_dir lib/xtrans
604 action transport.c
605 action Xtrans.c
606 action Xtransdnet.c
607 action Xtrans.h
608 action Xtransint.h
609 action Xtranslcl.c
610 action Xtransos2.c
611 action Xtranssock.c
612 action Xtranstli.c
613 action Xtransutil.c
616 symlink_lib_xdmcp() {
617 src_dir lib/Xdmcp
618 dst_dir lib/Xdmcp
620 action Wrap.h
622 action A8Eq.c
623 action AA16.c
624 action AA32.c
625 action AA8.c
626 action Alloc.c
627 action AofA8.c
628 action CA8.c
629 action CmpKey.c
630 action DA16.c
631 action DA32.c
632 action DA8.c
633 action DAofA8.c
634 action DecKey.c
635 action Fill.c
636 action Flush.c
637 action GenKey.c
638 action IncKey.c
639 action RA16.c
640 action RA32.c
641 action RA8.c
642 action RaA16.c
643 action RaA32.c
644 action RaA8.c
645 action RaAoA8.c
646 action RAofA8.c
647 action RC16.c
648 action RC32.c
649 action RC8.c
650 action RHead.c
651 action RR.c
652 action Unwrap.c
653 action WA16.c
654 action WA32.c
655 action WA8.c
656 action WAofA8.c
657 action WC16.c
658 action WC32.c
659 action WC8.c
660 action Whead.c
661 action Wrap.c
662 action Wraphelp.c
664 action Wraphelp.README.crypto
666 dst_dir lib/Xdmcp/include/X11
668 action Xdmcp.h
671 symlink_lib_xext() {
672 src_dir lib/Xext
673 dst_dir lib/Xext/src
675 action DPMS.c
676 action extutil.c
677 action globals.c
678 action MITMisc.c
679 action XAppgroup.c
680 action Xcup.c
681 action Xdbe.c
682 action XEVI.c
683 action XLbx.c
684 action XMultibuf.c
685 action XSecurity.c
686 action XShape.c
687 action XShm.c
688 action XSync.c
689 action XTestExt1.c
691 src_dir doc/man/Xext
692 dst_dir lib/Xext/man
694 action DPMSCapable.man
695 action DPMSDisable.man
696 action DPMSEnable.man
697 action DPMSForceLevel.man
698 action DPMSGetTimeouts.man
699 action DPMSGetVersion.man
700 action DPMSInfo.man
701 action DPMSQueryExtension.man
702 action DPMSSetTimeouts.man
703 action XcupGetReservedColormapEntries.man
704 action XcupQueryVersion.man
705 action XcupStoreColors.man
706 action Xevi.man
707 action Xmbuf.man
708 action XShape.man
710 src_dir doc/man/Xext/dbe
712 action DBE.man
713 action XdbeAllo.man XdbeAllocateBackBufferName.man
714 action XdbeBegi.man XdbeBeginIdiom.man
715 action XdbeEndI.man XdbeEndIdiom.man
716 action XdbeDeal.man XdbeDeallocateBackBufferName.man
717 action XdbeFree.man XdbeFreeVisualInfo.man
718 action XdbeQuer.man XdbeQueryExtension.man
719 action XdbeSwap.man XdbeSwapBuffers.man
720 action XdbeGetB.man XdbeGetBackBufferAttributes.man
721 action XdbeGetV.man XdbeGetVisualInfo.man
724 symlink_lib_x11() {
725 src_dir lib/X11
727 # public .h files
728 dst_dir lib/X11/include/X11
730 action cursorfont.h
731 action Xregion.h
732 action Xcms.h
733 action XKBlib.h
734 action Xlib.h
735 action Xlibint.h
736 action Xlocale.h
737 action Xresource.h
738 action Xutil.h
739 action ImUtil.h
741 dst_dir lib/X11/src
743 # internal .h files
744 action Cmap.h
745 action Cr.h
746 action Key.h
747 action locking.h
748 action poly.h
749 action Xatomtype.h
750 action Xintatom.h
751 action Xintconn.h
752 action XomGeneric.h
753 action Xresinternal.h
754 action XrmI.h
756 # Misc
758 action XKeysymDB
759 action XErrorDB
761 # source .c files
763 action AllCells.c
764 action AllowEv.c
765 action AllPlanes.c
766 action AutoRep.c
767 action Backgnd.c
768 action BdrWidth.c
769 action Bell.c
770 action Border.c
771 action ChAccCon.c
772 action ChActPGb.c
773 action ChClMode.c
774 action ChCmap.c
775 action ChGC.c
776 action ChKeyCon.c
777 action ChkIfEv.c
778 action ChkMaskEv.c
779 action ChkTypEv.c
780 action ChkTypWEv.c
781 action ChkWinEv.c
782 action ChPntCon.c
783 action ChProp.c
784 action ChSaveSet.c
785 action ChWAttrs.c
786 action ChWindow.c
787 action CirWin.c
788 action CirWinDn.c
789 action CirWinUp.c
790 action ClDisplay.c
791 action ClearArea.c
792 action Clear.c
793 action ConfWind.c
794 action ConnDis.c
795 action Context.c
796 action ConvSel.c
797 action CopyArea.c
798 action CopyCmap.c
799 action CopyGC.c
800 action CopyPlane.c
801 action CrBFData.c
802 action CrCmap.c
803 action CrCursor.c
804 action CrGC.c
805 action CrGlCur.c
806 action CrPFBData.c
807 action CrPixmap.c
808 action CrWindow.c
809 action Cursor.c
810 action DefCursor.c
811 action DelProp.c
812 action Depths.c
813 action DestSubs.c
814 action DestWind.c
815 action DisName.c
816 action DrArc.c
817 action DrArcs.c
818 action DrLine.c
819 action DrLines.c
820 action DrPoint.c
821 action DrPoints.c
822 action DrRect.c
823 action DrRects.c
824 action DrSegs.c
825 action ErrDes.c
826 action ErrHndlr.c
827 action evtomask.c
828 action EvToWire.c
829 action FetchName.c
830 action FillArc.c
831 action FillArcs.c
832 action FillPoly.c
833 action FillRct.c
834 action FillRcts.c
835 action FilterEv.c
836 action Flush.c
837 action Font.c
838 action FontInfo.c
839 action FontNames.c
840 action FreeCmap.c
841 action FreeCols.c
842 action FreeCurs.c
843 action FreeEData.c
844 action FreeGC.c
845 action FreePix.c
846 action FSSaver.c
847 action FSWrap.c
848 action GCMisc.c
849 action Geom.c
850 action GetAtomNm.c
851 action GetColor.c
852 action GetDflt.c
853 action GetFPath.c
854 action GetFProp.c
855 action GetGCVals.c
856 action GetGeom.c
857 action GetHColor.c
858 action GetHints.c
859 action GetIFocus.c
860 action GetImage.c
861 action GetKCnt.c
862 action GetMoEv.c
863 action GetNrmHint.c
864 action GetPCnt.c
865 action GetPntMap.c
866 action GetProp.c
867 action GetRGBCMap.c
868 action GetSOwner.c
869 action GetSSaver.c
870 action GetStCmap.c
871 action GetTxtProp.c
872 action GetWAttrs.c
873 action GetWMCMapW.c
874 action GetWMProto.c
875 action globals.c
876 action GrButton.c
877 action GrKeybd.c
878 action GrKey.c
879 action GrPointer.c
880 action GrServer.c
881 action Host.c
882 action Iconify.c
883 action IfEvent.c
884 action imConv.c
885 action ImText16.c
886 action ImText.c
887 action ImUtil.c
888 action InitExt.c
889 action InsCmap.c
890 action IntAtom.c
891 action KeyBind.c
892 action KeysymStr.c
893 action KillCl.c
894 action LiHosts.c
895 action LiICmaps.c
896 action LiProps.c
897 action ListExt.c
898 action LoadFont.c
899 action LockDis.c
900 action locking.c
901 action LookupCol.c
902 action LowerWin.c
903 action Macros.c
904 action MapRaised.c
905 action MapSubs.c
906 action MapWindow.c
907 action MaskEvent.c
908 action Misc.c
909 action ModMap.c
910 action MoveWin.c
911 action NextEvent.c
912 action OCWrap.c
913 action OMWrap.c
914 action OpenDis.c
915 action os2Stubs.c
916 action ParseCmd.c
917 action ParseCol.c
918 action ParseGeom.c
919 action PeekEvent.c
920 action PeekIfEv.c
921 action Pending.c
922 action PixFormats.c
923 action PmapBgnd.c
924 action PmapBord.c
925 action PolyReg.c
926 action PolyTxt16.c
927 action PolyTxt.c
928 action PropAlloc.c
929 action PutBEvent.c
930 action PutImage.c
931 action Quarks.c
932 action QuBest.c
933 action QuColor.c
934 action QuColors.c
935 action QuCurShp.c
936 action QuExt.c
937 action QuKeybd.c
938 action QuPntr.c
939 action QuStipShp.c
940 action QuTextE16.c
941 action QuTextExt.c
942 action QuTileShp.c
943 action QuTree.c
944 action RaiseWin.c
945 action RdBitF.c
946 action RecolorC.c
947 action ReconfWin.c
948 action ReconfWM.c
949 action Region.c
950 action RegstFlt.c
951 action RepWindow.c
952 action RestackWs.c
953 action RotProp.c
954 action ScrResStr.c
955 action SelInput.c
956 action SendEvent.c
957 action SetBack.c
958 action SetClMask.c
959 action SetClOrig.c
960 action SetCRects.c
961 action SetDashes.c
962 action SetFont.c
963 action SetFore.c
964 action SetFPath.c
965 action SetFunc.c
966 action SetHints.c
967 action SetIFocus.c
968 action SetLocale.c
969 action SetLStyle.c
970 action SetNrmHint.c
971 action SetPMask.c
972 action SetPntMap.c
973 action SetRGBCMap.c
974 action SetSOwner.c
975 action SetSSaver.c
976 action SetState.c
977 action SetStCmap.c
978 action SetStip.c
979 action SetTile.c
980 action SetTSOrig.c
981 action SetTxtProp.c
982 action SetWMCMapW.c
983 action SetWMProto.c
984 action StBytes.c
985 action StColor.c
986 action StColors.c
987 action StName.c
988 action StNColor.c
989 action StrKeysym.c
990 action StrToText.c
991 action Sync.c
992 action Synchro.c
993 action Text16.c
994 action Text.c
995 action TextExt16.c
996 action TextExt.c
997 action TextToStr.c
998 action TrCoords.c
999 action udcInf.c
1000 action UIThrStubs.c
1001 action UndefCurs.c
1002 action UngrabBut.c
1003 action UngrabKbd.c
1004 action UngrabKey.c
1005 action UngrabPtr.c
1006 action UngrabSvr.c
1007 action UninsCmap.c
1008 action UnldFont.c
1009 action UnmapSubs.c
1010 action UnmapWin.c
1011 action VisUtil.c
1012 action WarpPtr.c
1013 action Window.c
1014 action WinEvent.c
1015 action Withdraw.c
1016 action WMGeom.c
1017 action WMProps.c
1018 action WrBitF.c
1019 action XlibAsync.c
1020 action XlibInt.c
1021 action Xrm.c
1023 # XCMS files
1024 dst_dir lib/X11/src/xcms
1026 action AddDIC.c
1027 action AddSF.c
1028 action CCC.c
1029 action cmsAllCol.c
1030 action cmsAllNCol.c
1031 action cmsCmap.c
1032 action cmsColNm.c
1033 action cmsGlobls.c
1034 action cmsInt.c
1035 action cmsLkCol.c
1036 action cmsMath.c
1037 action cmsProp.c
1038 action cmsTrig.c
1039 action CvCols.c
1040 action CvColW.c
1041 action Cv.h
1042 action HVC.c
1043 action HVCGcC.c
1044 action HVCGcV.c
1045 action HVCGcVC.c
1046 action HVCMnV.c
1047 action HVCMxC.c
1048 action HVCMxV.c
1049 action HVCMxVC.c
1050 action HVCMxVs.c
1051 action HVCWpAj.c
1052 action IdOfPr.c
1053 action Lab.c
1054 action LabGcC.c
1055 action LabGcL.c
1056 action LabGcLC.c
1057 action LabMnL.c
1058 action LabMxC.c
1059 action LabMxL.c
1060 action LabMxLC.c
1061 action LabWpAj.c
1062 action LRGB.c
1063 action Luv.c
1064 action LuvGcC.c
1065 action LuvGcL.c
1066 action LuvGcLC.c
1067 action LuvMnL.c
1068 action LuvMxC.c
1069 action LuvMxL.c
1070 action LuvMxLC.c
1071 action LuvWpAj.c
1072 action OfCCC.c
1073 action PrOfId.c
1074 action QBlack.c
1075 action QBlue.c
1076 action QGreen.c
1077 action QRed.c
1078 action QuCol.c
1079 action QuCols.c
1080 action QWhite.c
1081 action SetCCC.c
1082 action SetGetCols.c
1083 action StCol.c
1084 action StCols.c
1085 action UNDEFINED.c
1086 action uvY.c
1087 action Xcmsint.h
1088 action XRGB.c
1089 action xyY.c
1090 action XYZ.c
1091 action Xcms.txt
1093 # XKB files
1094 dst_dir lib/X11/src/xkb
1096 action XKBAlloc.c
1097 action XKBBell.c
1098 action XKBBind.c
1099 action XKB.c
1100 action XKBCompat.c
1101 action XKBCtrls.c
1102 action XKBCvt.c
1103 action XKBExtDev.c
1104 action XKBGAlloc.c
1105 action XKBGeom.c
1106 action XKBGetByName.c
1107 action XKBGetMap.c
1108 action XKBleds.c
1109 action XKBlibint.h
1110 action XKBList.c
1111 action XKBMAlloc.c
1112 action XKBMisc.c
1113 action XKBNames.c
1114 action XKBRdBuf.c
1115 action XKBSetGeom.c
1116 action XKBSetMap.c
1117 action XKBUse.c
1119 # Xlib I18n files
1121 dst_dir lib/X11/src/xlibi18n
1123 action ICWrap.c
1124 action imKStoUCS.c
1125 action IMWrap.c
1126 action lcCharSet.c
1127 action lcConv.c
1128 action lcCT.c
1129 action lcDB.c
1130 action lcDynamic.c
1131 action lcFile.c
1132 action lcGeneric.c
1133 action lcInit.c
1134 action lcPrTxt.c
1135 action lcPublic.c
1136 action lcPubWrap.c
1137 action lcRM.c
1138 action lcStd.c
1139 action lcTxtPr.c
1140 action lcUTF8.c
1141 action lcUtil.c
1142 action lcWrap.c
1143 action mbWMProps.c
1144 action mbWrap.c
1145 action utf8WMProps.c
1146 action utf8Wrap.c
1147 action wcWrap.c
1148 action Xaixlcint.h
1149 action XDefaultIMIF.c
1150 action XDefaultOMIF.c
1151 action XimImSw.h
1152 action Ximint.h
1153 action XimintL.h
1154 action XimintP.h
1155 action XimProto.h
1156 action XimThai.h
1157 action XimTrans.h
1158 action XimTrInt.h
1159 action XimTrX.h
1160 action XlcDL.c
1161 action XlcGeneric.h
1162 action Xlcint.h
1163 action XlcPubI.h
1164 action XlcPublic.h
1165 action XlcSL.c
1167 # XIMPC input method files
1169 dst_dir lib/X11/modules/im/ximcp
1171 action imCallbk.c
1172 action imDefFlt.c
1173 action imDefIc.c
1174 action imDefIm.c
1175 action imDefLkup.c
1176 action imDispch.c
1177 action imEvToWire.c
1178 action imExten.c
1179 action imImSw.c
1180 action imInsClbk.c
1181 action imInt.c
1182 action imLcFlt.c
1183 action imLcGIc.c
1184 action imLcIc.c
1185 action imLcIm.c
1186 action imLcLkup.c
1187 action imLcPrs.c
1188 action imLcSIc.c
1189 action imRmAttr.c
1190 action imRm.c
1191 action imThaiFlt.c
1192 action imThaiIc.c
1193 action imThaiIm.c
1194 action imTrans.c
1195 action imTransR.c
1196 action imTrX.c
1198 # default lc files
1200 dst_dir lib/X11/modules/lc/def
1202 action lcDefConv.c
1204 # generic lc files
1206 dst_dir lib/X11/modules/lc/gen
1208 action lcGenConv.c
1210 # UTF-8 lc files
1212 dst_dir lib/X11/modules/lc/Utf8
1214 action lcUTF8Load.c
1216 # Xlocale lc files
1218 dst_dir lib/X11/modules/lc/xlocale
1220 action lcEuc.c
1221 action lcJis.c
1222 action lcSjis.c
1224 # Generic output method files
1226 dst_dir lib/X11/modules/om/generic
1228 action omDefault.c
1229 action omGeneric.c
1230 action omImText.c
1231 action omText.c
1232 action omTextEsc.c
1233 action omTextExt.c
1234 action omTextPer.c
1235 action omXChar.c
1237 # man pages
1239 src_dir doc/man/X11
1240 dst_dir lib/X11/man
1242 action AllPlanes.man AllPlanes.man
1243 action BlkPScrn.man BlackPixelOfScreen.man
1244 action Dis3C.man DisplayOfCCC.man
1245 action ImageOrd.man ImageByteOrder.man
1246 action IsCKey.man IsCursorKey.man
1247 action XACHints.man XAllocClassHint.man
1248 action XAIcSize.man XAllocIconSize.man
1249 action XASCmap.man XAllocStandardColormap.man
1250 action XASHints.man XAllocSizeHints.man
1251 action XAWMHints.man XAllocWMHints.man
1252 action XAddHost.man XAddHost.man
1253 action XAllColor.man XAllocColor.man
1254 action XAllEvnt.man XAllowEvents.man
1255 action XAnyEvent.man XAnyEvent.man
1256 action XButEvent.man XButtonEvent.man
1257 action XCKCntrl.man XChangeKeyboardControl.man
1258 action XCKMping.man XChangeKeyboardMapping.man
1259 action XCMEvent.man XClientMessageEvent.man
1260 action XCPCntrl.man XChangePointerControl.man
1261 action XCSSet.man XChangeSaveSet.man
1262 action XCWAttrib.man XChangeWindowAttributes.man
1263 action XCWEvent.man XCreateWindowEvent.man
1264 action XCirEvent.man XCirculateEvent.man
1265 action XCirREven.man XCirculateRequestEvent.man
1266 action XClrArea.man XClearArea.man
1267 action XCmpEvent.man XColormapEvent.man
1268 action XConEvent.man XConfigureEvent.man
1269 action XConREven.man XConfigureRequestEvent.man
1270 action XConfWin.man XConfigureWindow.man
1271 action XCopyArea.man XCopyArea.man
1272 action XCreCmap.man XCreateColormap.man
1273 action XCreFCur.man XCreateFontCursor.man
1274 action XCreFSet.man XCreateFontSet.man
1275 action XCreGC.man XCreateGC.man
1276 action XCreIC.man XCreateIC.man
1277 action XCreImage.man XInitImage.man
1278 action XCreOC.man XCreateOC.man
1279 action XCrePmap.man XCreatePixmap.man
1280 action XCreReg.man XCreateRegion.man
1281 action XCreWin.man XCreateWindow.man
1282 action XCroEvent.man XCrossingEvent.man
1283 action XDWEvent.man XDestroyWindowEvent.man
1284 action XDefCur.man XDefineCursor.man
1285 action XDesWin.man XDestroyWindow.man
1286 action XDrArc.man XDrawArc.man
1287 action XDrIStr.man XDrawImageString.man
1288 action XDrLine.man XDrawLine.man
1289 action XDrPoint.man XDrawPoint.man
1290 action XDrRect.man XDrawRectangle.man
1291 action XDrString.man XDrawString.man
1292 action XDrText.man XDrawText.man
1293 action XERegion.man XEmptyRegion.man
1294 action XEnumDB.man XrmEnumerateDatabase.man
1295 action XEofFSet.man XExtentsOfFontSet.man
1296 action XErrEvent.man XErrorEvent.man
1297 action XExpEvent.man XExposeEvent.man
1298 action XFCEvent.man XFocusChangeEvent.man
1299 action XFEvent.man XFilterEvent.man
1300 action XFSExt.man XFontSetExtents.man
1301 action XFillRect.man XFillRectangle.man
1302 action XFlush.man XFlush.man
1303 action XFofFSet.man XFontsOfFontSet.man
1304 action XFree.man XFree.man
1305 action XGEEvent.man XGraphicsExposeEvent.man
1306 action XGEvent.man XGravityEvent.man
1307 action XGFDBase.man XrmGetFileDatabase.man
1308 action XGetRes.man XrmGetResource.man
1309 action XGetVInfo.man XGetVisualInfo.man
1310 action XGetWAttr.man XGetWindowAttributes.man
1311 action XGetWProp.man XGetWindowProperty.man
1312 action XGrButton.man XGrabButton.man
1313 action XGrKey.man XGrabKey.man
1314 action XGrKeybrd.man XGrabKeyboard.man
1315 action XGrPntr.man XGrabPointer.man
1316 action XGrServer.man XGrabServer.man
1317 action XIcWin.man XIconifyWindow.man
1318 action XIfEvent.man XIfEvent.man
1319 action XInitial.man XrmInitialize.man
1320 action XInstCmap.man XInstallColormap.man
1321 action XIntConn.man XAddConnectionWatch.man
1322 action XInterReg.man XIntersectRegion.man
1323 action XInternA.man XInternAtom.man
1324 action XKMapEven.man XKeymapEvent.man
1325 action XListFont.man XListFonts.man
1326 action XLoadFont.man XLoadFont.man
1327 action XLookKsym.man XLookupKeysym.man
1328 action XMDBases.man XrmMergeDatabases.man
1329 action XMEvent.man XMapEvent.man
1330 action XMREvent.man XMapRequestEvent.man
1331 action XMapWin.man XMapWindow.man
1332 action XNEvent.man XNextEvent.man
1333 action XNoOp.man XNoOp.man
1334 action XOpDsply.man XOpenDisplay.man
1335 action XOpenIM.man XOpenIM.man
1336 action XOpenOM.man XOpenOM.man
1337 action XPEvent.man XPropertyEvent.man
1338 action XParGeom.man XParseGeometry.man
1339 action XPolyReg.man XPolygonRegion.man
1340 action XPutBEvnt.man XPutBackEvent.man
1341 action XPutImage.man XPutImage.man
1342 action XPutRes.man XrmPutResource.man
1343 action XQBSize.man XQueryBestSize.man
1344 action XQColor.man XQueryColor.man
1345 action XQExtension.man XQueryExtension.man
1346 action XQPointer.man XQueryPointer.man
1347 action XQTree.man XQueryTree.man
1348 action XREvent.man XReparentEvent.man
1349 action XRMStr.man XResourceManagerString.man
1350 action XRREvent.man XResizeRequestEvent.man
1351 action XRaiseWin.man XRaiseWindow.man
1352 action XReadBF.man XReadBitmapFile.man
1353 action XRecCur.man XRecolorCursor.man
1354 action XReparWin.man XReparentWindow.man
1355 action XSCEvent.man XSelectionClearEvent.man
1356 action XSContext.man XSaveContext.man
1357 action XSEvent.man XSelectionEvent.man
1358 action XSICFoc.man XSetICFocus.man
1359 action XSICVals.man XSetICValues.man
1360 action XSInput.man XSelectInput.man
1361 action XSLTTProp.man XStringListToTextProperty.man
1362 action XSREvent.man XSelectionRequestEvent.man
1363 action XSeArcMod.man XSetArcMode.man
1364 action XSeClipO.man XSetClipOrigin.man
1365 action XSeClosDM.man XSetCloseDownMode.man
1366 action XSeCmd.man XSetCommand.man
1367 action XSeErrHan.man XSetErrorHandler.man
1368 action XSeEvent.man XSendEvent.man
1369 action XSeFillS.man XSetFillStyle.man
1370 action XSeFont.man XSetFont.man
1371 action XSeFontP.man XSetFontPath.man
1372 action XSeInFoc.man XSetInputFocus.man
1373 action XSeLAttr.man XSetLineAttributes.man
1374 action XSePMap.man XSetPointerMapping.man
1375 action XSeScSav.man XSetScreenSaver.man
1376 action XSeSelOwn.man XSetSelectionOwner.man
1377 action XSeState.man XSetState.man
1378 action XSeTFHint.man XSetTransientForHint.man
1379 action XSeTProp.man XSetTextProperty.man
1380 action XSeTile.man XSetTile.man
1381 action XSeWMCMac.man XSetWMClientMachine.man
1382 action XSeWMCWin.man XSetWMColormapWindows.man
1383 action XSeWMINam.man XSetWMIconName.man
1384 action XSeWMName.man XSetWMName.man
1385 action XSeWMProp.man XSetWMProperties.man
1386 action XSeWMProt.man XSetWMProtocols.man
1387 action XStBytes.man XStoreBytes.man
1388 action XStColors.man XStoreColors.man
1389 action XStTKsym.man XStringToKeysym.man
1390 action XSupLoc.man XSupportsLocale.man
1391 action XSync.man XSynchronize.man
1392 action XTLTTProp.man XmbTextListToTextProperty.man
1393 action XTextExt.man XTextExtents.man
1394 action XTextWid.man XTextWidth.man
1395 action XThreads.man XInitThreads.man
1396 action XTranWCo.man XTranslateCoordinates.man
1397 action XUQuark.man XrmUniqueQuark.man
1398 action XUmapEven.man XUnmapEvent.man
1399 action XUnmapWin.man XUnmapWindow.man
1400 action XVCNList.man XVaCreateNestedList.man
1401 action XVEvent.man XVisibilityEvent.man
1402 action XWarpPntr.man XWarpPointer.man
1403 action Xcms3CoC.man XcmsCCCOfColormap.man
1404 action XcmsAClr.man XcmsAllocColor.man
1405 action XcmsCClrs.man XcmsConvertColors.man
1406 action XcmsClr.man XcmsColor.man
1407 action XcmsCre3C.man XcmsCreateCCC.man
1408 action XcmsD3C.man XcmsDefaultCCC.man
1409 action XcmsLaQMC.man XcmsCIELabQueryMaxC.man
1410 action XcmsLuQMC.man XcmsCIELuvQueryMaxC.man
1411 action XcmsQBlk.man XcmsQueryBlack.man
1412 action XcmsQClr.man XcmsQueryColor.man
1413 action XcmsSClr.man XcmsStoreColor.man
1414 action XcmsSWP.man XcmsSetWhitePoint.man
1415 action XcmsTQMC.man XcmsTekHVCQueryMaxC.man
1416 action XmbDIStr.man XmbDrawImageString.man
1417 action XmbDStr.man XmbDrawString.man
1418 action XmbDTxt.man XmbDrawText.man
1419 action XmbLStr.man XmbLookupString.man
1420 action XmbRIC.man XmbResetIC.man
1421 action XmbTEsc.man XmbTextEscapement.man
1422 action XmbTExt.man XmbTextExtents.man
1423 action XmbTPCEx.man XmbTextPerCharExtents.man
1425 # src/util
1427 src_dir lib/X11/util
1428 dst_dir lib/X11/src/util
1430 action makekeys.c
1431 action mkks.sh
1433 #---------------------
1435 # NLS
1437 #---------------------
1439 src_dir nls
1440 dst_dir lib/X11/nls
1442 action compose.dir compose.dir.pre
1443 action locale.dir locale.dir.pre
1444 action locale.alias locale.alias.pre
1446 # armscii-8
1447 dst_dir lib/X11/nls/armscii-8
1448 src_dir nls/XLC_LOCALE
1449 action armscii-8 XLC_LOCALE.pre
1450 src_dir nls/XI18N_OBJS
1451 action armscii-8 XI18N_OBJS
1452 src_dir nls/Compose
1453 action armscii-8 Compose.pre
1456 dst_dir lib/X11/nls/C
1457 src_dir nls/XLC_LOCALE
1458 action C XLC_LOCALE.pre
1459 src_dir nls/XI18N_OBJS
1460 action C XI18N_OBJS
1461 #src_dir nls/Compose
1462 #action C Compose.pre
1464 # el_GR.UTF-8
1465 dst_dir lib/X11/nls/el_GR.UTF-8
1466 src_dir nls/Compose
1467 action el_GR.UTF-8 Compose.pre
1469 # en_US.UTF-8
1470 dst_dir lib/X11/nls/en_US.UTF-8
1471 src_dir nls/XLC_LOCALE
1472 action en_US.UTF-8 XLC_LOCALE.pre
1473 src_dir nls/XI18N_OBJS
1474 action en_US.UTF-8 XI18N_OBJS
1475 src_dir nls/Compose
1476 action en_US.UTF-8 Compose.pre
1478 # georgian-academy
1479 dst_dir lib/X11/nls/georgian-academy
1480 src_dir nls/XLC_LOCALE
1481 action georgian-academy XLC_LOCALE.pre
1482 src_dir nls/XI18N_OBJS
1483 action georgian-academy XI18N_OBJS
1484 src_dir nls/Compose
1485 action georgian-academy Compose.pre
1487 # georgian-ps
1488 dst_dir lib/X11/nls/georgian-ps
1489 src_dir nls/XLC_LOCALE
1490 action georgian-ps XLC_LOCALE.pre
1491 src_dir nls/XI18N_OBJS
1492 action georgian-ps XI18N_OBJS
1493 src_dir nls/Compose
1494 action georgian-ps Compose.pre
1496 # ibm-cp1133
1497 dst_dir lib/X11/nls/ibm-cp1133
1498 src_dir nls/XLC_LOCALE
1499 action ibm-cp1133 XLC_LOCALE.pre
1500 src_dir nls/XI18N_OBJS
1501 action ibm-cp1133 XI18N_OBJS
1502 src_dir nls/Compose
1503 action ibm-cp1133 Compose.pre
1505 # iscii-dev
1506 dst_dir lib/X11/nls/iscii-dev
1507 src_dir nls/XLC_LOCALE
1508 action iscii-dev XLC_LOCALE.pre
1509 src_dir nls/XI18N_OBJS
1510 action iscii-dev XI18N_OBJS
1511 #src_dir nls/Compose
1512 #action iscii-dev Compose.pre
1514 # isiri-3342
1515 dst_dir lib/X11/nls/isiri-3342
1516 src_dir nls/XLC_LOCALE
1517 action isiri-3342 XLC_LOCALE.pre
1518 src_dir nls/XI18N_OBJS
1519 action isiri-3342 XI18N_OBJS
1520 #src_dir nls/Compose
1521 #action isiri-3342 Compose.pre
1523 # iso8859-1
1524 dst_dir lib/X11/nls/iso8859-1
1525 src_dir nls/XLC_LOCALE
1526 action iso8859-1 XLC_LOCALE.pre
1527 src_dir nls/XI18N_OBJS
1528 action iso8859-1 XI18N_OBJS
1529 src_dir nls/Compose
1530 action iso8859-1 Compose.pre
1532 # iso8859-10
1533 dst_dir lib/X11/nls/iso8859-10
1534 src_dir nls/XLC_LOCALE
1535 action iso8859-10 XLC_LOCALE.pre
1536 src_dir nls/XI18N_OBJS
1537 action iso8859-10 XI18N_OBJS
1538 src_dir nls/Compose
1539 action iso8859-10 Compose.pre
1541 # iso8859-11
1542 dst_dir lib/X11/nls/iso8859-11
1543 src_dir nls/XLC_LOCALE
1544 action iso8859-11 XLC_LOCALE.pre
1545 src_dir nls/XI18N_OBJS
1546 action iso8859-11 XI18N_OBJS
1547 #src_dir nls/Compose
1548 #action iso8859-11 Compose.pre
1550 # iso8859-13
1551 dst_dir lib/X11/nls/iso8859-13
1552 src_dir nls/XLC_LOCALE
1553 action iso8859-13 XLC_LOCALE.pre
1554 src_dir nls/XI18N_OBJS
1555 action iso8859-13 XI18N_OBJS
1556 src_dir nls/Compose
1557 action iso8859-13 Compose.pre
1559 # iso8859-14
1560 dst_dir lib/X11/nls/iso8859-14
1561 src_dir nls/XLC_LOCALE
1562 action iso8859-14 XLC_LOCALE.pre
1563 src_dir nls/XI18N_OBJS
1564 action iso8859-14 XI18N_OBJS
1565 src_dir nls/Compose
1566 action iso8859-14 Compose.pre
1568 # iso8859-15
1569 dst_dir lib/X11/nls/iso8859-15
1570 src_dir nls/XLC_LOCALE
1571 action iso8859-15 XLC_LOCALE.pre
1572 src_dir nls/XI18N_OBJS
1573 action iso8859-15 XI18N_OBJS
1574 src_dir nls/Compose
1575 action iso8859-15 Compose.pre
1577 # iso8859-2
1578 dst_dir lib/X11/nls/iso8859-2
1579 src_dir nls/XLC_LOCALE
1580 action iso8859-2 XLC_LOCALE.pre
1581 src_dir nls/XI18N_OBJS
1582 action iso8859-2 XI18N_OBJS
1583 src_dir nls/Compose
1584 action iso8859-2 Compose.pre
1586 # iso8859-3
1587 dst_dir lib/X11/nls/iso8859-3
1588 src_dir nls/XLC_LOCALE
1589 action iso8859-3 XLC_LOCALE.pre
1590 src_dir nls/XI18N_OBJS
1591 action iso8859-3 XI18N_OBJS
1592 src_dir nls/Compose
1593 action iso8859-3 Compose.pre
1595 # iso8859-4
1596 dst_dir lib/X11/nls/iso8859-4
1597 src_dir nls/XLC_LOCALE
1598 action iso8859-4 XLC_LOCALE.pre
1599 src_dir nls/XI18N_OBJS
1600 action iso8859-4 XI18N_OBJS
1601 src_dir nls/Compose
1602 action iso8859-4 Compose.pre
1604 # iso8859-5
1605 dst_dir lib/X11/nls/iso8859-5
1606 src_dir nls/XLC_LOCALE
1607 action iso8859-5 XLC_LOCALE.pre
1608 src_dir nls/XI18N_OBJS
1609 action iso8859-5 XI18N_OBJS
1610 src_dir nls/Compose
1611 action iso8859-5 Compose.pre
1613 # iso8859-6
1614 dst_dir lib/X11/nls/iso8859-6
1615 src_dir nls/XLC_LOCALE
1616 action iso8859-6 XLC_LOCALE.pre
1617 src_dir nls/XI18N_OBJS
1618 action iso8859-6 XI18N_OBJS
1619 src_dir nls/Compose
1620 action iso8859-6 Compose.pre
1622 # iso8859-7
1623 dst_dir lib/X11/nls/iso8859-7
1624 src_dir nls/XLC_LOCALE
1625 action iso8859-7 XLC_LOCALE.pre
1626 src_dir nls/XI18N_OBJS
1627 action iso8859-7 XI18N_OBJS
1628 src_dir nls/Compose
1629 action iso8859-7 Compose.pre
1631 # iso8859-8
1632 dst_dir lib/X11/nls/iso8859-8
1633 src_dir nls/XLC_LOCALE
1634 action iso8859-8 XLC_LOCALE.pre
1635 src_dir nls/XI18N_OBJS
1636 action iso8859-8 XI18N_OBJS
1637 src_dir nls/Compose
1638 action iso8859-8 Compose.pre
1640 # iso8859-9
1641 dst_dir lib/X11/nls/iso8859-9
1642 src_dir nls/XLC_LOCALE
1643 action iso8859-9 XLC_LOCALE.pre
1644 src_dir nls/XI18N_OBJS
1645 action iso8859-9 XI18N_OBJS
1646 src_dir nls/Compose
1647 action iso8859-9 Compose.pre
1649 # iso8859-9e
1650 dst_dir lib/X11/nls/iso8859-9e
1651 src_dir nls/XLC_LOCALE
1652 action iso8859-9e XLC_LOCALE.pre
1653 src_dir nls/XI18N_OBJS
1654 action iso8859-9e XI18N_OBJS
1655 src_dir nls/Compose
1656 action iso8859-9e Compose.pre
1658 # ja
1659 dst_dir lib/X11/nls/ja
1660 src_dir nls/XLC_LOCALE
1661 action ja XLC_LOCALE.pre
1662 src_dir nls/XI18N_OBJS
1663 action ja XI18N_OBJS
1664 src_dir nls/Compose
1665 action ja Compose.pre
1667 # ja.JIS
1668 dst_dir lib/X11/nls/ja.JIS
1669 src_dir nls/XLC_LOCALE
1670 action ja.JIS XLC_LOCALE.pre
1671 src_dir nls/XI18N_OBJS
1672 action ja.JIS XI18N_OBJS
1673 src_dir nls/Compose
1674 action ja.JIS Compose.pre
1676 # ja_JP.UTF-8
1677 dst_dir lib/X11/nls/ja_JP.UTF-8
1678 src_dir nls/XLC_LOCALE
1679 action ja_JP.UTF-8 XLC_LOCALE.pre
1680 src_dir nls/XI18N_OBJS
1681 action ja_JP.UTF-8 XI18N_OBJS
1682 #src_dir nls/Compose
1683 #action ja_JP.UTF-8 Compose.pre
1685 # ja.S90
1686 dst_dir lib/X11/nls/ja.S90
1687 src_dir nls/XLC_LOCALE
1688 action ja.S90 XLC_LOCALE.pre
1689 src_dir nls/XI18N_OBJS
1690 action ja.S90 XI18N_OBJS
1691 #src_dir nls/Compose
1692 #action ja.S90 Compose.pre
1694 # ja.SJIS
1695 dst_dir lib/X11/nls/ja.SJIS
1696 src_dir nls/XLC_LOCALE
1697 action ja.SJIS XLC_LOCALE.pre
1698 src_dir nls/XI18N_OBJS
1699 action ja.SJIS XI18N_OBJS
1700 src_dir nls/Compose
1701 action ja.SJIS Compose.pre
1703 # ja.U90
1704 dst_dir lib/X11/nls/ja.U90
1705 src_dir nls/XLC_LOCALE
1706 action ja.U90 XLC_LOCALE.pre
1707 src_dir nls/XI18N_OBJS
1708 action ja.U90 XI18N_OBJS
1709 #src_dir nls/Compose
1710 #action ja.U90 Compose.pre
1712 # ko
1713 dst_dir lib/X11/nls/ko
1714 src_dir nls/XLC_LOCALE
1715 action ko XLC_LOCALE.pre
1716 src_dir nls/XI18N_OBJS
1717 action ko XI18N_OBJS
1718 src_dir nls/Compose
1719 action ko Compose.pre
1721 # koi8-c
1722 dst_dir lib/X11/nls/koi8-c
1723 src_dir nls/XLC_LOCALE
1724 action koi8-c XLC_LOCALE.pre
1725 src_dir nls/XI18N_OBJS
1726 action koi8-c XI18N_OBJS
1727 src_dir nls/Compose
1728 action koi8-c Compose.pre
1730 # koi8-r
1731 dst_dir lib/X11/nls/koi8-r
1732 src_dir nls/XLC_LOCALE
1733 action koi8-r XLC_LOCALE.pre
1734 src_dir nls/XI18N_OBJS
1735 action koi8-r XI18N_OBJS
1736 src_dir nls/Compose
1737 action koi8-r Compose.pre
1739 # koi8-u
1740 dst_dir lib/X11/nls/koi8-u
1741 src_dir nls/XLC_LOCALE
1742 action koi8-u XLC_LOCALE.pre
1743 src_dir nls/XI18N_OBJS
1744 action koi8-u XI18N_OBJS
1745 src_dir nls/Compose
1746 action koi8-u Compose.pre
1748 # ko_KR.UTF-8
1749 dst_dir lib/X11/nls/ko_KR.UTF-8
1750 src_dir nls/XLC_LOCALE
1751 action ko_KR.UTF-8 XLC_LOCALE.pre
1752 src_dir nls/XI18N_OBJS
1753 action ko_KR.UTF-8 XI18N_OBJS
1754 #src_dir nls/Compose
1755 #action ko_KR.UTF-8 Compose.pre
1757 # microsoft-cp1251
1758 dst_dir lib/X11/nls/microsoft-cp1251
1759 src_dir nls/XLC_LOCALE
1760 action microsoft-cp1251 XLC_LOCALE.pre
1761 src_dir nls/XI18N_OBJS
1762 action microsoft-cp1251 XI18N_OBJS
1763 #src_dir nls/Compose
1764 #action microsoft-cp1251 Compose.pre
1766 # microsoft-cp1255
1767 dst_dir lib/X11/nls/microsoft-cp1255
1768 src_dir nls/XLC_LOCALE
1769 action microsoft-cp1255 XLC_LOCALE.pre
1770 src_dir nls/XI18N_OBJS
1771 action microsoft-cp1255 XI18N_OBJS
1772 #src_dir nls/Compose
1773 #action microsoft-cp1255 Compose.pre
1775 # microsoft-cp1256
1776 dst_dir lib/X11/nls/microsoft-cp1256
1777 src_dir nls/XLC_LOCALE
1778 action microsoft-cp1256 XLC_LOCALE.pre
1779 src_dir nls/XI18N_OBJS
1780 action microsoft-cp1256 XI18N_OBJS
1781 #src_dir nls/Compose
1782 #action microsoft-cp1256 Compose.pre
1784 # mulelao-1
1785 dst_dir lib/X11/nls/mulelao-1
1786 src_dir nls/XLC_LOCALE
1787 action mulelao-1 XLC_LOCALE.pre
1788 src_dir nls/XI18N_OBJS
1789 action mulelao-1 XI18N_OBJS
1790 src_dir nls/Compose
1791 action mulelao-1 Compose.pre
1793 # nokhchi-1
1794 dst_dir lib/X11/nls/nokhchi-1
1795 src_dir nls/XLC_LOCALE
1796 action nokhchi-1 XLC_LOCALE.pre
1797 src_dir nls/XI18N_OBJS
1798 action nokhchi-1 XI18N_OBJS
1799 #src_dir nls/Compose
1800 #action nokhchi-1 Compose.pre
1802 # pt_BR.UTF-8
1803 dst_dir lib/X11/nls/pt_BR.UTF-8
1804 src_dir nls/XLC_LOCALE
1805 action pt_BR.UTF-8 XLC_LOCALE.pre
1806 src_dir nls/XI18N_OBJS
1807 action pt_BR.UTF-8 XI18N_OBJS
1808 src_dir nls/Compose
1809 action pt_BR.UTF-8 Compose.pre
1811 # tatar-cyr
1812 dst_dir lib/X11/nls/tatar-cyr
1813 src_dir nls/XLC_LOCALE
1814 action tatar-cyr XLC_LOCALE.pre
1815 src_dir nls/XI18N_OBJS
1816 action tatar-cyr XI18N_OBJS
1817 #src_dir nls/Compose
1818 #action tatar-cyr Compose.pre
1820 # th_TH
1821 dst_dir lib/X11/nls/th_TH
1822 src_dir nls/XLC_LOCALE
1823 action th_TH XLC_LOCALE.pre
1824 src_dir nls/XI18N_OBJS
1825 action th_TH XI18N_OBJS
1826 #src_dir nls/Compose
1827 #action th_TH Compose.pre
1829 # th_TH.UTF-8
1830 dst_dir lib/X11/nls/th_TH.UTF-8
1831 src_dir nls/XLC_LOCALE
1832 action th_TH.UTF-8 XLC_LOCALE.pre
1833 src_dir nls/XI18N_OBJS
1834 action th_TH.UTF-8 XI18N_OBJS
1835 #src_dir nls/Compose
1836 #action th_TH.UTF-8 Compose.pre
1838 # tscii-0
1839 dst_dir lib/X11/nls/tscii-0
1840 src_dir nls/XLC_LOCALE
1841 action tscii-0 XLC_LOCALE.pre
1842 src_dir nls/XI18N_OBJS
1843 action tscii-0 XI18N_OBJS
1844 #src_dir nls/Compose
1845 #action tscii-0 Compose.pre
1847 # vi_VN.tcvn
1848 dst_dir lib/X11/nls/vi_VN.tcvn
1849 src_dir nls/XLC_LOCALE
1850 action vi_VN.tcvn XLC_LOCALE.pre
1851 src_dir nls/XI18N_OBJS
1852 action vi_VN.tcvn XI18N_OBJS
1853 src_dir nls/Compose
1854 action vi_VN.tcvn Compose.pre
1856 # vi_VN.viscii
1857 dst_dir lib/X11/nls/vi_VN.viscii
1858 src_dir nls/XLC_LOCALE
1859 action vi_VN.viscii XLC_LOCALE.pre
1860 src_dir nls/XI18N_OBJS
1861 action vi_VN.viscii XI18N_OBJS
1862 src_dir nls/Compose
1863 action vi_VN.viscii Compose.pre
1865 # zh_CN
1866 dst_dir lib/X11/nls/zh_CN
1867 src_dir nls/XLC_LOCALE
1868 action zh_CN XLC_LOCALE.pre
1869 src_dir nls/XI18N_OBJS
1870 action zh_CN XI18N_OBJS
1871 # src_dir nls/Compose
1872 # action zh_CN Compose.pre
1874 # zh_CN.gb18030
1875 dst_dir lib/X11/nls/zh_CN.gb18030
1876 src_dir nls/XLC_LOCALE
1877 action zh_CN.gb18030 XLC_LOCALE.pre
1878 src_dir nls/XI18N_OBJS
1879 action zh_CN.gb18030 XI18N_OBJS
1880 src_dir nls/Compose
1881 action zh_CN.gb18030 Compose.pre
1883 # zh_CN.gbk
1884 dst_dir lib/X11/nls/zh_CN.gbk
1885 src_dir nls/XLC_LOCALE
1886 action zh_CN.gbk XLC_LOCALE.pre
1887 src_dir nls/XI18N_OBJS
1888 action zh_CN.gbk XI18N_OBJS
1889 src_dir nls/Compose
1890 action zh_CN.gbk Compose.pre
1892 # zh_CN.UTF-8
1893 dst_dir lib/X11/nls/zh_CN.UTF-8
1894 src_dir nls/XLC_LOCALE
1895 action zh_CN.UTF-8 XLC_LOCALE.pre
1896 src_dir nls/XI18N_OBJS
1897 action zh_CN.UTF-8 XI18N_OBJS
1898 #src_dir nls/Compose
1899 #action zh_CN.UTF-8 Compose.pre
1901 # zh_HK.big5
1902 dst_dir lib/X11/nls/zh_HK.big5
1903 src_dir nls/XLC_LOCALE
1904 action zh_HK.big5 XLC_LOCALE.pre
1905 src_dir nls/XI18N_OBJS
1906 action zh_HK.big5 XI18N_OBJS
1907 src_dir nls/Compose
1908 action zh_HK.big5 Compose.pre
1910 # zh_HK.big5hkscs
1911 dst_dir lib/X11/nls/zh_HK.big5hkscs
1912 src_dir nls/XLC_LOCALE
1913 action zh_HK.big5hkscs XLC_LOCALE.pre
1914 src_dir nls/XI18N_OBJS
1915 action zh_HK.big5hkscs XI18N_OBJS
1916 src_dir nls/Compose
1917 action zh_HK.big5hkscs Compose.pre
1919 # zh_HK.UTF-8
1920 dst_dir lib/X11/nls/zh_HK.UTF-8
1921 src_dir nls/XLC_LOCALE
1922 action zh_HK.UTF-8 XLC_LOCALE.pre
1923 src_dir nls/XI18N_OBJS
1924 action zh_HK.UTF-8 XI18N_OBJS
1925 #src_dir nls/Compose
1926 #action zh_HK.UTF-8 Compose.pre
1928 # zh_TW
1929 dst_dir lib/X11/nls/zh_TW
1930 src_dir nls/XLC_LOCALE
1931 action zh_TW XLC_LOCALE.pre
1932 src_dir nls/XI18N_OBJS
1933 action zh_TW XI18N_OBJS
1934 src_dir nls/Compose
1935 action zh_TW Compose.pre
1937 # zh_TW.big5
1938 dst_dir lib/X11/nls/zh_TW.big5
1939 src_dir nls/XLC_LOCALE
1940 action zh_TW.big5 XLC_LOCALE.pre
1941 src_dir nls/XI18N_OBJS
1942 action zh_TW.big5 XI18N_OBJS
1943 src_dir nls/Compose
1944 action zh_TW.big5 Compose.pre
1946 # zh_TW.UTF-8
1947 dst_dir lib/X11/nls/zh_TW.UTF-8
1948 src_dir nls/XLC_LOCALE
1949 action zh_TW.UTF-8 XLC_LOCALE.pre
1950 src_dir nls/XI18N_OBJS
1951 action zh_TW.UTF-8 XI18N_OBJS
1952 #src_dir nls/Compose
1953 #action zh_TW.UTF-8 Compose.pre
1956 # lcuniconv
1958 src_dir lib/X11/lcUniConv
1959 dst_dir lib/X11/src/xlibi18n/lcUniConv
1961 action README
1963 action 8bit_tab_to_h.c
1964 action armscii_8.h
1965 action ascii.h
1966 action big5_emacs.h
1967 action big5.h
1968 action cjk_tab_to_h.c
1969 action COPYRIGHT
1970 action cp1133.h
1971 action cp1251.h
1972 action cp1255.h
1973 action cp1256.h
1974 action gb2312.h
1975 action georgian_academy.h
1976 action georgian_ps.h
1977 action iso8859_10.h
1978 action iso8859_11.h
1979 action iso8859_13.h
1980 action iso8859_14.h
1981 action iso8859_15.h
1982 action iso8859_16.h
1983 action iso8859_1.h
1984 action iso8859_2.h
1985 action iso8859_3.h
1986 action iso8859_4.h
1987 action iso8859_5.h
1988 action iso8859_6.h
1989 action iso8859_7.h
1990 action iso8859_8.h
1991 action iso8859_9e.h
1992 action iso8859_9.h
1993 action jisx0201.h
1994 action jisx0208.h
1995 action jisx0212.h
1996 action koi8_c.h
1997 action koi8_r.h
1998 action koi8_u.h
1999 action ksc5601.h
2000 action mulelao.h
2001 action tatar_cyr.h
2002 action tcvn.h
2003 action tis620.h
2004 action ucs2be.h
2005 action utf8.h
2006 action viscii.h
2009 symlink_lib_ice() {
2010 src_dir lib/ICE
2011 dst_dir lib/ICE/src
2013 action accept.c
2014 action authutil.c
2015 action connect.c
2016 action error.c
2017 action getauth.c
2018 action iceauth.c
2019 action listen.c
2020 action listenwk.c
2021 action locking.c
2022 action misc.c
2023 action ping.c
2024 action process.c
2025 action protosetup.c
2026 action register.c
2027 action replywait.c
2028 action setauth.c
2029 action shutdown.c
2030 action watch.c
2032 action globals.h
2033 action ICElibint.h
2035 dst_dir lib/ICE/include/X11/ICE
2037 action ICEconn.h
2038 action ICE.h
2039 action ICElib.h
2040 action ICEmsg.h
2041 action ICEproto.h
2042 action ICEutil.h
2045 symlink_lib_sm() {
2046 src_dir lib/SM
2047 dst_dir lib/SM/src
2049 action sm_auth.c
2050 action sm_client.c
2051 action sm_error.c
2052 action sm_genid.c
2053 action sm_manager.c
2054 action sm_misc.c
2055 action sm_process.c
2057 action globals.h
2058 action SMlibint.h
2060 dst_dir lib/SM/include/X11/SM
2062 action SM.h
2063 action SMlib.h
2064 action SMproto.h
2067 symlink_lib_xt() {
2068 src_dir lib/Xt
2070 # Public headers
2072 dst_dir lib/Xt/include/X11
2074 action Composite.h
2075 action CompositeP.h
2076 action Constraint.h
2077 action ConstrainP.h
2078 action Core.h
2079 action CoreP.h
2080 action Intrinsic.h
2081 action IntrinsicP.h
2082 action Object.h
2083 action ObjectP.h
2084 action RectObj.h
2085 action RectObjP.h
2086 action ShellP.h
2087 action Vendor.h
2088 action VendorP.h
2090 # Private headers - they are used by XTrap
2092 dst_dir lib/Xt/include/X11
2094 action CallbackI.h
2095 action ConvertI.h
2096 action CreateI.h
2097 action EventI.h
2098 action HookObjI.h
2099 action InitialI.h
2100 action IntrinsicI.h
2101 action PassivGraI.h
2102 action ResConfigP.h
2103 action ResourceI.h
2104 action SelectionI.h
2105 action ShellI.h
2106 action ThreadsI.h
2107 action TranslateI.h
2108 action VarargsI.h
2109 action Xtos.h
2111 # Source
2113 dst_dir lib/Xt/src
2115 action ActionHook.c
2116 action Alloc.c
2117 action ArgList.c
2118 action Callback.c
2119 action ClickTime.c
2120 action Composite.c
2121 action Constraint.c
2122 action Convert.c
2123 action Converters.c
2124 action Core.c
2125 action Create.c
2126 action Destroy.c
2127 action Display.c
2128 action Error.c
2129 action Event.c
2130 action EventUtil.c
2131 action Functions.c
2132 action GCManager.c
2133 action Geometry.c
2134 action GetActKey.c
2135 action GetResList.c
2136 action GetValues.c
2137 action HookObj.c
2138 action Hooks.c
2139 action Initialize.c
2140 action Intrinsic.c
2141 action Keyboard.c
2142 action Manage.c
2143 action NextEvent.c
2144 action Object.c
2145 action PassivGrab.c
2146 action Pointer.c
2147 action Popup.c
2148 action PopupCB.c
2149 action RectObj.c
2150 action ResConfig.c
2151 action Resources.c
2152 action Selection.c
2153 action SetSens.c
2154 action SetValues.c
2155 action SetWMCW.c
2156 action sharedlib.c
2157 action Shell.c
2158 action Threads.c
2159 action TMaction.c
2160 action TMgrab.c
2161 action TMkey.c
2162 action TMparse.c
2163 action TMprint.c
2164 action TMstate.c
2165 action Varargs.c
2166 action VarCreate.c
2167 action VarGet.c
2168 action Vendor.c
2170 # utils
2172 src_dir lib/Xt/util
2173 dst_dir lib/Xt/util
2175 action Shell.ht
2176 action StrDefs.ct
2177 action StrDefs.ht
2178 action string.list
2180 src_dir config/util
2182 action makestrs.c
2183 action makestrs.man
2185 # man pages
2187 src_dir doc/man/Xt
2188 dst_dir lib/Xt/man
2190 action XtAddCbk.man XtAddCallback.man
2191 action XtAddEHand.man XtAddEventHandler.man
2192 action XtAddETReg.man XtAddExposureToRegion.man
2193 action XtAddGrab.man XtAddGrab.man
2194 action XtAppAAct.man XtAppAddActions.man
2195 action XtAddAct.man XtAddActions.man
2196 action XtAppAC.man XtAppAddConverter.man
2197 action XtAppAI.man XtAppAddInput.man
2198 action XtAppATO.man XtAppAddTimeOut.man
2199 action XtAppAWP.man XtAppAddWorkProc.man
2200 action XtAppCSh.man XtAppCreateShell.man
2201 action XtAppE.man XtAppError.man
2202 action XtAppEM.man XtAppErrorMsg.man
2203 action XtAppGEDB.man XtAppGetErrorDatabase.man
2204 action XtAppGSTO.man XtAppGetSelectionTimeout.man
2205 action XtAppNEv.man XtAppNextEvent.man
2206 action XtNextEv.man XtNextEvent.man
2207 action XtBEMask.man XtBuildEventMask.man
2208 action XtCallAFoc.man XtCallAcceptFocus.man
2209 action XtCallCbks.man XtCallCallbacks.man
2210 action XtClass.man XtClass.man
2211 action XtConfWid.man XtConfigureWidget.man
2212 action XtConvert.man XtConvert.man
2213 action XtConvSt.man XtConvertAndStore.man
2214 action XtCreACon.man XtCreateApplicationContext.man
2215 action XtCrePSh.man XtCreatePopupShell.man
2216 action XtCreWid.man XtCreateWidget.man
2217 action XtCreWin.man XtCreateWindow.man
2218 action XtDisplay.man XtDisplay.man
2219 action XtDisplayI.man XtDisplayInitialize.man
2220 action XtGetGC.man XtGetGC.man
2221 action XtGetRList.man XtGetResourceList.man
2222 action XtGetSVal.man XtGetSelectionValue.man
2223 action XtGetSres.man XtGetSubresources.man
2224 action XtGetAres.man XtGetApplicationResources.man
2225 action XtMakGReq.man XtMakeGeometryRequest.man
2226 action XtMalloc.man XtMalloc.man
2227 action XtManChild.man XtManageChildren.man
2228 action XtMapWid.man XtMapWidget.man
2229 action XtNameTWid.man XtNameToWidget.man
2230 action XtOffset.man XtOffset.man
2231 action XtOwnSel.man XtOwnSelection.man
2232 action XtParATab.man XtParseAcceleratorTable.man
2233 action XtParTTab.man XtParseTranslationTable.man
2234 action XtPopdown.man XtPopdown.man
2235 action XtPopup.man XtPopup.man
2236 action XtQueryGeo.man XtQueryGeometry.man
2237 action XtRealize.man XtRealizeWidget.man
2238 action XtSetArg.man XtSetArg.man
2239 action XtSetKFoc.man XtSetKeyboardFocus.man
2240 action XtSetKTr.man XtSetKeyTranslator.man
2241 action XtSetSens.man XtSetSensitive.man
2242 action XtSetVal.man XtSetValues.man
2243 action XtStrCW.man XtStringConversionWarning.man
2244 action XtDStrCW.man XtDisplayStringConversionWarning.man
2245 action XtTransC.man XtTranslateCoords.man
2246 action XtKeysym.man XtGetKeysymTable.man
2247 action XtAppSTC.man XtAppSetTypeConverter.man
2248 action XtActHook.man XtAppAddActionHook.man
2249 action XtGetActL.man XtGetActionList.man
2250 action XtCallActP.man XtCallActionProc.man
2251 action XtRegGA.man XtRegisterGrabAction.man
2252 action XtClickT.man XtSetMultiClickTime.man
2253 action XtGetActK.man XtGetActionKeysym.man
2254 action XtExtEvDis.man XtInsertEventTypeHandler.man
2255 action XtGetKFoc.man XtGetKeyboardFocusWidget.man
2256 action XtLastProc.man XtLastEventProcessed.man
2257 action XtAppASig.man XtAppAddSignal.man
2258 action XtAddIn.man XtAddInput.man
2259 action XtBlockH.man XtAppAddBlockHook.man
2260 action XtGetClExt.man XtGetClassExtension.man
2261 action XtVaCrArgL.man XtVaCreateArgsList.man
2262 action XtParent.man XtParent.man
2263 action XtName.man XtName.man
2264 action XtCreASh.man XtCreateApplicationShell.man
2265 action XtSetLangP.man XtSetLanguageProc.man
2266 action XtAppInit.man XtAppInitialize.man
2267 action XtInit.man XtInitialize.man
2268 action XtAppSetFR.man XtAppSetFallbackResources.man
2269 action XtInitWC.man XtInitializeWidgetClass.man
2270 action XtDisACon.man XtDisplayToApplicationContext.man
2271 action XtSession.man XtSessionGetToken.man
2272 action XtErrM.man XtErrorMsg.man
2273 action XtErr.man XtError.man
2274 action XtGEDB.man XtGetErrorDatabase.man
2275 action XtAllocGC.man XtAllocateGC.man
2276 action XtAppRCR.man XtAppReleaseCacheRefs.man
2277 action XtSetWMC.man XtSetWMColormapWindows.man
2278 action XtFindF.man XtFindFile.man
2279 action XtResPath.man XtResolvePathname.man
2280 action XtGetSValI.man XtGetSelectionValueIncremental.man
2281 action XtGetSTO.man XtGetSelectionTimeout.man
2282 action XtGetSR.man XtGetSelectionRequest.man
2283 action XtSetSP.man XtSetSelectionParameters.man
2284 action XtGetSP.man XtGetSelectionParameters.man
2285 action XtCreateSR.man XtCreateSelectionRequest.man
2286 action XtResPA.man XtReservePropertyAtom.man
2287 action XtGrabKey.man XtGrabKey.man
2288 action XtGetANC.man XtGetApplicationNameAndClass.man
2289 action XtRegDraw.man XtRegisterDrawable.man
2290 action XtHookOD.man XtHooksOfDisplay.man
2291 action XtGetDisp.man XtGetDisplays.man
2292 action XtThreadI.man XtToolkitThreadInitialize.man
2293 action XtAppSEF.man XtAppSetExitFlag.man
2294 action XtAppLock.man XtAppLock.man
2295 action XtProcLock.man XtProcessLock.man
2296 action XtOpenApp.man XtOpenApplication.man
2299 symlink_lib_xmu() {
2300 src_dir lib/Xmu
2301 dst_dir lib/Xmu/include/X11/Xmu
2303 action Atoms.h
2304 action CharSet.h
2305 action CloseHook.h
2306 action Converters.h
2307 action CurUtil.h
2308 action CvtCache.h
2309 action DisplayQue.h
2310 action Drawing.h
2311 action Editres.h
2312 action EditresP.h
2313 action Error.h
2314 action ExtAgent.h
2315 action Initer.h
2316 action Lookup.h
2317 action Misc.h
2318 action StdCmap.h
2319 action StdSel.h
2320 action SysUtil.h
2321 action WhitePoint.h
2322 action WidgetNode.h
2323 action WinUtil.h
2324 action Xct.h
2325 action Xmu.h
2327 dst_dir lib/Xmu
2328 action README
2330 dst_dir lib/Xmu/src
2332 action AllCmap.c
2333 action Atoms.c
2334 action ClientWin.c
2335 action Clip.c
2336 action CloseHook.c
2337 action CmapAlloc.c
2338 action CrCmap.c
2339 action CrPixFBit.c
2340 action CursorName.c
2341 action CvtCache.c
2342 action CvtStdSel.c
2343 action DefErrMsg.c
2344 action DelCmap.c
2345 action DisplayQue.c
2346 action Distinct.c
2347 action DrawLogo.c
2348 action DrRndRect.c
2349 action EditresCom.c
2350 action ExtAgent.c
2351 action FToCback.c
2352 action GetHost.c
2353 action GrayPixmap.c
2354 action Initer.c
2355 action LocBitmap.c
2356 action Lookup.c
2357 action LookupCmap.c
2358 action Lower.c
2359 action RdBitF.c
2360 action ScrOfWin.c
2361 action ShapeWidg.c
2362 action sharedlib.c
2363 action StdCmap.c
2364 action StrToBmap.c
2365 action StrToBS.c
2366 action StrToCurs.c
2367 action StrToGrav.c
2368 action StrToJust.c
2369 action StrToLong.c
2370 action StrToOrnt.c
2371 action StrToShap.c
2372 action StrToWidg.c
2373 action UpdMapHint.c
2374 action VisCmap.c
2375 action WidgetNode.c
2376 action Xct.c
2379 symlink_lib_xp() {
2380 src_dir lib/Xp
2381 dst_dir lib/Xp/src
2383 action XpAttr.c
2384 action XpContext.c
2385 action XpDoc.c
2386 action XpExtUtil.c
2387 action XpExtVer.c
2388 action XpGetData.c
2389 action XpImageRes.c
2390 action XpInput.c
2391 action XpJob.c
2392 action XpLocale.c
2393 action XpNotifyPdm.c
2394 action XpPage.c
2395 action XpPageDim.c
2396 action XpPrinter.c
2397 action XpPutData.c
2398 action XpScreens.c
2400 action XpExtUtil.h
2402 # man pages
2403 src_dir doc/man/Xp
2404 dst_dir lib/Xp/man
2406 action libXp.man
2407 action XpCancelDoc.man
2408 action XpCancelJob.man
2409 action XpCancelPage.man
2410 action XpCreateContext.man
2411 action XpDestroyContext.man
2412 action XpEndDoc.man
2413 action XpEndJob.man
2414 action XpEndPage.man
2415 action XpFreePrinterList.man
2416 action XpGetAttributes.man
2417 action XpGetContext.man
2418 action XpGetDocumentData.man
2419 action XpGetImageResolution.man
2420 action XpGetLocaleHinter.man
2421 action XpGetOneAttribute.man
2422 action XpGetPageDimensions.man
2423 action XpGetPdmStartParams.man
2424 action XpGetPrinterList.man
2425 action XpGetScreenOfContext.man
2426 action XpInputSelected.man
2427 action XpPutDocumentData.man
2428 action XpQueryExtension.man
2429 action XpQueryScreens.man
2430 action XpQueryVersion.man
2431 action XpRehashPrinterList.man
2432 action XpSelectInput.man
2433 action XpSetAttributes.man
2434 action XpSetContext.man
2435 action XpSetImageResolution.man
2436 action XpSetLocaleHinter.man
2437 action XpStartDoc.man
2438 action XpStartJob.man
2439 action XpStartPage.man
2442 symlink_lib_xpm() {
2443 src_dir extras/Xpm
2444 dst_dir lib/Xpm
2446 action CHANGES
2447 action COPYRIGHT
2448 action FAQ.html
2449 action FILES
2450 action README.AMIGA
2451 action README.html
2452 action README.MSW
2454 src_dir extras/Xpm/doc
2456 action xpm.PS.gz
2458 src_dir extras/Xpm/lib
2461 # Library
2464 # Public header
2465 dst_dir lib/Xpm/include/X11
2467 action xpm.h
2469 # Source
2471 dst_dir lib/Xpm/src
2473 # headers
2474 action amigax.h
2475 action rgbtab.h
2476 action simx.h
2477 action XpmI.h
2479 action amigax.c
2480 action Attrib.c
2481 action CrBufFrI.c
2482 action CrBufFrP.c
2483 action CrDatFrI.c
2484 action CrDatFrP.c
2485 action create.c
2486 action CrIFrBuf.c
2487 action CrIFrDat.c
2488 action CrIFrP.c
2489 action CrPFrBuf.c
2490 action CrPFrDat.c
2491 action CrPFrI.c
2492 action data.c
2493 action hashtab.c
2494 action Image.c
2495 action Info.c
2496 action misc.c
2497 action parse.c
2498 action RdFToBuf.c
2499 action RdFToDat.c
2500 action RdFToI.c
2501 action RdFToP.c
2502 action rgb.c
2503 action scan.c
2504 action simx.c
2505 action WrFFrBuf.c
2506 action WrFFrDat.c
2507 action WrFFrI.c
2508 action WrFFrP.c
2511 # Apps
2513 src_dir extras/Xpm/cxpm
2514 dst_dir lib/Xpm/cxpm
2516 action cxpm.c
2517 action cxpm.man
2519 src_dir extras/Xpm/sxpm
2520 dst_dir lib/Xpm/sxpm
2522 action sxpm.c
2523 action sxpm.man
2524 action plaid_ext.xpm
2525 action plaid_mask.xpm
2526 action plaid.xpm
2529 symlink_lib_xrender() {
2530 src_dir lib/Xrender
2531 dst_dir lib/Xrender/src
2533 action AddTrap.c
2534 action Color.c
2535 action Composite.c
2536 action Cursor.c
2537 action FillRect.c
2538 action FillRects.c
2539 action Filter.c
2540 action Glyph.c
2541 action Picture.c
2542 action Poly.c
2543 action Trap.c
2544 action Tri.c
2545 action Xrender.c
2547 action Xrenderint.h
2549 dst_dir lib/Xrender/include/X11/extensions
2551 action Xrender.h
2554 symlink_lib_xi() {
2555 src_dir lib/Xi
2556 dst_dir lib/Xi/src
2558 action XIint.h
2559 action XAllowDv.c
2560 action XChgDCtl.c
2561 action XChgFCtl.c
2562 action XChgKMap.c
2563 action XChgKbd.c
2564 action XChgPnt.c
2565 action XChgProp.c
2566 action XCloseDev.c
2567 action XDevBell.c
2568 action XExtInt.c
2569 action XExtToWire.c
2570 action XFreeLst.c
2571 action XGMotion.c
2572 action XGetBMap.c
2573 action XGetDCtl.c
2574 action XGetFCtl.c
2575 action XGetKMap.c
2576 action XGetMMap.c
2577 action XGetProp.c
2578 action XGetVers.c
2579 action XGrDvBut.c
2580 action XGrDvKey.c
2581 action XGrabDev.c
2582 action XGtFocus.c
2583 action XGtSelect.c
2584 action XListDev.c
2585 action XOpenDev.c
2586 action XQueryDv.c
2587 action XSelect.c
2588 action XSetBMap.c
2589 action XSetDVal.c
2590 action XSetMMap.c
2591 action XSetMode.c
2592 action XSndExEv.c
2593 action XStFocus.c
2594 action XUngrDev.c
2595 action XUngrDvB.c
2596 action XUngrDvK.c
2598 src_dir doc/man/Xi
2599 dst_dir lib/Xi/man
2601 action XAllDvEv.man XAllowDeviceEvents.man
2602 action XChDCtl.man XGetDeviceControl.man
2603 action XChFCtl.man XGetFeedbackControl.man
2604 action XChKMap.man XGetDeviceKeyMapping.man
2605 action XChMMap.man XGetDeviceModifierMapping.man
2606 action XChProp.man XChangeDeviceDontPropagateList.man
2607 action XChgKbd.man XChangeKeyboardDevice.man
2608 action XChgPtr.man XChangePointerDevice.man
2609 action XDevBell.man XDeviceBell.man
2610 action XGetDvMo.man XGetDeviceMotionEvents.man
2611 action XGetExtV.man XGetExtensionVersion.man
2612 action XGrDvBut.man XGrabDeviceButton.man
2613 action XGrDvKey.man XGrabDeviceKey.man
2614 action XGrabDev.man XGrabDevice.man
2615 action XListDev.man XListInputDevices.man
2616 action XOpenDev.man XOpenDevice.man
2617 action XQueryDv.man XQueryDeviceState.man
2618 action XSExEvnt.man XSendExtensionEvent.man
2619 action XSeBMap.man XSetDeviceButtonMapping.man
2620 action XSeDvFoc.man XSetDeviceFocus.man
2621 action XSelExtEv.man XSelectExtensionEvent.man
2622 action XSetDVal.man XSetDeviceValuators.man
2623 action XSetMode.man XSetDeviceMode.man
2627 symlink_lib_xfont() {
2628 src_dir lib/font/FreeType
2629 dst_dir lib/Xfont/src/FreeType
2631 action ft.h
2632 action ftenc.c
2633 action ftfuncs.c
2634 action ftfuncs.h
2635 action ftsystem.c
2636 action fttools.c
2637 action xttcap.c
2638 action xttcap.h
2640 src_dir lib/font/bitmap
2641 dst_dir lib/Xfont/src/bitmap
2643 action bdfread.c
2644 action bdfutils.c
2645 action bitmap.c
2646 action bitmapfunc.c
2647 action bitmaputil.c
2648 action bitscale.c
2649 action fontink.c
2650 action pcfread.c
2651 action pcfwrite.c
2652 action snfread.c
2653 action snfstr.h
2655 src_dir lib/font/bitmap
2656 dst_dir lib/Xfont/include/X11/fonts
2658 action bdfint.h
2659 action pcf.h
2661 src_dir lib/font/builtins
2662 dst_dir lib/Xfont/src/builtins
2664 action buildfont
2665 action builtin.h
2666 action dir.c
2667 action file.c
2668 action fonts.c
2669 action fpe.c
2670 action render.c
2672 src_dir lib/font/fc
2673 dst_dir lib/Xfont/src/fc
2675 action fsconvert.c
2676 action fserve.c
2677 action fserve.h
2678 action fservestr.h
2679 action fsio.c
2680 action fsio.h
2681 action fslibos.h
2683 src_dir lib/font/fontcache
2684 dst_dir lib/Xfont/src/fontcache
2686 action fcqueue.h
2687 action fontcache.c
2688 action fontcache.h
2690 src_dir lib/font/fontfile
2691 dst_dir lib/Xfont/src/fontfile
2693 action bitsource.c
2694 action bufio.c
2695 action decompress.c
2696 action defaults.c
2697 action dirfile.c
2698 action ffcheck.c
2699 action fileio.c
2700 action filewr.c
2701 action fontdir.c
2702 action fontencc.c
2703 action fontfile.c
2704 action fontscale.c
2705 action gunzip.c
2706 action printerfont.c
2707 action register.c
2708 action renderers.c
2710 src_dir lib/font/include
2711 dst_dir lib/Xfont/include/X11/fonts
2713 action bitmap.h
2714 action bufio.h
2715 action fntfil.h
2716 action fntfilio.h
2717 action fntfilst.h
2718 action fontencc.h
2719 action fontmisc.h
2720 action fontmod.h
2721 action fontshow.h
2722 action fontutil.h
2723 action fontxlfd.h
2725 src_dir lib/font/stubs
2726 dst_dir lib/Xfont/src/stubs
2728 action cauthgen.c
2729 action csignal.c
2730 action delfntcid.c
2731 action errorf.c
2732 action fatalerror.c
2733 action findoldfnt.c
2734 action getcres.c
2735 action getdefptsize.c
2736 action getnewfntcid.c
2737 action gettime.c
2738 action initfshdl.c
2739 action regfpefunc.c
2740 action rmfshdl.c
2741 action servclient.c
2742 action setfntauth.c
2743 action stfntcfnt.c
2744 action stubs.h
2745 action xpstubs.c
2747 src_dir lib/font/util
2748 dst_dir lib/Xfont/src/util
2750 action atom.c
2751 action fontaccel.c
2752 action fontnames.c
2753 action fontutil.c
2754 action fontxlfd.c
2755 action format.c
2756 action miscutil.c
2757 action patcache.c
2758 action private.c
2759 action utilbitmap.c
2761 src_dir lib/font/Speedo
2762 dst_dir lib/Xfont/src/Speedo
2764 action adobe-iso.h
2765 action bics-iso.h
2766 action bics-unicode.c
2767 action bics-unicode.h
2768 action do_char.c
2769 action do_trns.c
2770 action keys.h
2771 action out_bl2d.c
2772 action out_blk.c
2773 action out_outl.c
2774 action out_scrn.c
2775 action out_util.c
2776 action reset.c
2777 action set_spcs.c
2778 action set_trns.c
2779 action spdo_prv.h
2780 action speedo.h
2781 action spencode.c
2782 action sperr.c
2783 action spfile.c
2784 action spfont.c
2785 action spfuncs.c
2786 action spglyph.c
2787 action spinfo.c
2788 action spint.h
2789 action useropt.h
2791 src_dir lib/font/Type1
2792 dst_dir lib/Xfont/src/Type1
2794 action afm.c
2795 action AFM.h
2796 action arith.c
2797 action arith.h
2798 action blues.h
2799 action cidchar.c
2800 action cluts.h
2801 action curves.c
2802 action curves.h
2803 action digit.h
2804 action fontfcn.c
2805 action fontfcn.h
2806 action fonts.h
2807 action hdigit.h
2808 action hints.c
2809 action hints.h
2810 action lines.c
2811 action lines.h
2812 action objects.c
2813 action objects.h
2814 action paths.c
2815 action paths.h
2816 action pictures.h
2817 action range.h
2818 action regions.c
2819 action regions.h
2820 action scanfont.c
2821 action spaces.c
2822 action spaces.h
2823 action strokes.h
2824 action t1funcs.c
2825 action t1hdigit.h
2826 action t1imager.h
2827 action t1info.c
2828 action t1intf.h
2829 action t1io.c
2830 action t1malloc.c
2831 action t1snap.c
2832 action t1stdio.h
2833 action t1stub.c
2834 action t1unicode.c
2835 action t1unicode.h
2836 action token.c
2837 action token.h
2838 action tokst.h
2839 action trig.h
2840 action type1.c
2841 action util.c
2842 action util.h
2845 symlink_lib_fontenc() {
2846 src_dir lib/font/fontfile
2847 dst_dir lib/fontenc/src
2849 action fontenc.c
2850 action encparse.c
2851 action fontencI.h
2853 src_dir lib/font/include
2854 dst_dir lib/fontenc/include/X11/fonts
2856 action fontenc.h
2859 symlink_lib_xaw() {
2860 src_dir lib/Xaw
2862 dst_dir lib/Xaw/old-doc
2864 action CHANGES
2865 action Changelog
2867 dst_dir lib/Xaw/src
2869 action Actions.c
2870 action AllWidgets.c
2871 action AsciiSink.c
2872 action AsciiSrc.c
2873 action AsciiText.c
2874 action Box.c
2875 action Command.c
2876 action Converters.c
2877 action Dialog.c
2878 action DisplayList.c
2879 action Form.c
2880 action Grip.c
2881 action Label.c
2882 action List.c
2883 action MenuButton.c
2884 action MultiSink.c
2885 action MultiSrc.c
2886 action OS.c
2887 action Paned.c
2888 action Panner.c
2889 action Pixmap.c
2890 action Porthole.c
2891 action PrintShell.c
2892 action Repeater.c
2893 action Scrollbar.c
2894 action sharedlib.c
2895 action Simple.c
2896 action SimpleMenu.c
2897 action SmeBSB.c
2898 action Sme.c
2899 action SmeLine.c
2900 action StripChart.c
2901 action TextAction.c
2902 action Text.c
2903 action TextPop.c
2904 action TextSink.c
2905 action TextSrc.c
2906 action TextTr.c
2907 action Tip.c
2908 action Toggle.c
2909 action Tree.c
2910 action Vendor.c
2911 action Viewport.c
2912 action XawI18n.c
2913 action XawIm.c
2914 action XawInit.c
2916 action Private.h
2917 action XawI18n.h
2919 dst_dir lib/Xaw/include/X11/Xaw
2921 action AllWidgets.h
2922 action AsciiSink.h
2923 action AsciiSinkP.h
2924 action AsciiSrc.h
2925 action AsciiSrcP.h
2926 action AsciiText.h
2927 action AsciiTextP.h
2928 action Box.h
2929 action BoxP.h
2930 action Cardinals.h
2931 action Command.h
2932 action CommandP.h
2933 action Dialog.h
2934 action DialogP.h
2935 action Form.h
2936 action FormP.h
2937 action Grip.h
2938 action GripP.h
2939 action Label.h
2940 action LabelP.h
2941 action List.h
2942 action ListP.h
2943 action MenuButton.h
2944 action MenuButtoP.h
2945 action MultiSink.h
2946 action MultiSinkP.h
2947 action MultiSrc.h
2948 action MultiSrcP.h
2949 action Paned.h
2950 action PanedP.h
2951 action Panner.h
2952 action PannerP.h
2953 action Porthole.h
2954 action PortholeP.h
2955 action Print.h
2956 action PrintSP.h
2957 action Repeater.h
2958 action RepeaterP.h
2959 action Reports.h
2960 action Scrollbar.h
2961 action ScrollbarP.h
2962 action Simple.h
2963 action SimpleMenP.h
2964 action SimpleMenu.h
2965 action SimpleP.h
2966 action SmeBSB.h
2967 action SmeBSBP.h
2968 action Sme.h
2969 action SmeLine.h
2970 action SmeLineP.h
2971 action SmeP.h
2972 action StripCharP.h
2973 action StripChart.h
2974 action Template.c
2975 action Template.h
2976 action TemplateP.h
2977 action Text.h
2978 action TextP.h
2979 action TextSink.h
2980 action TextSinkP.h
2981 action TextSrc.h
2982 action TextSrcP.h
2983 action Tip.h
2984 action TipP.h
2985 action Toggle.h
2986 action ToggleP.h
2987 action Tree.h
2988 action TreeP.h
2989 action VendorEP.h
2990 action Viewport.h
2991 action ViewportP.h
2992 action XawImP.h
2993 action XawInit.h
2995 dst_dir lib/Xaw/man
2997 action Xaw.man
3000 symlink_lib_fs() {
3001 src_dir lib/FS
3002 dst_dir lib/FS/src
3004 action FSCloseFt.c
3005 action FSClServ.c
3006 action FSConnServ.c
3007 action FSErrDis.c
3008 action FSErrHndlr.c
3009 action FSFlush.c
3010 action FSFontInfo.c
3011 action FSFtNames.c
3012 action FSGetCats.c
3013 action FSlibInt.c
3014 action FSListCats.c
3015 action FSListExt.c
3016 action FSMisc.c
3017 action FSNextEv.c
3018 action FSOpenFont.c
3019 action FSOpenServ.c
3020 action FSQGlyphs.c
3021 action FSQuExt.c
3022 action FSQXExt.c
3023 action FSQXInfo.c
3024 action FSServName.c
3025 action FSSetCats.c
3026 action FSSync.c
3027 action FSSynchro.c
3029 action FSlibint.h
3030 action FSlibos.h
3032 dst_dir lib/FS/include/X11/fonts
3034 action FSlib.h
3037 symlink_lib_xres() {
3038 src_dir lib/XRes
3039 dst_dir lib/XRes/src
3041 action XRes.c
3043 src_dir include/extensions
3044 dst_dir lib/XRes/include/X11/extensions
3046 action XRes.h
3048 src_dir lib/XRes
3049 dst_dir lib/XRes/man
3051 action XRes.man
3054 symlink_lib_randr()
3056 src_dir lib/Xrandr
3057 dst_dir lib/Xrandr/src
3059 action Xrandrint.h
3060 action Xrandr.c
3062 dst_dir lib/Xrandr/include/X11/extensions
3064 action Xrandr.h
3066 dst_dir lib/Xrandr/man
3068 action Xrandr.man
3071 symlink_lib_windowswm() {
3072 src_dir lib/windows
3073 dst_dir lib/WindowsWM/src
3075 action windowswm.c
3077 dst_dir lib/WindowsWM/man
3079 action WindowsWM.man WindowsWM.3
3082 symlink_lib_xcursor()
3084 src_dir lib/Xcursor
3086 dst_dir lib/Xcursor/include/X11/Xcursor
3088 action Xcursor.h
3090 dst_dir lib/Xcursor/src
3092 action xcursorint.h
3093 action cursor.c
3094 action display.c
3095 action file.c
3096 action library.c
3097 action xlib.c
3099 dst_dir lib/Xcursor/man
3101 action Xcursor.man
3104 symlink_lib_xtrap()
3106 src_dir lib/XTrap
3107 dst_dir lib/XTrap/src
3109 action XECallBcks.c
3110 action XEConTxt.c
3111 action XEDsptch.c
3112 action XEPrInfo.c
3113 action XERqsts.c
3114 action XEStrMap.c
3115 action XETrapInit.c
3116 action XEWrappers.c
3119 symlink_lib_xfontcache()
3121 src_dir lib/Xfontcache
3122 dst_dir lib/Xfontcache/src
3124 action FontCache.c
3126 dst_dir lib/Xfontcache/man
3128 action Xfontcache.man
3131 symlink_lib_xinerama()
3133 src_dir lib/Xinerama
3134 dst_dir lib/Xinerama/src
3136 action Xinerama.c
3139 symlink_lib_xprint_util()
3141 src_dir lib/XprintUtil
3142 dst_dir lib/XprintUtil/src
3144 action xprintutil.c
3145 action xprintutil_printtofile.c
3147 dst_dir lib/XprintUtil/include/X11/XprintUtil
3149 action xprintutil.h
3152 symlink_lib_xprint_app_util()
3154 src_dir lib/XprintAppUtil
3155 dst_dir lib/XprintAppUtil/src
3157 action xpapputil.c
3159 dst_dir lib/XprintAppUtil/include/X11/XprintAppUtil
3161 action xpapputil.h
3164 symlink_lib_xss()
3166 src_dir lib/Xss
3167 dst_dir lib/XScrnSaver/src
3169 action XScrnSaver.c
3171 dst_dir lib/XScrnSaver/man
3173 action Xss.man
3176 symlink_lib_xxf86dga() {
3177 src_dir lib/Xxf86dga
3178 dst_dir lib/Xxf86dga/src
3180 action XF86DGA.c
3181 action XF86DGA2.c
3183 dst_dir lib/Xxf86dga/man
3185 action XDGA.man
3188 symlink_lib_xxf86misc() {
3189 src_dir lib/Xxf86misc
3190 dst_dir lib/Xxf86misc/src
3192 action XF86Misc.c
3194 dst_dir lib/Xxf86misc/man
3196 action XF86Misc.man
3199 symlink_lib_xxf86vm() {
3200 src_dir lib/Xxf86vm
3201 dst_dir lib/Xxf86vm/src
3203 action XF86VMode.c
3205 dst_dir lib/Xxf86vm/man
3207 action XF86VM.man
3210 symlink_lib_xtst() {
3211 src_dir lib/Xtst
3212 dst_dir lib/Xtst/src
3214 action XRecord.c
3215 action XTest.c
3218 symlink_lib_xv() {
3219 src_dir lib/Xv
3220 dst_dir lib/Xv/src
3222 action Xv.c
3223 action Xvlibint.h
3225 src_dir include/extensions
3226 dst_dir lib/Xv/include/X11/extensions
3228 action Xvlib.h
3230 src_dir doc/man/Xv
3231 dst_dir lib/Xv/man
3233 action XvFreeAdaptorInfo.man
3234 action XvFreeEncodingInfo.man
3235 action XvGetPortAttribute.man
3236 action XvGetStill.man
3237 action XvGetVideo.man
3238 action XvGrabPort.man
3239 action Xv.man
3240 action XvPortNotify.man
3241 action XvPutStill.man
3242 action XvPutVideo.man
3243 action XvQueryAdaptors.man
3244 action XvQueryBestSize.man
3245 action XvQueryEncodings.man
3246 action XvQueryExtension.man
3247 action XvSelectPortNotify.man
3248 action XvSelectVideoNotify.man
3249 action XvSetPortAttribute.man
3250 action XvStopVideo.man
3251 action XvUngrabPort.man
3252 action XvVideoNotify.man
3255 symlink_lib_xvmc() {
3256 src_dir lib/XvMC
3257 dst_dir lib/XvMC/src
3259 action XvMC.c
3260 action XvMClibint.h
3262 src_dir lib/XvMC/wrapper
3264 action XvMCWrapper.c
3266 src_dir include/extensions
3267 dst_dir lib/XvMC/include/X11/extensions
3269 action XvMClib.h
3272 symlink_lib_xxf86rush() {
3273 src_dir lib/Xxf86rush
3274 dst_dir lib/Xxf86rush/src
3276 action XF86Rush.c
3279 symlink_lib_xkbfile() {
3280 src_dir lib/xkbfile
3281 dst_dir lib/xkbfile/src
3283 action cout.c
3284 action maprules.c
3285 action srvmisc.c
3286 action xkbatom.c
3287 action xkbbells.c
3288 action xkbconfig.c
3289 action xkbdraw.c
3290 action xkberrs.c
3291 action xkbmisc.c
3292 action xkbout.c
3293 action xkbtext.c
3294 action xkmout.c
3295 action xkmread.c
3296 action XKBfileInt.h
3297 action magic
3299 dst_dir lib/xkbfile/include/X11/extensions
3301 action XKBbells.h
3302 action XKBconfig.h
3303 action XKBfile.h
3304 action XKBrules.h
3305 action XKMformat.h
3306 action XKM.h
3309 symlink_lib_xkbui() {
3310 src_dir lib/xkbui
3311 dst_dir lib/xkbui/src
3313 action XKBui.c
3314 action XKBuiPriv.h
3316 dst_dir lib/xkbui/include/X11/extensions
3318 action XKBui.h
3321 symlink_lib_oldx() {
3322 src_dir lib/oldX
3323 dst_dir lib/oldX/src
3325 action XCrAssoc.c
3326 action XDelAssoc.c
3327 action XDestAssoc.c
3328 action XDraw.c
3329 action XLookAssoc.c
3330 action XMakeAssoc.c
3332 dst_dir lib/oldX/include/X11
3334 action X10.h
3338 symlink_lib_lbxutil() {
3339 src_dir lib/lbxutil/image
3340 dst_dir lib/lbxutil/src/image
3342 action dfaxg42d.c
3343 action dpackbits.c
3344 action efaxg42d.c
3345 action epackbits.c
3346 action lbxbwcodes.h
3347 action lbxfax.h
3348 action misc.c
3349 action mkg3states.c
3351 src_dir lib/lbxutil/delta
3352 dst_dir lib/lbxutil/src/delta
3354 action lbxdelta.c
3356 src_dir lib/lbxutil/lbx_zlib
3357 dst_dir lib/lbxutil/src/lbx_zlib
3359 action lbx_zlib.c
3360 action lbx_zlib.h
3361 action lbx_zlib_io.c
3362 action reqstats.c
3363 action reqstats.h
3366 symlink_lib_xft() {
3367 src_dir lib/Xft
3368 dst_dir lib/Xft
3370 action NEWS
3371 action README
3372 action AUTHORS
3373 action ChangeLog
3374 action COPYING
3375 action INSTALL
3377 action xft.pc.in
3378 action xft-config.in
3380 dst_dir lib/Xft/man
3382 action Xft.3.in
3383 action xft-config.1.in
3385 dst_dir lib/Xft/include/X11/Xft
3387 action Xft.h
3388 action XftCompat.h
3390 dst_dir lib/Xft/src
3392 action xftcolor.c
3393 action xftcore.c
3394 action xftdbg.c
3395 action xftdpy.c
3396 action xftdraw.c
3397 action xftextent.c
3398 action xftfont.c
3399 action xftfreetype.c
3400 action xftglyphs.c
3401 action xftinit.c
3402 action xftint.h
3403 action xftlist.c
3404 action xftname.c
3405 action xftrender.c
3406 action xftstr.c
3407 action xftswap.c
3408 action xftxlfd.c
3411 symlink_lib() {
3412 symlink_lib_xft
3413 symlink_lib_applewm
3414 symlink_lib_windowswm
3415 symlink_lib_dmx
3416 symlink_lib_composite
3417 symlink_lib_damage
3418 symlink_lib_evie
3419 symlink_lib_fixes
3420 symlink_lib_xau
3421 symlink_lib_xtrans
3422 symlink_lib_xdmcp
3423 symlink_lib_x11
3424 symlink_lib_ice
3425 symlink_lib_sm
3426 symlink_lib_xt
3427 symlink_lib_xext
3428 symlink_lib_xmu
3429 symlink_lib_xp
3430 symlink_lib_xpm
3431 symlink_lib_fontenc
3432 symlink_lib_xfont
3433 symlink_lib_xrender
3434 symlink_lib_xi
3435 symlink_lib_xaw
3436 symlink_lib_fs
3437 symlink_lib_xres
3438 symlink_lib_randr
3439 symlink_lib_xcursor
3440 symlink_lib_xtrap
3441 symlink_lib_xfontcache
3442 symlink_lib_xinerama
3443 symlink_lib_xprint_util
3444 symlink_lib_xprint_app_util
3445 symlink_lib_xss
3446 symlink_lib_xxf86dga
3447 symlink_lib_xxf86misc
3448 symlink_lib_xxf86vm
3449 symlink_lib_xtst
3450 symlink_lib_xv
3451 symlink_lib_xxf86rush
3452 symlink_lib_xkbfile
3453 symlink_lib_xkbui
3454 symlink_lib_oldx
3455 symlink_lib_xvmc
3456 symlink_lib_lbxutil
3459 #########
3461 # The app module
3463 #########
3465 symlink_app_twm() {
3466 src_dir programs/twm
3467 dst_dir app/twm/src
3469 action add_window.c
3470 action add_window.h
3471 action cursor.c
3472 action deftwmrc.sed
3473 action events.c
3474 action events.h
3475 action gc.c
3476 action gc.h
3477 action gram.y
3478 action iconmgr.c
3479 action iconmgr.h
3480 action icons.c
3481 action icons.h
3482 action lex.l
3483 action list.c
3484 action list.h
3485 action menus.c
3486 action menus.h
3487 action parse.c
3488 action parse.h
3489 action resize.c
3490 action resize.h
3491 action screen.h
3492 action session.c
3493 action session.h
3494 action siconify.bm
3495 action system.twmrc
3496 action twm.c
3497 action twm.h
3498 action util.c
3499 action util.h
3500 action version.c
3501 action version.h
3503 dst_dir app/twm/man
3505 action twm.man
3507 src_dir programs/twm/sample-twmrc
3508 dst_dir app/twm/sample-twmrc
3510 action jim.twmrc
3511 action keith.twmrc
3512 action lemke.twmrc
3515 symlink_app_xdpyinfo() {
3516 src_dir programs/xdpyinfo
3517 dst_dir app/xdpyinfo
3519 action xdpyinfo.c
3520 action xdpyinfo.man
3523 symlink_app_xhost() {
3524 src_dir programs/xhost
3525 dst_dir app/xhost
3527 action xhost.c
3528 action xhost.man
3531 symlink_app_appres() {
3532 src_dir programs/appres
3533 dst_dir app/appres
3535 action appres.c
3537 action appres.man
3541 symlink_app_bdftopcf() {
3542 src_dir programs/bdftopcf
3543 dst_dir app/bdftopcf
3545 action bdftopcf.c
3547 action bdftopcf.man
3551 symlink_app_beforelight() {
3552 src_dir programs/beforelight
3553 dst_dir app/beforelight
3555 action B4light.ad Beforelight.ad
3557 action b4light.c
3559 action b4light.man beforelight.man
3563 symlink_app_bitmap() {
3564 src_dir programs/bitmap
3565 dst_dir app/bitmap
3567 action Bitmap.ad
3568 action Bitmap-co.ad Bitmap-color.ad
3569 action Bitmap-nocase.ad
3571 action atobm.c
3572 action BitEdit.c
3573 action Bitmap.c
3574 action bmtoa.c
3575 action CutPaste.c
3576 action Dialog.c
3577 action Graphics.c
3578 action Handlers.c
3579 action ReqMach.c
3581 action Bitmap.h
3582 action BitmapP.h
3583 action Dialog.h
3584 action Requests.h
3586 action bitmap.man
3588 action Dashes
3589 action Down
3590 action Excl
3591 action FlipHoriz
3592 action FlipVert
3593 action Fold
3594 action Left
3595 action Right
3596 action RotateLeft
3597 action RotateRight
3598 action Stipple
3599 action Term
3600 action Up
3602 action bitmap.icon
3605 symlink_app_editres() {
3606 src_dir programs/editres
3607 dst_dir app/editres
3609 action Edit-col.ad Editres-color.ad
3610 action Editres.ad
3612 action actions.c
3613 action comm.c
3614 action editres.c
3615 action geometry.c
3616 action handler.c
3617 action setvalues.c
3618 action svpopup.c
3619 action utils.c
3620 action widgets.c
3621 action wtree.c
3623 action README
3625 action editresP.h
3627 action editres.man
3631 symlink_app_fonttosfnt() {
3632 src_dir programs/fonttosfnt
3633 dst_dir app/fonttosfnt
3635 action env.c
3636 action fonttosfnt.c
3637 action read.c
3638 action struct.c
3639 action util.c
3640 action write.c
3642 action fonttosfnt.h
3644 action fonttosfnt.man
3648 symlink_app_fslsfonts() {
3649 src_dir programs/fslsfonts
3650 dst_dir app/fslsfonts
3652 action fslsfonts.c
3654 action fslsfonts.man
3658 symlink_app_fstobdf() {
3659 src_dir programs/fstobdf
3660 dst_dir app/fstobdf
3662 action chars.c
3663 action fstobdf.c
3664 action header.c
3665 action props.c
3667 action fstobdf.h
3669 action fstobdf.man
3673 symlink_app_iceauth() {
3674 src_dir programs/iceauth
3675 dst_dir app/iceauth
3677 action iceauth.c
3678 action process.c
3680 action iceauth.h
3682 action iceauth.man
3686 symlink_app_ico() {
3687 src_dir programs/ico
3688 dst_dir app/ico
3690 action ico.c
3692 action allobjs.h
3693 action objcube.h
3694 action objico.h
3695 action objocta.h
3696 action objplane.h
3697 action objpyr.h
3698 action polyinfo.h
3700 action ico.man
3704 symlink_app_listres() {
3705 src_dir programs/listres
3706 dst_dir app/listres
3708 action listres.c
3710 action listres.man
3714 symlink_app_luit() {
3715 src_dir programs/luit
3716 dst_dir app/luit
3718 action charset.c
3719 action iso2022.c
3720 action locale.c
3721 action luit.c
3722 action other.c
3723 action parser.c
3724 action sys.c
3726 action charset.h
3727 action iso2022.h
3728 action luit.h
3729 action other.h
3730 action parser.h
3731 action sys.h
3733 action luit.man
3737 symlink_app_mkcfm() {
3738 src_dir programs/mkcfm
3739 dst_dir app/mkcfm
3741 action mkcfm.c
3742 action mkcfm.man
3745 symlink_app_makepsres() {
3746 src_dir programs/makepsres
3747 dst_dir app/makepsres
3749 action makepsres.c
3751 action makepsres.man
3755 symlink_app_mkfontdir() {
3756 src_dir programs/mkfontdir
3757 dst_dir app/mkfontdir
3759 action mkfontdir.cpp
3761 action mkfontdir.man
3765 symlink_app_mkfontscale() {
3766 src_dir programs/mkfontscale
3767 dst_dir app/mkfontscale
3769 action hash.c
3770 action ident.c
3771 action list.c
3772 action mkfontscale.c
3774 action data.h
3775 action hash.h
3776 action ident.h
3777 action list.h
3779 action mkfontscale.man
3783 symlink_app_oclock() {
3784 src_dir programs/oclock
3785 dst_dir app/oclock
3787 action Clock-col.ad Clock-color.ad
3789 action Clock.c
3790 action oclock.c
3791 action transform.c
3793 action Clock.h
3794 action ClockP.h
3795 action transform.h
3797 action oclock.man
3799 action oclock.bit
3800 action oclmask.bit
3803 #symlink_app_pclcomp() {
3804 # src_dir programs/pclcomp
3805 # dst_dir app/pclcomp
3807 # action pclcomp.c
3809 # action README
3810 # action printer.note
3812 # action pclcomp.man
3816 symlink_app_proxymngr() {
3817 src_dir programs/proxymngr
3818 dst_dir app/proxymngr
3820 action config.c
3821 action main.c
3822 action pmdb.c
3824 action config.h
3825 action pmdb.h
3826 action pmint.h
3828 action proxymngr.man
3830 action pmconfig.cpp
3833 symlink_app_rgb() {
3834 src_dir programs/rgb
3835 dst_dir app/rgb
3837 action rgb.c
3838 action showrgb.c
3839 action showrgb.man
3840 action rgb.txt
3842 src_dir programs/rgb/others
3843 dst_dir app/rgb/others
3845 action old-rgb.txt
3846 action raveling.txt
3847 action README
3848 action thomas.txt
3852 symlink_app_setxkbmap() {
3853 src_dir programs/setxkbmap
3854 dst_dir app/setxkbmap
3856 action setxkbmap.c
3858 action setxkbmap.man
3861 symlink_app_showfont() {
3862 src_dir programs/showfont
3863 dst_dir app/showfont
3865 action showfont.c
3867 action showfont.man
3870 symlink_app_smproxy() {
3871 src_dir programs/smproxy
3872 dst_dir app/smproxy
3874 action save.c
3875 action smproxy.c
3877 action smproxy.h
3879 action smproxy.man
3882 symlink_app_viewres() {
3883 src_dir programs/viewres
3884 dst_dir app/viewres
3886 action Viewres.ad
3888 action viewres.c
3890 action viewres.man
3893 symlink_app_x11perf() {
3894 src_dir programs/x11perf
3895 dst_dir app/x11perf
3897 action bitmaps.c
3898 action do_arcs.c
3899 action do_blt.c
3900 action do_complex.c
3901 action do_dots.c
3902 action do_lines.c
3903 action do_movewin.c
3904 action do_rects.c
3905 action do_segs.c
3906 action do_simple.c
3907 action do_tests.c
3908 action do_text.c
3909 action do_traps.c
3910 action do_tris.c
3911 action do_valgc.c
3912 action do_windows.c
3913 action x11perf.c
3915 action bitmaps.h
3916 action x11perf.h
3918 action x11pcomp.man x11perfcomp.man
3919 action x11perf.man
3920 action Xmark.man
3922 action fillblnk.sh fillblnk
3923 action perfboth.sh perfboth
3924 action perfratio.sh perfratio
3925 action Xmark.sh Xmark
3927 action x11pcomp.cpp
3930 symlink_app_xauth() {
3931 src_dir programs/xauth
3932 dst_dir app/xauth
3934 action gethost.c
3935 action parsedpy.c
3936 action process.c
3937 action xauth.c
3939 action xauth.h
3941 action xauth.man
3944 symlink_app_xbiff() {
3945 src_dir programs/xbiff
3946 dst_dir app/xbiff
3948 action Mailbox.c
3949 action xbiff.c
3951 action Mailbox.h
3952 action MailboxP.h
3954 action xbiff.man
3956 src_dir programs/xbiff/bitmaps
3957 dst_dir app/xbiff/bitmaps
3959 action mail-down
3960 action mail-down-mask
3961 action mail-up
3962 action mail-up-mask
3965 symlink_app_xcalc() {
3966 src_dir programs/xcalc
3967 dst_dir app/xcalc
3969 action XCalc.ad
3970 action XCalc-col.ad XCalc-color.ad
3972 action actions.c
3973 action math.c
3974 action xcalc.c
3976 action actions.h
3977 action xcalc.h
3979 action xcalc.man
3983 symlink_app_xclipboard() {
3984 src_dir programs/xclipboard
3985 dst_dir app/xclipboard
3987 action XClipboard.ad
3989 action xclipboard.c
3990 action xcutsel.c
3992 action xclipboard.man
3993 action xcutsel.man
3997 symlink_app_xclock() {
3998 src_dir programs/xclock
3999 dst_dir app/xclock
4001 action XClk-col.ad XClock-color.ad
4002 action XClock.ad
4004 action Clock.c
4005 action xclock.c
4007 action Clock.h
4008 action ClockP.h
4010 action xclock.man
4012 action clmask.bit
4013 action clock.bit
4017 symlink_app_xcmsdb() {
4018 src_dir programs/xcmsdb
4019 dst_dir app/xcmsdb
4021 action loadData.c
4022 action xcmsdb.c
4024 action SCCDFile.h
4026 action xcmsdb.man
4028 src_dir programs/xcmsdb/datafiles
4029 dst_dir app/xcmsdb/datafiles
4031 action sample1.dcc
4032 action sample2.dcc
4035 symlink_app_xconsole() {
4036 src_dir programs/xconsole
4037 dst_dir app/xconsole
4039 action XConsole.ad
4041 action xconsole.c
4043 action xconsole.man
4047 symlink_app_xcursorgen() {
4048 src_dir programs/xcursorgen
4049 dst_dir app/xcursorgen
4051 action xcursorgen.c
4052 action xcursorgen.man
4055 symlink_app_xdbedizzy() {
4056 src_dir programs/xdbedizzy
4057 dst_dir app/xdbedizzy
4059 action xdbedizzy.c
4061 action xdbedizzy.man
4063 action xdbedizzy.sgml
4066 symlink_app_xditview() {
4067 src_dir programs/xditview
4068 dst_dir app/xditview
4070 action Xdit-chrtr.ad Xditview-chrtr.ad
4071 action Xditview.ad
4073 action draw.c
4074 action Dvi.c
4075 action DviChar.c
4076 action font.c
4077 action lex.c
4078 action page.c
4079 action parse.c
4080 action xditview.c
4081 action XFontName.c
4083 action DviChar.h
4084 action Dvi.h
4085 action DviP.h
4086 action Menu.h
4087 action XFontName.h
4089 action xditview.man
4091 action xdit.bm
4092 action xdit_mask.bm
4094 action ldblarrow
4095 action rdblarrow
4098 symlink_app_xdriinfo() {
4099 src_dir programs/xdriinfo
4100 dst_dir app/xdriinfo
4102 action xdriinfo.c
4104 action xdriinfo.man
4108 symlink_app_xev() {
4109 src_dir programs/xev
4110 dst_dir app/xev
4112 action xev.c
4114 action xev.man
4118 symlink_app_xeyes() {
4119 src_dir programs/xeyes
4120 dst_dir app/xeyes
4122 action Eyes.c
4123 action transform.c
4124 action xeyes.c
4126 action Eyes.h
4127 action EyesP.h
4128 action transform.h
4130 action xeyes.man
4132 action eyes.bit
4133 action eyesmask.bit
4136 symlink_app_xf86dga() {
4137 src_dir programs/xf86dga
4138 dst_dir app/xf86dga
4140 action dga.c
4142 action dga.man
4146 symlink_app_xfd() {
4147 src_dir programs/xfd
4148 dst_dir app/xfd
4150 action Xfd.ad
4152 action grid.c
4153 action xfd.c
4155 action grid.h
4156 action gridP.h
4158 action xfd.man
4162 symlink_app_xfindproxy() {
4163 src_dir programs/xfindproxy
4164 dst_dir app/xfindproxy
4166 action xfindproxy.c
4168 action xfindproxy.h
4170 action xfindproxy.man
4174 symlink_app_xfontsel() {
4175 src_dir programs/xfontsel
4176 dst_dir app/xfontsel
4178 action XFontSel.ad
4180 action ULabel.c
4181 action xfontsel.c
4183 action ULabel.h
4184 action ULabelP.h
4186 action xfontsel.man
4190 symlink_app_xfsinfo() {
4191 src_dir programs/xfsinfo
4192 dst_dir app/xfsinfo
4194 action xfsinfo.c
4196 action xfsinfo.man
4200 symlink_app_xfwp() {
4201 src_dir programs/xfwp
4202 dst_dir app/xfwp
4204 action io.c
4205 action misc.c
4206 action pm.c
4207 action transport.c
4208 action xfwp.c
4210 action io.h
4211 action misc.h
4212 action pm.h
4213 action transport.h
4214 action xfwp.h
4216 action xfwp.man
4220 symlink_app_xgamma() {
4221 src_dir programs/xgamma
4222 dst_dir app/xgamma
4224 action xgamma.c
4226 action xgamma.man
4230 symlink_app_xgc() {
4231 src_dir programs/xgc
4232 dst_dir app/xgc
4234 action Xgc.ad
4236 action choice.c
4237 action dashlist.c
4238 action getfile.c
4239 action gram.y
4240 action interpret.c
4241 action lex.l
4242 action main.c
4243 action planemask.c
4244 action record.c
4245 action testfrac.c
4246 action tests.c
4247 action text.c
4249 action constants.h
4250 action main.h
4251 action xgc.h
4253 action xgc.man
4255 action Bugs
4256 action tile
4258 src_dir programs/xgc/Written
4259 dst_dir app/xgc/Written
4261 action FilledRects
4262 action Interface
4263 action Jim
4264 action Notes
4265 action Notes2
4266 action Outline
4267 action Widget
4270 symlink_app_xinit() {
4271 src_dir programs/xinit
4272 dst_dir app/xinit
4274 action xinit.c
4276 action README
4278 action startx.man
4279 action xinit.man
4281 action startx.cmd
4282 action xinitrc.cmd
4283 action xinit.def
4284 action startx.cpp
4285 action xinitrc.cpp
4288 symlink_app_xkbcomp() {
4289 src_dir programs/xkbcomp
4290 dst_dir app/xkbcomp
4292 action action.c
4293 action alias.c
4294 action compat.c
4295 action expr.c
4296 action geometry.c
4297 action indicators.c
4298 action keycodes.c
4299 action keymap.c
4300 action keytypes.c
4301 action listing.c
4302 action misc.c
4303 action parseutils.c
4304 action symbols.c
4305 action utils.c
4306 action vmod.c
4307 action xkbcomp.c
4308 action xkbparse.y
4309 action xkbpath.c
4310 action xkbscan.c
4312 action README
4313 action README.config
4314 action README.enhancing
4316 action action.h
4317 action alias.h
4318 action compat.h
4319 action expr.h
4320 action indicators.h
4321 action keycodes.h
4322 action misc.h
4323 action parseutils.h
4324 action tokens.h
4325 action utils.h
4326 action vmod.h
4327 action xkbcomp.h
4328 action xkbpath.h
4330 action xkbcomp.man
4334 symlink_app_xkbevd() {
4335 src_dir programs/xkbevd
4336 dst_dir app/xkbevd
4338 action cfgparse.y
4339 action cfgscan.c
4340 action evargs.c
4341 action printev.c
4342 action utils.c
4343 action xkbevd.c
4345 action tokens.h
4346 action utils.h
4347 action xkbevd.h
4349 action xkbevd.man
4351 action example.cf
4354 symlink_app_xkbprint() {
4355 src_dir programs/xkbprint
4356 dst_dir app/xkbprint
4358 action psgeom.c
4359 action utils.c
4360 action xkbprint.c
4362 action isokeys.h
4363 action utils.h
4364 action xkbprint.h
4366 action xkbprint.man
4370 symlink_app_xkbutils() {
4371 src_dir programs/xkbutils
4372 dst_dir app/xkbutils
4374 action LED.c
4375 action utils.c
4376 action xkbbell.c
4377 action xkbvleds.c
4378 action xkbwatch.c
4380 action LED.h
4381 action LEDP.h
4382 action utils.h
4386 symlink_app_xkill() {
4387 src_dir programs/xkill
4388 dst_dir app/xkill
4390 action xkill.c
4392 action xkill.man
4396 symlink_app_xload() {
4397 src_dir programs/xload
4398 dst_dir app/xload
4400 action XLoad.ad
4402 action get_load.c
4403 action get_rload.c
4404 action xload.c
4406 action xload.h
4408 action xload.man
4410 action xload.bit
4413 symlink_app_xlogo() {
4414 src_dir programs/xlogo
4415 dst_dir app/xlogo
4417 action XLogo.ad
4418 action XLogo-co.ad XLogo-color.ad
4420 action Logo.c
4421 action print.c
4422 action RenderLogo.c
4423 action xlogo.c
4425 action Logo.h
4426 action LogoP.h
4427 action print.h
4428 action RenderLogo.h
4429 action xlogo.h
4431 action xlogo.man
4435 symlink_app_xlsatoms() {
4436 src_dir programs/xlsatoms
4437 dst_dir app/xlsatoms
4439 action xlsatoms.c
4441 action xlsatoms.man
4445 symlink_app_xlsclients() {
4446 src_dir programs/xlsclients
4447 dst_dir app/xlsclients
4449 action xlsclients.c
4451 action xlscli.man xlsclients.man
4455 symlink_app_xlsfonts() {
4456 src_dir programs/xlsfonts
4457 dst_dir app/xlsfonts
4459 action dsimple.c
4460 action xlsfonts.c
4462 action dsimple.h
4464 action xlsfonts.man
4465 action xlsfonts.sgml
4468 symlink_app_xmag() {
4469 src_dir programs/xmag
4470 dst_dir app/xmag
4472 action Xmag.ad
4474 action CutPaste.c
4475 action RootWin.c
4476 action Scale.c
4477 action xmag.c
4479 action CutPaste.h
4480 action RootWin.h
4481 action RootWinP.h
4482 action Scale.h
4483 action ScaleP.h
4485 action Scale.doc Scale.txt
4487 action xmag.man
4489 action xmag.icon
4492 symlink_app_xman() {
4493 src_dir programs/xman
4494 dst_dir app/xman
4496 action Xman-noxprint.ad
4497 action Xman-xprint.ad
4499 action buttons.c
4500 action globals.c
4501 action handler.c
4502 action help.c
4503 action main.c
4504 action man.c
4505 action misc.c
4506 action print.c
4507 action ScrollByL.c
4508 action search.c
4509 action tkfuncs.c
4510 action vendor.c
4512 action defs.h
4513 action globals.h
4514 action iconclosed.h
4515 action icon_help.h
4516 action icon_open.h
4517 action man.h
4518 action print.h
4519 action ScrollByL.h
4520 action ScrollByLP.h
4521 action vendor.h
4522 action version.h
4524 action xman.help
4525 action xman.man
4529 symlink_app_xmessage() {
4530 src_dir programs/xmessage
4531 dst_dir app/xmessage
4533 action Xmessage.ad
4534 action Xmessage-color.ad
4536 action makeform.c
4537 action readfile.c
4538 action xmessage.c
4540 action README
4542 action readfile.h
4543 action xmessage.h
4545 action xmessage.man
4547 action Tests
4550 symlink_app_xmh() {
4551 src_dir programs/xmh
4552 dst_dir app/xmh
4554 action Xmh.ad
4556 action bbox.c
4557 action command.c
4558 action compfuncs.c
4559 action folder.c
4560 action init.c
4561 action main.c
4562 action menu.c
4563 action miscfuncs.c
4564 action mlist.c
4565 action msg.c
4566 action pick.c
4567 action popup.c
4568 action screen.c
4569 action toc.c
4570 action tocfuncs.c
4571 action tocutil.c
4572 action tsource.c
4573 action util.c
4574 action viewfuncs.c
4576 action actions.h
4577 action bbox.h
4578 action bboxint.h
4579 action externs.h
4580 action globals.h
4581 action mlist.h
4582 action msg.h
4583 action toc.h
4584 action tocintrnl.h
4585 action tocutil.h
4586 action tsource.h
4587 action tsourceP.h
4588 action version.h
4589 action xmh.h
4591 action xmh.man
4593 action black6
4594 action box6
4595 action Xmh.sample
4598 symlink_app_xmodmap() {
4599 src_dir programs/xmodmap
4600 dst_dir app/xmodmap
4602 action exec.c
4603 action handle.c
4604 action pf.c
4605 action xmodmap.c
4607 action wq.h
4608 action xmodmap.h
4610 action xmodmap.man
4612 action swap.km
4615 symlink_app_xmore() {
4616 src_dir programs/xmore
4617 dst_dir app/xmore
4619 action XMore.ad
4621 action print.c
4622 action printdialog.c
4623 action xmore.c
4625 action printdialog.h
4626 action printdialogprivates.h
4627 action print.h
4628 action xmore.h
4630 action xmore.man
4631 action xmore.sgml
4634 symlink_app_xplsprinters() {
4635 src_dir programs/xplsprinters
4636 dst_dir app/xplsprinters
4638 action xplsprinters.c
4640 action xplsprinters.man
4642 action xplsprinters.sgml
4645 symlink_app_xpr() {
4646 src_dir programs/xpr
4647 dst_dir app/xpr
4649 action x2jet.c
4650 action x2pmp.c
4651 action xpr.c
4653 action lncmd.h
4654 action pmp.h
4655 action xpr.h
4657 action xdpr.man
4658 action xpr.man
4660 action xdpr.script
4663 symlink_app_xprehashprinterlist() {
4664 src_dir programs/xprehashprinterlist
4665 dst_dir app/xprehashprinterlist
4667 action xprehashprinterlist.c
4669 action xprehashprinterlist.man
4671 action xprehashprinterlist.sgml
4674 symlink_app_xrandr() {
4675 src_dir programs/xrandr
4676 dst_dir app/xrandr
4678 action xrandr.c
4680 action xrandr.man
4684 symlink_app_xrdb() {
4685 src_dir programs/xrdb
4686 dst_dir app/xrdb
4688 action xrdb.c
4690 action xrdb.man
4694 symlink_app_xrefresh() {
4695 src_dir programs/xrefresh
4696 dst_dir app/xrefresh
4698 action xrefresh.c
4700 action xrefresh.man
4704 symlink_app_xset() {
4705 src_dir programs/xset
4706 dst_dir app/xset
4708 action xset.c
4710 action xset.man
4714 symlink_app_xsetmode() {
4715 src_dir programs/xsetmode
4716 dst_dir app/xsetmode
4718 action xsetmode.c
4720 action xsetmode.man
4724 symlink_app_xsetpointer() {
4725 src_dir programs/xsetpointer
4726 dst_dir app/xsetpointer
4728 action xsetpointer.c
4730 action xsetpnt.man xsetpointer.man
4734 symlink_app_xsetroot() {
4735 src_dir programs/xsetroot
4736 dst_dir app/xsetroot
4738 action xsetroot.c
4740 action xsetroot.man
4744 symlink_app_xsm() {
4745 src_dir programs/xsm
4746 dst_dir app/xsm
4748 action XSm.ad
4750 action auth.c
4751 action choose.c
4752 action globals.c
4753 action info.c
4754 action list.c
4755 action lock.c
4756 action log.c
4757 action mainwin.c
4758 action misc.c
4759 action popup.c
4760 action printhex.c
4761 action prop.c
4762 action remote.c
4763 action restart.c
4764 action save.c
4765 action saveutil.c
4766 action signals.c
4767 action xsm.c
4768 action xtwatch.c
4770 action README
4772 action system.xsm
4774 action auth.h
4775 action choose.h
4776 action info.h
4777 action list.h
4778 action lock.h
4779 action log.h
4780 action mainwin.h
4781 action popup.h
4782 action prop.h
4783 action restart.h
4784 action save.h
4785 action saveutil.h
4786 action xsm.h
4787 action xtwatch.h
4789 action xsm.man
4793 symlink_app_xstdcmap() {
4794 src_dir programs/xstdcmap
4795 dst_dir app/xstdcmap
4797 action xstdcmap.c
4799 action xstdcmap.man
4803 symlink_app_xtrap() {
4804 src_dir programs/xtrap
4805 dst_dir app/xtrap
4807 action chparse.c
4808 action XEKeybCtrl.c
4809 action xtrapchar.c
4810 action xtrapin.c
4811 action xtrapinfo.c
4812 action xtrapout.c
4813 action xtrapproto.c
4814 action xtrapreset.c
4815 action xtrapstats.c
4817 action chparse.h
4818 action XEKeybCtrl.h
4820 action xtrap.man
4824 symlink_app_xvidtune() {
4825 src_dir programs/xvidtune
4826 dst_dir app/xvidtune
4828 action Xvidtune.cpp
4830 action xvidtune.c
4832 action xvidtune.man
4836 symlink_app_xvinfo() {
4837 src_dir programs/xvinfo
4838 dst_dir app/xvinfo
4840 action xvinfo.c
4842 action xvinfo.man
4845 symlink_app_xwud() {
4846 src_dir programs/xwud
4847 dst_dir app/xwud
4849 action xwud.c
4851 action xwud.man
4854 symlink_app_scripts() {
4855 src_dir programs/scripts
4856 dst_dir app/scripts
4858 action fontname.sh
4859 action fontprop.sh
4860 action xauth_switch_to_sun-des-1.cpp
4861 action xon.sh xon
4863 action xon.man
4866 symlink_app_rstart() {
4867 src_dir programs/rstart
4868 dst_dir app/rstart
4870 action auth.c
4871 action server.c
4873 action rstartd.man
4874 action rstart.man
4876 action client.cpp
4877 action server.cpp
4878 action config.cpp
4880 action server.os2
4882 # commands
4884 src_dir programs/rstart/commands
4885 dst_dir app/rstart/commands
4887 action ListContexts
4888 action ListGenericCommands
4889 action @List
4891 # x11r6
4893 src_dir programs/rstart/commands/x11r6
4894 dst_dir app/rstart/commands/x11r6
4896 action @List
4897 action LoadMonitor
4898 action Terminal
4900 # contexts
4902 src_dir programs/rstart/contexts
4903 dst_dir app/rstart/contexts
4905 action @List
4906 action @Aliases
4907 action default
4908 action x11r6
4910 # samples
4912 # commands
4914 src_dir programs/rstart/samples/commands
4915 dst_dir app/rstart/samples/commands
4917 action @List
4918 action ListContexts
4919 action ListGenericCommands
4921 # odt1
4923 src_dir programs/rstart/samples/commands/odt1
4924 dst_dir app/rstart/samples/commands/odt1
4926 action @List
4927 action LoadMonitor
4928 action Terminal
4930 # openwindows2
4932 src_dir programs/rstart/samples/commands/openwindows2
4933 dst_dir app/rstart/samples/commands/openwindows2
4935 action @List
4936 action LoadMonitor
4937 action Terminal
4939 # openwindow3
4941 src_dir programs/rstart/samples/commands/openwindows3
4942 dst_dir app/rstart/samples/commands/openwindows3
4944 action @List
4945 action LoadMonitor
4946 action Terminal
4948 # x11r5
4950 src_dir programs/rstart/samples/commands/x11r5
4951 dst_dir app/rstart/samples/commands/x11r5
4953 action @List
4954 action LoadMonitor
4955 action Terminal
4957 # contexts.odt1
4959 src_dir programs/rstart/samples/contexts.odt1
4960 dst_dir app/rstart/samples/contexts.odt1
4962 action @Aliases
4963 action @List
4964 action default
4965 action odt1
4967 # contexts.sun
4969 src_dir programs/rstart/samples/contexts.sun
4970 dst_dir app/rstart/samples/contexts.odt1
4972 action @Aliases
4973 action @List
4974 action default
4975 action openwindows2
4976 action openwindows3
4977 action x11r5
4978 action x11r6
4981 symlink_app_sessreg() {
4982 src_dir programs/xdm
4983 dst_dir app/sessreg
4985 action sessreg.c
4986 action sessreg.man
4989 symlink_app_xdm() {
4990 src_dir programs/xdm
4991 dst_dir app/xdm
4993 action access.c
4994 action auth.c
4995 action choose.c
4996 action chooser.c
4997 action daemon.c
4998 action dm.c
4999 action dpylist.c
5000 action error.c
5001 action file.c
5002 action genauth.c
5003 action krb5auth.c
5004 action mitauth.c
5005 action netaddr.c
5006 action policy.c
5007 action prngc.c
5008 action protodpy.c
5009 action reset.c
5010 action resource.c
5011 action rpcauth.c
5012 action server.c
5013 action session.c
5014 action socket.c
5015 action streams.c
5016 action util.c
5017 action xdmauth.c
5018 action xdmcp.c
5019 action xdmshell.c
5021 action dm_auth.h
5022 action dm_error.h
5023 action dm.h
5024 action dm_socket.h
5025 action greet.h
5027 action Chooser.ad
5029 action xdm.man xdm.man.cpp
5031 src_dir programs/xdm/greeter
5032 dst_dir app/xdm/greeter
5034 action greet.c
5035 action Login.c
5036 action Login.h
5037 action LoginP.h
5038 action verify.c
5040 src_dir programs/xdm/config
5041 dst_dir app/xdm/config
5043 action README
5045 action GiveConsole
5046 action TakeConsole
5048 action xorg-bw.xpm
5049 action xorg.xpm
5051 action Xreset
5052 action Xaccess
5053 action Xservers.fs
5054 action Xsession.cpp
5055 action Xsetup_0
5056 action Xstartup
5057 action Xwilling
5059 action Xres.cpp Xresources.cpp
5060 action Xserv.ws.cpp Xservers.ws.cpp
5061 action xdm-conf.cpp xdm-config.cpp
5064 symlink_app_xprop() {
5065 src_dir programs/xprop
5066 dst_dir app/xprop
5068 action xprop.c
5070 action xprop.man
5072 src_dir programs/xlsfonts
5074 action dsimple.c
5075 action dsimple.h
5078 symlink_app_xwd() {
5079 src_dir programs/xwd
5080 dst_dir app/xwd
5082 action list.c
5083 action multiVis.c
5084 action xwd.c
5086 action list.h
5087 action multiVis.h
5088 action wsutils.h
5090 action xwd.man
5092 src_dir programs/xlsfonts
5094 action dsimple.c
5095 action dsimple.h
5098 symlink_app_xwininfo() {
5099 src_dir programs/xwininfo
5100 dst_dir app/xwininfo
5102 action xwininfo.c
5104 action xwininfo.man
5106 src_dir programs/xlsfonts
5108 action dsimple.c
5109 action dsimple.h
5112 symlink_app_xphelloworld() {
5113 src_dir programs/xphelloworld/xpxmhelloworld
5114 dst_dir app/xphelloworld/xpxmhelloworld
5116 action xpxmhelloworld.man
5117 action xpxmhelloworld.c
5118 action xpxmhelloworld.sgml
5120 src_dir programs/xphelloworld/xpsimplehelloworld
5121 dst_dir app/xphelloworld/xpsimplehelloworld
5123 action xpsimplehelloworld.sgml
5124 action xpsimplehelloworld.c
5125 action xpsimplehelloworld.man
5127 src_dir programs/xphelloworld/xpxthelloworld
5128 dst_dir app/xphelloworld/xpxthelloworld
5130 action xpxthelloworld.man
5131 action xpxthelloworld.sgml
5132 action xpxthelloworld.c
5134 src_dir programs/xphelloworld/xpawhelloworld
5135 dst_dir app/xphelloworld/xpawhelloworld
5137 action xpawhelloworld.c
5138 action xpawhelloworld.man
5140 src_dir programs/xphelloworld/xphelloworld
5141 dst_dir app/xphelloworld/xphelloworld
5143 action xphelloworld.sgml
5144 action xphelloworld.c
5145 action xphelloworld.man
5148 symlink_app_lbxproxy() {
5149 src_dir programs/lbxproxy
5150 dst_dir app/lbxproxy
5152 action design
5153 action lbxproxy.def
5154 action lbxproxy.man
5156 src_dir programs/lbxproxy/config
5157 dst_dir app/lbxproxy/config
5159 action AtomControl
5161 src_dir programs/lbxproxy/di
5162 dst_dir app/lbxproxy/di
5164 action atomcache.c
5165 action cache.c
5166 action cmap.c
5167 action cmaputil.c
5168 action dispatch.c
5169 action extensions.c
5170 action gfx.c
5171 action globals.c
5172 action init.c
5173 action lbxfuncs.c
5174 action lbxutil.c
5175 action main.c
5176 action options.c
5177 action pm.c
5178 action props.c
5179 action reqtype.c
5180 action resource.c
5181 action swaprep.c
5182 action swapreq.c
5183 action tables.c
5184 action tags.c
5185 action unsquish.c
5186 action utils.c
5187 action wire.c
5188 action zeropad.c
5190 src_dir programs/lbxproxy/include
5191 dst_dir app/lbxproxy/include
5193 action assert.h
5194 action atomcache.h
5195 action cache.h
5196 action colormap.h
5197 action init.h
5198 action lbxext.h
5199 action lbx.h
5200 action misc.h
5201 action os.h
5202 action pm.h
5203 action pmP.h
5204 action proxyopts.h
5205 action reqtype.h
5206 action resource.h
5207 action swap.h
5208 action tags.h
5209 action util.h
5210 action wire.h
5212 src_dir programs/lbxproxy/os
5213 dst_dir app/lbxproxy/os
5215 action connection.c
5216 action io.c
5217 action osdep.h
5218 action osinit.c
5219 action WaitFor.c
5222 symlink_app_xedit() {
5223 src_dir programs/xedit
5224 dst_dir app/xedit
5226 action xedit.h
5227 action commands.c
5228 action hook.c
5229 action ispell.c
5230 action lisp.c
5231 action options.c
5232 action realpath.c
5233 action strcasecmp.c
5234 action util.c
5235 action xedit.c
5237 action Xedit-color.ad
5238 action Xedit-noxprint.ad
5239 action Xedit-xprint.ad
5241 action Xedit-sample
5243 action xedit.man
5245 src_dir programs/xedit/lisp
5246 dst_dir app/xedit/lisp
5248 action bytecode.c
5249 action bytecode.h
5250 action compile.c
5251 action core.c
5252 action core.h
5253 action debugger.c
5254 action debugger.h
5255 action env.c
5256 action format.c
5257 action format.h
5258 action hash.c
5259 action hash.h
5260 action helper.c
5261 action helper.h
5262 action internal.h
5263 action io.c
5264 action io.h
5265 action lisp.c
5266 action lisp.h
5267 action lsp.c
5268 action math.c
5269 action math.h
5270 action mathimp.c
5271 action package.c
5272 action package.h
5273 action pathname.c
5274 action pathname.h
5275 action private.h
5276 action read.c
5277 action read.h
5278 action regex.c
5279 action regex.h
5280 action require.c
5281 action require.h
5282 action stream.c
5283 action stream.h
5284 action string.c
5285 action string.h
5286 action struct.c
5287 action struct.h
5288 action time.c
5289 action time.h
5290 action write.c
5291 action write.h
5292 action xedit.c
5293 action xedit.h
5294 action TODO
5295 action README
5297 src_dir programs/xedit/lisp/modules
5298 dst_dir app/xedit/lisp/modules
5300 action indent.lsp
5301 action lisp.lsp
5302 action syntax.lsp
5303 action xedit.lsp
5304 action psql.c
5305 action x11.c
5306 action xaw.c
5307 action xt.c
5309 src_dir programs/xedit/lisp/modules/progmodes
5310 dst_dir app/xedit/lisp/modules/progmodes
5312 action c.lsp
5313 action html.lsp
5314 action imake.lsp
5315 action lisp.lsp
5316 action make.lsp
5317 action man.lsp
5318 action patch.lsp
5319 action rpm.lsp
5320 action sgml.lsp
5321 action sh.lsp
5322 action xconf.lsp
5323 action xlog.lsp
5324 action xrdb.lsp
5326 src_dir programs/xedit/lisp/re
5327 dst_dir app/xedit/lisp/re
5329 action README
5330 action re.c
5331 action rec.c
5332 action re.h
5333 action reo.c
5334 action rep.h
5335 action tests.c
5336 action tests.txt
5338 src_dir programs/xedit/lisp/test
5339 dst_dir app/xedit/lisp/test
5341 action hello.lsp
5342 action list.lsp
5343 action math.lsp
5344 action psql-1.lsp
5345 action psql-2.lsp
5346 action psql-3.lsp
5347 action regex.lsp
5348 action stream.lsp
5349 action widgets.lsp
5351 src_dir programs/xedit/lisp/mp
5352 dst_dir app/xedit/lisp/mp
5354 action mp.c
5355 action mp.h
5356 action mpi.c
5357 action mpr.c
5359 src_dir programs/xmore
5360 dst_dir app/xedit
5362 action print.h
5363 action print.c
5364 action printdialog.h
5365 action printdialog.c
5366 action printdialogprivates.h
5369 symlink_app_xfs() {
5370 src_dir programs/xfs
5371 dst_dir app/xfs
5373 action xfs.def
5374 action xfs.man
5375 action README
5376 action config.cpp
5378 src_dir programs/xfs/difs
5379 dst_dir app/xfs/difs
5381 action atom.c
5382 action cache.c
5383 action charinfo.c
5384 action difsutils.c
5385 action dispatch.c
5386 action events.c
5387 action extensions.c
5388 action fontinfo.c
5389 action fonts.c
5390 action globals.c
5391 action initfonts.c
5392 action main.c
5393 action resource.c
5394 action swaprep.c
5395 action swapreq.c
5396 action tables.c
5398 src_dir programs/xfs/include
5399 dst_dir app/xfs/include
5401 action access.h
5402 action accstr.h
5403 action assert.h
5404 action auth.h
5405 action authstr.h
5406 action cache.h
5407 action cachestr.h
5408 action client.h
5409 action clientstr.h
5410 action closestr.h
5411 action closure.h
5412 action difsfn.h
5413 action difsfnst.h
5414 action difs.h
5415 action difsutils.h
5416 action dispatch.h
5417 action extentst.h
5418 action fsevents.h
5419 action fsresource.h
5420 action globals.h
5421 action misc.h
5422 action os.h
5423 action osstruct.h
5424 action servermd.h
5425 action site.h
5426 action swaprep.h
5427 action swapreq.h
5429 src_dir programs/xfs/os
5430 dst_dir app/xfs/os
5432 action access.c
5433 action config.c
5434 action config.h
5435 action configstr.h
5436 action connection.c
5437 action daemon.c
5438 action error.c
5439 action io.c
5440 action osdep.h
5441 action osglue.c
5442 action osinit.c
5443 action utils.c
5444 action waitfor.c
5447 symlink_app_xrx()
5449 src_dir programs/xrx/helper
5450 dst_dir app/xrx/helper
5452 action GetUrl.c
5453 action GetUrl.h
5454 action helper.c
5455 action xrx.man
5457 src_dir programs/xrx/libxplugin
5458 dst_dir app/xrx/libxplugin
5460 action README
5462 src_dir programs/xrx/rx
5463 dst_dir app/xrx/rx
5465 action XDpyName.h
5466 action XUrls.h
5467 action RxI.h
5468 action BuildReq.c
5469 action XDpyName.c
5470 action Rx.h
5471 action Prefs.c
5472 action Prefs.h
5473 action XAuth.c
5474 action PParse.c
5475 action XAuth.h
5476 action PRead.c
5477 action XUrls.c
5479 src_dir programs/xrx/xnest-plugin
5480 dst_dir app/xrx/xnest-plugin
5482 action PProcess.c
5483 action XnestDis.c
5484 action SetWin.c
5485 action RxPlugin.h
5486 action NewNDest.c
5488 src_dir programs/xrx/htdocs
5489 dst_dir app/xrx/htdocs
5491 action xclock
5492 action dtcm.html
5493 action excel.html
5494 action bitmap
5495 action bitmap.html
5496 action xclock.html
5497 action xload
5498 action dtcm
5499 action xload.html
5500 action excel
5502 src_dir programs/xrx/testplugin
5503 dst_dir app/xrx/testplugin
5505 action testplugin.man
5506 action testplugin.c
5508 src_dir programs/xrx/plugin
5509 dst_dir app/xrx/plugin
5511 action PProcess.c
5512 action stubs.c
5513 action libxrx.man
5514 action SetWin.c
5515 action Global.c
5516 action Main.c
5517 action RxPlugin.h
5518 action NewNDest.c
5520 src_dir programs/xrx/plugin/common
5521 dst_dir app/xrx/plugin/common
5523 action npunix.c
5525 src_dir programs/xrx/plugin/include
5526 dst_dir app/xrx/plugin/include
5528 action npapi.h
5529 action npupp.h
5530 action jri.h
5531 action jri_md.h
5532 action jritypes.h
5534 src_dir programs/xrx/cgi-bin
5535 dst_dir app/xrx/cgi-bin
5537 action xclock
5538 action dtcm.sh
5539 action bitmap
5540 action xload
5541 action dtcm
5542 action excel
5545 symlink_app() {
5546 symlink_app_xfs
5547 symlink_app_xedit
5548 symlink_app_lbxproxy
5549 symlink_app_xphelloworld
5550 symlink_app_xwininfo
5551 symlink_app_xwd
5552 symlink_app_xprop
5553 symlink_app_xwud
5554 symlink_app_xvinfo
5555 symlink_app_xvidtune
5556 symlink_app_xtrap
5557 symlink_app_xstdcmap
5558 symlink_app_xsm
5559 symlink_app_xsetroot
5560 symlink_app_xsetpointer
5561 symlink_app_xsetmode
5562 symlink_app_xset
5563 symlink_app_xrefresh
5564 symlink_app_xrdb
5565 symlink_app_xrandr
5566 symlink_app_xprehashprinterlist
5567 symlink_app_xpr
5568 symlink_app_xplsprinters
5569 symlink_app_xmore
5570 symlink_app_xmodmap
5571 symlink_app_xmh
5572 symlink_app_xmessage
5573 symlink_app_xman
5574 symlink_app_xmag
5575 symlink_app_xlsfonts
5576 symlink_app_xlsclients
5577 symlink_app_xlsatoms
5578 symlink_app_xlogo
5579 symlink_app_xload
5580 symlink_app_xkill
5581 symlink_app_xkbutils
5582 symlink_app_xkbprint
5583 symlink_app_xkbevd
5584 symlink_app_xkbcomp
5585 symlink_app_xinit
5586 symlink_app_xgc
5587 symlink_app_xgamma
5588 symlink_app_xfwp
5589 symlink_app_xfsinfo
5590 symlink_app_xfontsel
5591 symlink_app_xfindproxy
5592 symlink_app_xfd
5593 symlink_app_xf86dga
5594 symlink_app_xeyes
5595 symlink_app_xev
5596 symlink_app_xdriinfo
5597 symlink_app_xditview
5598 symlink_app_xdbedizzy
5599 symlink_app_xconsole
5600 symlink_app_xcmsdb
5601 symlink_app_xclock
5602 symlink_app_xclipboard
5603 symlink_app_xcalc
5604 symlink_app_xbiff
5605 symlink_app_xauth
5606 symlink_app_x11perf
5607 symlink_app_viewres
5608 symlink_app_smproxy
5609 symlink_app_showfont
5610 symlink_app_setxkbmap
5611 symlink_app_rstart
5612 symlink_app_rgb
5613 symlink_app_proxymngr
5614 # symlink_app_pclcomp
5615 symlink_app_oclock
5616 symlink_app_mkfontdir
5617 symlink_app_mkfontscale
5618 symlink_app_makepsres
5619 symlink_app_mkcfm
5620 symlink_app_luit
5621 symlink_app_listres
5622 symlink_app_ico
5623 symlink_app_iceauth
5624 symlink_app_fstobdf
5625 symlink_app_fslsfonts
5626 symlink_app_fonttosfnt
5627 symlink_app_editres
5628 symlink_app_bitmap
5629 symlink_app_beforelight
5630 symlink_app_bdftopcf
5631 symlink_app_appres
5632 symlink_app_twm
5633 symlink_app_xdpyinfo
5634 symlink_app_xhost
5635 symlink_app_xcursorgen
5636 symlink_app_scripts
5637 symlink_app_xdm
5638 symlink_app_sessreg
5639 symlink_app_xrx
5640 # ...
5644 #########
5646 # The xserver module
5648 #########
5651 symlink_xserver_GL_apple() {
5652 src_dir programs/Xserver/GL/apple
5653 dst_dir xserver/xorg/GL/apple
5655 action aglGlx.c
5656 action indirect.c
5659 symlink_xserver_GL_dri() {
5660 src_dir programs/Xserver/GL/dri
5661 dst_dir xserver/xorg/hw/xfree86/dri
5663 action dri.c
5664 action dri.h
5665 action drimodule.c
5666 action dristruct.h
5667 action sarea.h
5668 action xf86dri.c
5670 # don't hate me
5671 # src_dir extras/drm/shared-core
5672 # action drm.h
5675 symlink_xserver_GL_glx() {
5676 src_dir programs/Xserver/GL/glx
5677 dst_dir xserver/xorg/GL/glx
5679 action g_disptab.c
5680 action g_disptab.h
5681 action g_disptab_EXT.c
5682 action g_disptab_EXT.h
5683 action g_render.c
5684 action g_renderswap.c
5685 action g_single.c
5686 action g_singleswap.c
5687 action global.c
5688 action glxbuf.c
5689 action glxbuf.h
5690 action glxcmds.c
5691 action glxcmdsswap.c
5692 action glxcontext.h
5693 action glxdrawable.h
5694 action glxerror.h
5695 action glxext.c
5696 action glxext.h
5697 action glxfb.c
5698 action glxfb.h
5699 action glximports.c
5700 action glximports.h
5701 action glxmem.c
5702 action glxmem.h
5703 action glxpix.c
5704 action glxpix.h
5705 action glxscreens.c
5706 action glxscreens.h
5707 action glxserver.h
5708 action glxutil.c
5709 action glxutil.h
5710 action impsize.h
5711 action render2.c
5712 action render2swap.c
5713 action renderpix.c
5714 action renderpixswap.c
5715 action rensize.c
5716 action rensizetab.c
5717 action single2.c
5718 action single2swap.c
5719 action singlepix.c
5720 action singlepixswap.c
5721 action singlesize.c
5722 action singlesize.h
5723 action unpack.h
5724 action xfont.c
5727 symlink_xserver_GL_include_GL() {
5728 src_dir programs/Xserver/GL/include/GL
5729 dst_dir xserver/xorg/GL/include/GL
5731 action glx_ansic.h
5732 action xf86glx.h
5735 symlink_xserver_GL_mesa_X() {
5736 src_dir programs/Xserver/GL/mesa/X
5737 dst_dir xserver/xorg/GL/mesa/X
5739 action xf86glx.c
5740 action xf86glx_util.c
5741 action xf86glx_util.h
5742 action xf86glxint.h
5745 symlink_xserver_GL_windows() {
5746 src_dir programs/Xserver/GL/windows
5747 dst_dir xserver/xorg/GL/windows
5749 action glwindows.h
5750 action glwrap.c
5751 action indirect.c
5753 action ChangeLog
5756 symlink_xserver_XTrap() {
5757 src_dir programs/Xserver/XTrap
5758 dst_dir xserver/xorg/XTrap
5760 action xtrapddmi.c
5761 action xtrapdi.c
5762 action xtrapdiswp.c
5763 action xtrapditbl.c
5765 dst_dir xserver/xorg/hw/xfree86/dixmods
5766 action xf86XTrapModule.c
5769 symlink_xserver_Xext() {
5770 src_dir programs/Xserver/Xext
5771 dst_dir xserver/xorg/Xext
5773 action EVI.c
5774 action EVIstruct.h
5775 action appgroup.c
5776 action appgroup.h
5777 action bigreq.c
5778 action cup.c
5779 action dpms.c
5780 action dpmsproc.h
5781 action dpmsstubs.c
5782 action fontcache.c
5783 action mbuf.c
5784 action mbufbf.c
5785 action mbufpx.c
5786 action mitmisc.c
5787 action panoramiX.c
5788 action panoramiX.h
5789 action panoramiXSwap.c
5790 action panoramiXh.h
5791 action panoramiXprocs.c
5792 action panoramiXsrv.h
5793 action sampleEVI.c
5794 action saver.c
5795 action security.c
5796 action shape.c
5797 action shm.c
5798 action sleepuntil.c
5799 action sleepuntil.h
5800 action sync.c
5801 action xcmisc.c
5802 action xevie.c
5803 action xf86bigfont.c
5804 action xprint.c
5805 action xres.c
5806 action xtest.c
5807 action xtest1dd.c
5808 action xtest1dd.h
5809 action xtest1di.c
5810 action xvdisp.c
5811 action xvdisp.h
5812 action xvdix.h
5813 action xvmain.c
5814 action xvmc.c
5815 action xvmcext.h
5816 action SecurityPolicy
5817 action xtest1.frags README.xtest1-ddx
5819 # some of these are really DDX-specific despite being in Xext
5821 dst_dir xserver/xorg/hw/xfree86/dixmods/extmod
5822 action dgaproc.h
5823 action vidmodeproc.h
5824 action xf86dga.c
5825 action xf86dga2.c
5826 action xf86dgaext.h
5827 action xf86misc.c
5828 action xf86miscproc.h
5829 action xf86vmode.c
5830 action xvmod.c
5831 action xvmodproc.h
5833 dst_dir xserver/xorg/hw/dmx
5834 action dmx.c
5837 symlink_xserver_Xext_extmod() {
5838 src_dir programs/Xserver/Xext/extmod
5839 dst_dir xserver/xorg/hw/xfree86/dixmods/extmod
5841 action modinit.c
5842 action modinit.h
5845 symlink_xserver_Xi() {
5846 src_dir programs/Xserver/Xi
5847 dst_dir xserver/xorg/Xi
5849 action allowev.c
5850 action allowev.h
5851 action chgdctl.c
5852 action chgdctl.h
5853 action chgfctl.c
5854 action chgfctl.h
5855 action chgkbd.c
5856 action chgkbd.h
5857 action chgkmap.c
5858 action chgkmap.h
5859 action chgprop.c
5860 action chgprop.h
5861 action chgptr.c
5862 action chgptr.h
5863 action closedev.c
5864 action closedev.h
5865 action devbell.c
5866 action devbell.h
5867 action exevents.c
5868 action exglobals.h
5869 action extinit.c
5870 action getbmap.c
5871 action getbmap.h
5872 action getdctl.c
5873 action getdctl.h
5874 action getfctl.c
5875 action getfctl.h
5876 action getfocus.c
5877 action getfocus.h
5878 action getkmap.c
5879 action getkmap.h
5880 action getmmap.c
5881 action getmmap.h
5882 action getprop.c
5883 action getprop.h
5884 action getselev.c
5885 action getselev.h
5886 action getvers.c
5887 action getvers.h
5888 action grabdev.c
5889 action grabdev.h
5890 action grabdevb.c
5891 action grabdevb.h
5892 action grabdevk.c
5893 action grabdevk.h
5894 action gtmotion.c
5895 action gtmotion.h
5896 action listdev.c
5897 action listdev.h
5898 action opendev.c
5899 action opendev.h
5900 action queryst.c
5901 action queryst.h
5902 action selectev.c
5903 action selectev.h
5904 action sendexev.c
5905 action sendexev.h
5906 action setbmap.c
5907 action setbmap.h
5908 action setdval.c
5909 action setdval.h
5910 action setfocus.c
5911 action setfocus.h
5912 action setmmap.c
5913 action setmmap.h
5914 action setmode.c
5915 action setmode.h
5916 action stubs.c
5917 action ungrdev.c
5918 action ungrdev.h
5919 action ungrdevb.c
5920 action ungrdevb.h
5921 action ungrdevk.c
5922 action ungrdevk.h
5925 symlink_xserver_Xprint() {
5926 src_dir programs/Xserver/Xprint
5927 dst_dir xserver/xorg/Xprint
5929 action AttrValid.c
5930 action AttrValid.h
5931 action DiPrint.h
5932 action Init.c
5933 action Oid.c
5934 action Oid.h
5935 action OidDefs.h
5936 action OidStrs.h
5937 action Util.c
5938 action ValTree.c
5939 action attributes.c
5940 action attributes.h
5941 action ddxInit.c
5942 action mediaSizes.c
5943 action spooler.c
5944 action spooler.h
5946 dst_dir xserver/xorg/Xprint/doc
5947 action Xprt.html
5948 action Xprt.man Xprt.man.pre
5949 action Xprt.sgml
5952 symlink_xserver_Xprint_etc() {
5953 src_dir programs/Xserver/Xprint/etc/init.d
5954 dst_dir xserver/xorg/Xprint/etc/init.d
5956 action xprint.cpp
5958 src_dir programs/Xserver/Xprint/etc/profile.d
5959 dst_dir xserver/xorg/Xprint/etc/profile.d
5961 action xprint.csh
5962 action xprint.sh
5964 src_dir programs/Xserver/Xprint/etc/Xsession.d
5965 dst_dir xserver/xorg/Xprint/etc/Xsession.d
5967 action cde_xsessiond_xprint.sh
5970 symlink_xserver_Xprint_ps() {
5971 src_dir programs/Xserver/Xprint/ps
5972 dst_dir xserver/xorg/Xprint/ps
5974 action Ps.h
5975 action PsArc.c
5976 action PsArea.c
5977 action PsAttVal.c
5978 action PsAttr.c
5979 action PsCache.c
5980 action PsColor.c
5981 action PsDef.h
5982 action PsFTFonts.c
5983 action PsFonts.c
5984 action PsGC.c
5985 action PsImageUtil.c
5986 action PsInit.c
5987 action PsLine.c
5988 action PsMisc.c
5989 action PsPixel.c
5990 action PsPixmap.c
5991 action PsPolygon.c
5992 action PsPrint.c
5993 action PsSpans.c
5994 action PsText.c
5995 action PsWindow.c
5996 action psout.c
5997 action psout.h
5998 action psout_ft.c
5999 action psout_ftpstype1.c
6000 action psout_ftpstype3.c
6001 action ttf2pt1wrap.c
6004 symlink_xserver_Xprint_pcl() {
6005 src_dir programs/Xserver/Xprint/pcl
6006 dst_dir xserver/xorg/Xprint/pcl
6008 action Pcl.h
6009 action PclArc.c
6010 action PclArea.c
6011 action PclAttVal.c
6012 action PclAttr.c
6013 action PclColor.c
6014 action PclCursor.c
6015 action PclDef.h
6016 action PclFonts.c
6017 action PclGC.c
6018 action PclInit.c
6019 action PclLine.c
6020 action PclMisc.c
6021 action PclPixel.c
6022 action PclPixmap.c
6023 action PclPolygon.c
6024 action PclPrint.c
6025 action PclSFonts.c
6026 action PclSFonts.h
6027 action PclSpans.c
6028 action PclText.c
6029 action PclWindow.c
6030 action Pclmap.h
6033 symlink_xserver_Xprint_raster() {
6034 src_dir programs/Xserver/Xprint/raster
6035 dst_dir xserver/xorg/Xprint/raster
6037 action Raster.c
6038 action Raster.h
6039 action RasterAttVal.c
6042 symlink_xserver_afb() {
6043 src_dir programs/Xserver/afb
6044 dst_dir xserver/xorg/afb
6046 action afb.h
6047 action afbbitblt.c
6048 action afbblt.c
6049 action afbbres.c
6050 action afbbresd.c
6051 action afbbstore.c
6052 action afbclip.c
6053 action afbcmap.c
6054 action afbfillarc.c
6055 action afbfillrct.c
6056 action afbfillsp.c
6057 action afbfont.c
6058 action afbgc.c
6059 action afbgetsp.c
6060 action afbhrzvert.c
6061 action afbimage.c
6062 action afbimggblt.c
6063 action afbline.c
6064 action afbmisc.c
6065 action afbpixmap.c
6066 action afbply1rct.c
6067 action afbplygblt.c
6068 action afbpntarea.c
6069 action afbpntwin.c
6070 action afbpolypnt.c
6071 action afbpushpxl.c
6072 action afbscrinit.c
6073 action afbsetsp.c
6074 action afbtegblt.c
6075 action afbtile.c
6076 action afbwindow.c
6077 action afbzerarc.c
6079 action README
6080 action Xdaniver.doc
6083 symlink_xserver_cfb() {
6084 src_dir programs/Xserver/cfb
6085 dst_dir xserver/xorg/cfb
6087 action cfb.h
6088 action cfb16.h
6089 action cfb24.h
6090 action cfb32.h
6091 action cfb8bit.c
6092 action cfb8bit.h
6093 action cfb8line.c
6094 action cfballpriv.c
6095 action cfbbitblt.c
6096 action cfbblt.c
6097 action cfbbres.c
6098 action cfbbresd.c
6099 action cfbbstore.c
6100 action cfbcmap.c
6101 action cfbcppl.c
6102 action cfbfillarc.c
6103 action cfbfillrct.c
6104 action cfbfillsp.c
6105 action cfbgc.c
6106 action cfbgetsp.c
6107 action cfbglblt8.c
6108 action cfbhrzvert.c
6109 action cfbigblt8.c
6110 action cfbimage.c
6111 action cfbline.c
6112 action cfbmap.h
6113 action cfbmskbits.c
6114 action cfbmskbits.h
6115 action cfbpixmap.c
6116 action cfbply1rct.c
6117 action cfbpntwin.c
6118 action cfbpolypnt.c
6119 action cfbpush8.c
6120 action cfbrctstp8.c
6121 action cfbrrop.c
6122 action cfbrrop.h
6123 action cfbscrinit.c
6124 action cfbsetsp.c
6125 action cfbsolid.c
6126 action cfbtab.h
6127 action cfbteblt8.c
6128 action cfbtegblt.c
6129 action cfbtile32.c
6130 action cfbtileodd.c
6131 action cfbunmap.h
6132 action cfbwindow.c
6133 action cfbzerarc.c
6134 action stip68kgnu.h
6135 action stipmips.s
6136 action stipsparc.s
6137 action stipsprc32.s
6140 symlink_xserver_cfb24() {
6141 src_dir programs/Xserver/cfb24
6142 dst_dir xserver/xorg/cfb24
6144 action cfbrrop24.h
6147 symlink_xserver_composite() {
6148 src_dir programs/Xserver/composite
6149 dst_dir xserver/xorg/composite
6151 action compalloc.c
6152 action compext.c
6153 action compinit.c
6154 action compint.h
6155 action compwindow.c
6158 symlink_xserver_damageext() {
6159 src_dir programs/Xserver/damageext
6160 dst_dir xserver/xorg/damageext
6162 action damageext.c
6163 action damageext.h
6164 action damageextint.h
6167 symlink_xserver_dbe() {
6168 src_dir programs/Xserver/dbe
6169 dst_dir xserver/xorg/dbe
6171 action dbe.c
6172 action dbestruct.h
6173 action midbe.c
6174 action midbe.h
6175 action midbestr.h
6178 symlink_xserver_dix() {
6179 src_dir programs/Xserver/dix
6180 dst_dir xserver/xorg/dix
6182 action atom.c
6183 action colormap.c
6184 action cursor.c
6185 action devices.c
6186 action dispatch.c
6187 action dispatch.h
6188 action dixfonts.c
6189 action dixutils.c
6190 action events.c
6191 action extension.c
6192 action ffs.c
6193 action gc.c
6194 action globals.c
6195 action glyphcurs.c
6196 action grabs.c
6197 action initatoms.c
6198 action main.c
6199 action pixmap.c
6200 action privates.c
6201 action property.c
6202 action resource.c
6203 action swaprep.c
6204 action swapreq.c
6205 action tables.c
6206 action window.c
6207 action xpstubs.c
6209 action buildatoms
6210 action BuiltInAtoms
6211 action CHANGES
6214 symlink_xserver_fb() {
6215 src_dir programs/Xserver/fb
6216 dst_dir xserver/xorg/fb
6218 action fb.h
6219 action fb24_32.c
6220 action fb24_32.h
6221 action fballpriv.c
6222 action fbarc.c
6223 action fbbits.c
6224 action fbbits.h
6225 action fbblt.c
6226 action fbbltone.c
6227 action fbbstore.c
6228 action fbcmap.c
6229 action fbcompose.c
6230 action fbcopy.c
6231 action fbedge.c
6232 action fbedgeimp.h
6233 action fbfill.c
6234 action fbfillrect.c
6235 action fbfillsp.c
6236 action fbgc.c
6237 action fbgetsp.c
6238 action fbglyph.c
6239 action fbimage.c
6240 action fbline.c
6241 action fbmmx.c
6242 action fbmmx.h
6243 action fboverlay.c
6244 action fboverlay.h
6245 action fbpict.c
6246 action fbpict.h
6247 action fbpixmap.c
6248 action fbpoint.c
6249 action fbpseudocolor.c
6250 action fbpseudocolor.h
6251 action fbpush.c
6252 action fbrop.h
6253 action fbscreen.c
6254 action fbseg.c
6255 action fbsetsp.c
6256 action fbsolid.c
6257 action fbstipple.c
6258 action fbtile.c
6259 action fbtrap.c
6260 action fbutil.c
6261 action fbwindow.c
6264 symlink_xserver_hw_darwin() {
6265 src_dir programs/Xserver/hw/darwin
6266 dst_dir xserver/xorg/hw/darwin
6268 action darwin.c
6269 action darwin.h
6270 action darwinClut8.h
6271 action darwinEvents.c
6272 action darwinKeyboard.c
6273 action darwinKeyboard.h
6274 action darwinXinput.c
6276 action XDarwin.man
6279 symlink_xserver_hw_darwin_bundle() {
6280 src_dir programs/Xserver/hw/darwin/bundle
6281 dst_dir xserver/xorg/hw/darwin/bundle
6283 action startXClients.cpp
6284 action XDarwin.icns
6286 src_dir programs/Xserver/hw/darwin/bundle/Dutch.lproj
6287 dst_dir xserver/xorg/hw/darwin/bundle/Dutch.lproj
6289 action Credits.rtf
6290 action Localizable.strings
6291 action XDarwinHelp.html.cpp
6293 src_dir programs/Xserver/hw/darwin/bundle/Dutch.lproj/MainMenu.nib
6294 dst_dir xserver/xorg/hw/darwin/bundle/Dutch.lproj/MainMenu.nib
6296 action classes.nib
6297 action objects.nib
6299 src_dir programs/Xserver/hw/darwin/bundle/English.lproj
6300 dst_dir xserver/xorg/hw/darwin/bundle/English.lproj
6302 action Credits.rtf
6303 action InfoPlist.strings.cpp
6304 action Localizable.strings
6305 action XDarwinHelp.html.cpp
6307 src_dir programs/Xserver/hw/darwin/bundle/English.lproj/MainMenu.nib
6308 dst_dir xserver/xorg/hw/darwin/bundle/English.lproj/MainMenu.nib
6310 action classes.nib
6311 action objects.nib
6313 src_dir programs/Xserver/hw/darwin/bundle/French.lproj
6314 dst_dir xserver/xorg/hw/darwin/bundle/French.lproj
6316 action Credits.rtf
6317 action Localizable.strings
6318 action XDarwinHelp.html.cpp
6320 src_dir programs/Xserver/hw/darwin/bundle/French.lproj/MainMenu.nib
6321 dst_dir xserver/xorg/hw/darwin/bundle/French.lproj/MainMenu.nib
6323 action classes.nib
6324 action objects.nib
6326 src_dir programs/Xserver/hw/darwin/bundle/German.lproj
6327 dst_dir xserver/xorg/hw/darwin/bundle/German.lproj
6329 action Credits.rtf
6330 action Localizable.strings
6331 action XDarwinHelp.html.cpp
6333 src_dir programs/Xserver/hw/darwin/bundle/German.lproj/MainMenu.nib
6334 dst_dir xserver/xorg/hw/darwin/bundle/German.lproj/MainMenu.nib
6336 action classes.nib
6337 action objects.nib
6339 src_dir programs/Xserver/hw/darwin/bundle/Japanese.lproj
6340 dst_dir xserver/xorg/hw/darwin/bundle/Japanese.lproj
6342 action Credits.rtf
6343 action Localizable.strings
6344 action XDarwinHelp.html.cpp
6346 src_dir programs/Xserver/hw/darwin/bundle/Japanese.lproj/MainMenu.nib
6347 dst_dir xserver/xorg/hw/darwin/bundle/Japanese.lproj/MainMenu.nib
6349 action classes.nib
6350 action objects.nib
6352 src_dir programs/Xserver/hw/darwin/bundle/ko.lproj
6353 dst_dir xserver/xorg/hw/darwin/bundle/ko.lproj
6355 action Credits.rtf
6356 action Localizable.strings
6357 action XDarwinHelp.html.cpp
6359 src_dir programs/Xserver/hw/darwin/bundle/ko.lproj/MainMenu.nib
6360 dst_dir xserver/xorg/hw/darwin/bundle/ko.lproj/MainMenu.nib
6362 action classes.nib
6363 action objects.nib
6365 src_dir programs/Xserver/hw/darwin/bundle/Portuguese.lproj
6366 dst_dir xserver/xorg/hw/darwin/bundle/Portuguese.lproj
6368 action Credits.rtf
6369 action Localizable.strings
6370 action XDarwinHelp.html.cpp
6372 src_dir programs/Xserver/hw/darwin/bundle/Portuguese.lproj/MainMenu.nib
6373 dst_dir xserver/xorg/hw/darwin/bundle/Portuguese.lproj/MainMenu.nib
6375 action classes.nib
6376 action objects.nib
6378 src_dir programs/Xserver/hw/darwin/bundle/Spanish.lproj
6379 dst_dir xserver/xorg/hw/darwin/bundle/Spanish.lproj
6381 action Credits.rtf
6382 action Localizable.strings
6383 action XDarwinHelp.html.cpp
6385 src_dir programs/Xserver/hw/darwin/bundle/Spanish.lproj/MainMenu.nib
6386 dst_dir xserver/xorg/hw/darwin/bundle/Spanish.lproj/MainMenu.nib
6388 action classes.nib
6389 action objects.nib
6391 src_dir programs/Xserver/hw/darwin/bundle/Swedish.lproj
6392 dst_dir xserver/xorg/hw/darwin/bundle/Swedish.lproj
6394 action Credits.rtf
6395 action Localizable.strings
6396 action XDarwinHelp.html.cpp
6398 src_dir programs/Xserver/hw/darwin/bundle/Swedish.lproj/MainMenu.nib
6399 dst_dir xserver/xorg/hw/darwin/bundle/Swedish.lproj/MainMenu.nib
6401 action classes.nib
6402 action objects.nib
6405 symlink_xserver_hw_darwin_iokit() {
6406 src_dir programs/Xserver/hw/darwin/iokit
6407 dst_dir xserver/xorg/hw/darwin/iokit
6409 action xfIOKit.c
6410 action xfIOKit.h
6411 action xfIOKitCursor.c
6412 action xfIOKitStartup.c
6415 symlink_xserver_hw_darwin_quartz() {
6416 src_dir programs/Xserver/hw/darwin/quartz
6417 dst_dir xserver/xorg/hw/darwin/quartz
6419 action Preferences.h
6420 action XApplication.h
6421 action XDarwinStartup.c
6422 action XServer.h
6423 action applewm.c
6424 action applewmExt.h
6425 action keysym2ucs.c
6426 action keysym2ucs.h
6427 action pseudoramiX.c
6428 action pseudoramiX.h
6429 action quartz.c
6430 action quartz.h
6431 action quartzAudio.c
6432 action quartzAudio.h
6433 action quartzCommon.h
6434 action quartzCursor.c
6435 action quartzCursor.h
6436 action quartzKeyboard.c
6437 action quartzPasteboard.c
6438 action quartzPasteboard.h
6439 action quartzStartup.c
6441 action Preferences.m
6442 action quartzCocoa.m
6443 action XApplication.m
6444 action XServer.m
6446 action XDarwinStartup.man
6448 src_dir programs/Xserver/hw/darwin/quartz/XDarwin.pbproj
6449 dst_dir xserver/xorg/hw/darwin/quartz/XDarwin.pbproj
6450 action project.pbxproj
6453 symlink_xserver_hw_darwin_quartz_cr() {
6454 src_dir programs/Xserver/hw/darwin/quartz/cr
6455 dst_dir xserver/xorg/hw/darwin/quartz/cr
6457 action XView.h
6458 action cr.h
6460 action crAppleWM.m
6461 action crFrame.m
6462 action crScreen.m
6463 action XView.m
6466 symlink_xserver_hw_darwin_quartz_fullscreen() {
6467 src_dir programs/Xserver/hw/darwin/quartz/fullscreen
6468 dst_dir xserver/xorg/hw/darwin/quartz/fullscreen
6470 action fullscreen.c
6471 action quartzCursor.c
6472 action quartzCursor.h
6475 symlink_xserver_hw_darwin_quartz_xpr() {
6476 src_dir programs/Xserver/hw/darwin/quartz/xpr
6477 dst_dir xserver/xorg/hw/darwin/quartz/xpr
6479 action Xplugin.h
6480 action appledri.c
6481 action dri.c
6482 action dri.h
6483 action dristruct.h
6484 action x-hash.c
6485 action x-hash.h
6486 action x-hook.c
6487 action x-hook.h
6488 action x-list.c
6489 action x-list.h
6490 action xpr.h
6491 action xprAppleWM.c
6492 action xprCursor.c
6493 action xprFrame.c
6494 action xprScreen.c
6497 symlink_xserver_hw_darwin_utils() {
6498 src_dir programs/Xserver/hw/darwin/utils
6499 dst_dir xserver/xorg/hw/darwin/utils
6501 action dumpkeymap.c
6502 action dumpkeymap.man
6503 action README.txt
6506 symlink_xserver_hw_dmx() {
6507 src_dir programs/Xserver/hw/dmx
6508 dst_dir xserver/xorg/hw/dmx
6510 action dmx.h
6511 action dmx_glxvisuals.c
6512 action dmx_glxvisuals.h
6513 action dmxcb.c
6514 action dmxcb.h
6515 action dmxclient.h
6516 action dmxcmap.c
6517 action dmxcmap.h
6518 action dmxcursor.c
6519 action dmxcursor.h
6520 action dmxdpms.c
6521 action dmxdpms.h
6522 action dmxextension.c
6523 action dmxextension.h
6524 action dmxfont.c
6525 action dmxfont.h
6526 action dmxgc.c
6527 action dmxgc.h
6528 action dmxgcops.c
6529 action dmxgcops.h
6530 action dmxinit.c
6531 action dmxinit.h
6532 action dmxinput.c
6533 action dmxinput.h
6534 action dmxlog.c
6535 action dmxlog.h
6536 action dmxpict.c
6537 action dmxpict.h
6538 action dmxpixmap.c
6539 action dmxpixmap.h
6540 action dmxprop.c
6541 action dmxprop.h
6542 action dmxscrinit.c
6543 action dmxscrinit.h
6544 action dmxshadow.c
6545 action dmxshadow.h
6546 action dmxstat.c
6547 action dmxstat.h
6548 action dmxsync.c
6549 action dmxsync.h
6550 action dmxvisual.c
6551 action dmxvisual.h
6552 action dmxwindow.c
6553 action dmxwindow.h
6555 action Xdmx.man
6558 symlink_xserver_hw_dmx_config() {
6559 src_dir programs/Xserver/hw/dmx/config
6560 dst_dir xserver/xorg/hw/dmx/config
6562 action Canvas.c
6563 action Canvas.h
6564 action CanvasP.h
6565 action dmxcompat.c
6566 action dmxcompat.h
6567 action dmxconfig.c
6568 action dmxconfig.h
6569 action dmxparse.c
6570 action dmxparse.h
6571 action dmxprint.c
6572 action dmxprint.h
6573 action dmxtodmx.c
6574 action dmxtodmx.man
6575 action parser.y
6576 action scanner.l
6577 action test-a.in
6578 action test-a.out
6579 action test-b.in
6580 action test-b.out
6581 action test-c.in
6582 action test-c.out
6583 action test-d.in
6584 action test-d.out
6585 action test-e.in
6586 action test-e.out
6587 action test-f.in
6588 action test-f.out
6589 action test-g.in
6590 action test-g.out
6591 action test-h.in
6592 action test-h.out
6593 action test-i.in
6594 action test-i.out
6595 action test-j.in
6596 action test-j.out
6597 action test-k.in
6598 action test-k.out
6599 action test-l.in
6600 action test-l.out
6601 action TODO
6602 action vdltodmx.c
6603 action vdltodmx.man
6604 action xdmxconfig.c
6605 action xdmxconfig.man
6608 symlink_xserver_hw_dmx_doc() {
6609 src_dir programs/Xserver/hw/dmx/doc
6610 dst_dir xserver/xorg/hw/dmx/doc
6612 action dmx.sgml
6613 action DMXSpec.txt
6614 action DMXSpec-v1.txt
6615 action dmx.txt
6616 action doxygen.conf
6617 action doxygen.css
6618 action doxygen.foot
6619 action doxygen.head
6620 action scaled.sgml
6621 action scaled.txt
6623 src_dir programs/Xserver/hw/dmx/doc/html
6624 dst_dir xserver/xorg/hw/dmx/doc/html
6626 action annotated.html
6627 action ChkNotMaskEv_8c.html
6628 action ChkNotMaskEv_8h.html
6629 action ChkNotMaskEv_8h-source.html
6630 action classes.html
6631 action dmx_8h.html
6632 action dmx_8h-source.html
6633 action dmxarg_8c.html
6634 action dmxarg_8h.html
6635 action dmxarg_8h-source.html
6636 action dmxbackend_8c.html
6637 action dmxbackend_8h.html
6638 action dmxbackend_8h-source.html
6639 action dmxcb_8c.html
6640 action dmxcb_8h.html
6641 action dmxcb_8h-source.html
6642 action dmxclient_8h.html
6643 action dmxclient_8h-source.html
6644 action dmxcmap_8c.html
6645 action dmxcmap_8h.html
6646 action dmxcmap_8h-source.html
6647 action dmxcommon_8c.html
6648 action dmxcommon_8h.html
6649 action dmxcommon_8h-source.html
6650 action dmxcompat_8c.html
6651 action dmxcompat_8h.html
6652 action dmxcompat_8h-source.html
6653 action dmxconfig_8c.html
6654 action dmxconfig_8h.html
6655 action dmxconfig_8h-source.html
6656 action dmxconsole_8c.html
6657 action dmxconsole_8h.html
6658 action dmxconsole_8h-source.html
6659 action dmxcursor_8c.html
6660 action dmxcursor_8h.html
6661 action dmxcursor_8h-source.html
6662 action dmxdetach_8c.html
6663 action dmxdpms_8c.html
6664 action dmxdpms_8h.html
6665 action dmxdpms_8h-source.html
6666 action dmxdummy_8c.html
6667 action dmxdummy_8h.html
6668 action dmxdummy_8h-source.html
6669 action dmxeq_8c.html
6670 action dmxeq_8h.html
6671 action dmxeq_8h-source.html
6672 action dmxevents_8c.html
6673 action dmxevents_8h.html
6674 action dmxevents_8h-source.html
6675 action dmxext_8h.html
6676 action dmxext_8h-source.html
6677 action dmxextension_8c.html
6678 action dmxextension_8h.html
6679 action dmxextension_8h-source.html
6680 action dmxfont_8c.html
6681 action dmxfont_8h.html
6682 action dmxfont_8h-source.html
6683 action dmxgc_8c.html
6684 action dmxgc_8h.html
6685 action dmxgc_8h-source.html
6686 action dmxgcops_8c.html
6687 action dmxgcops_8h.html
6688 action dmxgcops_8h-source.html
6689 action dmx__glxvisuals_8h-source.html
6690 action dmxinit_8c.html
6691 action dmxinit_8h.html
6692 action dmxinit_8h-source.html
6693 action dmxinput_8c.html
6694 action dmxinput_8h.html
6695 action dmxinput_8h-source.html
6696 action dmxinputinit_8c.html
6697 action dmxinputinit_8h.html
6698 action dmxinputinit_8h-source.html
6699 action dmxlog_8c.html
6700 action dmxlog_8h.html
6701 action dmxlog_8h-source.html
6702 action dmxmap_8c.html
6703 action dmxmap_8h.html
6704 action dmxmap_8h-source.html
6705 action dmxmotion_8c.html
6706 action dmxmotion_8h.html
6707 action dmxmotion_8h-source.html
6708 action dmxparse_8c.html
6709 action dmxparse_8h.html
6710 action dmxparse_8h-source.html
6711 action dmxpict_8c.html
6712 action dmxpict_8h.html
6713 action dmxpict_8h-source.html
6714 action dmxpixmap_8c.html
6715 action dmxpixmap_8h.html
6716 action dmxpixmap_8h-source.html
6717 action dmxprint_8c.html
6718 action dmxprint_8h.html
6719 action dmxprint_8h-source.html
6720 action dmxprop_8c.html
6721 action dmxprop_8h.html
6722 action dmxprop_8h-source.html
6723 action dmxproto_8h.html
6724 action dmxproto_8h-source.html
6725 action dmxscrinit_8c.html
6726 action dmxscrinit_8h.html
6727 action dmxscrinit_8h-source.html
6728 action dmxshadow_8c.html
6729 action dmxshadow_8h.html
6730 action dmxshadow_8h-source.html
6731 action dmxsigio_8c.html
6732 action dmxsigio_8h.html
6733 action dmxsigio_8h-source.html
6734 action dmxstat_8c.html
6735 action dmxstat_8h.html
6736 action dmxstat_8h-source.html
6737 action dmxsync_8c.html
6738 action dmxsync_8h.html
6739 action dmxsync_8h-source.html
6740 action dmxvisual_8c.html
6741 action dmxvisual_8h.html
6742 action dmxvisual_8h-source.html
6743 action dmxwindow_8c.html
6744 action dmxwindow_8h.html
6745 action dmxwindow_8h-source.html
6746 action dmxxinput_8c.html
6747 action doxygen.css
6748 action doxygen.png
6749 action files.html
6750 action ftv2blank.png
6751 action ftv2doc.png
6752 action ftv2folderclosed.png
6753 action ftv2folderopen.png
6754 action ftv2lastnode.png
6755 action ftv2link.png
6756 action ftv2mlastnode.png
6757 action ftv2mnode.png
6758 action ftv2node.png
6759 action ftv2plastnode.png
6760 action ftv2pnode.png
6761 action ftv2vertline.png
6762 action functions.html
6763 action functions_vars.html
6764 action globals_defs.html
6765 action globals_enum.html
6766 action globals_eval.html
6767 action globals_func.html
6768 action globals.html
6769 action globals_type.html
6770 action globals_vars.html
6771 action index.html
6772 action lib_2dmx_2dmx_8c.html
6773 action lnx-keyboard_8c.html
6774 action lnx-keyboard_8h.html
6775 action lnx-keyboard_8h-source.html
6776 action lnx-ms_8c.html
6777 action lnx-ms_8h.html
6778 action lnx-ms_8h-source.html
6779 action lnx-ps2_8c.html
6780 action lnx-ps2_8h.html
6781 action lnx-ps2_8h-source.html
6782 action main.html
6783 action programs_2Xserver_2Xext_2dmx_8c.html
6784 action struct__dmxArg.html
6785 action struct__dmxColormapPriv.html
6786 action structDMXConfigCmdStruct.html
6787 action struct__DMXConfigComment.html
6788 action struct__DMXConfigDisplay.html
6789 action struct__DMXConfigEntry.html
6790 action struct__DMXConfigFullDim.html
6791 action structDMXConfigListStruct.html
6792 action struct__DMXConfigNumber.html
6793 action struct__DMXConfigOption.html
6794 action struct__DMXConfigPair.html
6795 action struct__DMXConfigParam.html
6796 action struct__DMXConfigPartDim.html
6797 action struct__DMXConfigString.html
6798 action struct__DMXConfigSub.html
6799 action struct__DMXConfigToken.html
6800 action struct__DMXConfigVirtual.html
6801 action struct__DMXConfigWall.html
6802 action struct__dmxCursorPriv.html
6803 action structDMXDesktopAttributes.html
6804 action structDMXDesktopAttributesRec.html
6805 action struct__DMXEventMap.html
6806 action struct__dmxFontPriv.html
6807 action struct__dmxGCPriv.html
6808 action structdmxGlxVisualPrivate.html
6809 action struct__dmxGlyphPriv.html
6810 action structDMXInputAttributes.html
6811 action structDMXInputAttributesRec.html
6812 action struct__DMXInputInfo.html
6813 action struct__DMXLocalInitInfo.html
6814 action struct__DMXLocalInputInfo.html
6815 action struct__dmxPictPriv.html
6816 action struct__dmxPixPriv.html
6817 action structDMXScreenAttributes.html
6818 action structDMXScreenAttributesRec.html
6819 action struct__DMXScreenInfo.html
6820 action struct__DMXStatAvg.html
6821 action struct__DMXStatInfo.html
6822 action structDMXWindowAttributes.html
6823 action structDMXWindowAttributesRec.html
6824 action struct__dmxWinPriv.html
6825 action struct__Event.html
6826 action struct__EventQueue.html
6827 action struct__myPrivate.html
6828 action structxDMXAddInputReply.html
6829 action structxDMXAddInputReq.html
6830 action structxDMXAddScreenReply.html
6831 action structxDMXAddScreenReq.html
6832 action structxDMXChangeDesktopAttributesReply.html
6833 action structxDMXChangeDesktopAttributesReq.html
6834 action structxDMXChangeScreensAttributesReply.html
6835 action structxDMXChangeScreensAttributesReq.html
6836 action structxDMXForceWindowCreationReply.html
6837 action structxDMXForceWindowCreationReq.html
6838 action structxDMXGetDesktopAttributesReply.html
6839 action structxDMXGetDesktopAttributesReq.html
6840 action structxDMXGetInputAttributesReply.html
6841 action structxDMXGetInputAttributesReq.html
6842 action structxDMXGetInputCountReply.html
6843 action structxDMXGetInputCountReq.html
6844 action structxDMXGetScreenAttributesReply.html
6845 action structxDMXGetScreenAttributesReq.html
6846 action structxDMXGetScreenCountReply.html
6847 action structxDMXGetScreenCountReq.html
6848 action structxDMXGetWindowAttributesReply.html
6849 action structxDMXGetWindowAttributesReq.html
6850 action structxDMXQueryVersionReply.html
6851 action structxDMXQueryVersionReq.html
6852 action structxDMXRemoveInputReply.html
6853 action structxDMXRemoveInputReq.html
6854 action structxDMXRemoveScreenReply.html
6855 action structxDMXRemoveScreenReq.html
6856 action structxDMXSyncReply.html
6857 action structxDMXSyncReq.html
6858 action tree.html
6859 action usb-common_8c.html
6860 action usb-common_8h.html
6861 action usb-common_8h-source.html
6862 action usb-keyboard_8c.html
6863 action usb-keyboard_8h.html
6864 action usb-keyboard_8h-source.html
6865 action usb-mouse_8c.html
6866 action usb-mouse_8h.html
6867 action usb-mouse_8h-source.html
6868 action usb-other_8c.html
6869 action usb-other_8h.html
6870 action usb-other_8h-source.html
6871 action usb-private_8h.html
6872 action usb-private_8h-source.html
6875 symlink_xserver_hw_dmx_examples() {
6876 src_dir programs/Xserver/hw/dmx/examples
6877 dst_dir xserver/xorg/hw/dmx/examples
6879 action dmxaddinput.c
6880 action dmxaddscreen.c
6881 action dmxreconfig.c
6882 action dmxresize.c
6883 action dmxrminput.c
6884 action dmxrmscreen.c
6885 action dmxwininfo.c
6886 action ev.c
6887 action evi.c
6888 action res.c
6889 action xbell.c
6890 action xdmx.c
6891 action xinput.c
6892 action xled.c
6893 action xtest.c
6896 symlink_xserver_hw_dmx_glxProxy() {
6897 src_dir programs/Xserver/hw/dmx/glxProxy
6898 dst_dir xserver/xorg/hw/dmx/glxProxy
6900 action compsize.c
6901 action g_disptab.c
6902 action g_disptab.h
6903 action g_renderswap.c
6904 action global.c
6905 action glxcmds.c
6906 action glxcmdsswap.c
6907 action glxcontext.h
6908 action glxdrawable.h
6909 action glxerror.h
6910 action glxext.c
6911 action glxext.h
6912 action glxfbconfig.c
6913 action glxfbconfig.h
6914 action glxscreens.c
6915 action glxscreens.h
6916 action glxserver.h
6917 action glxsingle.c
6918 action glxsingle.h
6919 action glxswap.c
6920 action glxswap.h
6921 action glxutil.c
6922 action glxutil.h
6923 action glxvendor.c
6924 action glxvendor.h
6925 action glxvisuals.c
6926 action glxvisuals.h
6927 action render2swap.c
6928 action renderpixswap.c
6929 action unpack.h
6932 symlink_xserver_hw_dmx_input() {
6933 src_dir programs/Xserver/hw/dmx/input
6934 dst_dir xserver/xorg/hw/dmx/input
6936 action ChkNotMaskEv.c
6937 action ChkNotMaskEv.h
6938 action dmxarg.c
6939 action dmxarg.h
6940 action dmxbackend.c
6941 action dmxbackend.h
6942 action dmxcommon.c
6943 action dmxcommon.h
6944 action dmxconsole.c
6945 action dmxconsole.h
6946 action dmxdetach.c
6947 action dmxdummy.c
6948 action dmxdummy.h
6949 action dmxeq.c
6950 action dmxeq.h
6951 action dmxevents.c
6952 action dmxevents.h
6953 action dmxinputinit.c
6954 action dmxinputinit.h
6955 action dmxmap.c
6956 action dmxmap.h
6957 action dmxmotion.c
6958 action dmxmotion.h
6959 action dmxsigio.c
6960 action dmxsigio.h
6961 action dmxxinput.c
6962 action lnx-keyboard.c
6963 action lnx-keyboard.h
6964 action lnx-ms.c
6965 action lnx-ms.h
6966 action lnx-ps2.c
6967 action lnx-ps2.h
6968 action usb-common.c
6969 action usb-common.h
6970 action usb-keyboard.c
6971 action usb-keyboard.h
6972 action usb-mouse.c
6973 action usb-mouse.h
6974 action usb-other.c
6975 action usb-other.h
6976 action usb-private.h
6979 # We skip most of Xserver/hw/sun since it's no longer maintained, but a
6980 # couple of files are useful still
6981 symlink_xserver_hw_sun() {
6982 src_dir programs/Xserver/hw/sun
6984 dst_dir xserver/xorg/hw/xfree86/utils/kbd_mode
6985 action kbd_mode.c sun-kbd_mode.c
6986 action kbd_mode.man sun-kbd_mode.man.pre
6988 dst_dir app/constype
6989 action constype.c
6990 action constype.man
6993 symlink_xserver_hw_vfb() {
6994 src_dir programs/Xserver/hw/vfb
6995 dst_dir xserver/xorg/hw/vfb
6997 action InitInput.c
6998 action InitOutput.c
6999 action lk201kbd.h
7001 action Xvfb.man Xvfb.man.pre
7004 symlink_xserver_hw_xfree86() {
7005 src_dir programs/Xserver/hw/xfree86
7006 dst_dir xserver/xorg/hw/xfree86
7008 action xorgconf.cpp
7009 action Options
7012 symlink_xserver_hw_xfree86_common() {
7013 src_dir programs/Xserver/hw/xfree86/common
7014 dst_dir xserver/xorg/hw/xfree86/common
7016 action atKeynames.h
7017 action compiler.h
7018 action fourcc.h
7019 action scoasm.h
7020 action xf86.h
7021 action xf86AutoConfig.c
7022 action xf86Bus.c
7023 action xf86Bus.h
7024 action xf86Config.c
7025 action xf86Config.h
7026 action xf86Configure.c
7027 action xf86Cursor.c
7028 action xf86DGA.c
7029 action xf86DPMS.c
7030 action xf86Debug.c
7031 action xf86DefModes.c
7032 action xf86DoProbe.c
7033 action xf86DoScanPci.c
7034 action xf86Events.c
7035 action xf86Globals.c
7036 action xf86Helper.c
7037 action xf86InPriv.h
7038 action xf86Init.c
7039 action xf86Io.c
7040 action xf86Kbd.c
7041 action xf86KbdBSD.c
7042 action xf86KbdLnx.c
7043 action xf86KbdMach.c
7044 action xf86Keymap.h
7045 action xf86MiscExt.c
7046 action xf86Mode.c
7047 action xf86Module.h
7048 action xf86Opt.h
7049 action xf86Option.c
7050 action xf86PM.c
7051 action xf86PciInfo.h
7052 action xf86Priv.h
7053 action xf86Privstr.h
7054 action xf86RandR.c
7055 action xf86Resources.h
7056 action xf86Versions.c
7057 action xf86VidMode.c
7058 action xf86XKB.c
7059 action xf86Xinput.c
7060 action xf86Xinput.h
7061 action xf86cmap.c
7062 action xf86cmap.h
7063 action xf86fbBus.c
7064 action xf86fbman.c
7065 action xf86fbman.h
7066 action xf86isaBus.c
7067 action xf86noBus.c
7068 action xf86pciBus.c
7069 action xf86pciBus.h
7070 action xf86sbusBus.c
7071 action xf86sbusBus.h
7072 action xf86str.h
7073 action xf86xv.c
7074 action xf86xv.h
7075 action xf86xvmc.c
7076 action xf86xvmc.h
7077 action xf86xvpriv.h
7078 action xisb.c
7079 action xisb.h
7080 action xorgHelper.c
7082 action modeline2c.pl
7084 src_dir programs/Xserver/hw/xfree86
7085 action xf86Date.h
7086 action xf86Version.h
7087 action xorgVersion.h
7090 symlink_xserver_hw_xfree86_ddc() {
7091 src_dir programs/Xserver/hw/xfree86/ddc
7092 dst_dir xserver/xorg/hw/xfree86/ddc
7094 action ddcPriv.h
7095 action ddcProperty.c
7096 action edid.c
7097 action edid.h
7098 action interpret_edid.c
7099 action interpret_vdif.c
7100 action print_edid.c
7101 action print_vdif.c
7102 action vdif.h
7103 action xf86DDC.c
7104 action xf86DDC.h
7106 action DDC.HOWTO
7109 symlink_xserver_hw_xfree86_doc() {
7111 # Docs generic to all Xservers in xserver-xorg module:
7112 src_dir programs/Xserver
7113 dst_dir xserver/xorg/doc
7114 action Xserver.man Xserver.man.pre
7116 src_dir programs/Xserver/hw/xfree86/doc
7117 dst_dir xserver/xorg/doc
7118 action smartsched
7120 # Docs specific to XFree86 DDX/Xorg server:
7122 src_dir programs/Xserver/hw/xfree86
7123 dst_dir xserver/xorg/hw/xfree86/doc/man
7125 action Xorg.man Xorg.man.pre
7126 action xorg.conf.man xorg.conf.man.pre
7128 dst_dir xserver/xorg/hw/xfree86/doc/devel
7129 action DebuggingHints
7130 action Domain.note
7131 action RAC.Notes
7132 action Registry
7134 dst_dir xserver/xorg/hw/xfree86/doc/changelogs
7135 action CHANGELOG
7136 action CHANGELOG.ND
7137 action CHANGELOG.R5
7139 src_dir programs/Xserver/hw/xfree86/doc
7140 dst_dir xserver/xorg/hw/xfree86/doc/devel
7141 action exa-driver.txt
7142 action README.DRIcomp
7144 dst_dir xserver/xorg/hw/xfree86/doc
7145 action README.DRI
7146 action README.fonts
7147 action README.rapidaccess
7149 src_dir programs/Xserver/hw/xfree86/doc/sgml
7150 dst_dir xserver/xorg/hw/xfree86/doc/sgml
7152 action DESIGN.sgml
7154 # Docs about the entire Xorg distribution:
7156 dst_dir doc/xorg-docs/sgml
7157 action Darwin.sgml
7158 action Install.sgml
7159 action LICENSE.sgml
7160 action LynxOS.sgml
7161 action NetBSD.sgml
7162 action OS2Notes.sgml
7163 action OpenBSD.sgml
7164 action README.sgml
7165 action RELNOTES.sgml
7166 action SCO.sgml
7167 action Solaris.sgml
7168 action Versions.sgml
7169 action XKB-Config.sgml
7170 action XKB-Enhancing.sgml
7171 action add.sh
7172 action dps.sgml
7173 action fonts.sgml
7174 action index.post
7175 action index.pre
7176 action mdefs.cpp mdefs.pre
7178 # Entity files and scripts needed for all sgml docs:
7180 dst_dir doc/xorg-sgml-doctools
7181 action defs.ent
7183 # Driver-specific docs:
7185 dst_dir driver/xf86-video-tga
7186 action DECtga.sgml README.sgml
7188 dst_dir driver/xf86-video-i128
7189 action I128.sgml README.sgml
7191 dst_dir driver/xf86-video-sis
7192 action SiS.sgml README.sgml
7194 dst_dir driver/xf86-video-apm
7195 action apm.sgml README.sgml
7197 dst_dir driver/xf86-video-ati
7198 action ati.sgml README.ati.sgml
7199 action r128.sgml README.r128.sgml
7201 dst_dir driver/xf86-video-chips
7202 action chips.sgml README.sgml
7204 dst_dir driver/xf86-video-cyrix
7205 action cyrix.sgml README.sgml
7207 dst_dir driver/xf86-video-i740
7208 action i740.sgml README.sgml
7210 dst_dir driver/xf86-video-i810
7211 action i810.sgml README.sgml
7213 dst_dir driver/xf86-input-mouse
7214 action mouse.sgml README.sgml
7216 dst_dir driver/xf86-video-newport
7217 action newport.sgml README.sgml
7219 dst_dir driver/xf86-video-rendition
7220 action rendition.sgml README.sgml
7222 dst_dir driver/xf86-video-s3virge
7223 action s3virge.sgml README.sgml
7225 # Japanese documentation
7226 src_dir programs/Xserver/hw/xfree86/doc/Japanese/sgml
7227 dst_dir doc/xorg-docs/sgml/Japanese
7229 action 1st.sgml
7230 action read98.sgml
7233 symlink_xserver_hw_xfree86_etc() {
7234 src_dir programs/Xserver/hw/xfree86/etc
7236 dst_dir xserver/xorg/hw/xfree86/common
7237 action vesamodes
7238 action extramodes
7240 dst_dir xserver/xorg/hw/xfree86/utils/gtf
7241 action gtf.c
7242 action gtf.man gtf.man.pre
7244 dst_dir xserver/xorg/hw/xfree86/utils/ioport
7245 action ioport.c
7247 dst_dir xserver/xorg/hw/xfree86/utils/kbd_mode
7248 action kbd_mode.c bsd-kbd_mode.c
7249 action kbd_mode.man bsd-kbd_mode.man.pre
7251 dst_dir xserver/xorg/hw/xfree86/utils/pcitweak
7252 action pcitweak.c
7253 action pcitweak.man pcitweak.man.pre
7255 dst_dir xserver/xorg/hw/xfree86/os-support/solaris
7256 action apSolaris.shar
7259 symlink_xserver_hw_xfree86_x86emu() {
7260 src_dir extras/x86emu/include
7261 dst_dir xserver/xorg/hw/xfree86/x86emu
7263 action x86emu.h
7265 src_dir extras/x86emu/src/x86emu
7267 action debug.c
7268 action decode.c
7269 action fpu.c
7270 action ops2.c
7271 action ops.c
7272 action prim_ops.c
7273 action sys.c
7274 action validate.c
7276 dst_dir xserver/xorg/hw/xfree86/x86emu/x86emu
7277 src_dir extras/x86emu/include/x86emu
7279 action fpu_regs.h
7280 action regs.h
7281 action types.h
7283 src_dir extras/x86emu/src/x86emu/x86emu
7285 action debug.h
7286 action decode.h
7287 action fpu.h
7288 action ops.h
7289 action prim_asm.h
7290 action prim_ops.h
7291 action x86emui.h
7295 symlink_xserver_hw_xfree86_dixmods() {
7296 dst_dir xserver/xorg/hw/xfree86/dixmods
7298 src_dir programs/Xserver/GL
7299 action glxmodule.c
7301 src_dir programs/Xserver/GL/mesa/GLcore
7302 action GLcoremodule.c
7304 src_dir programs/Xserver/afb
7305 action afbmodule.c
7307 src_dir lib/font/bitmap/module
7308 action bitmapmod.c
7310 src_dir lib/font/FreeType/module
7311 action ftmodule.c
7313 src_dir lib/font/Type1/module
7314 action type1mod.c
7316 src_dir programs/Xserver/cfb
7317 action cfbmodule.c
7319 src_dir programs/Xserver/cfb16
7320 action cfbmodule.c cfb16module.c
7322 src_dir programs/Xserver/cfb24
7323 action cfbmodule.c cfb24module.c
7325 src_dir programs/Xserver/cfb32
7326 action cfbmodule.c cfb32module.c
7328 src_dir programs/Xserver/dbe
7329 action dbemodule.c
7331 src_dir programs/Xserver/fb
7332 action fbmodule.c
7334 src_dir programs/Xserver/miext/layer
7335 action laymodule.c
7337 src_dir programs/Xserver/miext/shadow
7338 action shmodule.c
7340 src_dir programs/Xserver/mfb
7341 action mfbmodule.c
7343 src_dir programs/Xserver/record
7344 action recordmod.c
7347 symlink_xserver_hw_xfree86_dummylib() {
7348 src_dir programs/Xserver/hw/xfree86/dummylib
7349 dst_dir xserver/xorg/hw/xfree86/dummylib
7351 action README
7352 action dummylib.h
7353 action fatalerror.c
7354 action getvalidbios.c
7355 action logvwrite.c
7356 action pcitestmulti.c
7357 action verrorf.c
7358 action xalloc.c
7359 action xf86addrestolist.c
7360 action xf86allocscripi.c
7361 action xf86drvmsg.c
7362 action xf86drvmsgverb.c
7363 action xf86errorf.c
7364 action xf86errorfverb.c
7365 action xf86getpagesize.c
7366 action xf86getverb.c
7367 action xf86info.c
7368 action xf86msg.c
7369 action xf86msgverb.c
7370 action xf86opt.c
7371 action xf86screens.c
7372 action xf86servisinit.c
7373 action xf86verbose.c
7376 symlink_xserver_hw_xfree86_exa() {
7377 src_dir programs/Xserver/hw/xfree86/exa
7378 dst_dir xserver/xorg/hw/xfree86/exa
7380 action exaasync.c
7381 action exa.c
7382 action exa.h
7383 action exaoffscreen.c
7384 action exapict.c
7385 action exaPriv.h
7388 symlink_xserver_hw_xfree86_fbdevhw() {
7389 src_dir programs/Xserver/hw/xfree86/fbdevhw
7390 dst_dir xserver/xorg/hw/xfree86/fbdevhw
7392 action fbdevhw.c
7393 action fbdevhw.h
7394 action fbdevhwstub.c
7395 action fbpriv.h
7396 action README
7397 action fbdevhw.man fbdevhw.man.pre
7400 symlink_xserver_hw_xfree86_getconfig() {
7401 src_dir programs/Xserver/hw/xfree86/getconfig
7402 dst_dir xserver/xorg/hw/xfree86/getconfig
7404 action cfg.man cfg.man.pre
7405 action cfg.sample
7406 action getconfig.man getconfig.man.pre
7407 action getconfig.pl
7408 action getconfig.sh getconfig
7409 action xorg.cfg
7412 symlink_xserver_hw_xfree86_i2c() {
7413 src_dir programs/Xserver/hw/xfree86/i2c
7414 dst_dir xserver/xorg/hw/xfree86/i2c
7416 action xf86i2c.c
7417 action xf86i2c.h
7418 action xf86i2cmodule.c
7420 src_dir programs/Xserver/hw/xfree86/drivers/i2c
7421 dst_dir xserver/xorg/hw/xfree86/i2c
7423 action i2c_def.h
7425 action bt829.c
7426 action bt829.h
7427 action bt829_module.c
7429 action fi1236.c
7430 action fi1236.h
7431 action fi1236_module.c
7433 action msp3430.c
7434 action msp3430.h
7435 action msp3430_module.c
7437 action tda8425.c
7438 action tda8425.h
7439 action tda8425_module.c
7441 action tda9850.c
7442 action tda9850.h
7443 action tda9850_module.c
7445 action tda9885.c
7446 action tda9885.h
7447 action tda9885_module.c
7449 action uda1380.c
7450 action uda1380.h
7451 action uda1380_module.c
7454 symlink_xserver_hw_xfree86_int10() {
7455 src_dir programs/Xserver/hw/xfree86/int10
7456 dst_dir xserver/xorg/hw/xfree86/int10
7458 action generic.c
7459 action helper_exec.c
7460 action helper_mem.c
7461 action pci.c
7462 action stub.c
7463 action x86emu.c
7464 action xf86int10.c
7465 action xf86int10.h
7466 action xf86int10module.c
7467 action xf86x86emu.c
7468 action xf86x86emu.h
7469 action INT10.HOWTO
7472 symlink_xserver_hw_xfree86_loader() {
7473 src_dir programs/Xserver/hw/xfree86/loader
7474 dst_dir xserver/xorg/hw/xfree86/loader
7476 action SparcMulDiv.S
7477 action aout.h
7478 action aoutloader.c
7479 action aoutloader.h
7480 action ar.h
7481 action coff.h
7482 action coffloader.c
7483 action coffloader.h
7484 action dixsym.c
7485 action dlloader.c
7486 action dlloader.h
7487 action elf.h
7488 action elfloader.c
7489 action elfloader.h
7490 action extsym.c
7491 action fontsym.c
7492 action hash.c
7493 action hash.h
7494 action loader.c
7495 action loader.h
7496 action loaderProcs.h
7497 action loadext.c
7498 action loadfont.c
7499 action loadmod.c
7500 action misym.c
7501 action os.c
7502 action sym.h
7503 action xf86sym.c
7506 symlink_xserver_hw_xfree86_ossupport() {
7507 src_dir programs/Xserver/hw/xfree86/os-support
7508 dst_dir xserver/xorg/hw/xfree86/os-support
7510 action assyntax.h
7511 action int10Defines.h
7512 action xf86OSKbd.h
7513 action xf86OSmouse.h
7514 action xf86OSpriv.h
7515 action xf86_OSlib.h
7516 action xf86_OSproc.h
7517 action xf86_ansic.h
7518 action xf86_libc.h
7520 action README.OS-lib
7522 src_dir extras/drm/libdrm
7524 action xf86drm.h
7525 action xf86drmCompat.h
7528 symlink_xserver_hw_xfree86_ossupport_bsd() {
7529 src_dir programs/Xserver/hw/xfree86/os-support/bsd
7530 dst_dir xserver/xorg/hw/xfree86/os-support/bsd
7532 action alpha_video.c
7533 action arm_video.c
7534 action bsdResource.c
7535 action bsd_KbdMap.c
7536 action bsd_VTsw.c
7537 action bsd_apm.c
7538 action bsd_axp.c
7539 action bsd_ev56.c
7540 action bsd_init.c
7541 action bsd_io.c
7542 action bsd_jstk.c
7543 action bsd_kbd.c
7544 action bsd_kbd.h
7545 action bsd_kmod.c
7546 action bsd_kqueue_apm.c
7547 action bsd_mouse.c
7548 action i386_video.c
7549 action memrange.h
7550 action ppc_video.c
7551 action sparc64_video.c
7554 symlink_xserver_hw_xfree86_ossupport_bsd_libusb() {
7555 src_dir programs/Xserver/hw/xfree86/os-support/bsd/libusb
7556 dst_dir xserver/xorg/hw/xfree86/os-support/bsd/libusb
7558 action data.c
7559 action descr.c
7560 action parse.c
7561 action usage.c
7562 action usb.h
7563 action usbvar.h
7564 action usb.3
7565 action usb_hid_usages
7568 symlink_xserver_hw_xfree86_ossupport_bus() {
7569 src_dir programs/Xserver/hw/xfree86/os-support/bus
7570 dst_dir xserver/xorg/hw/xfree86/os-support/bus
7572 action 460gxPCI.c
7573 action 460gxPCI.h
7574 action Pci.c
7575 action Pci.h
7576 action Sbus.c
7577 action altixPCI.c
7578 action altixPCI.h
7579 action axpPci.c
7580 action e8870PCI.c
7581 action e8870PCI.h
7582 action freebsdPci.c
7583 action ix86Pci.c
7584 action linuxPci.c
7585 action netbsdPci.c
7586 action ppcPci.c
7587 action sparcPci.c
7588 action xf86Pci.h
7589 action xf86Sbus.h
7590 action zx1PCI.c
7591 action zx1PCI.h
7594 symlink_xserver_hw_xfree86_ossupport_drm() {
7595 src_dir programs/Xserver/hw/xfree86/os-support/linux/drm
7596 dst_dir xserver/xorg/hw/xfree86/os-support/drm
7598 action drmmodule.c
7600 src_dir extras/drm/libdrm
7602 action xf86drm.c
7603 action xf86drmHash.c
7604 action xf86drmRandom.c
7605 action xf86drmSL.c
7608 symlink_xserver_hw_xfree86_ossupport_linux() {
7609 src_dir programs/Xserver/hw/xfree86/os-support/linux
7610 dst_dir xserver/xorg/hw/xfree86/os-support/linux
7612 action lnx.h
7613 action lnxResource.c
7614 action lnx_KbdMap.c
7615 action lnx_acpi.c
7616 action lnx_agp.c
7617 action lnx_apm.c
7618 action lnx_axp.c
7619 action lnx_ev56.c
7620 action lnx_font.c
7621 action lnx_ia64.c
7622 action lnx_init.c
7623 action lnx_io.c
7624 action lnx_jstk.c
7625 action lnx_kbd.c
7626 action lnx_kbd.h
7627 action lnx_kmod.c
7628 action lnx_mouse.c
7629 action lnx_pci.c
7630 action lnx_video.c
7633 symlink_xserver_hw_xfree86_ossupport_linux_int10() {
7634 src_dir programs/Xserver/hw/xfree86/os-support/linux/int10
7635 dst_dir xserver/xorg/hw/xfree86/os-support/linux/int10
7637 action linux.c
7640 symlink_xserver_hw_xfree86_ossupport_linux_int10_vm86() {
7641 src_dir programs/Xserver/hw/xfree86/os-support/linux/int10/vm86
7642 dst_dir xserver/xorg/hw/xfree86/os-support/linux/int10/vm86
7644 action linux_vm86.c
7647 symlink_xserver_hw_xfree86_ossupport_lynxos() {
7648 src_dir programs/Xserver/hw/xfree86/os-support/lynxos
7649 dst_dir xserver/xorg/hw/xfree86/os-support/lynxos
7651 action lynx_init.c
7652 action lynx_io.c
7653 action lynx_mmap.c
7654 action lynx_mouse.c
7655 action lynx_noinline.c
7656 action lynx_ppc.c
7657 action lynx_video.c
7658 action lynx_ppc.S
7661 symlink_xserver_hw_xfree86_ossupport_misc() {
7662 src_dir programs/Xserver/hw/xfree86/os-support/misc
7663 dst_dir xserver/xorg/hw/xfree86/os-support/misc
7665 action BUSmemcpy.c
7666 action Delay.c
7667 action IODelay.c
7668 action SlowBcopy.c
7669 action xf86_IlHack.c
7670 action xf86_Util.c
7672 action BUSmemcpy.S
7673 action IODelay.S
7674 action PortIO.S
7675 action SlowBcopy.S
7679 symlink_xserver_hw_xfree86_ossupport_sco() {
7680 src_dir programs/Xserver/hw/xfree86/os-support/sco
7681 dst_dir xserver/xorg/hw/xfree86/os-support/sco
7683 action VTsw_sco.c
7684 action sco_KbdMap.c
7685 action sco_init.c
7686 action sco_io.c
7687 action sco_iop.c
7688 action sco_kbd.c
7689 action sco_kbd.h
7690 action sco_mouse.c
7691 action sco_video.c
7694 symlink_xserver_hw_xfree86_ossupport_shared() {
7695 src_dir programs/Xserver/hw/xfree86/os-support/shared
7696 dst_dir xserver/xorg/hw/xfree86/os-support/shared
7698 action VTsw_noop.c
7699 action VTsw_usl.c
7700 action agp_noop.c
7701 action at_scancode.c
7702 action bios_devmem.c
7703 action bios_mmap.c
7704 action ia64Pci.c
7705 action ia64Pci.h
7706 action ioperm_noop.c
7707 action kbd.c
7708 action kmod_noop.c
7709 action libc_wrapper.c
7710 action pm_noop.c
7711 action posix_tty.c
7712 action sigio.c
7713 action sigiostubs.c
7714 action stdPci.c
7715 action stdResource.c
7716 action std_kbdEv.c
7717 action sysv_kbd.c
7718 action vidmem.c
7719 action xf86Axp.c
7720 action xf86Axp.h
7721 action inout.S
7724 symlink_xserver_hw_xfree86_ossupport_sunos() {
7725 src_dir programs/Xserver/hw/xfree86/os-support/sunos
7726 dst_dir xserver/xorg/hw/xfree86/os-support/solaris
7728 action sun_agp.c
7729 action agpgart.h
7730 action sun_bios.c
7731 action sun_init.c
7732 action sun_io.c
7733 action sun_kbd.h
7734 action sun_kbd.c
7735 action sun_kbdEv.c
7736 action sun_mouse.c
7737 action sun_vid.c
7738 action solaris-amd64.S
7739 action solaris-ia32.S
7740 action solaris-sparcv8plus.S
7741 action sun_inout.s
7744 symlink_xserver_hw_xfree86_ossupport_sysv() {
7745 src_dir programs/Xserver/hw/xfree86/os-support/sysv
7746 dst_dir xserver/xorg/hw/xfree86/os-support/sysv
7748 action sysv_init.c
7749 action sysv_io.c
7750 action sysv_mouse.c
7751 action sysv_video.c
7752 action xqueue.c
7753 action xqueue.h
7756 symlink_xserver_hw_xfree86_ossupport_usl() {
7757 src_dir programs/Xserver/hw/xfree86/os-support/usl
7758 dst_dir xserver/xorg/hw/xfree86/os-support/usl
7760 action usl_init.c
7761 action usl_io.c
7762 action usl_iop.c
7763 action usl_kbd.c
7764 action usl_kbd.h
7765 action usl_KbdMap.c
7766 action usl_mouse.c
7767 action usl_video.c
7768 action usl_vtsw.c
7769 action usl_xqueue.c
7770 action usl_xqueue.h
7773 symlink_xserver_hw_xfree86_parser() {
7774 src_dir programs/Xserver/hw/xfree86/parser
7775 dst_dir xserver/xorg/hw/xfree86/parser
7777 action Configint.h
7778 action DRI.c
7779 action Device.c
7780 action Extensions.c
7781 action Files.c
7782 action Flags.c
7783 action Input.c
7784 action Keyboard.c
7785 action Layout.c
7786 action Module.c
7787 action Monitor.c
7788 action Pointer.c
7789 action Screen.c
7790 action Vendor.c
7791 action Video.c
7792 action configProcs.h
7793 action cpconfig.c
7794 action read.c
7795 action scan.c
7796 action write.c
7797 action xf86Optrec.h
7798 action xf86Parser.h
7799 action xf86tokens.h
7802 symlink_xserver_hw_xfree86_rac() {
7803 src_dir programs/Xserver/hw/xfree86/rac
7804 dst_dir xserver/xorg/hw/xfree86/rac
7806 action xf86RAC.c
7807 action xf86RAC.h
7808 action xf86RACmodule.c
7811 symlink_xserver_hw_xfree86_ramdac() {
7812 src_dir programs/Xserver/hw/xfree86/ramdac
7813 dst_dir xserver/xorg/hw/xfree86/ramdac
7815 action BT.c
7816 action BT.h
7817 action BTPriv.h
7818 action IBM.c
7819 action IBM.h
7820 action IBMPriv.h
7821 action TI.c
7822 action TI.h
7823 action TIPriv.h
7824 action xf86Cursor.c
7825 action xf86Cursor.h
7826 action xf86CursorPriv.h
7827 action xf86HWCurs.c
7828 action xf86RamDac.c
7829 action xf86RamDac.h
7830 action xf86RamDacCmap.c
7831 action xf86RamDacMod.c
7832 action xf86RamDacPriv.h
7834 action CURSOR.NOTES
7837 symlink_xserver_hw_xfree86_scanpci() {
7838 src_dir programs/Xserver/hw/xfree86/scanpci
7839 dst_dir xserver/xorg/hw/xfree86/scanpci
7841 action xf86PciData.h
7842 action xf86PciStdIds.h
7843 action xf86PciStr.h
7844 action xf86ScanPci.c
7845 action xf86ScanPci.h
7847 action pciid2c.pl
7849 src_dir programs/Xserver/hw/xfree86/etc
7850 action pci.ids
7851 action extrapci.ids
7853 dst_dir xserver/xorg/hw/xfree86/utils/scanpci
7854 action scanpci.c
7855 action scanpci.man scanpci.man.pre
7858 symlink_xserver_hw_xfree86_shadowfb() {
7859 src_dir programs/Xserver/hw/xfree86/shadowfb
7860 dst_dir xserver/xorg/hw/xfree86/shadowfb
7862 action sfbmodule.c
7863 action shadow.c
7864 action shadowfb.h
7867 symlink_xserver_hw_xfree86_vbe() {
7868 src_dir programs/Xserver/hw/xfree86/vbe
7869 dst_dir xserver/xorg/hw/xfree86/vbe
7871 action vbe.c
7872 action vbe.h
7873 action vbeModes.c
7874 action vbeModes.h
7875 action vbe_module.c
7878 symlink_xserver_hw_xfree86_vgahw() {
7879 src_dir programs/Xserver/hw/xfree86/vgahw
7880 dst_dir xserver/xorg/hw/xfree86/vgahw
7882 action vgaCmap.c
7883 action vgaHW.c
7884 action vgaHW.h
7885 action vgaHWmodule.c
7888 symlink_xserver_hw_xfree86_xaa() {
7889 src_dir programs/Xserver/hw/xfree86/xaa
7890 dst_dir xserver/xorg/hw/xfree86/xaa
7892 action xaa.h
7893 action xaaBitBlt.c
7894 action xaaBitOrder.c
7895 action xaaBitmap.c
7896 action xaaCpyArea.c
7897 action xaaCpyPlane.c
7898 action xaaCpyWin.c
7899 action xaaDashLine.c
7900 action xaaFallback.c
7901 action xaaFillArc.c
7902 action xaaFillPoly.c
7903 action xaaFillRect.c
7904 action xaaGC.c
7905 action xaaGCmisc.c
7906 action xaaImage.c
7907 action xaaInit.c
7908 action xaaInitAccel.c
7909 action xaaLine.c
7910 action xaaLineMisc.c
7911 action xaaNonTEGlyph.c
7912 action xaaNonTEText.c
7913 action xaaOffscreen.c
7914 action xaaOverlay.c
7915 action xaaOverlayDF.c
7916 action xaaPCache.c
7917 action xaaPaintWin.c
7918 action xaaPict.c
7919 action xaaROP.c
7920 action xaaRect.c
7921 action xaaSpans.c
7922 action xaaStateChange.c
7923 action xaaStipple.c
7924 action xaaTEGlyph.c
7925 action xaaTEText.c
7926 action xaaTables.c
7927 action xaaWideLine.c
7928 action xaaWrapper.c
7929 action xaaWrapper.h
7930 action xaacexp.h
7931 action xaalocal.h
7932 action xaarop.h
7933 action xaawrap.h
7934 action xaaTEGlyphBlt.S
7936 action XAA.HOWTO
7939 symlink_xserver_hw_xfree86_xf1bpp() {
7940 src_dir programs/Xserver/hw/xfree86/xf1bpp
7941 dst_dir xserver/xorg/hw/xfree86/xf1bpp
7943 action mfbmap.h
7944 action mfbmodule.c
7945 action mfbunmap.h
7946 action xf1bpp.h
7947 action mfbmap.sh
7948 action mfbunmap.sh
7951 symlink_xserver_hw_xfree86_xf4bpp() {
7952 src_dir programs/Xserver/hw/xfree86/xf4bpp
7953 dst_dir xserver/xorg/hw/xfree86/xf4bpp
7955 action OScompiler.h
7956 action emulOpStip.c
7957 action emulRepAre.c
7958 action emulTile.c
7959 action ibmTrace.h
7960 action mfbbres.c
7961 action mfbbresd.c
7962 action mfbfillarc.c
7963 action mfbhrzvert.c
7964 action mfbimggblt.c
7965 action mfbline.c
7966 action mfbzerarc.c
7967 action offscreen.c
7968 action ppcArea.c
7969 action ppcBStore.c
7970 action ppcCReduce.c
7971 action ppcClip.c
7972 action ppcCpArea.c
7973 action ppcDepth.c
7974 action ppcFillRct.c
7975 action ppcGC.c
7976 action ppcGCstr.h
7977 action ppcGetSp.c
7978 action ppcIO.c
7979 action ppcImg.c
7980 action ppcPixFS.c
7981 action ppcPixmap.c
7982 action ppcPntWin.c
7983 action ppcPolyPnt.c
7984 action ppcPolyRec.c
7985 action ppcQuery.c
7986 action ppcRslvC.c
7987 action ppcSetSp.c
7988 action ppcSpMcro.h
7989 action ppcWinFS.c
7990 action ppcWindow.c
7991 action vgaBitBlt.c
7992 action vgaGC.c
7993 action vgaImages.c
7994 action vgaReg.h
7995 action vgaSolid.c
7996 action vgaStipple.c
7997 action vgaVideo.h
7998 action vgamodule.c
7999 action wm3.c
8000 action wm3.h
8001 action xf4bpp.h
8003 action NOTES
8006 symlink_xserver_hw_xfree86_xf8_16bpp() {
8007 src_dir programs/Xserver/hw/xfree86/xf8_16bpp
8008 dst_dir xserver/xorg/hw/xfree86/xf8_16bpp
8010 action cfb8_16.h
8011 action cfb8_16module.c
8012 action cfbscrinit.c
8013 action cfbwindow.c
8016 symlink_xserver_hw_xfree86_xf8_32bpp() {
8017 src_dir programs/Xserver/hw/xfree86/xf8_32bpp
8018 dst_dir xserver/xorg/hw/xfree86/xf8_32bpp
8020 action cfb8_32.h
8021 action cfb8_32module.c
8022 action cfbbstore.c
8023 action cfbcpyarea.c
8024 action cfbcpyplane.c
8025 action cfbgc.c
8026 action cfbgcmisc.c
8027 action cfbgcunder.c
8028 action cfbimage.c
8029 action cfbpntwin.c
8030 action cfbscrinit.c
8031 action cfbwindow.c
8032 action xf86overlay.c
8035 symlink_xserver_hw_xfree86_xf8_32wid() {
8036 src_dir programs/Xserver/hw/xfree86/xf8_32wid
8037 dst_dir xserver/xorg/hw/xfree86/xf8_32wid
8039 action cfb8_32wid.h
8040 action cfb8_32widmodule.c
8041 action cfbscrinit.c
8042 action cfbwid.c
8043 action cfbwindow.c
8046 symlink_xserver_hw_xfree86_xf86cfg() {
8047 src_dir programs/Xserver/hw/xfree86/xf86cfg
8048 dst_dir xserver/xorg/hw/xfree86/utils/xorgcfg
8050 action TODO
8051 action XOrgCfg.cpp XOrgCfg.pre
8052 action accessx.c
8053 action card-cfg.c
8054 action card-cfg.h
8055 action card.xbm
8056 action card.xpm
8057 action cards.c
8058 action cards.h
8059 action computer.xpm
8060 action config.c
8061 action config.h
8062 action down.xbm
8063 action expert.c
8064 action help.c
8065 action help.h
8066 action interface.c
8067 action keyboard-cfg.c
8068 action keyboard-cfg.h
8069 action keyboard.xbm
8070 action keyboard.xpm
8071 action left.xbm
8072 action loader.c
8073 action loader.h
8074 action loadmod.c
8075 action monitor-cfg.c
8076 action monitor-cfg.h
8077 action monitor.xbm
8078 action monitor.xpm
8079 action mouse-cfg.c
8080 action mouse-cfg.h
8081 action mouse.xbm
8082 action mouse.xpm
8083 action narrower.xbm
8084 action options.c
8085 action options.h
8086 action right.xbm
8087 action screen-cfg.c
8088 action screen-cfg.h
8089 action screen.c
8090 action screen.h
8091 action shorter.xbm
8092 action startx.c
8093 action stubs.c
8094 action stubs.h
8095 action taller.xbm
8096 action text-mode.c
8097 action up.xbm
8098 action vidmode.c
8099 action vidmode.h
8100 action wider.xbm
8101 action xf86config.c
8102 action xf86config.h
8103 action xorgcfg.man xorgcfg.man.pre
8107 symlink_xserver_hw_xfree86_xf86config() {
8108 src_dir programs/Xserver/hw/xfree86/xf86config
8109 dst_dir xserver/xorg/hw/xfree86/utils/xorgconfig
8111 action Cards
8112 action Cards98
8113 action cards.c
8114 action cards.h
8115 action xorgconfig.c
8116 action xorgconfig.man xorgconfig.man.pre
8119 symlink_xserver_hw_xnest() {
8120 src_dir programs/Xserver/hw/xnest
8121 dst_dir xserver/xorg/hw/xnest
8123 action Args.c
8124 action Args.h
8125 action Color.c
8126 action Color.h
8127 action Cursor.c
8128 action Display.c
8129 action Display.h
8130 action Drawable.h
8131 action Events.c
8132 action Events.h
8133 action Font.c
8134 action GC.c
8135 action GCOps.c
8136 action GCOps.h
8137 action GetTime.c
8138 action Handlers.c
8139 action Handlers.h
8140 action Init.c
8141 action Init.h
8142 action Keyboard.c
8143 action Keyboard.h
8144 action Pixmap.c
8145 action Pointer.c
8146 action Pointer.h
8147 action Screen.c
8148 action Screen.h
8149 action TestExt.c
8150 action Visual.c
8151 action Visual.h
8152 action Window.c
8153 action XNCursor.h
8154 action XNFont.h
8155 action XNGC.h
8156 action XNPixmap.h
8157 action XNWindow.h
8158 action Xnest.h
8159 action icon
8160 action os2Stub.c
8161 action screensaver
8163 action Xnest.man Xnest.man.pre
8166 symlink_xserver_hw_xwin() {
8167 src_dir programs/Xserver/hw/xwin
8168 dst_dir xserver/xorg/hw/xwin
8170 action InitInput.c
8171 action InitOutput.c
8172 action ddraw.h
8173 action win.h
8174 action winallpriv.c
8175 action winauth.c
8176 action winblock.c
8177 action winclip.c
8178 action winclipboard.h
8179 action winclipboardinit.c
8180 action winclipboardtextconv.c
8181 action winclipboardthread.c
8182 action winclipboardunicode.c
8183 action winclipboardwndproc.c
8184 action winclipboardwrappers.c
8185 action winclipboardxevents.c
8186 action wincmap.c
8187 action winconfig.c
8188 action winconfig.h
8189 action wincreatewnd.c
8190 action wincursor.c
8191 action windialogs.c
8192 action winengine.c
8193 action winerror.c
8194 action winfillsp.c
8195 action winfont.c
8196 action wingc.c
8197 action wingetsp.c
8198 action winglobals.c
8199 action winkeybd.c
8200 action winkeybd.h
8201 action winkeyhook.c
8202 action winkeymap.h
8203 action winkeynames.h
8204 action winlayouts.h
8205 action winmessages.h
8206 action winmisc.c
8207 action winmouse.c
8208 action winms.h
8209 action winmsg.c
8210 action winmsg.h
8211 action winmultiwindowclass.c
8212 action winmultiwindowclass.h
8213 action winmultiwindowicons.c
8214 action winmultiwindowshape.c
8215 action winmultiwindowwindow.c
8216 action winmultiwindowwm.c
8217 action winmultiwindowwndproc.c
8218 action winnativegdi.c
8219 action winpfbdd.c
8220 action winpixmap.c
8221 action winpntwin.c
8222 action winpolyline.c
8223 action winprefs.c
8224 action winprefs.h
8225 action winprefsyacc.y
8226 action winprefslex.l
8227 action winpriv.c
8228 action winpriv.h
8229 action winprocarg.c
8230 action winpushpxl.c
8231 action winrandr.c
8232 action winregistry.c
8233 action winresource.h
8234 action winrop.c
8235 action winscrinit.c
8236 action winsetsp.c
8237 action winshaddd.c
8238 action winshadddnl.c
8239 action winshadgdi.c
8240 action wintrayicon.c
8241 action winvalargs.c
8242 action winvideo.c
8243 action winwakeup.c
8244 action winwin32rootless.c
8245 action winwin32rootlesswindow.c
8246 action winwin32rootlesswndproc.c
8247 action winwindow.c
8248 action winwindow.h
8249 action winwindowswm.c
8250 action winwndproc.c
8252 action XWin.rc
8253 action X.ico
8254 action X-boxed.ico
8256 action XWin.man
8257 action XWinrc.man
8259 action _usr_X11R6_lib_X11_system.XWinrc
8261 action ChangeLog
8262 action README
8265 symlink_xserver_hw_xwin_xlaunch() {
8266 src_dir programs/Xserver/hw/xwin/xlaunch
8267 dst_dir xserver/xorg/hw/xwin/xlaunch
8269 action config.cc
8270 action config.h
8271 action COPYING
8272 action main.cc
8273 action Makefile
8275 src_dir programs/Xserver/hw/xwin/xlaunch/resources
8276 dst_dir xserver/xorg/hw/xwin/xlaunch/resources
8278 action dialog.rc
8279 action fullscreen.bmp
8280 action images.rc
8281 action multiwindow.bmp
8282 action nodecoration.bmp
8283 action resources.h
8284 action resources.rc
8285 action strings.rc
8286 action windowed.bmp
8288 src_dir programs/Xserver/hw/xwin/xlaunch/window
8289 dst_dir xserver/xorg/hw/xwin/xlaunch/window
8291 action dialog.cc
8292 action dialog.h
8293 action util.cc
8294 action util.h
8295 action window.cc
8296 action window.h
8297 action wizard.cc
8298 action wizard.h
8301 symlink_xserver_ilbm() {
8302 src_dir programs/Xserver/ilbm
8303 dst_dir xserver/xorg/ilbm
8305 action ilbm.h
8306 action ilbmbitblt.c
8307 action ilbmblt.c
8308 action ilbmbres.c
8309 action ilbmbresd.c
8310 action ilbmbstore.c
8311 action ilbmclip.c
8312 action ilbmcmap.c
8313 action ilbmfillarc.c
8314 action ilbmfillrct.c
8315 action ilbmfillsp.c
8316 action ilbmfont.c
8317 action ilbmgc.c
8318 action ilbmgetsp.c
8319 action ilbmhrzvert.c
8320 action ilbmimage.c
8321 action ilbmimggblt.c
8322 action ilbmline.c
8323 action ilbmmisc.c
8324 action ilbmpixmap.c
8325 action ilbmply1rct.c
8326 action ilbmplygblt.c
8327 action ilbmpntarea.c
8328 action ilbmpntwin.c
8329 action ilbmpolypnt.c
8330 action ilbmpushpxl.c
8331 action ilbmscrinit.c
8332 action ilbmsetsp.c
8333 action ilbmtegblt.c
8334 action ilbmtile.c
8335 action ilbmwindow.c
8336 action ilbmzerarc.c
8338 action README
8341 symlink_xserver_include() {
8342 src_dir programs/Xserver/include
8343 dst_dir xserver/xorg/include
8345 action bstore.h
8346 action bstorestr.h
8347 action closestr.h
8348 action closure.h
8349 action colormap.h
8350 action colormapst.h
8351 action cursor.h
8352 action cursorstr.h
8353 action dixevents.h
8354 action dixfont.h
8355 action dixfontstr.h
8356 action dixgrabs.h
8357 action dix.h
8358 action dixstruct.h
8359 action exevents.h
8360 action extension.h
8361 action extinit.h
8362 action extnsionst.h
8363 action gc.h
8364 action gcstruct.h
8365 action globals.h
8366 action input.h
8367 action inputstr.h
8368 action misc.h
8369 action miscstruct.h
8370 action opaque.h
8371 action os.h
8372 action pixmap.h
8373 action pixmapstr.h
8374 action property.h
8375 action propertyst.h
8376 action region.h
8377 action regionstr.h
8378 action resource.h
8379 action rgb.h
8380 action screenint.h
8381 action scrnintstr.h
8382 action selection.h
8383 action servermd.h
8384 action site.h
8385 action swaprep.h
8386 action swapreq.h
8387 action validate.h
8388 action window.h
8389 action windowstr.h
8390 action XIstubs.h
8393 symlink_xserver_iplan2p2() {
8394 src_dir programs/Xserver/iplan2p2
8395 dst_dir xserver/xorg/iplan2p2
8398 symlink_xserver_iplan2p4() {
8399 src_dir programs/Xserver/iplan2p4
8400 dst_dir xserver/xorg/iplan2p4
8402 action ipl.h
8403 action iplallpriv.c
8404 action iplbitblt.c
8405 action iplblt.c
8406 action iplbres.c
8407 action iplbresd.c
8408 action iplbstore.c
8409 action iplcmap.c
8410 action iplfillarc.c
8411 action iplfillrct.c
8412 action iplfillsp.c
8413 action iplgc.c
8414 action iplgetsp.c
8415 action iplhrzvert.c
8416 action iplimage.c
8417 action iplline.c
8418 action iplmap.h
8419 action iplmergerop.h
8420 action iplmskbits.c
8421 action iplmskbits.h
8422 action iplpack.c
8423 action iplpack.h
8424 action iplpixmap.c
8425 action iplply1rct.c
8426 action iplpntwin.c
8427 action iplpolypnt.c
8428 action iplrrop.c
8429 action iplrrop.h
8430 action iplscrinit.c
8431 action iplsetsp.c
8432 action iplsolid.c
8433 action ipltegblt.c
8434 action ipltile32.c
8435 action ipltileodd.c
8436 action iplwindow.c
8439 symlink_xserver_iplan2p8() {
8440 src_dir programs/Xserver/iplan2p8
8441 dst_dir xserver/xorg/iplan2p8
8445 symlink_xserver_lbx() {
8446 src_dir programs/Xserver/lbx
8447 dst_dir xserver/xorg/lbx
8449 action lbxcmap.c
8450 action lbxdata.h
8451 action lbxdix.c
8452 action lbxexts.c
8453 action lbxgfx.c
8454 action lbxmain.c
8455 action lbxopts.c
8456 action lbxprop.c
8457 action lbxserve.h
8458 action lbxsquish.c
8459 action lbxsrvopts.h
8460 action lbxswap.c
8461 action lbxtables.c
8462 action lbxtags.c
8463 action lbxtags.h
8464 action lbxzerorep.c
8467 symlink_xserver_mfb() {
8468 src_dir programs/Xserver/mfb
8469 dst_dir xserver/xorg/mfb
8471 action fastblt.h
8472 action maskbits.c
8473 action maskbits.h
8474 action mergerop.h
8475 action mfb.h
8476 action mfbbitblt.c
8477 action mfbblt.c
8478 action mfbbres.c
8479 action mfbbresd.c
8480 action mfbbstore.c
8481 action mfbclip.c
8482 action mfbcmap.c
8483 action mfbfillarc.c
8484 action mfbfillrct.c
8485 action mfbfillsp.c
8486 action mfbfont.c
8487 action mfbgc.c
8488 action mfbgetsp.c
8489 action mfbhrzvert.c
8490 action mfbimage.c
8491 action mfbimggblt.c
8492 action mfbline.c
8493 action mfbmisc.c
8494 action mfbpixmap.c
8495 action mfbply1rct.c
8496 action mfbplygblt.c
8497 action mfbpntarea.c
8498 action mfbpntwin.c
8499 action mfbpolypnt.c
8500 action mfbpushpxl.c
8501 action mfbscrclse.c
8502 action mfbscrinit.c
8503 action mfbsetsp.c
8504 action mfbtegblt.c
8505 action mfbtile.c
8506 action mfbwindow.c
8507 action mfbzerarc.c
8510 symlink_xserver_mi() {
8511 src_dir programs/Xserver/mi
8512 dst_dir xserver/xorg/mi
8514 action cbrt.c
8515 action mi.h
8516 action miarc.c
8517 action mibank.c
8518 action mibank.h
8519 action mibitblt.c
8520 action mibstore.c
8521 action mibstore.h
8522 action mibstorest.h
8523 action miclipn.c
8524 action micmap.c
8525 action micmap.h
8526 action micoord.h
8527 action micursor.c
8528 action midash.c
8529 action midispcur.c
8530 action mieq.c
8531 action miexpose.c
8532 action mifillarc.c
8533 action mifillarc.h
8534 action mifillrct.c
8535 action mifpoly.h
8536 action mifpolycon.c
8537 action migc.c
8538 action migc.h
8539 action miglblt.c
8540 action miinitext.c
8541 action miline.h
8542 action mioverlay.c
8543 action mioverlay.h
8544 action mipointer.c
8545 action mipointer.h
8546 action mipointrst.h
8547 action mipoly.c
8548 action mipoly.h
8549 action mipolycon.c
8550 action mipolygen.c
8551 action mipolypnt.c
8552 action mipolyrect.c
8553 action mipolyseg.c
8554 action mipolytext.c
8555 action mipolyutil.c
8556 action mipushpxl.c
8557 action miregion.c
8558 action miscanfill.h
8559 action miscrinit.c
8560 action mispans.c
8561 action mispans.h
8562 action misprite.c
8563 action misprite.h
8564 action mispritest.h
8565 action mistruct.h
8566 action mivalidate.h
8567 action mivaltree.c
8568 action miwideline.c
8569 action miwideline.h
8570 action miwindow.c
8571 action mizerarc.c
8572 action mizerarc.h
8573 action mizerclip.c
8574 action mizerline.c
8577 symlink_xserver_miext_cw() {
8578 src_dir programs/Xserver/miext/cw
8579 dst_dir xserver/xorg/miext/cw
8581 action cw.c
8582 action cw.h
8583 action cw_ops.c
8584 action cw_render.c
8587 symlink_xserver_miext_damage() {
8588 src_dir programs/Xserver/miext/damage
8589 dst_dir xserver/xorg/miext/damage
8591 action damage.c
8592 action damage.h
8593 action damagestr.h
8596 symlink_xserver_miext_layer() {
8597 src_dir programs/Xserver/miext/layer
8598 dst_dir xserver/xorg/miext/layer
8600 action layer.h
8601 action layergc.c
8602 action layerinit.c
8603 action layerpict.c
8604 action layerstr.h
8605 action layerwin.c
8608 symlink_xserver_miext_rootless() {
8609 src_dir programs/Xserver/miext/rootless
8610 dst_dir xserver/xorg/miext/rootless
8612 action rootless.h
8613 action rootlessCommon.c
8614 action rootlessCommon.h
8615 action rootlessConfig.h
8616 action rootlessGC.c
8617 action rootlessScreen.c
8618 action rootlessValTree.c
8619 action rootlessWindow.c
8620 action rootlessWindow.h
8622 action README.txt
8625 symlink_xserver_miext_rootless_accel() {
8626 src_dir programs/Xserver/miext/rootless/accel
8627 dst_dir xserver/xorg/miext/rootless/accel
8629 action rlAccel.c
8630 action rlAccel.h
8631 action rlBlt.c
8632 action rlCopy.c
8633 action rlFill.c
8634 action rlFillRect.c
8635 action rlFillSpans.c
8636 action rlGlyph.c
8637 action rlSolid.c
8640 symlink_xserver_miext_rootless_safealpha() {
8641 src_dir programs/Xserver/miext/rootless/safeAlpha
8642 dst_dir xserver/xorg/miext/rootless/safeAlpha
8644 action safeAlpha.h
8645 action safeAlphaPicture.c
8646 action safeAlphaWindow.c
8649 symlink_xserver_miext_shadow() {
8650 src_dir programs/Xserver/miext/shadow
8651 dst_dir xserver/xorg/miext/shadow
8653 action shadow.c
8654 action shadow.h
8655 action shalloc.c
8656 action shpacked.c
8657 action shplanar.c
8658 action shplanar8.c
8659 action shrot16pack.c
8660 action shrot16pack_180.c
8661 action shrot16pack_270.c
8662 action shrot16pack_90.c
8663 action shrot32pack.c
8664 action shrot32pack_180.c
8665 action shrot32pack_270.c
8666 action shrot32pack_90.c
8667 action shrot8pack.c
8668 action shrot8pack_180.c
8669 action shrot8pack_270.c
8670 action shrot8pack_90.c
8671 action shrotate.c
8672 action shrotpack.h
8675 symlink_xserver_os() {
8676 src_dir programs/Xserver/os
8677 dst_dir xserver/xorg/os
8679 action WaitFor.c
8680 action access.c
8681 action auth.c
8682 action connection.c
8683 action io.c
8684 action k5auth.c
8685 action lbxio.c
8686 action log.c
8687 action mitauth.c
8688 action oscolor.c
8689 action osdep.h
8690 action osinit.c
8691 action rpcauth.c
8692 action secauth.c
8693 action utils.c
8694 action xalloc.c
8695 action xdmauth.c
8696 action xdmcp.c
8697 action xprintf.c
8699 src_dir lib/misc
8700 action strlcat.c
8701 action strlcpy.c
8704 symlink_xserver_randr() {
8705 src_dir programs/Xserver/randr
8706 dst_dir xserver/xorg/randr
8708 action mirandr.c
8709 action randr.c
8710 action randrstr.h
8713 symlink_xserver_record() {
8714 src_dir programs/Xserver/record
8715 dst_dir xserver/xorg/record
8717 action record.c
8718 action set.c
8719 action set.h
8722 symlink_xserver_render() {
8723 src_dir programs/Xserver/render
8724 dst_dir xserver/xorg/render
8726 action animcur.c
8727 action filter.c
8728 action glyph.c
8729 action glyphstr.h
8730 action miglyph.c
8731 action miindex.c
8732 action mipict.c
8733 action mipict.h
8734 action mirect.c
8735 action mitrap.c
8736 action mitri.c
8737 action picture.c
8738 action picture.h
8739 action picturestr.h
8740 action render.c
8741 action renderedge.c
8742 action renderedge.h
8745 symlink_xserver_xfixes() {
8746 src_dir programs/Xserver/xfixes
8747 dst_dir xserver/xorg/xfixes
8749 action cursor.c
8750 action region.c
8751 action saveset.c
8752 action select.c
8753 action xfixes.c
8754 action xfixes.h
8755 action xfixesint.h
8758 symlink_xserver_xkb() {
8759 src_dir programs/Xserver/xkb
8760 dst_dir xserver/xorg/xkb
8762 action ddxBeep.c
8763 action ddxConfig.c
8764 action ddxCtrls.c
8765 action ddxDevBtn.c
8766 action ddxFakeBtn.c
8767 action ddxFakeMtn.c
8768 action ddxInit.c
8769 action ddxKeyClick.c
8770 action ddxKillSrv.c
8771 action ddxLEDs.c
8772 action ddxList.c
8773 action ddxLoad.c
8774 action ddxPrivate.c
8775 action ddxVT.c
8776 action xkb.c
8777 action xkb.h
8778 action xkbAccessX.c
8779 action xkbActions.c
8780 action xkbDflts.h
8781 action xkbEvents.c
8782 action xkbInit.c
8783 action xkbLEDs.c
8784 action xkbPrKeyEv.c
8785 action xkbPrOtherEv.c
8786 action xkbSwap.c
8787 action xkbUtils.c
8789 src_dir lib/X11
8790 action XKBAlloc.c
8791 action XKBGAlloc.c
8792 action XKBMAlloc.c
8793 action XKBMisc.c
8795 src_dir lib/xkbfile
8796 action maprules.c
8797 action xkbconfig.c
8798 action xkberrs.c
8799 action xkbmisc.c xkbfmisc.c
8800 action xkbout.c
8801 action xkbtext.c
8802 action xkmread.c
8804 src_dir programs/xkbcomp/compiled
8805 action README README.compiled
8808 symlink_xserver_xprint_config_models() {
8809 # CANONBJ10E-GS
8810 src_dir programs/Xserver/XpConfig/C/print/models/CANONBJ10E-GS
8811 dst_dir xserver/xorg/XpConfig/C/print/models/CANONBJ10E-GS
8813 action model-config
8815 # CANONC3200-PS
8816 src_dir programs/Xserver/XpConfig/C/print/models/CANONC3200-PS
8817 dst_dir xserver/xorg/XpConfig/C/print/models/CANONC3200-PS
8819 action model-config
8821 # GSdefault
8822 src_dir programs/Xserver/XpConfig/C/print/models/GSdefault
8823 dst_dir xserver/xorg/XpConfig/C/print/models/GSdefault
8825 action model-config
8827 # HPDJ1600C
8828 src_dir programs/Xserver/XpConfig/C/print/models/HPDJ1600C
8829 dst_dir xserver/xorg/XpConfig/C/print/models/HPDJ1600C
8831 action model-config
8833 src_dir programs/Xserver/XpConfig/C/print/models/HPDJ1600C/fonts
8834 dst_dir xserver/xorg/XpConfig/C/print/models/HPDJ1600C/fonts
8836 action 9nb00051.pmf
8837 action 9nb00052.pmf
8838 action 9nb00053.pmf
8839 action 9nb00054.pmf
8840 action 9nb00055.pmf
8841 action 9nb00056.pmf
8842 action 9nb00057.pmf
8843 action 9nb00058.pmf
8844 action 9nb00059.pmf
8845 action 9nb00060.pmf
8846 action 9nb00061.pmf
8847 action 9nb00062.pmf
8848 action 9nb00063.pmf
8849 action 9nb00064.pmf
8850 action 9nb00065.pmf
8851 action 9nb00066.pmf
8852 action 9nb00067.pmf
8853 action 9nb00068.pmf
8854 action 9nb00069.pmf
8855 action 9nb00070.pmf
8856 action 9nb00071.pmf
8857 action 9nb00072.pmf
8858 action 9nb00073.pmf
8859 action 9nb00074.pmf
8860 action 9nb00075.pmf
8861 action 9nb00076.pmf
8862 action 9nb00077.pmf
8863 action 9nb00079.pmf
8864 action 9nb00080.pmf
8865 action 9nb00081.pmf
8866 action 9nb00082.pmf
8867 action 9nb00083.pmf
8868 action 9nb00084.pmf
8869 action 9nb00085.pmf
8870 action 9nb00086.pmf
8871 action 9nb00087.pmf
8872 action 9nb00088.pmf
8873 action 9nb00089.pmf
8874 action 9nb00090.pmf
8875 action 9nb00091.pmf
8876 action 9nb00092.pmf
8877 action 9nb00093.pmf
8878 action 9nb00094.pmf
8879 action fonts.alias
8880 action fonts.dir
8881 action lpr0ye1a.pmf
8882 action README
8884 # HPLJ4050-PS
8885 src_dir programs/Xserver/XpConfig/C/print/models/HPLJ4050-PS
8886 dst_dir xserver/xorg/XpConfig/C/print/models/HPLJ4050-PS
8888 action model-config
8890 # HPLJ4family
8891 src_dir programs/Xserver/XpConfig/C/print/models/HPLJ4family
8892 dst_dir xserver/xorg/XpConfig/C/print/models/HPLJ4family
8894 action model-config
8896 src_dir programs/Xserver/XpConfig/C/print/models/HPLJ4family/fonts
8897 dst_dir xserver/xorg/XpConfig/C/print/models/HPLJ4family/fonts
8899 action 9nb00051.pmf
8900 action 9nb00052.pmf
8901 action 9nb00053.pmf
8902 action 9nb00054.pmf
8903 action 9nb00055.pmf
8904 action 9nb00056.pmf
8905 action 9nb00057.pmf
8906 action 9nb00058.pmf
8907 action 9nb00059.pmf
8908 action 9nb00060.pmf
8909 action 9nb00061.pmf
8910 action 9nb00062.pmf
8911 action 9nb00063.pmf
8912 action 9nb00064.pmf
8913 action 9nb00065.pmf
8914 action 9nb00066.pmf
8915 action 9nb00067.pmf
8916 action 9nb00068.pmf
8917 action 9nb00069.pmf
8918 action 9nb00070.pmf
8919 action 9nb00071.pmf
8920 action 9nb00072.pmf
8921 action 9nb00073.pmf
8922 action 9nb00074.pmf
8923 action 9nb00075.pmf
8924 action 9nb00076.pmf
8925 action 9nb00077.pmf
8926 action 9nb00079.pmf
8927 action 9nb00080.pmf
8928 action 9nb00081.pmf
8929 action 9nb00082.pmf
8930 action 9nb00083.pmf
8931 action 9nb00084.pmf
8932 action 9nb00085.pmf
8933 action 9nb00086.pmf
8934 action 9nb00087.pmf
8935 action 9nb00088.pmf
8936 action 9nb00089.pmf
8937 action 9nb00090.pmf
8938 action 9nb00091.pmf
8939 action 9nb00092.pmf
8940 action 9nb00093.pmf
8941 action 9nb00094.pmf
8942 action fonts.alias
8943 action fonts.dir
8944 action lpr0ye1a.pmf
8945 action README
8947 # PS2PDFspooldir-GS
8948 src_dir programs/Xserver/XpConfig/C/print/models/PS2PDFspooldir-GS
8949 dst_dir xserver/xorg/XpConfig/C/print/models/PS2PDFspooldir-GS
8951 action model-config
8952 action ps2pdf_spooltodir.sh
8954 # PSdefault
8955 src_dir programs/Xserver/XpConfig/C/print/models/PSdefault
8956 dst_dir xserver/xorg/XpConfig/C/print/models/PSdefault
8958 action model-config
8960 src_dir programs/Xserver/XpConfig/C/print/models/PSdefault/fonts
8961 dst_dir xserver/xorg/XpConfig/C/print/models/PSdefault/fonts
8963 action AvantGarde-BookOblique.pmf
8964 action AvantGarde-Book.pmf
8965 action AvantGarde-DemiOblique.pmf
8966 action AvantGarde-Demi.pmf
8967 action Courier-BoldOblique.pmf
8968 action Courier-Bold.pmf
8969 action Courier-Oblique.pmf
8970 action Courier.pmf
8971 action Helvetica-BoldOblique.pmf
8972 action Helvetica-Bold.pmf
8973 action Helvetica-Oblique.pmf
8974 action Helvetica.pmf
8975 action LubalinGraph-BookOblique.pmf
8976 action LubalinGraph-Book.pmf
8977 action LubalinGraph-DemiOblique.pmf
8978 action LubalinGraph-Demi.pmf
8979 action NewCenturySchlbk-BoldItalic.pmf
8980 action NewCenturySchlbk-Bold.pmf
8981 action NewCenturySchlbk-Italic.pmf
8982 action NewCenturySchlbk-Roman.pmf
8983 action Souvenir-DemiItalic.pmf
8984 action Souvenir-Demi.pmf
8985 action Souvenir-LightItalic.pmf
8986 action Souvenir-Light.pmf
8987 action Symbol.pmf
8988 action Times-BoldItalic.pmf
8989 action Times-Bold.pmf
8990 action Times-Italic.pmf
8991 action Times-Roman.pmf
8992 action ZapfDingbats.pmf
8994 # PSspooldir
8995 src_dir programs/Xserver/XpConfig/C/print/models/PSspooldir
8996 dst_dir xserver/xorg/XpConfig/C/print/models/PSspooldir
8998 action model-config
8999 action spooltodir.sh
9001 # SPSPARC2
9002 src_dir programs/Xserver/XpConfig/C/print/models/SPSPARC2
9003 dst_dir xserver/xorg/XpConfig/C/print/models/SPSPARC2
9005 action model-config
9010 symlink_xserver_xprint_config() {
9011 src_dir programs/Xserver/XpConfig
9012 dst_dir xserver/xorg/XpConfig
9014 action README
9016 src_dir programs/Xserver/XpConfig/C/print
9017 dst_dir xserver/xorg/XpConfig/C/print
9019 action Xprinters
9021 src_dir programs/Xserver/XpConfig/C/print/attributes
9022 dst_dir xserver/xorg/XpConfig/C/print/attributes
9024 action document
9025 action job
9026 action printer
9028 src_dir programs/Xserver/XpConfig/C/print/ddx-config/raster
9029 dst_dir xserver/xorg/XpConfig/C/print/ddx-config/raster
9031 action pcl
9032 action postscript
9034 src_dir programs/Xserver/XpConfig/en_US/print/attributes
9035 dst_dir xserver/xorg/XpConfig/en_US/print/attributes
9037 action document
9039 symlink_xserver_xprint_config_models
9042 symlink_xserver() {
9043 symlink_xserver_GL_apple
9044 symlink_xserver_GL_dri
9045 symlink_xserver_GL_glx
9046 symlink_xserver_GL_include_GL
9047 symlink_xserver_GL_mesa_X
9048 symlink_xserver_GL_windows
9049 symlink_xserver_XTrap
9050 symlink_xserver_Xext
9051 symlink_xserver_Xext_extmod
9052 symlink_xserver_Xi
9053 symlink_xserver_Xprint
9054 symlink_xserver_Xprint_etc
9055 symlink_xserver_Xprint_ps
9056 symlink_xserver_Xprint_pcl
9057 symlink_xserver_Xprint_raster
9058 symlink_xserver_afb
9059 symlink_xserver_cfb
9060 symlink_xserver_cfb24
9061 symlink_xserver_composite
9062 symlink_xserver_damageext
9063 symlink_xserver_dbe
9064 symlink_xserver_dix
9065 symlink_xserver_fb
9066 symlink_xserver_hw_darwin
9067 symlink_xserver_hw_darwin_bundle
9068 symlink_xserver_hw_darwin_iokit
9069 symlink_xserver_hw_darwin_quartz
9070 symlink_xserver_hw_darwin_quartz_cr
9071 symlink_xserver_hw_darwin_quartz_fullscreen
9072 symlink_xserver_hw_darwin_quartz_xpr
9073 symlink_xserver_hw_darwin_utils
9074 symlink_xserver_hw_dmx
9075 symlink_xserver_hw_dmx_config
9076 symlink_xserver_hw_dmx_doc
9077 symlink_xserver_hw_dmx_examples
9078 symlink_xserver_hw_dmx_glxProxy
9079 symlink_xserver_hw_dmx_input
9080 symlink_xserver_hw_sun
9081 symlink_xserver_hw_vfb
9082 symlink_xserver_hw_xfree86
9083 symlink_xserver_hw_xfree86_common
9084 symlink_xserver_hw_xfree86_ddc
9085 symlink_xserver_hw_xfree86_x86emu
9086 symlink_xserver_hw_xfree86_dixmods
9087 symlink_xserver_hw_xfree86_doc
9088 symlink_xserver_hw_xfree86_dummylib
9089 symlink_xserver_hw_xfree86_etc
9090 symlink_xserver_hw_xfree86_exa
9091 symlink_xserver_hw_xfree86_fbdevhw
9092 symlink_xserver_hw_xfree86_getconfig
9093 symlink_xserver_hw_xfree86_i2c
9094 symlink_xserver_hw_xfree86_int10
9095 symlink_xserver_hw_xfree86_loader
9096 symlink_xserver_hw_xfree86_ossupport
9097 symlink_xserver_hw_xfree86_ossupport_bsd
9098 symlink_xserver_hw_xfree86_ossupport_bsd_libusb
9099 symlink_xserver_hw_xfree86_ossupport_bus
9100 symlink_xserver_hw_xfree86_ossupport_drm
9101 symlink_xserver_hw_xfree86_ossupport_linux
9102 symlink_xserver_hw_xfree86_ossupport_linux_int10
9103 symlink_xserver_hw_xfree86_ossupport_linux_int10_vm86
9104 symlink_xserver_hw_xfree86_ossupport_lynxos
9105 symlink_xserver_hw_xfree86_ossupport_misc
9106 symlink_xserver_hw_xfree86_ossupport_sco
9107 symlink_xserver_hw_xfree86_ossupport_shared
9108 symlink_xserver_hw_xfree86_ossupport_sunos
9109 symlink_xserver_hw_xfree86_ossupport_sysv
9110 symlink_xserver_hw_xfree86_ossupport_usl
9111 symlink_xserver_hw_xfree86_parser
9112 symlink_xserver_hw_xfree86_rac
9113 symlink_xserver_hw_xfree86_ramdac
9114 symlink_xserver_hw_xfree86_scanpci
9115 symlink_xserver_hw_xfree86_shadowfb
9116 symlink_xserver_hw_xfree86_vbe
9117 symlink_xserver_hw_xfree86_vgahw
9118 symlink_xserver_hw_xfree86_xaa
9119 symlink_xserver_hw_xfree86_xf1bpp
9120 symlink_xserver_hw_xfree86_xf4bpp
9121 symlink_xserver_hw_xfree86_xf8_16bpp
9122 symlink_xserver_hw_xfree86_xf8_32bpp
9123 symlink_xserver_hw_xfree86_xf8_32wid
9124 symlink_xserver_hw_xfree86_xf86cfg
9125 symlink_xserver_hw_xfree86_xf86config
9126 symlink_xserver_hw_xnest
9127 symlink_xserver_hw_xwin
9128 symlink_xserver_hw_xwin_xlaunch
9129 symlink_xserver_ilbm
9130 symlink_xserver_include
9131 symlink_xserver_iplan2p2
9132 symlink_xserver_iplan2p4
9133 symlink_xserver_iplan2p8
9134 symlink_xserver_lbx
9135 symlink_xserver_mfb
9136 symlink_xserver_mi
9137 symlink_xserver_miext_cw
9138 symlink_xserver_miext_damage
9139 symlink_xserver_miext_layer
9140 symlink_xserver_miext_rootless
9141 symlink_xserver_miext_rootless_accel
9142 symlink_xserver_miext_rootless_safealpha
9143 symlink_xserver_miext_shadow
9144 symlink_xserver_os
9145 symlink_xserver_randr
9146 symlink_xserver_record
9147 symlink_xserver_render
9148 symlink_xserver_xfixes
9149 symlink_xserver_xkb
9150 symlink_xserver_xprint_config
9151 # ...
9154 #########
9156 # The driver module
9158 #########
9161 symlink_driver_apm() {
9162 src_dir programs/Xserver/hw/xfree86/drivers/apm
9163 dst_dir driver/xf86-video-apm
9165 action README
9167 src_dir programs/Xserver/hw/xfree86/drivers/apm
9168 dst_dir driver/xf86-video-apm/src
9170 action apm.h
9171 action apm_accel.c
9172 action apm_cursor.c
9173 action apm_dga.c
9174 action apm_driver.c
9175 action apm_funcs.c
9176 action apm_i2c.c
9177 action apm_regs.h
9178 action apm_rush.c
9179 action apm_video.c
9181 dst_dir driver/xf86-video-apm/man
9183 action apm.man
9186 symlink_driver_ark() {
9187 src_dir programs/Xserver/hw/xfree86/drivers/ark
9188 dst_dir driver/xf86-video-ark/src
9190 action ark.h
9191 action ark_accel.c
9192 action ark_driver.c
9193 action ark_reg.h
9195 dst_dir driver/xf86-video-ark/man
9199 symlink_driver_ati() {
9200 src_dir programs/Xserver/hw/xfree86/drivers/ati
9201 dst_dir driver/xf86-video-ati/src
9203 action ati.c
9204 action ati.h
9205 action atiaccel.c
9206 action atiaccel.h
9207 action atiadapter.c
9208 action atiadapter.h
9209 action atiadjust.c
9210 action atiadjust.h
9211 action atiaudio.c
9212 action atiaudio.h
9213 action atibank.c
9214 action atibank.h
9215 action atibus.c
9216 action atibus.h
9217 action atichip.c
9218 action atichip.h
9219 action aticlock.c
9220 action aticlock.h
9221 action aticonfig.c
9222 action aticonfig.h
9223 action aticonsole.c
9224 action aticonsole.h
9225 action aticrtc.h
9226 action aticursor.c
9227 action aticursor.h
9228 action atidac.c
9229 action atidac.h
9230 action atidecoder.c
9231 action atidecoder.h
9232 action atidga.c
9233 action atidga.h
9234 action atidri.c
9235 action atidri.h
9236 action atidripriv.h
9237 action atidsp.c
9238 action atidsp.h
9239 action atifillin.c
9240 action atifillin.h
9241 action atii2c.c
9242 action atii2c.h
9243 action atiident.c
9244 action atiident.h
9245 action atiio.h
9246 action atiload.c
9247 action atiload.h
9248 action atilock.c
9249 action atilock.h
9250 action atimach64.c
9251 action atimach64.h
9252 action atimach64accel.c
9253 action atimach64accel.h
9254 action atimach64cursor.c
9255 action atimach64cursor.h
9256 action atimach64i2c.c
9257 action atimach64i2c.h
9258 action atimach64io.c
9259 action atimach64io.h
9260 action atimach64xv.c
9261 action atimach64xv.h
9262 action atimisc.c
9263 action atimode.c
9264 action atimode.h
9265 action atimodule.c
9266 action atimodule.h
9267 action atimono.h
9268 action atioption.c
9269 action atioption.h
9270 action atipreinit.c
9271 action atipreinit.h
9272 action atiprint.c
9273 action atiprint.h
9274 action atipriv.h
9275 action atiprobe.c
9276 action atiprobe.h
9277 action atiregs.h
9278 action atirgb514.c
9279 action atirgb514.h
9280 action atiscreen.c
9281 action atiscreen.h
9282 action atistruct.h
9283 action atituner.c
9284 action atituner.h
9285 action atiutil.c
9286 action atiutil.h
9287 action ativalid.c
9288 action ativalid.h
9289 action ativersion.h
9290 action ativga.c
9291 action ativga.h
9292 action ativgaio.c
9293 action ativgaio.h
9294 action atividmem.c
9295 action atividmem.h
9296 action atiwonder.c
9297 action atiwonder.h
9298 action atiwonderio.c
9299 action atiwonderio.h
9300 action atixv.c
9301 action atixv.h
9302 action generic_bus.h
9303 action mach64_common.h
9304 action mach64_dri.h
9305 action mach64_sarea.h
9306 action r128.h
9307 action r128_accel.c
9308 action r128_chipset.h
9309 action r128_common.h
9310 action r128_cursor.c
9311 action r128_dga.c
9312 action r128_dri.c
9313 action r128_dri.h
9314 action r128_dripriv.h
9315 action r128_driver.c
9316 action r128_misc.c
9317 action r128_probe.c
9318 action r128_probe.h
9319 action r128_reg.h
9320 action r128_sarea.h
9321 action r128_version.h
9322 action r128_video.c
9323 action radeon.h
9324 action radeon_accel.c
9325 action radeon_accelfuncs.c
9326 action radeon_bios.c
9327 action radeon_chipset.h
9328 action radeon_common.h
9329 action radeon_commonfuncs.c
9330 action radeon_cursor.c
9331 action radeon_dga.c
9332 action radeon_dri.c
9333 action radeon_dri.h
9334 action radeon_dripriv.h
9335 action radeon_driver.c
9336 action radeon_exa.c
9337 action radeon_exa_funcs.c
9338 action radeon_exa_render.c
9339 action radeon_macros.h
9340 action radeon_mergedfb.c
9341 action radeon_mergedfb.h
9342 action radeon_misc.c
9343 action radeon_mm_i2c.c
9344 action radeon_probe.c
9345 action radeon_probe.h
9346 action radeon_reg.h
9347 action radeon_render.c
9348 action radeon_sarea.h
9349 action radeon_version.h
9350 action radeon_video.c
9351 action radeon_video.h
9352 action radeon_vip.c
9353 action theatre.c
9354 action theatre.h
9355 action theatre200.c
9356 action theatre200.h
9357 action theatre200_module.c
9358 action theatre_detect.c
9359 action theatre_detect.h
9360 action theatre_detect_module.c
9361 action theatre_module.c
9362 action theatre_reg.h
9364 dst_dir driver/xf86-video-ati/man
9366 action ati.man
9367 action r128.man
9368 action radeon.man
9371 symlink_driver_chips() {
9372 src_dir programs/Xserver/hw/xfree86/drivers/chips
9373 dst_dir driver/xf86-video-chips/src
9375 action ct_BlitMM.h
9376 action ct_Blitter.h
9377 action ct_BltHiQV.h
9378 action ct_accel.c
9379 action ct_bank.c
9380 action ct_cursor.c
9381 action ct_ddc.c
9382 action ct_dga.c
9383 action ct_driver.c
9384 action ct_driver.h
9385 action ct_regs.c
9386 action ct_shadow.c
9387 action ct_video.c
9389 dst_dir driver/xf86-video-chips/man
9391 action chips.man
9393 src_dir programs/Xserver/hw/xfree86/drivers/chips/util
9394 dst_dir driver/xf86-video-chips/util
9396 action AsmMacros.h
9397 action dRegs.c
9398 action modClock.c
9399 action mRegs.c
9402 symlink_driver_cirrus() {
9403 src_dir programs/Xserver/hw/xfree86/drivers/cirrus
9404 dst_dir driver/xf86-video-cirrus
9406 action README.multihead
9408 src_dir programs/Xserver/hw/xfree86/drivers/cirrus
9409 dst_dir driver/xf86-video-cirrus/src
9411 action CirrusClk.c
9412 action alp.h
9413 action alp_driver.c
9414 action alp_hwcurs.c
9415 action alp_i2c.c
9416 action alp_xaa.c
9417 action alp_xaam.c
9418 action cir.h
9419 action cir_dga.c
9420 action cir_driver.c
9421 action cir_shadow.c
9422 action lg.h
9423 action lg_driver.c
9424 action lg_hwcurs.c
9425 action lg_i2c.c
9426 action lg_xaa.c
9427 action lg_xaa.h
9429 dst_dir driver/xf86-video-cirrus/man
9431 action cirrus.man
9434 symlink_driver_cyrix() {
9435 src_dir programs/Xserver/hw/xfree86/drivers/cyrix
9436 dst_dir driver/xf86-video-cyrix
9438 action README
9439 action ChangeLog
9441 src_dir programs/Xserver/hw/xfree86/drivers/cyrix
9442 dst_dir driver/xf86-video-cyrix/src
9444 action cyrix.h
9445 action cyrix_accel.c
9446 action cyrix_bank.c
9447 action cyrix_driver.c
9448 action cyrix_helper.c
9449 action cyrix_shadow.c
9451 dst_dir driver/xf86-video-cyrix/man
9453 action cyrix.man
9456 symlink_driver_dummy() {
9457 src_dir programs/Xserver/hw/xfree86/drivers/dummy
9458 dst_dir driver/xf86-video-dummy/src
9460 action dummy.h
9461 action dummy_cursor.c
9462 action dummy_dga.c
9463 action dummy_driver.c
9465 dst_dir driver/xf86-video-dummy/man
9469 symlink_driver_fbdev() {
9470 src_dir programs/Xserver/hw/xfree86/drivers/fbdev
9471 dst_dir driver/xf86-video-fbdev/src
9473 action fbdev.c
9475 dst_dir driver/xf86-video-fbdev/man
9477 action fbdev.man
9480 symlink_driver_glide() {
9481 src_dir programs/Xserver/hw/xfree86/drivers/glide
9482 dst_dir driver/xf86-video-glide/src
9484 action glide_driver.c
9486 dst_dir driver/xf86-video-glide/man
9488 action glide.man
9491 symlink_driver_glint() {
9492 src_dir programs/Xserver/hw/xfree86/drivers/glint
9493 dst_dir driver/xf86-video-glint
9495 action DRI.txt
9496 action README.pm3
9498 src_dir programs/Xserver/hw/xfree86/drivers/glint
9499 dst_dir driver/xf86-video-glint/src
9501 action IBMramdac.c
9502 action TIramdac.c
9503 action glint.h
9504 action glint_common.h
9505 action glint_dga.c
9506 action glint_dri.c
9507 action glint_dri.h
9508 action glint_dripriv.h
9509 action glint_driver.c
9510 action glint_regs.h
9511 action glint_shadow.c
9512 action pm2_accel.c
9513 action pm2_dac.c
9514 action pm2_video.c
9515 action pm2ramdac.c
9516 action pm2v_dac.c
9517 action pm2vramdac.c
9518 action pm3_accel.c
9519 action pm3_dac.c
9520 action pm3_regs.h
9521 action pm3_video.c
9522 action pm_accel.c
9523 action pm_dac.c
9524 action sx_accel.c
9525 action tx_accel.c
9526 action tx_dac.c
9528 dst_dir driver/xf86-video-glint/man
9530 action glint.man
9533 symlink_driver_i128() {
9534 src_dir programs/Xserver/hw/xfree86/drivers/i128
9535 dst_dir driver/xf86-video-i128/src
9537 action IBMRGB.h
9538 action Ti302X.h
9539 action i128.h
9540 action i128IBMDAC.c
9541 action i128_driver.c
9542 action i128accel.c
9543 action i128dga.c
9544 action i128exa.c
9545 action i128init.c
9546 action i128reg.h
9548 dst_dir driver/xf86-video-i128/man
9550 action i128.man
9553 symlink_driver_i740() {
9554 src_dir programs/Xserver/hw/xfree86/drivers/i740
9555 dst_dir driver/xf86-video-i740/src
9557 action i740.h
9558 action i740_accel.c
9559 action i740_cursor.c
9560 action i740_dga.c
9561 action i740_dga.h
9562 action i740_driver.c
9563 action i740_i2c.c
9564 action i740_io.c
9565 action i740_macros.h
9566 action i740_reg.h
9567 action i740_video.c
9569 dst_dir driver/xf86-video-i740/man
9571 action i740.man
9574 symlink_driver_i810() {
9575 src_dir programs/Xserver/hw/xfree86/drivers/i810
9576 dst_dir driver/xf86-video-i810/src
9578 action common.h
9579 action i810.h
9580 action i810_accel.c
9581 action i810_common.h
9582 action i810_cursor.c
9583 action i810_dga.c
9584 action i810_dri.c
9585 action i810_dri.h
9586 action i810_driver.c
9587 action i810_hwmc.c
9588 action i810_io.c
9589 action i810_memory.c
9590 action i810_reg.h
9591 action i810_video.c
9592 action i810_wmark.c
9593 action i830.h
9594 action i830_accel.c
9595 action i830_common.h
9596 action i830_cursor.c
9597 action i830_dga.c
9598 action i830_dri.c
9599 action i830_dri.h
9600 action i830_driver.c
9601 action i830_memory.c
9602 action i830_modes.c
9603 action i830_shadow.c
9604 action i830_video.c
9606 dst_dir driver/xf86-video-i810/man
9608 action i810.man
9610 src_dir lib/XvMC/hw/i810
9611 dst_dir driver/xf86-video-i810/src/xvmc
9613 action I810XvMC.c
9614 action I810XvMC.h
9617 symlink_driver_imstt() {
9618 src_dir programs/Xserver/hw/xfree86/drivers/imstt
9619 dst_dir driver/xf86-video-imstt/src
9621 action imstt.h
9622 action imstt_accel.c
9623 action imstt_driver.c
9624 action imstt_reg.h
9626 dst_dir driver/xf86-video-imstt/man
9628 action imstt.man
9631 symlink_driver_mga() {
9632 src_dir programs/Xserver/hw/xfree86/drivers/mga
9633 dst_dir driver/xf86-video-mga
9635 action mga_PInS.txt
9636 action README_HALLIB
9638 src_dir programs/Xserver/hw/xfree86/drivers/mga/util
9639 dst_dir driver/xf86-video-mga/util
9641 action README
9642 action stormdwg.c
9644 src_dir programs/Xserver/hw/xfree86/drivers/mga
9645 dst_dir driver/xf86-video-mga/src
9647 action client.h
9648 action clientlx.c
9649 action mga.h
9650 action mga_arc.c
9651 action mga_bios.c
9652 action mga_common.h
9653 action mga_dac3026.c
9654 action mga_dacG.c
9655 action mga_dga.c
9656 action mga_dh.c
9657 action mga_dri.c
9658 action mga_dri.h
9659 action mga_dripriv.h
9660 action mga_driver.c
9661 action mga_esc.c
9662 action mga_g450pll.c
9663 action mga_halmod.c
9664 action mga_hwcurs.c
9665 action mga_macros.h
9666 action mga_map.h
9667 action mga_maven.h
9668 action mga_merge.c
9669 action mga_merge.h
9670 action mga_reg.h
9671 action mga_sarea.h
9672 action mga_shadow.c
9673 action mga_storm.c
9674 action mga_ucode.h
9675 action mga_video.c
9676 action mgareg_flags.h
9678 src_dir programs/Xserver/hw/xfree86/drivers/mga/HALlib
9680 action binding.h
9682 src_dir programs/Xserver/hw/xfree86/drivers/mga
9683 dst_dir driver/xf86-video-mga/man
9685 action mga.man
9688 symlink_driver_neomagic() {
9689 src_dir programs/Xserver/hw/xfree86/drivers/neomagic
9690 dst_dir driver/xf86-video-neomagic
9692 action NM-reg.txt
9693 action README
9694 action TODO
9696 src_dir programs/Xserver/hw/xfree86/drivers/neomagic
9697 dst_dir driver/xf86-video-neomagic/src
9699 action neo.h
9700 action neo_2070.c
9701 action neo_2090.c
9702 action neo_2097.c
9703 action neo_2200.c
9704 action neo_bank.c
9705 action neo_cursor.c
9706 action neo_dga.c
9707 action neo_driver.c
9708 action neo_i2c.c
9709 action neo_macros.h
9710 action neo_reg.h
9711 action neo_shadow.c
9712 action neo_video.c
9713 action neo_video.h
9715 dst_dir driver/xf86-video-neomagic/man
9717 action neomagic.man
9720 symlink_driver_newport() {
9721 src_dir programs/Xserver/hw/xfree86/drivers/newport
9722 dst_dir driver/xf86-video-newport
9724 action XF86Config.indy
9726 src_dir programs/Xserver/hw/xfree86/drivers/newport
9727 dst_dir driver/xf86-video-newport/src
9729 action newport.h
9730 action newport_accel.c
9731 action newport_cmap.c
9732 action newport_cursor.c
9733 action newport_driver.c
9734 action newport_regs.c
9735 action newport_regs.h
9736 action newport_shadow.c
9738 dst_dir driver/xf86-video-newport/man
9740 action newport.man
9743 symlink_driver_nsc() {
9744 src_dir programs/Xserver/hw/xfree86/drivers/nsc
9745 dst_dir driver/xf86-video-nsc/src
9747 action durango.c
9748 action nsc.h
9749 action nsc_driver.c
9750 action nsc_fourcc.h
9751 action nsc_galfns.c
9752 action nsc_galstub.c
9753 action nsc_gx1_accel.c
9754 action nsc_gx1_cursor.c
9755 action nsc_gx1_dga.c
9756 action nsc_gx1_driver.c
9757 action nsc_gx1_shadow.c
9758 action nsc_gx1_video.c
9759 action nsc_gx2_accel.c
9760 action nsc_gx2_cursor.c
9761 action nsc_gx2_dga.c
9762 action nsc_gx2_driver.c
9763 action nsc_gx2_shadow.c
9764 action nsc_gx2_vga.c
9765 action nsc_gx2_video.c
9766 action nsc_regacc.c
9767 action nsc_msr_asm.S
9768 action panel.c
9770 dst_dir driver/xf86-video-nsc/man
9772 action nsc.man
9774 src_dir programs/Xserver/hw/xfree86/drivers/nsc/gfx
9775 dst_dir driver/xf86-video-nsc/src/gfx
9777 action disp_gu1.c
9778 action disp_gu2.c
9779 action gfx_dcdr.c
9780 action gfx_defs.h
9781 action gfx_disp.c
9782 action gfx_i2c.c
9783 action gfx_init.c
9784 action gfx_mode.h
9785 action gfx_msr.c
9786 action gfx_regs.h
9787 action gfx_rndr.c
9788 action gfx_rtns.h
9789 action gfx_tv.c
9790 action gfx_type.h
9791 action gfx_vga.c
9792 action gfx_vid.c
9793 action gfx_vip.c
9794 action i2c_acc.c
9795 action i2c_gpio.c
9796 action init_gu1.c
9797 action init_gu2.c
9798 action msr_rdcl.c
9799 action rndr_gu1.c
9800 action rndr_gu2.c
9801 action saa7114.c
9802 action tv_1200.c
9803 action vga_gu1.c
9804 action vid_1200.c
9805 action vid_5530.c
9806 action vid_rdcl.c
9807 action vip_1200.c
9809 # These files are not actually used, but it probably makes sense to
9810 # distribute them along with the rest of gfx
9812 action durango.c
9813 action gfx_tv.h
9814 action history.h
9815 action release.txt
9816 action tv_fs450.c
9817 action tv_fs450.h
9818 action tv_fs451.c
9819 action tv_geode.c
9820 action vid_1400.c
9821 action vip_1400.c
9823 src_dir programs/Xserver/hw/xfree86/drivers/nsc/panel
9824 dst_dir driver/xf86-video-nsc/src/panel
9826 action 92xx.h
9827 action cen9211.c
9828 action cen9211.h
9829 action dora9211.c
9830 action dora9211.h
9831 action drac9210.c
9832 action drac9210.h
9833 action gx2_9211.c
9834 action gx2_9211.h
9835 action panel.c
9836 action panel.h
9837 action platform.c
9838 action pnl_bios.c
9839 action pnl_defs.h
9840 action pnl_init.c
9842 action readme.txt
9845 symlink_driver_nv() {
9846 src_dir programs/Xserver/hw/xfree86/drivers/nv
9847 dst_dir driver/xf86-video-nv/src
9849 action nv_const.h
9850 action nv_cursor.c
9851 action nv_dac.c
9852 action nv_dga.c
9853 action nv_dma.h
9854 action nv_driver.c
9855 action nv_hw.c
9856 action nv_include.h
9857 action nv_local.h
9858 action nv_proto.h
9859 action nv_setup.c
9860 action nv_shadow.c
9861 action nv_type.h
9862 action nv_video.c
9863 action nv_xaa.c
9864 action nvreg.h
9865 action nvvga.h
9866 action riva_const.h
9867 action riva_cursor.c
9868 action riva_dac.c
9869 action riva_dga.c
9870 action riva_driver.c
9871 action riva_hw.c
9872 action riva_hw.h
9873 action riva_include.h
9874 action riva_local.h
9875 action riva_proto.h
9876 action riva_setup.c
9877 action riva_shadow.c
9878 action riva_tbl.h
9879 action riva_type.h
9880 action riva_xaa.c
9882 dst_dir driver/xf86-video-nv/man
9883 action nv.man
9885 src_dir programs/Xserver/hw/xfree86/doc
9886 dst_dir driver/xf86-video-nv
9887 action README.NV1
9890 symlink_driver_rendition() {
9891 src_dir programs/Xserver/hw/xfree86/drivers/rendition
9892 dst_dir driver/xf86-video-rendition/src
9894 action README.uc
9895 action accel.h
9896 action accelX.c
9897 action cmd2d.h
9898 action commonregs.h
9899 action cscode.h
9900 action hwcursor.c
9901 action hwcursor.h
9902 action rendition.c
9903 action rendition.h
9904 action rendition_options.h
9905 action rendition_shadow.c
9906 action rendition_shadow.h
9907 action v10002d.uc
9908 action v20002d.uc
9909 action v1kregs.h
9910 action v1krisc.c
9911 action v1krisc.h
9912 action v2kregs.h
9913 action vboard.c
9914 action vboard.h
9915 action vloaduc.c
9916 action vloaduc.h
9917 action vmisc.c
9918 action vmisc.h
9919 action vmodes.c
9920 action vmodes.h
9921 action vos.h
9922 action vramdac.c
9923 action vramdac.h
9924 action vtypes.h
9926 action vgafont-std.data
9927 action vgafont-vrx.data
9928 action vgapalette.data
9930 dst_dir driver/xf86-video-rendition/man
9932 action rendition.man
9935 symlink_driver_s3() {
9936 src_dir programs/Xserver/hw/xfree86/drivers/s3
9937 dst_dir driver/xf86-video-s3/src
9939 action newmmio.h
9940 action s3.h
9941 action s3_IBMRGB.c
9942 action s3_Ti.c
9943 action s3_Trio64DAC.c
9944 action s3_accel.c
9945 action s3_bios.c
9946 action s3_cursor.c
9947 action s3_dga.c
9948 action s3_driver.c
9949 action s3_reg.h
9950 action s3_video.c
9952 dst_dir driver/xf86-video-s3/man
9956 symlink_driver_s3virge() {
9957 src_dir programs/Xserver/hw/xfree86/drivers/s3virge
9958 dst_dir driver/xf86-video-s3virge
9960 action CALLMAP
9961 action README
9962 action TODO_NOTES
9964 src_dir programs/Xserver/hw/xfree86/drivers/s3virge
9965 dst_dir driver/xf86-video-s3virge/src
9967 action newmmio.h
9968 action regs3v.h
9969 action s3v.h
9970 action s3v_accel.c
9971 action s3v_dac.c
9972 action s3v_dga.c
9973 action s3v_driver.c
9974 action s3v_hwcurs.c
9975 action s3v_i2c.c
9976 action s3v_macros.h
9977 action s3v_rop.h
9978 action s3v_shadow.c
9979 action s3v_xv.c
9981 dst_dir driver/xf86-video-s3virge/man
9983 action s3virge.man
9986 symlink_driver_savage() {
9987 src_dir programs/Xserver/hw/xfree86/drivers/savage
9988 dst_dir driver/xf86-video-savage/src
9990 action savage_accel.c
9991 action savage_bci.h
9992 action savage_common.h
9993 action savage_cursor.c
9994 action savage_dga.c
9995 action savage_dri.c
9996 action savage_dri.h
9997 action savage_dripriv.h
9998 action savage_driver.c
9999 action savage_driver.h
10000 action savage_drm.h
10001 action savage_hwmc.c
10002 action savage_i2c.c
10003 action savage_image.c
10004 action savage_regs.h
10005 action savage_sarea.h
10006 action savage_shadow.c
10007 action savage_streams.c
10008 action savage_streams.h
10009 action savage_vbe.c
10010 action savage_vbe.h
10011 action savage_video.c
10013 dst_dir driver/xf86-video-savage/man
10015 action savage.man
10018 symlink_driver_siliconmotion() {
10019 src_dir programs/Xserver/hw/xfree86/drivers/siliconmotion
10020 dst_dir driver/xf86-video-siliconmotion
10022 action README
10023 action CALLMAP
10024 action Release.txt
10026 src_dir programs/Xserver/hw/xfree86/drivers/siliconmotion
10027 dst_dir driver/xf86-video-siliconmotion/src
10029 action regsmi.h
10030 action smi.h
10031 action smi_accel.c
10032 action smi_dac.c
10033 action smi_dga.c
10034 action smi_driver.c
10035 action smi_hwcurs.c
10036 action smi_i2c.c
10037 action smi_shadow.c
10038 action smi_video.c
10039 action smi_video.h
10041 dst_dir driver/xf86-video-siliconmotion/man
10043 action siliconmotion.man
10046 symlink_driver_sis() {
10047 src_dir programs/Xserver/hw/xfree86/drivers/sis
10048 dst_dir driver/xf86-video-sis/src
10050 action 300vtbl.h
10051 action 310vtbl.h
10052 action init.c
10053 action init.h
10054 action init301.c
10055 action init301.h
10056 action initdef.h
10057 action initextx.c
10058 action initextx.h
10059 action oem300.h
10060 action oem310.h
10061 action osdef.h
10062 action sis.h
10063 action sis300_accel.c
10064 action sis300_accel.h
10065 action sis310_accel.c
10066 action sis310_accel.h
10067 action sis6326_video.c
10068 action sis_accel.c
10069 action sis_accel.h
10070 action sis_common.h
10071 action sis_cursor.c
10072 action sis_cursor.h
10073 action sis_dac.c
10074 action sis_dac.h
10075 action sis_dga.c
10076 action sis_dri.c
10077 action sis_dri.h
10078 action sis_driver.c
10079 action sis_driver.h
10080 action sis_memcpy.c
10081 action sis_opt.c
10082 action sis_regs.h
10083 action sis_setup.c
10084 action sis_shadow.c
10085 action sis_utility.c
10086 action sis_vb.c
10087 action sis_vga.c
10088 action sis_video.c
10089 action sis_video.h
10090 action sis_videostr.h
10091 action vgatypes.h
10092 action vstruct.h
10094 dst_dir driver/xf86-video-sis/man
10096 action sis.man
10099 symlink_driver_sisusb() {
10100 src_dir programs/Xserver/hw/xfree86/drivers/sisusb
10101 dst_dir driver/xf86-video-sisusb/src
10103 action sisusb.h
10104 action sisusb_accel.c
10105 action sisusb_accel.h
10106 action sisusb_cursor.c
10107 action sisusb_cursor.h
10108 action sisusb_dac.c
10109 action sisusb_dac.h
10110 action sisusb_driver.c
10111 action sisusb_driver.h
10112 action sisusb_init.c
10113 action sisusb_init.h
10114 action sisusb_opt.c
10115 action sisusb_osdef.h
10116 action sisusb_regs.h
10117 action sisusb_setup.c
10118 action sisusb_shadow.c
10119 action sisusb_struct.h
10120 action sisusb_types.h
10121 action sisusb_utility.c
10122 action sisusb_vga.c
10123 action sisusb_video.c
10124 action sisusb_video.h
10125 action sisusb_videostr.h
10127 dst_dir driver/xf86-video-sisusb/man
10129 action sisusb.man
10132 symlink_driver_sunbw2() {
10133 src_dir programs/Xserver/hw/xfree86/drivers/sunbw2
10134 dst_dir driver/xf86-video-sunbw2/src
10136 action bw2.h
10137 action bw2_driver.c
10139 dst_dir driver/xf86-video-sunbw2/man
10141 action sunbw2.man
10144 symlink_driver_suncg14() {
10145 src_dir programs/Xserver/hw/xfree86/drivers/suncg14
10146 dst_dir driver/xf86-video-suncg14/src
10148 action cg14.h
10149 action cg14_driver.c
10151 dst_dir driver/xf86-video-suncg14/man
10153 action suncg14.man
10156 symlink_driver_suncg3() {
10157 src_dir programs/Xserver/hw/xfree86/drivers/suncg3
10158 dst_dir driver/xf86-video-suncg3/src
10160 action cg3.h
10161 action cg3_driver.c
10163 dst_dir driver/xf86-video-suncg3/man
10165 action suncg3.man
10168 symlink_driver_suncg6() {
10169 src_dir programs/Xserver/hw/xfree86/drivers/suncg6
10170 dst_dir driver/xf86-video-suncg6/src
10172 action cg6.h
10173 action cg6_cursor.c
10174 action cg6_driver.c
10175 action cg6_regs.h
10177 dst_dir driver/xf86-video-suncg6/man
10179 action suncg6.man
10182 symlink_driver_sunffb() {
10183 src_dir programs/Xserver/hw/xfree86/drivers/sunffb
10184 dst_dir driver/xf86-video-sunffb/src
10186 action ffb.h
10187 action ffb_accel.c
10188 action ffb_attr.c
10189 action ffb_bcopy.c
10190 action ffb_checks.c
10191 action ffb_circle.c
10192 action ffb_clip.c
10193 action ffb_clip.h
10194 action ffb_cplane.c
10195 action ffb_cursor.c
10196 action ffb_dac.c
10197 action ffb_dac.h
10198 action ffb_dbe.c
10199 action ffb_ddc.c
10200 action ffb_dga.c
10201 action ffb_dri.c
10202 action ffb_drishare.h
10203 action ffb_driver.c
10204 action ffb_fifo.h
10205 action ffb_frect.c
10206 action ffb_fspans.c
10207 action ffb_gc.c
10208 action ffb_gc.h
10209 action ffb_glyph.c
10210 action ffb_gspans.c
10211 action ffb_line.c
10212 action ffb_loops.h
10213 action ffb_plygon.c
10214 action ffb_point.c
10215 action ffb_rcache.h
10216 action ffb_rect.c
10217 action ffb_regs.h
10218 action ffb_seg.c
10219 action ffb_sspans.c
10220 action ffb_stip.c
10221 action ffb_stip.h
10222 action ffb_stubs.c
10223 action ffb_wid.c
10224 action ffb_wline.c
10225 action ffb_zeroarc.c
10226 action ffb_asm.s
10227 action VISmoveImage.s
10229 dst_dir driver/xf86-video-sunffb/man
10231 action sunffb.man
10234 symlink_driver_sunleo() {
10235 src_dir programs/Xserver/hw/xfree86/drivers/sunleo
10236 dst_dir driver/xf86-video-sunleo/src
10238 action leo.h
10239 action leo_accel.c
10240 action leo_checks.c
10241 action leo_cursor.c
10242 action leo_driver.c
10243 action leo_frect.c
10244 action leo_frectsp.c
10245 action leo_fspans.c
10246 action leo_fspanssp.c
10247 action leo_glyph.c
10248 action leo_regs.h
10250 dst_dir driver/xf86-video-sunleo/man
10252 action sunleo.man
10255 symlink_driver_suntcx() {
10256 src_dir programs/Xserver/hw/xfree86/drivers/suntcx
10257 dst_dir driver/xf86-video-suntcx/src
10259 action tcx.h
10260 action tcx_cursor.c
10261 action tcx_driver.c
10262 action tcx_regs.h
10264 dst_dir driver/xf86-video-suntcx/man
10266 action suntcx.man
10269 symlink_driver_tdfx() {
10270 src_dir programs/Xserver/hw/xfree86/drivers/tdfx
10271 dst_dir driver/xf86-video-tdfx/src
10273 action tdfx.h
10274 action tdfx_accel.c
10275 action tdfx_dga.c
10276 action tdfx_dri.c
10277 action tdfx_dri.h
10278 action tdfx_dripriv.h
10279 action tdfx_driver.c
10280 action tdfx_hwcurs.c
10281 action tdfx_io.c
10282 action tdfx_priv.c
10283 action tdfx_priv.h
10284 action tdfx_sli.c
10285 action tdfx_video.c
10286 action tdfxdefs.h
10288 dst_dir driver/xf86-video-tdfx/man
10290 action tdfx.man
10293 symlink_driver_tga() {
10294 src_dir programs/Xserver/hw/xfree86/drivers/tga
10295 dst_dir driver/xf86-video-tga/src
10297 action BT463ramdac.c
10298 action BTramdac.c
10299 action IBM561ramdac.c
10300 action ICS1562.c
10301 action tga.h
10302 action tga_accel.c
10303 action tga_cursor.c
10304 action tga_dac.c
10305 action tga_driver.c
10306 action tga_line.c
10307 action tga_regs.h
10309 dst_dir driver/xf86-video-tga/man
10313 symlink_driver_trident() {
10314 src_dir programs/Xserver/hw/xfree86/drivers/trident
10315 dst_dir driver/xf86-video-trident/src
10317 action blade_accel.c
10318 action image_accel.c
10319 action trident.h
10320 action trident_accel.c
10321 action trident_bank.c
10322 action trident_dac.c
10323 action trident_dga.c
10324 action trident_driver.c
10325 action trident_i2c.c
10326 action trident_regs.h
10327 action trident_shadow.c
10328 action trident_tv.c
10329 action trident_video.c
10330 action tridenthelper.c
10331 action tridentramdac.c
10332 action tvga_dac.c
10333 action xp_accel.c
10335 dst_dir driver/xf86-video-trident/man
10337 action trident.man
10340 symlink_driver_tseng() {
10341 src_dir programs/Xserver/hw/xfree86/drivers/tseng
10342 dst_dir driver/xf86-video-tseng/src
10344 action README
10346 src_dir programs/Xserver/hw/xfree86/drivers/tseng
10347 dst_dir driver/xf86-video-tseng/src
10349 action tseng.h
10350 action tseng_accel.c
10351 action tseng_acl.c
10352 action tseng_acl.h
10353 action tseng_bank.c
10354 action tseng_clock.c
10355 action tseng_colexp.c
10356 action tseng_cursor.c
10357 action tseng_dga.c
10358 action tseng_dpms.c
10359 action tseng_driver.c
10360 action tseng_inline.h
10361 action tseng_ramdac.c
10363 dst_dir driver/xf86-video-tseng/man
10365 action tseng.man
10368 symlink_driver_v4l() {
10369 src_dir programs/Xserver/hw/xfree86/drivers/v4l
10370 dst_dir driver/xf86-video-v4l
10372 action README
10374 dst_dir driver/xf86-video-v4l/src
10376 action v4l.c
10377 action videodev.h
10379 dst_dir driver/xf86-video-v4l/man
10381 action v4l.man
10384 symlink_driver_vesa() {
10385 src_dir programs/Xserver/hw/xfree86/drivers/vesa
10386 dst_dir driver/xf86-video-vesa/src
10388 action vesa.c
10389 action vesa.h
10391 dst_dir driver/xf86-video-vesa/man
10393 action vesa.man
10396 symlink_driver_vga() {
10397 src_dir programs/Xserver/hw/xfree86/drivers/vga
10398 dst_dir driver/xf86-video-vga/src
10400 action generic.c
10402 dst_dir driver/xf86-video-vga/man
10404 action vga.man
10407 symlink_driver_via() {
10408 src_dir programs/Xserver/hw/xfree86/drivers/via
10409 dst_dir driver/xf86-video-via/src
10411 action via.h
10412 action via_accel.c
10413 action via_bios.h
10414 action via_bandwidth.c
10415 action via_cursor.c
10416 action via_dga.c
10417 action via_dri.c
10418 action via_dri.h
10419 action via_driver.c
10420 action via_driver.h
10421 action via_i2c.c
10422 action via_id.c
10423 action via_id.h
10424 action via_memcpy.c
10425 action via_memcpy.h
10426 action via_memory.c
10427 action via_mode.c
10428 action via_mode.h
10429 action via_priv.h
10430 action via_regs.h
10431 action via_shadow.c
10432 action via_swov.c
10433 action via_swov.h
10434 action via_vgahw.c
10435 action via_vgahw.h
10436 action via_video.c
10437 action via_video.h
10438 action via_vt162x.c
10439 action via_vt162x.h
10440 action via_xvmc.c
10441 action via_xvmc.h
10442 action via_xvpriv.h
10443 action via_drmclient.h
10444 action via_vbe.c
10446 dst_dir driver/xf86-video-via/man
10448 action via.man
10450 src_dir lib/XvMC/hw/via
10451 dst_dir driver/xf86-video-via/src/xvmc
10453 action driDrawable.c
10454 action driDrawable.h
10455 action viaLowLevel.h
10456 action viaXvMC.c
10457 action viaXvMCPriv.h
10458 action xf86dri.c
10459 action xf86dri.h
10460 action xf86dristr.h
10462 src_dir lib/XvMC/hw/via/unichrome
10463 dst_dir driver/xf86-video-via/src/xvmc/unichrome
10465 action viaLowLevel.c
10467 src_dir lib/XvMC/hw/via/unichromeProA
10468 dst_dir driver/xf86-video-via/src/xvmc/unichromeProA
10470 action viaLowLevelPro.c
10473 symlink_driver_vmware() {
10474 src_dir programs/Xserver/hw/xfree86/drivers/vmware
10475 dst_dir driver/xf86-video-vmware
10477 action README
10479 src_dir programs/Xserver/hw/xfree86/drivers/vmware
10480 dst_dir driver/xf86-video-vmware/src
10482 action bits2pixels.c
10483 action bits2pixels.h
10484 action guest_os.h
10485 action includeCheck.h
10486 action offscreen_manager.c
10487 action offscreen_manager.h
10488 action svga_limits.h
10489 action svga_reg.h
10490 action svga_struct.h
10491 action vm_basic_types.h
10492 action vm_device_version.h
10493 action vmware.c
10494 action vmware.h
10495 action vmwarecurs.c
10496 action vmwarexaa.c
10498 dst_dir driver/xf86-video-vmware/man
10500 action vmware.man
10503 symlink_driver_voodoo() {
10504 src_dir programs/Xserver/hw/xfree86/drivers/voodoo
10505 dst_dir driver/xf86-video-voodoo
10507 action README
10508 action TODO
10510 src_dir programs/Xserver/hw/xfree86/drivers/voodoo
10511 dst_dir driver/xf86-video-voodoo/src
10513 action voodoo.h
10514 action voodoo_dga.c
10515 action voodoo_driver.c
10516 action voodoo_hardware.c
10518 dst_dir driver/xf86-video-voodoo/man
10520 action voodoo.man
10523 symlink_driver_wsfb() {
10524 src_dir programs/Xserver/hw/xfree86/drivers/wsfb
10525 dst_dir driver/xf86-video-wsfb/src
10527 action wsfb_driver.c
10529 dst_dir driver/xf86-video-wsfb/man
10531 action wsfb.man
10534 symlink_driver_acecad() {
10535 src_dir programs/Xserver/hw/xfree86/input/acecad
10536 dst_dir driver/xf86-input-acecad/src
10538 action acecad.c
10539 action acecad.h
10541 dst_dir driver/xf86-input-acecad/man
10543 action acecad.man
10546 symlink_driver_aiptek() {
10547 src_dir programs/Xserver/hw/xfree86/input/aiptek
10548 dst_dir driver/xf86-input-aiptek/src
10550 action xf86Aiptek.c
10551 action xf86Aiptek.h
10553 dst_dir driver/xf86-input-aiptek/man
10555 action aiptek.man
10558 symlink_driver_calcomp() {
10559 src_dir programs/Xserver/hw/xfree86/input/calcomp
10560 dst_dir driver/xf86-input-calcomp/src
10562 action xf86Calcomp.c
10563 action xf86Calcomp.h
10565 dst_dir driver/xf86-input-calcomp/man
10567 action calcomp.man
10570 symlink_driver_citron() {
10571 src_dir programs/Xserver/hw/xfree86/input/citron
10572 dst_dir driver/xf86-input-citron/src
10574 action citron.c
10575 action citron.h
10577 dst_dir driver/xf86-input-citron/man
10579 action citron.man
10582 symlink_driver_digitaledge() {
10583 src_dir programs/Xserver/hw/xfree86/input/digitaledge
10584 dst_dir driver/xf86-input-digitaledge/src
10586 action DigitalEdge.c
10588 dst_dir driver/xf86-input-digitaledge/man
10592 symlink_driver_dmc() {
10593 src_dir programs/Xserver/hw/xfree86/input/dmc
10594 dst_dir driver/xf86-input-dmc/src
10596 action xf86DMC.c
10597 action xf86DMC.h
10599 dst_dir driver/xf86-input-dmc/man
10601 action dmc.man
10604 symlink_driver_dynapro() {
10605 src_dir programs/Xserver/hw/xfree86/input/dynapro
10606 dst_dir driver/xf86-input-dynapro/src
10608 action xf86Dyna.c
10609 action xf86Dyna.h
10611 dst_dir driver/xf86-input-dynapro/man
10613 action dynapro.man
10616 symlink_driver_elo2300() {
10617 src_dir programs/Xserver/hw/xfree86/input/elo2300
10618 dst_dir driver/xf86-input-elo2300/src
10620 action elo.c
10621 action elo.h
10623 dst_dir driver/xf86-input-elo2300/man
10627 symlink_driver_elographics() {
10628 src_dir programs/Xserver/hw/xfree86/input/elographics
10629 dst_dir driver/xf86-input-elographics/src
10631 action xf86Elo.c
10633 dst_dir driver/xf86-input-elographics/man
10635 action elographics.man
10638 symlink_driver_evdev() {
10639 src_dir programs/Xserver/hw/xfree86/input/evdev
10640 dst_dir driver/xf86-input-evdev/src
10642 action evdev.c
10644 dst_dir driver/xf86-input-evdev/man
10648 symlink_driver_fpit() {
10649 src_dir programs/Xserver/hw/xfree86/input/fpit
10651 dst_dir driver/xf86-input-fpit
10652 action readme.txt
10654 dst_dir driver/xf86-input-fpit/src
10655 action xf86Fpit.c
10657 dst_dir driver/xf86-input-fpit/man
10658 action fpit.man
10661 symlink_driver_hyperpen() {
10662 src_dir programs/Xserver/hw/xfree86/input/hyperpen
10663 dst_dir driver/xf86-input-hyperpen/src
10665 action xf86HyperPen.c
10667 dst_dir driver/xf86-input-hyperpen/man
10671 symlink_driver_jamstudio() {
10672 src_dir programs/Xserver/hw/xfree86/input/jamstudio
10673 dst_dir driver/xf86-input-jamstudio/src
10675 action js_x.c
10677 dst_dir driver/xf86-input-jamstudio/man
10679 action js_x.man
10682 symlink_driver_joystick() {
10683 src_dir programs/Xserver/hw/xfree86/input/joystick
10684 dst_dir driver/xf86-input-joystick/src
10686 action xf86Jstk.c
10688 dst_dir driver/xf86-input-joystick/man
10692 symlink_driver_keyboard() {
10693 src_dir programs/Xserver/hw/xfree86/input/keyboard
10694 dst_dir driver/xf86-input-keyboard/src
10696 action kbd.c
10698 dst_dir driver/xf86-input-keyboard/man
10700 action kbd.man
10701 action keyboard.man
10704 symlink_driver_magellan() {
10705 src_dir programs/Xserver/hw/xfree86/input/magellan
10706 dst_dir driver/xf86-input-magellan/src
10708 action magellan.c
10709 action magellan.h
10711 dst_dir driver/xf86-input-magellan/man
10715 symlink_driver_magictouch() {
10716 src_dir programs/Xserver/hw/xfree86/input/magictouch
10717 dst_dir driver/xf86-input-magictouch/src
10719 action xf86MagicTouch.c
10721 dst_dir driver/xf86-input-magictouch/man
10723 action magictouch.man
10726 symlink_driver_microtouch() {
10727 src_dir programs/Xserver/hw/xfree86/input/microtouch
10728 dst_dir driver/xf86-input-microtouch/src
10730 action microtouch.c
10731 action microtouch.h
10733 dst_dir driver/xf86-input-microtouch/man
10735 action microtouch.man
10738 symlink_driver_mouse() {
10739 src_dir programs/Xserver/hw/xfree86/input/mouse
10740 dst_dir driver/xf86-input-mouse/src
10742 action mouse.c
10743 action mouse.h
10744 action mousePriv.h
10745 action pnp.c
10747 dst_dir driver/xf86-input-mouse/man
10749 action mouse.man
10752 symlink_driver_mutouch() {
10753 src_dir programs/Xserver/hw/xfree86/input/mutouch
10754 dst_dir driver/xf86-input-mutouch/src
10756 action xf86MuTouch.c
10758 dst_dir driver/xf86-input-mutouch/man
10760 action mutouch.man
10763 symlink_driver_palmax() {
10764 src_dir programs/Xserver/hw/xfree86/input/palmax
10765 dst_dir driver/xf86-input-palmax/src
10767 action xf86Palmax.c
10769 dst_dir driver/xf86-input-palmax/man
10771 action palmax.man
10774 symlink_driver_penmount() {
10775 src_dir programs/Xserver/hw/xfree86/input/penmount
10776 dst_dir driver/xf86-input-penmount/src
10778 action xf86PM.c
10779 action xf86PM.h
10781 dst_dir driver/xf86-input-penmount/man
10783 action penmount.man
10786 symlink_driver_spaceorb() {
10787 src_dir programs/Xserver/hw/xfree86/input/spaceorb
10788 dst_dir driver/xf86-input-spaceorb/src
10790 action spaceorb.c
10791 action spaceorb.h
10793 dst_dir driver/xf86-input-spaceorb/man
10797 symlink_driver_summa() {
10798 src_dir programs/Xserver/hw/xfree86/input/summa
10799 dst_dir driver/xf86-input-summa/src
10801 action xf86Summa.c
10803 dst_dir driver/xf86-input-summa/man
10807 symlink_driver_tek4957() {
10808 src_dir programs/Xserver/hw/xfree86/input/tek4957
10809 dst_dir driver/xf86-input-tek4957/src
10811 action xf86Tek4957.c
10813 dst_dir driver/xf86-input-tek4957/man
10815 action tek4957.man
10818 symlink_driver_ur98() {
10819 src_dir programs/Xserver/hw/xfree86/input/ur98
10820 dst_dir driver/xf86-input-ur98/src
10822 action xf86Ur-98.c
10824 dst_dir driver/xf86-input-ur98/man
10826 action ur98.man
10829 symlink_driver_void() {
10830 src_dir programs/Xserver/hw/xfree86/input/void
10831 dst_dir driver/xf86-input-void/src
10833 action void.c
10835 dst_dir driver/xf86-input-void/man
10837 action void.man
10840 symlink_driver() {
10841 symlink_driver_apm
10842 symlink_driver_ark
10843 symlink_driver_ati
10844 symlink_driver_chips
10845 symlink_driver_cirrus
10846 symlink_driver_cyrix
10847 symlink_driver_dummy
10848 symlink_driver_fbdev
10849 symlink_driver_glide
10850 symlink_driver_glint
10851 symlink_driver_i128
10852 symlink_driver_i740
10853 symlink_driver_i810
10854 symlink_driver_imstt
10855 symlink_driver_mga
10856 symlink_driver_neomagic
10857 symlink_driver_newport
10858 symlink_driver_nsc
10859 symlink_driver_nv
10860 symlink_driver_rendition
10861 symlink_driver_s3
10862 symlink_driver_s3virge
10863 symlink_driver_savage
10864 symlink_driver_siliconmotion
10865 symlink_driver_sis
10866 symlink_driver_sisusb
10867 symlink_driver_sunbw2
10868 symlink_driver_suncg14
10869 symlink_driver_suncg3
10870 symlink_driver_suncg6
10871 symlink_driver_sunffb
10872 symlink_driver_sunleo
10873 symlink_driver_suntcx
10874 symlink_driver_tdfx
10875 symlink_driver_tga
10876 symlink_driver_trident
10877 symlink_driver_tseng
10878 symlink_driver_v4l
10879 symlink_driver_vesa
10880 symlink_driver_vga
10881 symlink_driver_via
10882 symlink_driver_vmware
10883 symlink_driver_voodoo
10884 symlink_driver_wsfb
10886 symlink_driver_acecad
10887 symlink_driver_aiptek
10888 symlink_driver_calcomp
10889 symlink_driver_citron
10890 symlink_driver_digitaledge
10891 symlink_driver_dmc
10892 symlink_driver_dynapro
10893 symlink_driver_elo2300
10894 symlink_driver_elographics
10895 symlink_driver_evdev
10896 symlink_driver_fpit
10897 symlink_driver_hyperpen
10898 symlink_driver_jamstudio
10899 symlink_driver_joystick
10900 symlink_driver_keyboard
10901 symlink_driver_magellan
10902 symlink_driver_magictouch
10903 symlink_driver_microtouch
10904 symlink_driver_mouse
10905 symlink_driver_mutouch
10906 symlink_driver_palmax
10907 symlink_driver_penmount
10908 symlink_driver_spaceorb
10909 symlink_driver_summa
10910 symlink_driver_tek4957
10911 symlink_driver_ur98
10912 symlink_driver_void
10913 # ...
10917 #########
10919 # The font module
10921 #########
10923 symlink_font_adobe_100dpi() {
10924 src_dir fonts/bdf/100dpi
10925 dst_dir font/adobe-100dpi
10927 action courB08.bdf
10928 action courB10.bdf
10929 action courB12.bdf
10930 action courB14.bdf
10931 action courB18.bdf
10932 action courB24.bdf
10933 action courBO08.bdf
10934 action courBO10.bdf
10935 action courBO12.bdf
10936 action courBO14.bdf
10937 action courBO18.bdf
10938 action courBO24.bdf
10939 action courO08.bdf
10940 action courO10.bdf
10941 action courO12.bdf
10942 action courO14.bdf
10943 action courO18.bdf
10944 action courO24.bdf
10945 action courR08.bdf
10946 action courR10.bdf
10947 action courR12.bdf
10948 action courR14.bdf
10949 action courR18.bdf
10950 action courR24.bdf
10951 action helvB08.bdf
10952 action helvB10.bdf
10953 action helvB12.bdf
10954 action helvB14.bdf
10955 action helvB18.bdf
10956 action helvB24.bdf
10957 action helvBO08.bdf
10958 action helvBO10.bdf
10959 action helvBO12.bdf
10960 action helvBO14.bdf
10961 action helvBO18.bdf
10962 action helvBO24.bdf
10963 action helvO08.bdf
10964 action helvO10.bdf
10965 action helvO12.bdf
10966 action helvO14.bdf
10967 action helvO18.bdf
10968 action helvO24.bdf
10969 action helvR08.bdf
10970 action helvR10.bdf
10971 action helvR12.bdf
10972 action helvR14.bdf
10973 action helvR18.bdf
10974 action helvR24.bdf
10975 action ncenB08.bdf
10976 action ncenB10.bdf
10977 action ncenB12.bdf
10978 action ncenB14.bdf
10979 action ncenB18.bdf
10980 action ncenB24.bdf
10981 action ncenBI08.bdf
10982 action ncenBI10.bdf
10983 action ncenBI12.bdf
10984 action ncenBI14.bdf
10985 action ncenBI18.bdf
10986 action ncenBI24.bdf
10987 action ncenI08.bdf
10988 action ncenI10.bdf
10989 action ncenI12.bdf
10990 action ncenI14.bdf
10991 action ncenI18.bdf
10992 action ncenI24.bdf
10993 action ncenR08.bdf
10994 action ncenR10.bdf
10995 action ncenR12.bdf
10996 action ncenR14.bdf
10997 action ncenR18.bdf
10998 action ncenR24.bdf
10999 action symb08.bdf
11000 action symb10.bdf
11001 action symb12.bdf
11002 action symb14.bdf
11003 action symb18.bdf
11004 action symb24.bdf
11005 action timB08.bdf
11006 action timB10.bdf
11007 action timB12.bdf
11008 action timB14.bdf
11009 action timB18.bdf
11010 action timB24.bdf
11011 action timBI08.bdf
11012 action timBI10.bdf
11013 action timBI12.bdf
11014 action timBI14.bdf
11015 action timBI18.bdf
11016 action timBI24.bdf
11017 action timI08.bdf
11018 action timI10.bdf
11019 action timI12.bdf
11020 action timI14.bdf
11021 action timI18.bdf
11022 action timI24.bdf
11023 action timR08.bdf
11024 action timR10.bdf
11025 action timR12.bdf
11026 action timR14.bdf
11027 action timR18.bdf
11028 action timR24.bdf
11031 symlink_font_adobe_utopia_100dpi() {
11032 src_dir fonts/bdf/100dpi
11033 dst_dir font/adobe-utopia-100dpi
11035 # XXX These fonts are copyright Adobe, but all rights reserved
11036 action UTB___10.bdf
11037 action UTB___12.bdf
11038 action UTB___14.bdf
11039 action UTB___18.bdf
11040 action UTB___24.bdf
11041 action UTBI__10.bdf
11042 action UTBI__12.bdf
11043 action UTBI__14.bdf
11044 action UTBI__18.bdf
11045 action UTBI__24.bdf
11046 action UTI___10.bdf
11047 action UTI___12.bdf
11048 action UTI___14.bdf
11049 action UTI___18.bdf
11050 action UTI___24.bdf
11051 action UTRG__10.bdf
11052 action UTRG__12.bdf
11053 action UTRG__14.bdf
11054 action UTRG__18.bdf
11055 action UTRG__24.bdf
11058 symlink_font_bh_100dpi() {
11059 src_dir fonts/bdf/100dpi
11060 dst_dir font/bh-100dpi
11062 action lubB08.bdf
11063 action lubB10.bdf
11064 action lubB12.bdf
11065 action lubB14.bdf
11066 action lubB18.bdf
11067 action lubB19.bdf
11068 action lubB24.bdf
11069 action lubBI08.bdf
11070 action lubBI10.bdf
11071 action lubBI12.bdf
11072 action lubBI14.bdf
11073 action lubBI18.bdf
11074 action lubBI19.bdf
11075 action lubBI24.bdf
11076 action lubI08.bdf
11077 action lubI10.bdf
11078 action lubI12.bdf
11079 action lubI14.bdf
11080 action lubI18.bdf
11081 action lubI19.bdf
11082 action lubI24.bdf
11083 action luBIS08.bdf
11084 action luBIS10.bdf
11085 action luBIS12.bdf
11086 action luBIS14.bdf
11087 action luBIS18.bdf
11088 action luBIS19.bdf
11089 action luBIS24.bdf
11090 action lubR08.bdf
11091 action lubR10.bdf
11092 action lubR12.bdf
11093 action lubR14.bdf
11094 action lubR18.bdf
11095 action lubR19.bdf
11096 action lubR24.bdf
11097 action luBS08.bdf
11098 action luBS10.bdf
11099 action luBS12.bdf
11100 action luBS14.bdf
11101 action luBS18.bdf
11102 action luBS19.bdf
11103 action luBS24.bdf
11104 action luIS08.bdf
11105 action luIS10.bdf
11106 action luIS12.bdf
11107 action luIS14.bdf
11108 action luIS18.bdf
11109 action luIS19.bdf
11110 action luIS24.bdf
11111 action luRS08.bdf
11112 action luRS10.bdf
11113 action luRS12.bdf
11114 action luRS14.bdf
11115 action luRS18.bdf
11116 action luRS19.bdf
11117 action luRS24.bdf
11119 action LU_LEGALNOTICE
11122 symlink_font_bh_lucidatypewriter_100dpi() {
11123 src_dir fonts/bdf/100dpi
11124 dst_dir font/bh-lucidatypewriter-100dpi
11126 action lutBS08.bdf
11127 action lutBS10.bdf
11128 action lutBS12.bdf
11129 action lutBS14.bdf
11130 action lutBS18.bdf
11131 action lutBS19.bdf
11132 action lutBS24.bdf
11133 action lutRS08.bdf
11134 action lutRS10.bdf
11135 action lutRS12.bdf
11136 action lutRS14.bdf
11137 action lutRS18.bdf
11138 action lutRS19.bdf
11139 action lutRS24.bdf
11142 symlink_font_bitstream_100dpi() {
11143 src_dir fonts/bdf/100dpi
11144 dst_dir font/bitstream-100dpi
11146 action charB08.bdf
11147 action charB10.bdf
11148 action charB12.bdf
11149 action charB14.bdf
11150 action charB18.bdf
11151 action charB24.bdf
11152 action charBI08.bdf
11153 action charBI10.bdf
11154 action charBI12.bdf
11155 action charBI14.bdf
11156 action charBI18.bdf
11157 action charBI24.bdf
11158 action charI08.bdf
11159 action charI10.bdf
11160 action charI12.bdf
11161 action charI14.bdf
11162 action charI18.bdf
11163 action charI24.bdf
11164 action charR08.bdf
11165 action charR10.bdf
11166 action charR12.bdf
11167 action charR14.bdf
11168 action charR18.bdf
11169 action charR24.bdf
11170 action tech14.bdf
11171 action techB14.bdf
11172 action term14.bdf
11173 action termB14.bdf
11176 symlink_font_adobe_75dpi() {
11177 src_dir fonts/bdf/75dpi
11178 dst_dir font/adobe-75dpi
11180 action courB08.bdf
11181 action courB10.bdf
11182 action courB12.bdf
11183 action courB14.bdf
11184 action courB18.bdf
11185 action courB24.bdf
11186 action courBO08.bdf
11187 action courBO10.bdf
11188 action courBO12.bdf
11189 action courBO14.bdf
11190 action courBO18.bdf
11191 action courBO24.bdf
11192 action courO08.bdf
11193 action courO10.bdf
11194 action courO12.bdf
11195 action courO14.bdf
11196 action courO18.bdf
11197 action courO24.bdf
11198 action courR08.bdf
11199 action courR10.bdf
11200 action courR12.bdf
11201 action courR14.bdf
11202 action courR18.bdf
11203 action courR24.bdf
11204 action helvB08.bdf
11205 action helvB10.bdf
11206 action helvB12.bdf
11207 action helvB14.bdf
11208 action helvB18.bdf
11209 action helvB24.bdf
11210 action helvBO08.bdf
11211 action helvBO10.bdf
11212 action helvBO12.bdf
11213 action helvBO14.bdf
11214 action helvBO18.bdf
11215 action helvBO24.bdf
11216 action helvO08.bdf
11217 action helvO10.bdf
11218 action helvO12.bdf
11219 action helvO14.bdf
11220 action helvO18.bdf
11221 action helvO24.bdf
11222 action helvR08.bdf
11223 action helvR10.bdf
11224 action helvR12.bdf
11225 action helvR14.bdf
11226 action helvR18.bdf
11227 action helvR24.bdf
11228 action ncenB08.bdf
11229 action ncenB10.bdf
11230 action ncenB12.bdf
11231 action ncenB14.bdf
11232 action ncenB18.bdf
11233 action ncenB24.bdf
11234 action ncenBI08.bdf
11235 action ncenBI10.bdf
11236 action ncenBI12.bdf
11237 action ncenBI14.bdf
11238 action ncenBI18.bdf
11239 action ncenBI24.bdf
11240 action ncenI08.bdf
11241 action ncenI10.bdf
11242 action ncenI12.bdf
11243 action ncenI14.bdf
11244 action ncenI18.bdf
11245 action ncenI24.bdf
11246 action ncenR08.bdf
11247 action ncenR10.bdf
11248 action ncenR12.bdf
11249 action ncenR14.bdf
11250 action ncenR18.bdf
11251 action ncenR24.bdf
11252 action symb08.bdf
11253 action symb10.bdf
11254 action symb12.bdf
11255 action symb14.bdf
11256 action symb18.bdf
11257 action symb24.bdf
11258 action timB08.bdf
11259 action timB10.bdf
11260 action timB12.bdf
11261 action timB14.bdf
11262 action timB18.bdf
11263 action timB24.bdf
11264 action timBI08.bdf
11265 action timBI10.bdf
11266 action timBI12.bdf
11267 action timBI14.bdf
11268 action timBI18.bdf
11269 action timBI24.bdf
11270 action timI08.bdf
11271 action timI10.bdf
11272 action timI12.bdf
11273 action timI14.bdf
11274 action timI18.bdf
11275 action timI24.bdf
11276 action timR08.bdf
11277 action timR10.bdf
11278 action timR12.bdf
11279 action timR14.bdf
11280 action timR18.bdf
11281 action timR24.bdf
11284 symlink_font_adobe_utopia_75dpi() {
11285 src_dir fonts/bdf/75dpi
11286 dst_dir font/adobe-utopia-75dpi
11288 # XXX These fonts are copyright Adobe, but all rights reserved
11289 action UTB___10.bdf
11290 action UTB___12.bdf
11291 action UTB___14.bdf
11292 action UTB___18.bdf
11293 action UTB___24.bdf
11294 action UTBI__10.bdf
11295 action UTBI__12.bdf
11296 action UTBI__14.bdf
11297 action UTBI__18.bdf
11298 action UTBI__24.bdf
11299 action UTI___10.bdf
11300 action UTI___12.bdf
11301 action UTI___14.bdf
11302 action UTI___18.bdf
11303 action UTI___24.bdf
11304 action UTRG__10.bdf
11305 action UTRG__12.bdf
11306 action UTRG__14.bdf
11307 action UTRG__18.bdf
11308 action UTRG__24.bdf
11311 symlink_font_bh_75dpi() {
11312 src_dir fonts/bdf/75dpi
11313 dst_dir font/bh-75dpi
11315 action lubB08.bdf
11316 action lubB10.bdf
11317 action lubB12.bdf
11318 action lubB14.bdf
11319 action lubB18.bdf
11320 action lubB19.bdf
11321 action lubB24.bdf
11322 action lubBI08.bdf
11323 action lubBI10.bdf
11324 action lubBI12.bdf
11325 action lubBI14.bdf
11326 action lubBI18.bdf
11327 action lubBI19.bdf
11328 action lubBI24.bdf
11329 action lubI08.bdf
11330 action lubI10.bdf
11331 action lubI12.bdf
11332 action lubI14.bdf
11333 action lubI18.bdf
11334 action lubI19.bdf
11335 action lubI24.bdf
11336 action luBIS08.bdf
11337 action luBIS10.bdf
11338 action luBIS12.bdf
11339 action luBIS14.bdf
11340 action luBIS18.bdf
11341 action luBIS19.bdf
11342 action luBIS24.bdf
11343 action lubR08.bdf
11344 action lubR10.bdf
11345 action lubR12.bdf
11346 action lubR14.bdf
11347 action lubR18.bdf
11348 action lubR19.bdf
11349 action lubR24.bdf
11350 action luBS08.bdf
11351 action luBS10.bdf
11352 action luBS12.bdf
11353 action luBS14.bdf
11354 action luBS18.bdf
11355 action luBS19.bdf
11356 action luBS24.bdf
11357 action luIS08.bdf
11358 action luIS10.bdf
11359 action luIS12.bdf
11360 action luIS14.bdf
11361 action luIS18.bdf
11362 action luIS19.bdf
11363 action luIS24.bdf
11364 action luRS08.bdf
11365 action luRS10.bdf
11366 action luRS12.bdf
11367 action luRS14.bdf
11368 action luRS18.bdf
11369 action luRS19.bdf
11370 action luRS24.bdf
11372 action LU_LEGALNOTICE
11375 symlink_font_bh_lucidatypewriter_75dpi() {
11376 src_dir fonts/bdf/75dpi
11377 dst_dir font/bh-lucidatypewriter-75dpi
11379 action lutBS08.bdf
11380 action lutBS10.bdf
11381 action lutBS12.bdf
11382 action lutBS14.bdf
11383 action lutBS18.bdf
11384 action lutBS19.bdf
11385 action lutBS24.bdf
11386 action lutRS08.bdf
11387 action lutRS10.bdf
11388 action lutRS12.bdf
11389 action lutRS14.bdf
11390 action lutRS18.bdf
11391 action lutRS19.bdf
11392 action lutRS24.bdf
11395 symlink_font_bitstream_75dpi() {
11396 src_dir fonts/bdf/75dpi
11397 dst_dir font/bitstream-75dpi
11399 action charB08.bdf
11400 action charB10.bdf
11401 action charB12.bdf
11402 action charB14.bdf
11403 action charB18.bdf
11404 action charB24.bdf
11405 action charBI08.bdf
11406 action charBI10.bdf
11407 action charBI12.bdf
11408 action charBI14.bdf
11409 action charBI18.bdf
11410 action charBI24.bdf
11411 action charI08.bdf
11412 action charI10.bdf
11413 action charI12.bdf
11414 action charI14.bdf
11415 action charI18.bdf
11416 action charI24.bdf
11417 action charR08.bdf
11418 action charR10.bdf
11419 action charR12.bdf
11420 action charR14.bdf
11421 action charR18.bdf
11422 action charR24.bdf
11423 action tech14.bdf
11424 action techB14.bdf
11425 action term14.bdf
11426 action termB14.bdf
11429 symlink_font_cronyx_cyrillic() {
11430 src_dir fonts/bdf/cyrillic
11431 dst_dir font/cronyx-cyrillic
11433 action crox1cb.bdf
11434 action crox1c.bdf
11435 action crox1cbo.bdf
11436 action crox1co.bdf
11437 action crox1hb.bdf
11438 action crox1h.bdf
11439 action crox1hbo.bdf
11440 action crox1ho.bdf
11441 action crox1tb.bdf
11442 action crox1t.bdf
11443 action crox1tbo.bdf
11444 action crox1to.bdf
11445 action crox2cb.bdf
11446 action crox2c.bdf
11447 action crox2cbo.bdf
11448 action crox2co.bdf
11449 action crox2hb.bdf
11450 action crox2h.bdf
11451 action crox2hbo.bdf
11452 action crox2ho.bdf
11453 action crox2tb.bdf
11454 action crox2t.bdf
11455 action crox2tbo.bdf
11456 action crox2to.bdf
11457 action crox3cb.bdf
11458 action crox3c.bdf
11459 action crox3cbo.bdf
11460 action crox3co.bdf
11461 action crox3hb.bdf
11462 action crox3h.bdf
11463 action crox3hbo.bdf
11464 action crox3ho.bdf
11465 action crox3tb.bdf
11466 action crox3t.bdf
11467 action crox3tbo.bdf
11468 action crox3to.bdf
11469 action crox4hb.bdf
11470 action crox4h.bdf
11471 action crox4hbo.bdf
11472 action crox4ho.bdf
11473 action crox4tb.bdf
11474 action crox4t.bdf
11475 action crox4tbo.bdf
11476 action crox4to.bdf
11477 action crox5hb.bdf
11478 action crox5h.bdf
11479 action crox5hbo.bdf
11480 action crox5ho.bdf
11481 action crox5tb.bdf
11482 action crox5t.bdf
11483 action crox5tbo.bdf
11484 action crox5to.bdf
11485 action crox6hb.bdf
11486 action crox6h.bdf
11487 action crox6hbo.bdf
11488 action crox6ho.bdf
11489 action crox6tb.bdf
11490 action crox6t.bdf
11491 action crox6tbo.bdf
11492 action crox6to.bdf
11493 action koi10x16b.bdf
11494 action koi10x20.bdf
11495 action koi6x10.bdf
11496 action koinil2.bdf
11498 action COPYRIGHT
11501 symlink_font_misc_cyrillic() {
11502 src_dir fonts/bdf/cyrillic
11503 dst_dir font/misc-cyrillic
11505 # XXX Should these be broken into three different components?
11507 # XXX "May be distributed and modified without restrictions"
11508 action koi12x24b.bdf
11509 action koi8x16b.bdf
11510 action koi8x16.bdf
11512 # XXX Same license as cronyx-cyrillic
11513 action koi12x24.bdf
11514 action koi6x13.bdf
11516 # XXX public domain
11517 action koi5x8.bdf
11518 action koi6x13b.bdf
11519 action koi6x9.bdf
11520 action koi7x14b.bdf
11521 action koi7x14.bdf
11522 action koi8x13.bdf
11523 action koi9x15b.bdf
11524 action koi9x15.bdf
11525 action koi9x18b.bdf
11526 action koi9x18.bdf
11529 symlink_font_screen_cyrillic() {
11530 src_dir fonts/bdf/cyrillic
11531 dst_dir font/screen-cyrillic
11533 # XXX no copyright/license at all
11534 action screen8x16b.bdf
11535 action screen8x16.bdf
11538 symlink_font_winitzki_cyrillic() {
11539 src_dir fonts/bdf/cyrillic
11540 dst_dir font/winitzki-cyrillic
11542 action proof9x16.bdf
11545 symlink_font_cursor_misc() {
11546 src_dir fonts/bdf/misc
11547 dst_dir font/cursor-misc
11549 # XXX Does "unencumbered" mean the same thing as public domain
11550 # in this context?
11551 action cursor.bdf
11554 symlink_font_daewoo_misc() {
11555 src_dir fonts/bdf/misc
11556 dst_dir font/daewoo-misc
11558 # XXX These fonts are copyright, but no permissions are given
11559 action hanglg16.bdf
11560 action hanglm16.bdf
11561 action hanglm24.bdf
11564 symlink_font_dec_misc() {
11565 src_dir fonts/bdf/misc
11566 dst_dir font/dec-misc
11568 action deccurs.bdf
11569 action decsess.bdf
11572 symlink_font_isas_misc() {
11573 src_dir fonts/bdf/misc
11574 dst_dir font/isas-misc
11576 action gb16fs.bdf
11577 action gb16st.bdf
11578 action gb24st.bdf
11581 symlink_font_jis_misc() {
11582 src_dir fonts/bdf/misc
11583 dst_dir font/jis-misc
11585 # XXX Verify license restrictions
11586 action jiskan16.bdf
11587 action jiskan24.bdf
11590 symlink_font_micro_misc() {
11591 src_dir fonts/bdf/misc
11592 dst_dir font/micro-misc
11594 action micro.bdf
11597 symlink_font_misc_misc() {
11598 src_dir fonts/bdf/misc
11599 dst_dir font/misc-misc
11601 action 10x20.bdf
11602 action 12x13ja.bdf
11603 action 18x18ja.bdf
11604 action 18x18ko.bdf
11605 action 4x6.bdf
11606 action 5x7.bdf
11607 action 5x8.bdf
11608 action 6x10.bdf
11609 action 6x12.bdf
11610 action 6x13B.bdf
11611 action 6x13.bdf
11612 action 6x13O.bdf
11613 action 6x9.bdf
11614 action 7x13B.bdf
11615 action 7x13.bdf
11616 action 7x13O.bdf
11617 action 7x14B.bdf
11618 action 7x14.bdf
11619 action 8x13B.bdf
11620 action 8x13.bdf
11621 action 8x13O.bdf
11622 action 9x15B.bdf
11623 action 9x15.bdf
11624 action 9x18B.bdf
11625 action 9x18.bdf
11626 action k14.bdf
11628 # XXX This font does not have any COPYRIGHT
11629 action nil2.bdf
11632 symlink_font_schumacher_misc() {
11633 src_dir fonts/bdf/misc
11634 dst_dir font/schumacher-misc
11636 action clB6x10.bdf
11637 action clB6x12.bdf
11638 action clB8x10.bdf
11639 action clB8x12.bdf
11640 action clB8x13.bdf
11641 action clB8x14.bdf
11642 action clB8x16.bdf
11643 action clB8x8.bdf
11644 action clB9x15.bdf
11645 action clI6x12.bdf
11646 action clI8x8.bdf
11647 action clR4x6.bdf
11648 action clR5x10.bdf
11649 action clR5x6.bdf
11650 action clR5x8.bdf
11651 action clR6x10.bdf
11652 action clR6x12.bdf
11653 action clR6x13.bdf
11654 action clR6x6.bdf
11655 action clR6x8.bdf
11656 action clR7x10.bdf
11657 action clR7x12.bdf
11658 action clR7x14.bdf
11659 action clR7x8.bdf
11660 action clR8x10.bdf
11661 action clR8x12.bdf
11662 action clR8x13.bdf
11663 action clR8x14.bdf
11664 action clR8x16.bdf
11665 action clR8x8.bdf
11666 action clR9x15.bdf
11669 symlink_font_sony_misc() {
11670 src_dir fonts/bdf/misc
11671 dst_dir font/sony-misc
11673 action 12x24.bdf
11674 action 12x24rk.bdf
11675 action 8x16.bdf
11676 action 8x16rk.bdf
11679 symlink_font_sun_misc() {
11680 src_dir fonts/bdf/misc
11681 dst_dir font/sun-misc
11683 action olcursor.bdf
11684 action olgl10.bdf
11685 action olgl12.bdf
11686 action olgl14.bdf
11687 action olgl19.bdf
11690 symlink_font_bh_ttf() {
11691 src_dir fonts/scaled/TTF
11692 dst_dir font/bh-ttf
11694 action luximbi.ttf
11695 action luximb.ttf
11696 action luximri.ttf
11697 action luximr.ttf
11698 action luxirbi.ttf
11699 action luxirb.ttf
11700 action luxirri.ttf
11701 action luxirr.ttf
11702 action luxisbi.ttf
11703 action luxisb.ttf
11704 action luxisri.ttf
11705 action luxisr.ttf
11707 action COPYRIGHT.BH
11710 symlink_font_adobe_utopia_type1() {
11711 src_dir fonts/scaled/Type1
11712 dst_dir font/adobe-utopia-type1
11714 # XXX These fonts are copyright Adobe, but all rights reserved
11715 action UTB_____.afm
11716 action UTBI____.afm
11717 action UTBI____.pfa
11718 action UTB_____.pfa
11719 action UTI_____.afm
11720 action UTI_____.pfa
11721 action UTRG____.afm
11722 action UTRG____.pfa
11725 symlink_font_bh_type1() {
11726 src_dir fonts/scaled/Type1
11727 dst_dir font/bh-type1
11729 action l047013t.afm
11730 action l047013t.pfa
11731 action l047016t.afm
11732 action l047016t.pfa
11733 action l047033t.afm
11734 action l047033t.pfa
11735 action l047036t.afm
11736 action l047036t.pfa
11737 action l048013t.afm
11738 action l048013t.pfa
11739 action l048016t.afm
11740 action l048016t.pfa
11741 action l048033t.afm
11742 action l048033t.pfa
11743 action l048036t.afm
11744 action l048036t.pfa
11745 action l049013t.afm
11746 action l049013t.pfa
11747 action l049016t.afm
11748 action l049016t.pfa
11749 action l049033t.afm
11750 action l049033t.pfa
11751 action l049036t.afm
11752 action l049036t.pfa
11754 action COPYRIGHT.BH
11757 symlink_font_bitstream_type1() {
11758 src_dir fonts/scaled/Type1
11759 dst_dir font/bitstream-type1
11761 action c0419bt_.afm
11762 action c0419bt_.pfb
11763 action c0582bt_.afm
11764 action c0582bt_.pfb
11765 action c0583bt_.afm
11766 action c0583bt_.pfb
11767 action c0611bt_.afm
11768 action c0611bt_.pfb
11769 action c0632bt_.afm
11770 action c0632bt_.pfb
11771 action c0633bt_.afm
11772 action c0633bt_.pfb
11773 action c0648bt_.afm
11774 action c0648bt_.pfb
11775 action c0649bt_.afm
11776 action c0649bt_.pfb
11778 action Copyright
11781 symlink_font_ibm_type1() {
11782 src_dir fonts/scaled/Type1
11783 dst_dir font/ibm-type1
11785 action cour.afm
11786 action courb.afm
11787 action courbi.afm
11788 action courbi.pfa
11789 action courb.pfa
11790 action couri.afm
11791 action couri.pfa
11792 action cour.pfa
11794 action COPYRIGHT.IBM
11797 symlink_font_xfree86_type1() {
11798 src_dir fonts/scaled/Type1
11799 dst_dir font/xfree86-type1
11801 action cursor.pfa
11804 symlink_font_arabic_misc() {
11805 src_dir extras/fonts/arabic24
11806 dst_dir font/arabic-misc
11808 action arabic24.bdf
11810 action README
11811 action uniarab.txt
11814 symlink_font_mutt_misc() {
11815 src_dir extras/fonts/ClearlyU
11816 dst_dir font/mutt-misc
11818 action cu12.bdf
11819 action cu-alt12.bdf
11820 action cu-arabic12.bdf
11821 action cuarabic12.bdf
11822 action cu-devnag12.bdf
11823 action cudevnag12.bdf
11824 action cu-lig12.bdf
11825 action cu-pua12.bdf
11827 action README
11831 symlink_font_misc_ethiopic() {
11832 src_dir fonts/scaled/Ethiopic
11833 dst_dir font/misc-ethiopic
11835 action GohaTibebZemen.otf
11836 action GohaTibebZemen.ttf
11838 action license.txt
11841 symlink_font_misc_meltho() {
11842 src_dir fonts/scaled/Meltho
11843 dst_dir font/misc-meltho
11845 action SyrCOMAdiabene.otf
11846 action SyrCOMAntioch.otf
11847 action SyrCOMBatnanBold.otf
11848 action SyrCOMBatnan.otf
11849 action SyrCOMCtesiphon.otf
11850 action SyrCOMEdessa.otf
11851 action SyrCOMJerusalemBold.otf
11852 action SyrCOMJerusalemItalic.otf
11853 action SyrCOMJerusalem.otf
11854 action SyrCOMJerusalemOutline.otf
11855 action SyrCOMKharput.otf
11856 action SyrCOMMalankara.otf
11857 action SyrCOMMardinBold.otf
11858 action SyrCOMMardin.otf
11859 action SyrCOMMidyat.otf
11860 action SyrCOMNisibin.otf
11861 action SyrCOMNisibinOutline.otf
11862 action SyrCOMQenNeshrin.otf
11863 action SyrCOMTalada.otf
11864 action SyrCOMTurAbdin.otf
11865 action SyrCOMUrhoyBold.otf
11866 action SyrCOMUrhoy.otf
11868 action license.txt
11869 action README
11872 symlink_font_bistream_speedo() {
11873 src_dir fonts/scaled/Speedo
11874 dst_dir font/bitstream-speedo
11876 action font0419.spd
11877 action font0582.spd
11878 action font0583.spd
11879 action font0611.spd
11880 action font0648.spd
11881 action font0649.spd
11882 action font0709.spd
11883 action font0710.spd
11885 action fonts.scale
11886 action COPYRIGHT
11890 symlink_font_alias() {
11891 src_dir fonts/bdf/100dpi
11892 dst_dir font/alias/100dpi
11894 action fonts.alias
11896 src_dir fonts/bdf/75dpi
11897 dst_dir font/alias/75dpi
11899 action fonts.alias
11901 src_dir fonts/bdf/cyrillic
11902 dst_dir font/alias/cyrillic
11904 action fonts.alias
11906 src_dir fonts/bdf/misc
11907 dst_dir font/alias/misc
11909 action fonts.alias
11912 symlink_font_util() {
11913 src_dir fonts/util
11914 dst_dir font/util
11916 action 8859-1.TXT map-ISO8859-1
11917 action 8859-2.TXT map-ISO8859-2
11918 action 8859-3.TXT map-ISO8859-3
11919 action 8859-4.TXT map-ISO8859-4
11920 action 8859-5.TXT map-ISO8859-5
11921 action 8859-6.TXT map-ISO8859-6
11922 action 8859-7.TXT map-ISO8859-7
11923 action 8859-8.TXT map-ISO8859-8
11924 action 8859-9.TXT map-ISO8859-9
11925 action 8859-10.TXT map-ISO8859-10
11926 action 8859-11.TXT map-ISO8859-11
11927 action 8859-13.TXT map-ISO8859-13
11928 action 8859-14.TXT map-ISO8859-14
11929 action 8859-15.TXT map-ISO8859-15
11930 action 8859-16.TXT map-ISO8859-16
11931 action JIS0201.TXT map-JISX0201.1976-0
11932 action KOI8-R.TXT map-KOI8-R
11934 action bdftruncate.man
11935 action bdftruncate.pl
11937 action ucs2any.c
11938 action ucs2any.man
11941 symlink_font_encodings() {
11942 src_dir fonts/encodings
11943 dst_dir font/encodings
11945 action adobe-dingbats.enc
11946 action adobe-standard.enc
11947 action adobe-symbol.enc
11948 action ansi-1251.enc
11949 action armscii-8.enc
11950 action ascii-0.enc
11951 action dec-special.enc
11952 action ibm-cp437.enc
11953 action ibm-cp850.enc
11954 action ibm-cp852.enc
11955 action ibm-cp866.enc
11956 action iso8859-11.enc
11957 action iso8859-13.enc
11958 action iso8859-16.enc
11959 action iso8859-6.16.enc
11960 action iso8859-6.8x.enc
11961 action microsoft-cp1250.enc
11962 action microsoft-cp1251.enc
11963 action microsoft-cp1252.enc
11964 action microsoft-cp1253.enc
11965 action microsoft-cp1254.enc
11966 action microsoft-cp1255.enc
11967 action microsoft-cp1256.enc
11968 action microsoft-cp1257.enc
11969 action microsoft-cp1258.enc
11970 action microsoft-win3.1.enc
11971 action mulearabic-0.enc
11972 action mulearabic-1.enc
11973 action mulearabic-2.enc
11974 action mulelao-1.enc
11975 action suneu-greek.enc
11976 action tcvn-0.enc
11977 action tis620-2.enc
11978 action viscii1.1-1.enc
11980 src_dir fonts/encodings/large
11981 dst_dir font/encodings/large
11983 action big5.eten-0.enc
11984 action big5hkscs-0.enc
11985 action cns11643-1.enc
11986 action cns11643-2.enc
11987 action cns11643-3.enc
11988 action gb18030-0.enc
11989 action gb18030.2000-0.enc
11990 action gb18030.2000-1.enc
11991 action gb2312.1980-0.enc
11992 action gbk-0.enc
11993 action jisx0201.1976-0.enc
11994 action jisx0208.1990-0.enc
11995 action jisx0212.1990-0.enc
11996 action ksc5601.1987-0.enc
11997 action ksc5601.1992-3.enc
11998 action sun.unicode.india-0.enc
12001 symlink_font() {
12002 symlink_font_adobe_100dpi
12003 symlink_font_adobe_utopia_100dpi
12004 symlink_font_bh_100dpi
12005 symlink_font_bh_lucidatypewriter_100dpi
12006 symlink_font_bitstream_100dpi
12008 symlink_font_adobe_75dpi
12009 symlink_font_adobe_utopia_75dpi
12010 symlink_font_bh_75dpi
12011 symlink_font_bh_lucidatypewriter_75dpi
12012 symlink_font_bitstream_75dpi
12014 symlink_font_cronyx_cyrillic
12015 symlink_font_misc_cyrillic
12016 symlink_font_screen_cyrillic
12017 symlink_font_winitzki_cyrillic
12019 symlink_font_cursor_misc
12020 symlink_font_daewoo_misc
12021 symlink_font_dec_misc
12022 symlink_font_isas_misc
12023 symlink_font_jis_misc
12024 symlink_font_micro_misc
12025 symlink_font_misc_misc
12026 symlink_font_schumacher_misc
12027 symlink_font_sony_misc
12028 symlink_font_sun_misc
12030 symlink_font_bh_ttf
12032 symlink_font_adobe_utopia_type1
12033 symlink_font_bh_type1
12034 symlink_font_bitstream_type1
12035 symlink_font_ibm_type1
12036 symlink_font_xfree86_type1
12038 symlink_font_mutt_misc
12039 symlink_font_arabic_misc
12041 symlink_font_misc_meltho
12042 symlink_font_misc_ethiopic
12044 symlink_font_bistream_speedo
12046 symlink_font_alias
12047 symlink_font_util
12049 symlink_font_encodings
12053 #########
12055 # The doc module
12057 #########
12059 symlink_doc_old() {
12060 src_dir doc/hardcopy
12061 dst_dir doc/xorg-docs/hardcopy
12063 src_dir doc/hardcopy/BDF
12064 dst_dir doc/xorg-docs/hardcopy/BDF
12066 action bdf.PS.gz
12068 src_dir doc/hardcopy/CTEXT
12069 dst_dir doc/xorg-docs/hardcopy/CTEXT
12071 action ctext.PS.gz
12073 src_dir doc/hardcopy/FSProtocol
12074 dst_dir doc/xorg-docs/hardcopy/FSProtocol
12076 action fsproto.PS.gz
12078 src_dir doc/hardcopy/i18n
12079 dst_dir doc/xorg-docs/hardcopy/i18n
12081 action Framework.PS.gz
12082 action LocaleDB.PS.gz
12083 action Trans.PS.gz
12085 src_dir doc/hardcopy/ICCCM
12086 dst_dir doc/xorg-docs/hardcopy/ICCCM
12088 action icccm.PS.gz
12089 action icccm.idx.PS.gz
12091 src_dir doc/hardcopy/ICE
12092 dst_dir doc/xorg-docs/hardcopy/ICE
12094 action ICElib.PS.gz
12095 action ice.PS.gz
12097 src_dir doc/hardcopy/man
12098 dst_dir doc/xorg-docs/hardcopy/man
12100 action man.PS.gz
12102 src_dir doc/hardcopy/rstart
12103 dst_dir doc/xorg-docs/hardcopy/rstart
12105 action rstart.PS.gz
12107 src_dir doc/hardcopy/RX
12108 dst_dir doc/xorg-docs/hardcopy/RX
12110 action RX.PS.gz
12112 src_dir doc/hardcopy/saver
12113 dst_dir doc/xorg-docs/hardcopy/saver
12115 action saver.PS.gz
12117 src_dir doc/hardcopy/SM
12118 dst_dir doc/xorg-docs/hardcopy/SM
12120 action SMlib.PS.gz
12121 action xsmp.PS.gz
12123 src_dir doc/hardcopy/X11
12124 dst_dir doc/xorg-docs/hardcopy/X11
12126 action xlib.PS.gz
12127 action xlib.idx.PS.gz
12129 src_dir doc/hardcopy/Xaw
12130 dst_dir doc/xorg-docs/hardcopy/Xaw
12132 action widg.idx.PS.gz
12133 action widgets.PS.gz
12135 src_dir doc/hardcopy/XDMCP
12136 dst_dir doc/xorg-docs/hardcopy/XDMCP
12138 action xdmcp.PS.gz
12140 src_dir doc/hardcopy/Xext
12141 dst_dir doc/xorg-docs/hardcopy/Xext
12143 action AppGroup.PS.gz
12144 action DPMS.PS.gz
12145 action DPMSLib.PS.gz
12146 action bigreq.PS.gz
12147 action buffer.PS.gz
12148 action dbe.PS.gz
12149 action dbelib.PS.gz
12150 action evi.PS.gz
12151 action lbx.PS.gz
12152 action lbx.html
12153 action lbxTOC.html
12154 action lbxalg.PS.gz
12155 action mit-shm.PS.gz
12156 action record.PS.gz
12157 action recordlib.PS.gz
12158 action security.PS.gz
12159 action shape.PS.gz
12160 action shapelib.PS.gz
12161 action sync.PS.gz
12162 action synclib.PS.gz
12163 action tog-cup.PS.gz
12164 action xc-misc.PS.gz
12165 action xtest.PS.gz
12166 action xtestlib.PS.gz
12168 src_dir doc/hardcopy/xfs
12169 dst_dir doc/xorg-docs/hardcopy/xfs
12171 action design.PS.gz
12173 src_dir doc/hardcopy/Xi
12174 dst_dir doc/xorg-docs/hardcopy/Xi
12176 action lib.PS.gz
12177 action port.PS.gz
12178 action proto.PS.gz
12180 src_dir doc/hardcopy/XIM
12181 dst_dir doc/xorg-docs/hardcopy/XIM
12183 action xim.PS.gz
12185 src_dir doc/hardcopy/XKB
12186 dst_dir doc/xorg-docs/hardcopy/XKB
12188 action XKBlib.ps.gz
12189 action XKBproto.ps.gz
12191 src_dir doc/hardcopy/XLFD
12192 dst_dir doc/xorg-docs/hardcopy/XLFD
12194 action xlfd.PS.gz
12196 src_dir doc/hardcopy/Xmu
12197 dst_dir doc/xorg-docs/hardcopy/Xmu
12199 action xmu.PS.gz
12201 src_dir doc/hardcopy/XPRINT
12202 dst_dir doc/xorg-docs/hardcopy/XPRINT
12204 action Xprint_FAQ.html
12205 action Xprint_FAQ.txt
12206 action Xprint_FAQ.xml
12207 action Xprint_old_FAQ.txt
12208 action docbook.css
12209 action dtprint_fspec.PS.gz
12210 action xp_library.PS.gz
12211 action xp_proto.PS.gz
12213 src_dir doc/hardcopy/XProtocol
12214 dst_dir doc/xorg-docs/hardcopy/XProtocol
12216 action proto.PS.gz
12217 action proto.idx.PS.gz
12219 src_dir doc/hardcopy/Xserver
12220 dst_dir doc/xorg-docs/hardcopy/Xserver
12222 action Xprt.PS.gz
12223 action analysis.PS.gz
12224 action appgroup.PS.gz
12225 action ddx.PS.gz
12226 action fontlib.PS.gz
12227 action secint.PS.gz
12229 src_dir doc/hardcopy/Xt
12230 dst_dir doc/xorg-docs/hardcopy/Xt
12232 action intr.idx.PS.gz
12233 action intrinsics.PS.gz
12235 # src_dir doc/hardcopy/xterm
12236 # dst_dir doc/xorg-docs/hardcopy/xterm
12238 # action ctlseqs.PS.gz
12240 src_dir doc/hardcopy/xtrans
12241 dst_dir doc/xorg-docs/hardcopy/xtrans
12243 action Xtrans.PS.gz
12245 src_dir doc/hardcopy/Xv
12246 dst_dir doc/xorg-docs/hardcopy/Xv
12248 action video
12249 action xv-protocol-v2.PS
12251 src_dir doc/man/general
12252 dst_dir doc/xorg-docs/man/general
12254 action Consortium.man
12255 action security.man
12256 action Standards.man
12257 action X.man
12258 action XOrgFoundation.man
12259 action Xprint.man
12260 action Xprint.sgml
12261 action XProjectTeam.man
12263 # FIXME: other man pages should be moved to the appropriate library
12265 src_dir doc/misc
12266 dst_dir doc/xorg-docs/misc
12268 action xlogo.epsi
12270 src_dir doc/specs
12271 dst_dir doc/xorg-docs/specs
12273 action specindex.html
12275 src_dir doc/specs/BDF
12276 dst_dir doc/xorg-docs/specs/BDF
12278 action bdf.ms
12279 action fig1.ps
12280 action fig2.ps
12282 src_dir doc/specs/CTEXT
12283 dst_dir doc/xorg-docs/specs/CTEXT
12285 action ctext.tbl.ms
12287 src_dir doc/specs/FSProtocol
12288 dst_dir doc/xorg-docs/specs/FSProtocol
12290 action protocol.ms
12292 src_dir doc/specs/GL
12293 dst_dir doc/xorg-docs/specs/GL
12295 action libGL.txt
12297 src_dir doc/specs/i18n
12298 dst_dir doc/xorg-docs/specs/i18n
12300 action Framework.ms
12301 action LocaleDB.ms
12302 action Trans.ms
12304 src_dir doc/specs/ICCCM
12305 dst_dir doc/xorg-docs/specs/ICCCM
12307 action icccm.ms
12308 action indexmacros.t
12310 src_dir doc/specs/ICE
12311 dst_dir doc/xorg-docs/specs/ICE
12313 action ICElib.ms
12314 action ice.ms
12316 src_dir doc/specs/PM
12317 dst_dir doc/xorg-docs/specs/PM
12319 action PM_spec
12321 src_dir doc/specs/Randr
12322 dst_dir doc/xorg-docs/specs/Randr
12324 action protocol.txt
12326 src_dir doc/specs/Render
12327 dst_dir doc/xorg-docs/specs/Render
12329 action library
12330 action protocol
12332 src_dir doc/specs/rstart
12333 dst_dir doc/xorg-docs/specs/rstart
12335 action fix.awk
12336 action fix.nawk
12337 action fix.sed
12338 action rstart.ms
12339 action rstartd.txt
12340 action tmac.rfc
12342 src_dir doc/specs/RX
12343 dst_dir doc/xorg-docs/specs/RX
12345 action RX.mif
12347 src_dir doc/specs/saver
12348 dst_dir doc/xorg-docs/specs/saver
12350 action saver.ms
12352 src_dir doc/specs/SIAddresses
12353 dst_dir doc/xorg-docs/specs/SIAddresses
12355 action IPv6.txt
12356 action README
12357 action hostname.txt
12358 action localuser.txt
12360 src_dir doc/specs/SM
12361 dst_dir doc/xorg-docs/specs/SM
12363 action SMlib.ms
12364 action xsmp.ms
12366 src_dir doc/specs/X11
12367 dst_dir doc/xorg-docs/specs/X11
12369 action AppA
12370 action AppB
12371 action AppC
12372 action AppD
12373 action CH01
12374 action CH02
12375 action CH03
12376 action CH04
12377 action CH05
12378 action CH06
12379 action CH07
12380 action CH08
12381 action CH09
12382 action CH10
12383 action CH11
12384 action CH12
12385 action CH13
12386 action CH14
12387 action CH15
12388 action CH16
12389 action abstract.t
12390 action credits.t
12391 action glossary
12392 action indexmacros.t
12393 action postproc
12395 src_dir doc/specs/Xaw
12396 dst_dir doc/xorg-docs/specs/Xaw
12398 action AsciiSink
12399 action AsciiSource
12400 action AsciiText
12401 action Box
12402 action CH1
12403 action CH2
12404 action CH3.intro
12405 action CH4.intro
12406 action CH5.intro
12407 action CH6.intro
12408 action CH7.intro
12409 action Command
12410 action Dialog
12411 action Form
12412 action Grip
12413 action Label
12414 action List
12415 action MenuButton
12416 action Paned
12417 action Panner
12418 action Porthole
12419 action Repeater
12420 action Scrollbar
12421 action Simple
12422 action SimpleMenu
12423 action Sme
12424 action SmeBSB
12425 action SmeLine
12426 action StripChart
12427 action TPage_Credits
12428 action Template
12429 action Text
12430 action TextActions
12431 action TextCustom
12432 action TextFuncs
12433 action TextSink
12434 action TextSource
12435 action Toggle
12436 action Tree
12437 action Viewport
12438 action Xtk.widg.front
12439 action Xtk.widgets
12440 action block.awk
12441 action fixindex.awk
12442 action strings.mit
12443 action strings.xaw
12444 action widg.idxmac.t
12446 src_dir doc/specs/XDMCP
12447 dst_dir doc/xorg-docs/specs/XDMCP
12449 action xdmcp.ms
12451 src_dir doc/specs/Xext
12452 dst_dir doc/xorg-docs/specs/Xext
12454 action AppGroup.mif
12455 action DPMS.ms
12456 action DPMSLib.ms
12457 action bigreq.ms
12458 action buffer.ms
12459 action dbe.tex
12460 action dbelib.tex
12461 action evi.ms
12462 action lbx.book
12463 action lbx.mif
12464 action lbxalg.mif
12465 action mit-shm.ms
12466 action record.ms
12467 action recordlib.ms
12468 action security.tex
12469 action shape.ms
12470 action shapelib.ms
12471 action sync.tex
12472 action synclib.tex
12473 action tog-cup.ms
12474 action xc-misc.ms
12475 action xtest.ms
12476 action xtest1.info
12477 action xtest1.mm
12478 action xtestlib.ms
12480 src_dir doc/specs/xfs
12481 dst_dir doc/xorg-docs/specs/xfs
12483 action FSlib.doc
12484 action design.ms
12486 src_dir doc/specs/Xi
12487 dst_dir doc/xorg-docs/specs/Xi
12489 action encoding.ms
12490 action library.ms
12491 action porting.ms
12492 action protocol.ms
12494 src_dir doc/specs/XIM
12495 dst_dir doc/xorg-docs/specs/XIM
12497 action xim.ms
12499 src_dir doc/specs/XKB/Proto
12500 dst_dir doc/xorg-docs/specs/XKB/Proto
12502 action XKBproto.book
12503 action dflttrns.fm5
12504 action encoding.fm5
12505 action keysyms.fm5
12506 action protocol.fm5
12507 action prototoc.doc
12508 action title.fm5
12509 action types.fm5
12511 src_dir doc/specs/XKB/XKBlib
12512 dst_dir doc/xorg-docs/specs/XKB/XKBlib
12514 action XKBlib.book
12515 action allchaps.fm5
12516 action allchaps.ix
12517 action allchaps.lof
12518 action allchaps.lot
12519 action allchaps.ps
12520 action allchaps.toc
12521 action fonts.fm5
12522 action title.fm5
12524 src_dir doc/specs/XLFD
12525 dst_dir doc/xorg-docs/specs/XLFD
12527 action xlfd.tbl.ms
12529 src_dir doc/specs/Xmu
12530 dst_dir doc/xorg-docs/specs/Xmu
12532 action Xmu.ms
12534 src_dir doc/specs/XPRINT
12535 dst_dir doc/xorg-docs/specs/XPRINT
12537 action xp_library.book
12538 action xp_library.mif
12539 action xp_libraryIX.doc
12540 action xp_libraryTOC.doc
12541 action xp_library_cov.mif
12542 action xp_proto.book
12543 action xp_proto.mif
12544 action xp_protoIX.doc
12545 action xp_protoTOC.doc
12546 action xp_proto_cov.mif
12548 src_dir doc/specs/XProtocol
12549 dst_dir doc/xorg-docs/specs/XProtocol
12551 action X11.encoding
12552 action X11.keysyms
12553 action X11.protocol
12554 action glossary
12555 action indexmacros.t
12556 action postproc
12558 src_dir doc/specs/Xserver
12559 dst_dir doc/xorg-docs/specs/Xserver
12561 action Xprt.book
12562 action Xprt.mif
12563 action XprtIX.doc
12564 action XprtTOC.doc
12565 action Xprt_cov.mif
12566 action analysis.tex
12567 action appgroup.ms
12568 action ddx.tbl.ms
12569 action fontlib.ms
12570 action secint.tex
12572 src_dir doc/specs/Xt
12573 dst_dir doc/xorg-docs/specs/Xt
12575 action CH01
12576 action CH02
12577 action CH03
12578 action CH04
12579 action CH05
12580 action CH06
12581 action CH07
12582 action CH08
12583 action CH09
12584 action CH10
12585 action CH11
12586 action CH12
12587 action CH13
12588 action Xtk.intr.front
12589 action appA
12590 action appB
12591 action appC
12592 action appD
12593 action appE
12594 action appF
12595 action intr.idxmac.t
12596 action postproc
12597 action strings.mit
12599 # src_dir doc/specs/xterm
12600 # dst_dir doc/xorg-docs/specs/xterm
12602 # action ctlseqs.ms
12604 src_dir doc/specs/xtrans
12605 dst_dir doc/xorg-docs/specs/xtrans
12607 action Xtrans.mm
12609 src_dir doc/specs/Xv
12610 dst_dir doc/xorg-docs/specs/Xv
12612 action xv-protocol-v2.txt
12614 src_dir doc/specs/XvMC
12615 dst_dir doc/xorg-docs/specs/XvMC
12617 action XvMC_API.txt
12619 src_dir doc/util
12620 dst_dir doc/xorg-docs/util
12622 action block.awk
12623 action fixindex.awk
12624 action indexmacros.t
12625 action macros.t
12627 src_dir
12628 dst_dir doc/xorg-docs
12629 action registry
12632 symlink_doc() {
12633 symlink_doc_old
12634 # symlink_doc_man
12635 # ...
12639 #########
12641 # The util module
12643 #########
12645 symlink_util_cf() {
12646 src_dir config/cf
12647 dst_dir util/cf
12649 action Amoeba.cf
12650 action apollo.cf
12651 action bsd.cf
12652 action bsdi.cf
12653 action bsdiLib.rules
12654 action bsdiLib.tmpl
12655 action bsdLib.rules
12656 action bsdLib.tmpl
12657 action cde.rules
12658 action cde.tmpl
12659 action convex.cf
12660 action cray.cf
12661 action cross.def
12662 action cross.rules
12663 action cygwin.cf
12664 action cygwin.rules
12665 action cygwin.tmpl
12666 action darwin.cf
12667 action darwinLib.rules
12668 action darwinLib.tmpl
12669 action DGUX.cf
12670 action dmx.cf
12671 action DragonFly.cf
12672 action FreeBSD.cf
12673 action fujitsu.cf
12674 action generic.cf
12675 action gnu.cf
12676 action gnuLib.rules
12677 action gnuLib.tmpl
12678 action hp.cf
12679 action hpLib.rules
12680 action hpLib.tmpl
12681 action ibm.cf
12682 action ibmLib.rules
12683 action ibmLib.tmpl
12684 action Imake.cf
12685 action Imake.rules
12686 action Imake.tmpl
12687 action isc.cf
12688 action Library.tmpl
12689 action linux.cf
12690 action lnxdoc.rules
12691 action lnxdoc.tmpl
12692 action lnxLib.rules
12693 action lnxLib.tmpl
12694 action luna.cf
12695 action lynx.cf
12696 action mach.cf
12697 action macII.cf
12698 action mingw.cf
12699 action mingw.rules
12700 action mingw.tmpl
12701 action minix.cf
12702 action Mips.cf
12703 action Motif.rules
12704 action Motif.tmpl
12705 action moto.cf
12706 action ncr.cf
12707 action nec.cf
12708 action necLib.rules
12709 action necLib.tmpl
12710 action NetBSD.cf
12711 action noop.rules
12712 action nto.cf
12713 action nto.rules
12714 action Oki.cf
12715 action oldlib.rules
12716 action OpenBSD.cf
12717 action OpenBSDLib.rules
12718 action OpenBSDLib.tmpl
12719 action os2.cf
12720 action os2def.db
12721 action os2Lib.rules
12722 action os2Lib.tmpl
12723 action os2.rules
12724 action osf1.cf
12725 action osfLib.rules
12726 action osfLib.tmpl
12727 action pegasus.cf
12728 action QNX4.cf
12729 action QNX4.rules
12730 action README
12731 action sco5.cf
12732 action sco.cf
12733 action scoLib.rules
12734 action sequent.cf
12735 action sequentLib.rules
12736 action ServerLib.tmpl
12737 action Server.tmpl
12738 action sgi.cf
12739 action sgiLib.rules
12740 action sgiLib.tmpl
12741 action site.def
12742 action site.sample
12743 action sony.cf
12744 action sun.cf
12745 action sunLib.rules
12746 action sunLib.tmpl
12747 action sv3Lib.rules
12748 action sv3Lib.tmpl
12749 action sv4Lib.rules
12750 action sv4Lib.tmpl
12751 action svr3.cf
12752 action svr4.cf
12753 action Threads.tmpl
12754 action ultrix.cf
12755 action usl.cf
12756 action Win32.cf
12757 action Win32.rules
12758 action WinLib.tmpl
12759 action X11.rules
12760 action X11.tmpl
12761 action x386.cf
12762 action xf86.rules
12763 action xf86site.def
12764 action xf86.tmpl
12765 action xfree86.cf
12766 action xorg.cf
12767 action xorgsite.def
12768 action xorg.tmpl
12769 action xorgversion.def
12770 action xprint_host.def
12773 symlink_util_gccmakedep() {
12774 src_dir config/util
12775 dst_dir util/gccmakedep
12777 action gccmdep.cpp
12778 action gccmakedep.man
12781 symlink_util_imake() {
12782 src_dir config/imake
12783 dst_dir util/imake
12785 action imake.c
12786 action imake.man
12787 action imakemdep.h
12789 src_dir config/util
12790 action makeg.man
12791 action makeg.sh makeg
12793 action xmkmf.cpp
12794 action xmkmf.man
12796 action ccmakedep.man
12797 action mdepend.cpp
12799 action mergelib.cpp
12800 action mergelib.man
12802 action revpath.c
12803 action revpath.man
12805 action mkdirhier.sh mkdirhier
12806 action mkdirhier.man
12808 action cleanlinks.sh cleanlinks
12809 action cleanlinks.man
12811 action mkhtmlindex.sh
12812 action mkhtmlindex.pl
12813 action mkhtmlindex.man
12816 symlink_util_lndir() {
12817 src_dir config/util
12818 dst_dir util/lndir
12820 action lndir.c
12821 action lndir.man
12824 symlink_util_makedepend() {
12825 src_dir config/makedepend
12826 dst_dir util/makedepend
12828 action cppsetup.c
12829 action def.h
12830 action ifparser.c
12831 action ifparser.h
12832 action include.c
12833 action main.c
12834 action mkdepend.man makedepend.man
12835 action parse.c
12836 action pr.c
12838 src_dir config/imake
12839 dst_dir util/makedepend
12841 action imakemdep.h
12844 symlink_util() {
12845 symlink_util_cf
12846 symlink_util_gccmakedep
12847 symlink_util_imake
12848 symlink_util_lndir
12849 symlink_util_makedepend
12850 # ...
12853 symlink_data_cursors_handhelds() {
12854 src_dir programs/xcursorgen/handhelds
12855 dst_dir data/cursors/handhelds
12857 action X_cursor.cfg
12858 action based_arrow_down.cfg
12859 action based_arrow_up.cfg
12860 action bottom_left_corner.cfg
12861 action bottom_right_corner.cfg
12862 action bottom_side.cfg
12863 action bottom_tee.cfg
12864 action center_ptr.cfg
12865 action circle.cfg
12866 action cross.cfg
12867 action dot.cfg
12868 action dotbox.cfg
12869 action double_arrow.cfg
12870 action draped_box.cfg
12871 action fleur.cfg
12872 action gumby.cfg
12873 action hand2.cfg
12874 action left_ptr.cfg
12875 action left_ptr_watch.cfg
12876 action left_side.cfg
12877 action left_tee.cfg
12878 action ll_angle.cfg
12879 action pencil.cfg
12880 action right_ptr.cfg
12881 action right_side.cfg
12882 action right_tee.cfg
12883 action sb_h_double_arrow.cfg
12884 action sb_right_arrow.cfg
12885 action sb_up_arrow.cfg
12886 action sb_v_double_arrow.cfg
12887 action shuttle.cfg
12888 action top_left_corner.cfg
12889 action top_right_corner.cfg
12890 action top_side.cfg
12891 action top_tee.cfg
12892 action watch.cfg
12893 action xterm.cfg
12896 symlink_data_cursors_redglass() {
12897 src_dir programs/xcursorgen/redglass
12898 dst_dir data/cursors/redglass
12900 action X_cursor-16.png
12901 action X_cursor-24.png
12902 action X_cursor-32.png
12903 action X_cursor-48.png
12904 action X_cursor-64.png
12905 action based_arrow_down-16.png
12906 action based_arrow_down-24.png
12907 action based_arrow_down-32.png
12908 action based_arrow_down-48.png
12909 action based_arrow_down-64.png
12910 action based_arrow_up-16.png
12911 action based_arrow_up-24.png
12912 action based_arrow_up-32.png
12913 action based_arrow_up-48.png
12914 action based_arrow_up-64.png
12915 action bottom_left_corner-16.png
12916 action bottom_left_corner-24.png
12917 action bottom_left_corner-32.png
12918 action bottom_left_corner-48.png
12919 action bottom_left_corner-64.png
12920 action bottom_right_corner-16.png
12921 action bottom_right_corner-24.png
12922 action bottom_right_corner-32.png
12923 action bottom_right_corner-48.png
12924 action bottom_right_corner-64.png
12925 action bottom_side-16.png
12926 action bottom_side-24.png
12927 action bottom_side-32.png
12928 action bottom_side-48.png
12929 action bottom_side-64.png
12930 action bottom_tee-16.png
12931 action bottom_tee-24.png
12932 action bottom_tee-32.png
12933 action bottom_tee-48.png
12934 action bottom_tee-64.png
12935 action center_ptr-16.png
12936 action center_ptr-24.png
12937 action center_ptr-32.png
12938 action center_ptr-48.png
12939 action center_ptr-64.png
12940 action circle-16.png
12941 action circle-24.png
12942 action circle-32.png
12943 action circle-48.png
12944 action circle-64.png
12945 action cross-16.png
12946 action cross-24.png
12947 action cross-32.png
12948 action cross-48.png
12949 action cross-64.png
12950 action dot-16.png
12951 action dot-24.png
12952 action dot-32.png
12953 action dot-48.png
12954 action dot-64.png
12955 action dotbox-16.png
12956 action dotbox-24.png
12957 action dotbox-32.png
12958 action dotbox-48.png
12959 action dotbox-64.png
12960 action double_arrow-16.png
12961 action double_arrow-24.png
12962 action double_arrow-32.png
12963 action double_arrow-48.png
12964 action double_arrow-64.png
12965 action draped_box-16.png
12966 action draped_box-24.png
12967 action draped_box-32.png
12968 action draped_box-48.png
12969 action draped_box-64.png
12970 action fleur-16.png
12971 action fleur-24.png
12972 action fleur-32.png
12973 action fleur-48.png
12974 action fleur-64.png
12975 action gumby-128.png
12976 action gumby-16.png
12977 action gumby-24.png
12978 action gumby-32.png
12979 action gumby-48.png
12980 action gumby-64.png
12981 action hand2-16.png
12982 action hand2-24.png
12983 action hand2-32.png
12984 action hand2-48.png
12985 action hand2-64.png
12986 action hourglass-135-16.png
12987 action hourglass-135-24.png
12988 action hourglass-135-32.png
12989 action hourglass-135-48.png
12990 action hourglass-135-64.png
12991 action hourglass-25-16.png
12992 action hourglass-25-24.png
12993 action hourglass-25-32.png
12994 action hourglass-25-48.png
12995 action hourglass-25-64.png
12996 action hourglass-45-16.png
12997 action hourglass-45-24.png
12998 action hourglass-45-32.png
12999 action hourglass-45-48.png
13000 action hourglass-45-64.png
13001 action hourglass-50-16.png
13002 action hourglass-50-24.png
13003 action hourglass-50-32.png
13004 action hourglass-50-48.png
13005 action hourglass-50-64.png
13006 action hourglass-75-16.png
13007 action hourglass-75-24.png
13008 action hourglass-75-32.png
13009 action hourglass-75-48.png
13010 action hourglass-75-64.png
13011 action hourglass-90-16.png
13012 action hourglass-90-24.png
13013 action hourglass-90-32.png
13014 action hourglass-90-48.png
13015 action hourglass-90-64.png
13016 action hourglass-empty-16.png
13017 action hourglass-empty-24.png
13018 action hourglass-empty-32.png
13019 action hourglass-empty-48.png
13020 action hourglass-empty-64.png
13021 action hourglass-full-16.png
13022 action hourglass-full-24.png
13023 action hourglass-full-32.png
13024 action hourglass-full-48.png
13025 action hourglass-full-64.png
13026 action left_ptr-16.png
13027 action left_ptr-24.png
13028 action left_ptr-32.png
13029 action left_ptr-48.png
13030 action left_ptr-64.png
13031 action left_ptr_watch-16.png
13032 action left_ptr_watch-24.png
13033 action left_ptr_watch-32.png
13034 action left_ptr_watch-48.png
13035 action left_ptr_watch-64.png
13036 action left_side-16.png
13037 action left_side-24.png
13038 action left_side-32.png
13039 action left_side-48.png
13040 action left_side-64.png
13041 action left_tee-16.png
13042 action left_tee-24.png
13043 action left_tee-32.png
13044 action left_tee-48.png
13045 action left_tee-64.png
13046 action ll_angle-16.png
13047 action ll_angle-24.png
13048 action ll_angle-32.png
13049 action ll_angle-48.png
13050 action ll_angle-64.png
13051 action pencil-16.png
13052 action pencil-24.png
13053 action pencil-32.png
13054 action pencil-48.png
13055 action pencil-64.png
13056 action right_ptr-16.png
13057 action right_ptr-24.png
13058 action right_ptr-32.png
13059 action right_ptr-48.png
13060 action right_ptr-64.png
13061 action right_side-16.png
13062 action right_side-24.png
13063 action right_side-32.png
13064 action right_side-48.png
13065 action right_side-64.png
13066 action right_tee-16.png
13067 action right_tee-24.png
13068 action right_tee-32.png
13069 action right_tee-48.png
13070 action right_tee-64.png
13071 action sb_h_double_arrow-16.png
13072 action sb_h_double_arrow-24.png
13073 action sb_h_double_arrow-32.png
13074 action sb_h_double_arrow-48.png
13075 action sb_h_double_arrow-64.png
13076 action sb_right_arrow-16.png
13077 action sb_right_arrow-24.png
13078 action sb_right_arrow-32.png
13079 action sb_right_arrow-48.png
13080 action sb_right_arrow-64.png
13081 action sb_up_arrow-16.png
13082 action sb_up_arrow-24.png
13083 action sb_up_arrow-32.png
13084 action sb_up_arrow-48.png
13085 action sb_up_arrow-64.png
13086 action sb_v_double_arrow-16.png
13087 action sb_v_double_arrow-24.png
13088 action sb_v_double_arrow-32.png
13089 action sb_v_double_arrow-48.png
13090 action sb_v_double_arrow-64.png
13091 action shuttle-16.png
13092 action shuttle-24.png
13093 action shuttle-32.png
13094 action shuttle-48.png
13095 action shuttle-64.png
13096 action top_left_corner-16.png
13097 action top_left_corner-24.png
13098 action top_left_corner-32.png
13099 action top_left_corner-48.png
13100 action top_left_corner-64.png
13101 action top_right_corner-16.png
13102 action top_right_corner-24.png
13103 action top_right_corner-32.png
13104 action top_right_corner-48.png
13105 action top_right_corner-64.png
13106 action top_side-16.png
13107 action top_side-24.png
13108 action top_side-32.png
13109 action top_side-48.png
13110 action top_side-64.png
13111 action top_tee-16.png
13112 action top_tee-24.png
13113 action top_tee-32.png
13114 action top_tee-48.png
13115 action top_tee-64.png
13116 action watch-16.png
13117 action watch-24.png
13118 action watch-32.png
13119 action watch-48.png
13120 action watch-64.png
13121 action xterm-16.png
13122 action xterm-24.png
13123 action xterm-32.png
13124 action xterm-48.png
13125 action xterm-64.png
13127 action X_cursor.cfg
13128 action based_arrow_down.cfg
13129 action based_arrow_up.cfg
13130 action bottom_left_corner.cfg
13131 action bottom_right_corner.cfg
13132 action bottom_side.cfg
13133 action bottom_tee.cfg
13134 action center_ptr.cfg
13135 action circle.cfg
13136 action cross.cfg
13137 action dot.cfg
13138 action dotbox.cfg
13139 action double_arrow.cfg
13140 action draped_box.cfg
13141 action fleur.cfg
13142 action gumby.cfg
13143 action hand2.cfg
13144 action left_ptr.cfg
13145 action left_ptr_watch.cfg
13146 action left_side.cfg
13147 action left_tee.cfg
13148 action ll_angle.cfg
13149 action pencil.cfg
13150 action right_ptr.cfg
13151 action right_side.cfg
13152 action right_tee.cfg
13153 action sb_h_double_arrow.cfg
13154 action sb_right_arrow.cfg
13155 action sb_up_arrow.cfg
13156 action sb_v_double_arrow.cfg
13157 action shuttle.cfg
13158 action top_left_corner.cfg
13159 action top_right_corner.cfg
13160 action top_side.cfg
13161 action top_tee.cfg
13162 action watch.cfg
13163 action xterm.cfg
13165 action based_arrow_down.xcf
13166 action based_arrow_up.xcf
13167 action basic_arrow.xcf
13168 action bottom_left_corner.xcf
13169 action bottom_right_corner.xcf
13170 action bottom_side.xcf
13171 action bottom_tee.xcf
13172 action center_ptr.xcf
13173 action circle.xcf
13174 action cross.xcf
13175 action dotbox.xcf
13176 action dot.xcf
13177 action double_arrow.xcf
13178 action draped_box.xcf
13179 action fleur.xcf
13180 action gumby.xcf
13181 action hand2.xcf
13182 action hourglass-135.xcf
13183 action hourglass-25.xcf
13184 action hourglass-45.xcf
13185 action hourglass-50.xcf
13186 action hourglass-75.xcf
13187 action hourglass-90.xcf
13188 action hourglass-empty.xcf
13189 action hourglass-full.xcf
13190 action hourglass-plain.xcf
13191 action left_ptr_watch.xcf
13192 action left_ptr.xcf
13193 action left_side.xcf
13194 action left_tee.xcf
13195 action ll_angle.xcf
13196 action pencil.xcf
13197 action right_ptr.xcf
13198 action right_side.xcf
13199 action right_tee.xcf
13200 action sb_h_double_arrow.xcf
13201 action sb_right_arrow.xcf
13202 action sb_up_arrow.xcf
13203 action sb_v_double_arrow.xcf
13204 action shuttle.xcf
13205 action top_left_corner.xcf
13206 action top_right_corner.xcf
13207 action top_side.xcf
13208 action top_tee.xcf
13209 action watch.xcf
13210 action X_cursor.xcf
13211 action xterm.xcf
13213 action gumby.svg
13216 symlink_data_cursors_whiteglass() {
13217 src_dir programs/xcursorgen/whiteglass
13218 dst_dir data/cursors/whiteglass
13220 action X_cursor-16.png
13221 action X_cursor-24.png
13222 action X_cursor-32.png
13223 action X_cursor-48.png
13224 action X_cursor-64.png
13225 action base_arrow_down-16.png
13226 action base_arrow_down-24.png
13227 action base_arrow_down-32.png
13228 action base_arrow_down-48.png
13229 action base_arrow_down-64.png
13230 action base_arrow_up-16.png
13231 action base_arrow_up-24.png
13232 action base_arrow_up-32.png
13233 action base_arrow_up-48.png
13234 action base_arrow_up-64.png
13235 action basic_arrow-16.png
13236 action basic_arrow-24.png
13237 action basic_arrow-32.png
13238 action basic_arrow-48.png
13239 action basic_arrow-64.png
13240 action boat-16.png
13241 action boat-24.png
13242 action boat-32.png
13243 action boat-48.png
13244 action boat-64.png
13245 action bottom_left_corner-16.png
13246 action bottom_left_corner-24.png
13247 action bottom_left_corner-32.png
13248 action bottom_left_corner-48.png
13249 action bottom_left_corner-64.png
13250 action bottom_right_corner-16.png
13251 action bottom_right_corner-24.png
13252 action bottom_right_corner-32.png
13253 action bottom_right_corner-48.png
13254 action bottom_right_corner-64.png
13255 action bottom_side-16.png
13256 action bottom_side-24.png
13257 action bottom_side-32.png
13258 action bottom_side-48.png
13259 action bottom_side-64.png
13260 action bottom_tee-16.png
13261 action bottom_tee-24.png
13262 action bottom_tee-32.png
13263 action bottom_tee-48.png
13264 action bottom_tee-64.png
13265 action center_ptr-16.png
13266 action center_ptr-24.png
13267 action center_ptr-32.png
13268 action center_ptr-48.png
13269 action center_ptr-64.png
13270 action circle-16.png
13271 action circle-24.png
13272 action circle-32.png
13273 action circle-48.png
13274 action circle-64.png
13275 action cross-16.png
13276 action cross-24.png
13277 action cross-32.png
13278 action cross-48.png
13279 action cross-64.png
13280 action dot-16.png
13281 action dot-24.png
13282 action dot-32.png
13283 action dot-48.png
13284 action dot-64.png
13285 action dot_box_mask-16.png
13286 action dot_box_mask-24.png
13287 action dot_box_mask-32.png
13288 action dot_box_mask-48.png
13289 action dot_box_mask-64.png
13290 action double_arrow-16.png
13291 action double_arrow-24.png
13292 action double_arrow-32.png
13293 action double_arrow-48.png
13294 action double_arrow-64.png
13295 action draped_box-16.png
13296 action draped_box-24.png
13297 action draped_box-32.png
13298 action draped_box-48.png
13299 action draped_box-64.png
13300 action exchange-16.png
13301 action exchange-24.png
13302 action exchange-32.png
13303 action exchange-48.png
13304 action exchange-64.png
13305 action fleur-16.png
13306 action fleur-24.png
13307 action fleur-32.png
13308 action fleur-48.png
13309 action fleur-64.png
13310 action gumby-128.png
13311 action gumby-16.png
13312 action gumby-24.png
13313 action gumby-32.png
13314 action gumby-48.png
13315 action gumby-64.png
13316 action hand1-16.png
13317 action hand1-24.png
13318 action hand1-32.png
13319 action hand1-48.png
13320 action hand1-64.png
13321 action hand2-16.png
13322 action hand2-24.png
13323 action hand2-32.png
13324 action hand2-48.png
13325 action hand2-64.png
13326 action left_ptr-16.png
13327 action left_ptr-24.png
13328 action left_ptr-32.png
13329 action left_ptr-48.png
13330 action left_ptr-64.png
13331 action left_ptr_watch-16.png
13332 action left_ptr_watch-24.png
13333 action left_ptr_watch-32.png
13334 action left_ptr_watch-48.png
13335 action left_ptr_watch-64.png
13336 action left_side-16.png
13337 action left_side-24.png
13338 action left_side-32.png
13339 action left_side-48.png
13340 action left_side-64.png
13341 action left_tee-16.png
13342 action left_tee-24.png
13343 action left_tee-32.png
13344 action left_tee-48.png
13345 action left_tee-64.png
13346 action ll_angle-16.png
13347 action ll_angle-24.png
13348 action ll_angle-32.png
13349 action ll_angle-48.png
13350 action ll_angle-64.png
13351 action lr_angle-16.png
13352 action lr_angle-24.png
13353 action lr_angle-32.png
13354 action lr_angle-48.png
13355 action lr_angle-64.png
13356 action pencil-16.png
13357 action pencil-24.png
13358 action pencil-32.png
13359 action pencil-48.png
13360 action pencil-64.png
13361 action pirate-16.png
13362 action pirate-24.png
13363 action pirate-32.png
13364 action pirate-48.png
13365 action pirate-64.png
13366 action question_arrow-16.png
13367 action question_arrow-24.png
13368 action question_arrow-32.png
13369 action question_arrow-48.png
13370 action question_arrow-64.png
13371 action right_ptr-16.png
13372 action right_ptr-24.png
13373 action right_ptr-32.png
13374 action right_ptr-48.png
13375 action right_ptr-64.png
13376 action right_side-16.png
13377 action right_side-24.png
13378 action right_side-32.png
13379 action right_side-48.png
13380 action right_side-64.png
13381 action right_tee-16.png
13382 action right_tee-24.png
13383 action right_tee-32.png
13384 action right_tee-48.png
13385 action right_tee-64.png
13386 action sailboat-16.png
13387 action sailboat-24.png
13388 action sailboat-32.png
13389 action sailboat-48.png
13390 action sailboat-64.png
13391 action sb_down_arrow-16.png
13392 action sb_down_arrow-24.png
13393 action sb_down_arrow-32.png
13394 action sb_down_arrow-48.png
13395 action sb_down_arrow-64.png
13396 action sb_h_double_arrow-16.png
13397 action sb_h_double_arrow-24.png
13398 action sb_h_double_arrow-32.png
13399 action sb_h_double_arrow-48.png
13400 action sb_h_double_arrow-64.png
13401 action sb_left_arrow-16.png
13402 action sb_left_arrow-24.png
13403 action sb_left_arrow-32.png
13404 action sb_left_arrow-48.png
13405 action sb_left_arrow-64.png
13406 action sb_right_arrow-16.png
13407 action sb_right_arrow-24.png
13408 action sb_right_arrow-32.png
13409 action sb_right_arrow-48.png
13410 action sb_right_arrow-64.png
13411 action sb_up_arrow-16.png
13412 action sb_up_arrow-24.png
13413 action sb_up_arrow-32.png
13414 action sb_up_arrow-48.png
13415 action sb_up_arrow-64.png
13416 action sb_v_double_arrow-16.png
13417 action sb_v_double_arrow-24.png
13418 action sb_v_double_arrow-32.png
13419 action sb_v_double_arrow-48.png
13420 action sb_v_double_arrow-64.png
13421 action shuttle-16.png
13422 action shuttle-24.png
13423 action shuttle-32.png
13424 action shuttle-48.png
13425 action shuttle-64.png
13426 action sizing-16.png
13427 action sizing-24.png
13428 action sizing-32.png
13429 action sizing-48.png
13430 action sizing-64.png
13431 action target-16.png
13432 action target-24.png
13433 action target-32.png
13434 action target-48.png
13435 action target-64.png
13436 action top_left_corner-16.png
13437 action top_left_corner-24.png
13438 action top_left_corner-32.png
13439 action top_left_corner-48.png
13440 action top_left_corner-64.png
13441 action top_right_corner-16.png
13442 action top_right_corner-24.png
13443 action top_right_corner-32.png
13444 action top_right_corner-48.png
13445 action top_right_corner-64.png
13446 action top_side-16.png
13447 action top_side-24.png
13448 action top_side-32.png
13449 action top_side-48.png
13450 action top_side-64.png
13451 action top_tee-16.png
13452 action top_tee-24.png
13453 action top_tee-32.png
13454 action top_tee-48.png
13455 action top_tee-64.png
13456 action trek-16.png
13457 action trek-24.png
13458 action trek-32.png
13459 action trek-48.png
13460 action trek-64.png
13461 action ul_angle-16.png
13462 action ul_angle-24.png
13463 action ul_angle-32.png
13464 action ul_angle-48.png
13465 action ul_angle-64.png
13466 action ur_angle-16.png
13467 action ur_angle-24.png
13468 action ur_angle-32.png
13469 action ur_angle-48.png
13470 action ur_angle-64.png
13471 action watch-16.png
13472 action watch-24.png
13473 action watch-32.png
13474 action watch-48.png
13475 action watch-64.png
13476 action xterm-16.png
13477 action xterm-24.png
13478 action xterm-32.png
13479 action xterm-48.png
13480 action xterm-64.png
13482 action X_cursor.cfg
13483 action base_arrow_down.cfg
13484 action base_arrow_up.cfg
13485 action basic_arrow.cfg
13486 action boat.cfg
13487 action bottom_left_corner.cfg
13488 action bottom_right_corner.cfg
13489 action bottom_side.cfg
13490 action bottom_tee.cfg
13491 action center_ptr.cfg
13492 action circle.cfg
13493 action cross.cfg
13494 action dot.cfg
13495 action dot_box_mask.cfg
13496 action double_arrow.cfg
13497 action draped_box.cfg
13498 action exchange.cfg
13499 action fleur.cfg
13500 action gumby.cfg
13501 action hand1.cfg
13502 action hand2.cfg
13503 action left_ptr.cfg
13504 action left_ptr_watch.cfg
13505 action left_side.cfg
13506 action left_tee.cfg
13507 action ll_angle.cfg
13508 action lr_angle.cfg
13509 action pencil.cfg
13510 action pirate.cfg
13511 action question_arrow.cfg
13512 action right_ptr.cfg
13513 action right_side.cfg
13514 action right_tee.cfg
13515 action sailboat.cfg
13516 action sb_down_arrow.cfg
13517 action sb_h_double_arrow.cfg
13518 action sb_left_arrow.cfg
13519 action sb_right_arrow.cfg
13520 action sb_up_arrow.cfg
13521 action sb_v_double_arrow.cfg
13522 action shuttle.cfg
13523 action sizing.cfg
13524 action target.cfg
13525 action top_left_corner.cfg
13526 action top_right_corner.cfg
13527 action top_side.cfg
13528 action top_tee.cfg
13529 action trek.cfg
13530 action ul_angle.cfg
13531 action ur_angle.cfg
13532 action watch.cfg
13533 action xterm.cfg
13535 action base_arrow_down.xcf
13536 action base_arrow_up.xcf
13537 action basic_arrow.xcf
13538 action boat.xcf
13539 action bottom_left_corner.xcf
13540 action bottom_right_corner.xcf
13541 action bottom_side.xcf
13542 action bottom_tee.xcf
13543 action center_ptr.xcf
13544 action circle.xcf
13545 action cross.xcf
13546 action dot_box_mask.xcf
13547 action dot.xcf
13548 action double_arrow.xcf
13549 action draped_box.xcf
13550 action exchange.xcf
13551 action fleur.xcf
13552 action gumby.xcf
13553 action hand1.xcf
13554 action hand2.xcf
13555 action left_ptr_watch.xcf
13556 action left_ptr.xcf
13557 action left_side.xcf
13558 action left_tee.xcf
13559 action ll_angle.xcf
13560 action lr_angle.xcf
13561 action pencil.xcf
13562 action pirate.xcf
13563 action question_arrow.xcf
13564 action right_ptr.xcf
13565 action right_side.xcf
13566 action right_tee.xcf
13567 action sailboat.xcf
13568 action sb_down_arrow.xcf
13569 action sb_h_double_arrow.xcf
13570 action sb_left_arrow.xcf
13571 action sb_right_arrow.xcf
13572 action sb_up_arrow.xcf
13573 action sb_v_double_arrow.xcf
13574 action shuttle.xcf
13575 action sizing.xcf
13576 action target.xcf
13577 action top_left_corner.xcf
13578 action top_right_corner.xcf
13579 action top_side.xcf
13580 action top_tee.xcf
13581 action trek.xcf
13582 action ul_angle.xcf
13583 action ur_angle.xcf
13584 action watch.xcf
13585 action X_cursor.xcf
13586 action xterm.xcf
13589 symlink_data_cursors() {
13590 symlink_data_cursors_handhelds
13591 symlink_data_cursors_redglass
13592 symlink_data_cursors_whiteglass
13595 symlink_data_bitmaps() {
13596 src_dir include/bitmaps
13597 dst_dir data/bitmaps
13599 action 1x1
13600 action 2x2
13601 action black
13602 action boxes
13603 action calculator
13604 action cntr_ptr
13605 action cntr_ptrmsk
13606 action cross_weave
13607 action dimple1
13608 action dimple3
13609 action dot
13610 action dropbar7
13611 action dropbar8
13612 action escherknot
13613 action flagdown
13614 action flagup
13615 action flipped_gray
13616 action gray
13617 action gray1
13618 action gray3
13619 action grid16
13620 action grid2
13621 action grid4
13622 action grid8
13623 action hlines2
13624 action hlines3
13625 action icon
13626 action keyboard16
13627 action left_ptr
13628 action left_ptrmsk
13629 action letters
13630 action light_gray
13631 action mailempty
13632 action mailemptymsk
13633 action mailfull
13634 action mailfullmsk
13635 action mensetmanus
13636 action menu10
13637 action menu12
13638 action menu16
13639 action menu6
13640 action menu8
13641 action noletters
13642 action opendot
13643 action opendotMask
13644 action plaid
13645 action right_ptr
13646 action right_ptrmsk
13647 action root_weave
13648 action scales
13649 action sipb
13650 action star
13651 action starMask
13652 action stipple
13653 action target
13654 action terminal
13655 action tie_fighter
13656 action vlines2
13657 action vlines3
13658 action weird_size
13659 action wide_weave
13660 action wingdogs
13661 action woman
13662 action xfd_icon
13663 action xlogo11
13664 action xlogo16
13665 action xlogo32
13666 action xlogo64
13667 action xsnow
13670 symlink_data_xkbdata() {
13671 src_dir programs/xkbcomp/torture
13672 dst_dir data/xkbdata/torture
13674 action indicator
13675 action indicator1
13676 action indicator2
13677 action indicator3
13678 action mod_compat
13679 action mod_compat1
13680 action mod_compat2
13681 action mod_compat3
13682 action mod_compat4
13683 action sym_interp
13684 action sym_interp1
13685 action sym_interp2
13686 action sym_interp3
13687 action sym_interp4
13688 action types
13690 src_dir programs/xkbcomp/types
13691 dst_dir data/xkbdata/types
13693 action README
13695 action basic
13696 action cancel
13697 action caps
13698 action complete
13699 action default
13700 action extra
13701 action iso9995
13702 action mousekeys
13703 action numpad
13704 action pc
13706 src_dir programs/xkbcomp/keycodes
13707 dst_dir data/xkbdata/keycodes
13709 action aliases
13710 action amiga
13711 action ataritt
13712 action fujitsu
13713 action hp
13714 action ibm
13715 action macintosh
13716 action powerpcps2
13717 action README
13718 action sony
13719 action sun
13720 action xfree86
13721 action xfree98
13723 src_dir programs/xkbcomp/keycodes/digital
13724 dst_dir data/xkbdata/keycodes/digital
13726 action lk
13727 action pc
13729 src_dir programs/xkbcomp/keycodes/sgi
13730 dst_dir data/xkbdata/keycodes/sgi
13732 action indigo
13733 action iris
13734 action indy
13736 src_dir programs/xkbcomp/rules
13737 dst_dir data/xkbdata/rules
13739 action README
13740 action sgi
13741 action sgi.lst
13742 action sun
13743 action sun.lst
13744 action xfree98
13745 action xfree98.lst
13746 action xkb.dtd
13747 action xml2lst.pl
13748 action xorg
13749 action xorg-it.lst
13750 action xorg.lst
13751 action xorg.xml
13753 src_dir programs/xkbcomp/compat
13754 dst_dir data/xkbdata/compat
13756 action accessx
13757 action basic
13758 action complete
13759 action default
13760 action iso9995
13761 action japan
13762 action keypad
13763 action ledcaps
13764 action lednum
13765 action ledscroll
13766 action misc
13767 action mousekeys
13768 action norepeat
13769 action pc
13770 action pc98
13771 action README
13772 action xfree86
13773 action xtest
13775 src_dir programs/xkbcomp/geometry
13776 dst_dir data/xkbdata/geometry
13778 action amiga
13779 action ataritt
13780 action chicony
13781 action dell
13782 action everex
13783 action fujitsu
13784 action hp
13785 action keytronic
13786 action kinesis
13787 action macintosh
13788 action microsoft
13789 action nec
13790 action northgate
13791 action pc
13792 action README
13793 action sony
13794 action sun
13795 action winbook
13797 src_dir programs/xkbcomp/geometry/sgi
13798 dst_dir data/xkbdata/geometry/sgi
13800 action indigo
13801 action indy
13802 action O2
13804 src_dir programs/xkbcomp/geometry/ibm
13805 dst_dir data/xkbdata/geometry/ibm
13807 action thinkpad
13809 src_dir programs/xkbcomp/geometry/digital
13810 dst_dir data/xkbdata/geometry/digital
13812 action lk
13813 action pc
13814 action unix
13816 src_dir programs/xkbcomp/semantics
13817 dst_dir data/xkbdata/semantics
13819 action basic
13820 action complete
13821 action default
13822 action xtest
13824 src_dir programs/xkbcomp/keymap
13825 dst_dir data/xkbdata/keymap
13827 action amiga
13828 action ataritt
13829 action macintosh
13830 action README
13831 action sony
13832 action xfree86
13833 action xfree98
13835 src_dir programs/xkbcomp/keymap/digital
13836 dst_dir data/xkbdata/keymap/digital
13838 action us
13840 src_dir programs/xkbcomp/keymap/sgi
13841 dst_dir data/xkbdata/keymap/sgi
13843 action be
13844 action bg
13845 action ca
13846 action cz
13847 action cz_qwerty
13848 action de
13849 action de_CH
13850 action dk
13851 action dvorak
13852 action en_US
13853 action es
13854 action fi
13855 action fr
13856 action fr_CH
13857 action gb
13858 action hu
13859 action it
13860 action jp
13861 action no
13862 action pl
13863 action pt
13864 action ru
13865 action se
13866 action sk
13867 action sk_qwerty
13868 action th
13869 action us
13871 src_dir programs/xkbcomp/keymap/sun
13872 dst_dir data/xkbdata/keymap/sun
13874 action de
13875 action es
13876 action fi
13877 action fr
13878 action no
13879 action pl
13880 action ru
13881 action se
13882 action uk
13883 action us
13885 src_dir programs/xkbcomp/symbols
13886 dst_dir data/xkbdata/symbols
13888 action al
13889 action altwin
13890 action am
13891 action apple
13892 action ar
13893 action az
13894 action be
13895 action ben
13896 action bg
13897 action br
13898 action bs
13899 action by
13900 action ca
13901 action ca_enhanced
13902 action capslock
13903 action compose
13904 action ctrl
13905 action cz
13906 action cz_qwerty
13907 action czsk
13908 action de
13909 action de_CH
13910 action dev
13911 action dk
13912 action dvorak
13913 action ee
13914 action el
13915 action en_US
13916 action es
13917 action eurosign
13918 action fi
13919 action fo
13920 action fr
13921 action fr_CH
13922 action gb
13923 action ge_la
13924 action ge_ru
13925 action group
13926 action guj
13927 action gur
13928 action hr
13929 action hr_US
13930 action hu
13931 action hu_qwerty
13932 action hu_US
13933 action ie
13934 action il
13935 action il_phonetic
13936 action inet
13937 action ir
13938 action is
13939 action iso9995-3
13940 action it
13941 action iu
13942 action jp
13943 action kan
13944 action keypad
13945 action la
13946 action level3
13947 action lo
13948 action lock
13949 action lt
13950 action lt_a
13951 action lt_p
13952 action lt_std
13953 action lv
13954 action mk
13955 action ml
13956 action mm
13957 action mn
13958 action mt
13959 action mt_us
13960 action nl
13961 action no
13962 action ogham
13963 action ori
13964 action pc104
13965 action pl
13966 action pl2
13967 action pt
13968 action ralt
13969 action README
13970 action ro
13971 action ro2
13972 action ru
13973 action sapmi
13974 action se
13975 action se_FI
13976 action se_NO
13977 action se_SE
13978 action si
13979 action sk
13980 action sk_qwerty
13981 action sr
13982 action srvr_ctrl
13983 action syr
13984 action syr_phonetic
13985 action tel
13986 action th
13987 action th_pat
13988 action th_tis
13989 action tj
13990 action tml
13991 action tr
13992 action tr_f
13993 action ua
13994 action us
13995 action us_group2
13996 action us_group3
13997 action us_intl
13998 action uz
13999 action vn
14000 action yu
14002 src_dir programs/xkbcomp/symbols/sun
14003 dst_dir data/xkbdata/symbols/sun
14005 action se
14006 action us
14007 action usb
14009 src_dir programs/xkbcomp/symbols/hp
14010 dst_dir data/xkbdata/symbols/hp
14012 action us
14014 src_dir programs/xkbcomp/symbols/macintosh
14015 dst_dir data/xkbdata/symbols/macintosh
14017 action de
14018 action de_CH
14019 action dk
14020 action es
14021 action fi
14022 action fr
14023 action fr_CH
14024 action gb
14025 action it
14026 action nl
14027 action no
14028 action pt
14029 action se
14030 action us
14032 src_dir programs/xkbcomp/symbols/pc
14033 dst_dir data/xkbdata/symbols/pc
14035 action al
14036 action am
14037 action ara
14038 action az
14039 action ba
14040 action bd
14041 action be
14042 action bg
14043 action br
14044 action bt
14045 action by
14046 action ca
14047 action ch
14048 action cz
14049 action de
14050 action dk
14051 action ee
14052 action es
14053 action fi
14054 action fo
14055 action fr
14056 action gb
14057 action ge
14058 action gr
14059 action hr
14060 action hu
14061 action ie
14062 action il
14063 action in
14064 action ir
14065 action is
14066 action it
14067 action jp
14068 action kg
14069 action la
14070 action latam
14071 action latin
14072 action lk
14073 action lt
14074 action lv
14075 action mao
14076 action mkd
14077 action mm
14078 action mn
14079 action mt
14080 action nl
14081 action no
14082 action pc
14083 action pk
14084 action pl
14085 action pt
14086 action ro
14087 action ru
14088 action se
14089 action si
14090 action sk
14091 action srp
14092 action sy
14093 action th
14094 action tj
14095 action tr
14096 action ua
14097 action us
14098 action uz
14099 action vn
14101 src_dir programs/xkbcomp/symbols/sgi
14102 dst_dir data/xkbdata/symbols/sgi
14104 action jp
14106 src_dir programs/xkbcomp/symbols/xfree68
14107 dst_dir data/xkbdata/symbols/xfree68
14109 action amiga
14110 action ataritt
14112 src_dir programs/xkbcomp/symbols/fujitsu
14113 dst_dir data/xkbdata/symbols/fujitsu
14115 action jp
14116 action us
14118 src_dir programs/xkbcomp/symbols/digital
14119 dst_dir data/xkbdata/symbols/digital
14121 action lk
14122 action pc
14123 action us
14124 action vt
14126 src_dir programs/xkbcomp/symbols/sony
14127 dst_dir data/xkbdata/symbols/sony
14129 action us
14131 src_dir programs/xkbcomp/symbols/nec
14132 dst_dir data/xkbdata/symbols/nec
14134 action jp
14137 symlink_data() {
14138 symlink_data_cursors
14139 symlink_data_bitmaps
14140 symlink_data_xkbdata
14144 ########
14146 # List of files that are deliberately not symlinked into
14147 # the modular tree
14149 #########
14151 # exclude $1 and everything in it
14152 exclude_directory()
14154 for dir in `find $SRC_DIR/$1 -type d` ; do
14155 dir=`echo $dir | sed s,$SRC_DIR,, | sed s,^/,,`
14156 src_dir $dir
14158 # Some versions of find do not support -maxdepth
14159 # for file in `find $SRC_DIR/$dir -maxdepth 1 -type f `; do
14160 # action `basename $file`
14161 # done
14162 for file in $SRC_DIR/$dir/*; do
14163 if [ -f $file ]; then
14164 action `basename $file`
14166 done
14167 done
14170 exclude_glob()
14172 for file in `find $SRC_DIR -name "$1"` ; do
14173 src_dir `dirname $file | sed s,$SRC_DIR,, | sed s,^/,,`
14174 action `basename $file`
14175 done
14178 exclude_xft_buildsystem()
14180 src_dir lib/Xft
14182 action aclocal.m4
14183 action autogen.sh
14184 action config.guess
14185 action config.h.in
14186 action config.sub
14187 action configure
14188 action configure.ac
14189 action depcomp
14190 action install-sh
14191 action ltmain.sh
14192 action Makefile.am
14193 action Makefile.in
14194 action missing
14195 action mkinstalldirs
14196 action Xft-def.cpp
14198 src_dir lib/Xft/config
14199 action config-subst
14202 exclude_render_buildsystem()
14204 src_dir lib/Xrender
14206 action AUTHORS
14207 action autogen.sh
14208 action ChangeLog
14209 action config.h
14210 action configure.ac
14211 action COPYING
14212 action INSTALL
14213 action NEWS
14214 action README
14215 action Xrender-def.cpp
14216 action xrender.pc.in
14219 exclude_composite_buildsystem()
14221 src_dir lib/Xcomposite
14223 action AUTHORS
14224 action autogen.sh
14225 action ChangeLog
14226 action configure.ac
14227 action COPYING
14228 action .cvsignore
14229 action INSTALL
14230 action Makefile.am
14231 action NEWS
14232 action README
14233 action xcomposite.pc.in
14236 exclude_cursor_buildsystem()
14238 src_dir lib/Xcursor
14240 action AUTHORS
14241 action autogen.sh
14242 action ChangeLog
14243 action config.h
14244 action config-subst
14245 action configure.ac
14246 action COPYING
14247 action INSTALL
14248 action Makefile.am
14249 action NEWS
14250 action README
14251 action xcursor-config.in
14252 action Xcursor-def.cpp
14253 action xcursor.pc.in
14256 exclude_damage_buildsystem()
14258 src_dir lib/Xdamage
14260 action AUTHORS
14261 action autogen.sh
14262 action ChangeLog
14263 action configure.ac
14264 action COPYING
14265 action .cvsignore
14266 action INSTALL
14267 action Makefile.am
14268 action NEWS
14269 action README
14270 action xdamage.pc.in
14273 exclude_fixes_buildsystem()
14275 src_dir lib/Xfixes
14277 action AUTHORS
14278 action autogen.sh
14279 action ChangeLog
14280 action configure.ac
14281 action COPYING
14282 action .cvsignore
14283 action INSTALL
14284 action Makefile.am
14285 action NEWS
14286 action README
14287 action Xfixes-def.cpp
14288 action xfixes.pc.in
14291 exclude_gl_apple()
14293 # These files should be part of Mesa,
14294 # according to Adam
14295 src_dir lib/GL/apple
14297 action appledri.c
14298 action appledri.h
14299 action appledristr.h
14300 action build-dispatch
14301 action dri_dispatch.c
14302 action dri_dispatch.defs
14303 action dri_dispatch.h
14304 action dri_driver.c
14305 action dri_driver.h
14306 action dri_glx.c
14307 action dri_glx.h
14310 symlink_non_linked_files()
14312 # SGI is upstream for these files. Not sure what to about them, but
14313 # one place they absolutely do _not_ belong, is in the X tree.
14314 exclude_directory doc/man/GL
14315 exclude_directory doc/man/GLU
14317 # This stuff is used to build binary distributions of the monolith.
14318 # It would have to be redone to do something similar for the modular.
14319 exclude_directory programs/Xserver/hw/xfree86/etc/bindist
14321 # DPS is not part of the modular tree
14322 exclude_directory lib/dps
14323 exclude_directory programs/dpsexec
14324 exclude_directory programs/dpsinfo
14325 exclude_directory programs/texteroids
14326 exclude_directory include/DPS
14327 exclude_directory config/pswrap
14328 exclude_directory lib/dpstk
14329 exclude_directory lib/psres
14331 # Speedo font support is deprecated in 7.0
14332 exclude_directory lib/font/Speedo
14334 # Exclude unmaintained sun and sunLynx
14335 exclude_directory programs/Xserver/hw/sun
14336 exclude_directory programs/Xserver/hw/sunLynx
14338 # Exclude deprecated wacom(4)
14339 exclude_directory programs/Xserver/hw/xfree86/input/wacom
14341 # Exclude old and known-broken sample(4)
14342 exclude_directory programs/Xserver/hw/xfree86/input/sample
14344 # Exclude xterm
14345 exclude_directory programs/xterm
14346 src_dir doc/hardcopy/xterm
14347 action ctlseqs.PS.gz
14348 src_dir doc/specs/xterm
14349 action ctlseqs.ms
14351 # Nobody should really care about Xft1 anymore
14352 exclude_directory lib/Xft1
14354 # these are included with Mesa
14355 exclude_directory programs/glxgears
14356 exclude_directory programs/glxinfo
14357 exclude_directory lib/GLw
14358 exclude_directory include/GL
14360 # exclude config/util - I don't think it's relevant for the modular tree
14361 exclude_directory config/util
14363 # These all have their own build systems in the modular tree
14364 exclude_xft_buildsystem
14365 exclude_render_buildsystem
14366 exclude_composite_buildsystem
14367 exclude_cursor_buildsystem
14368 exclude_damage_buildsystem
14369 exclude_fixes_buildsystem
14371 # By definition the monolith is not upstream for this
14372 exclude_directory extras
14374 # Exclude memleak (verified by keithp)
14375 exclude_directory util/memleak
14377 # Use upstream packaging of expat
14378 exclude_directory lib/expat
14380 # Exclude fontconfig
14381 exclude_directory programs/fc-cache
14382 exclude_directory programs/fc-list
14383 exclude_directory lib/fontconfig
14385 # Stuff that may be resurrected if someone complains enough
14386 exclude_directory programs/Xserver/hw/xfree86/etc
14388 # Exclude empty directory that just has README saying kdrive doesn't
14389 # live here any more
14390 exclude_directory programs/Xserver/hw/kdrive
14392 # Empty stubs for projects not yet checked into CVS
14393 exclude_directory programs/Xserver/Xprint/pdf
14394 exclude_directory programs/Xserver/Xprint/svg
14395 exclude_directory programs/Xserver/Xprint/windows
14397 # Exclude monolithic tree SDK
14398 exclude_directory programs/Xserver/hw/xfree86/sdk
14400 # Exclude platforms that are no longer maintained
14401 src_dir programs/Xserver/hw/xfree86/etc
14402 action install.sv3
14403 action mmapSVR3.shar
14404 action svr3_patch
14405 action svr3_rem_pch
14406 action svr4_patch
14407 action svr4_rem_pch
14409 # Upgrades stone age (pre-1994) config files to bronze age (1994)
14410 # config files. Not built in the monolith since XFree86 3.9 series
14411 # in 1998 and XFree86 has even deleted from their monolith.
14412 exclude_directory programs/Xserver/hw/xfree86/reconfig
14414 # These fonts are not needed because they are generated
14415 exclude_glob "*-L1.bdf"
14416 exclude_glob "*-JISX0201.bdf"
14418 # These files are not needed
14419 exclude_glob "Imakefile*"
14420 exclude_glob "jump_*"
14421 exclude_glob ".cvsignore"
14423 exclude_gl_apple
14425 # These files are only used by OS/2 and can be added back if a
14426 # maintainer steps up
14427 exclude_glob "*-def.cpp"
14428 src_dir programs/Xserver
14429 action XFree86.def
14430 action Xnest.def
14431 action Xorg.def
14432 action Xvfb.def
14433 src_dir programs/Xserver/hw/xfree86/xf86config
14434 action xf86config.cmd
14435 src_dir programs/Xserver/hw/xfree86/loader
14436 action os2funcs.c
14437 exclude_directory programs/Xserver/hw/xfree86/os-support/os2
14438 exclude_directory programs/Xserver/hw/xfree86/os-support/os2/int10
14440 # Exclude unsupported os-support directories.
14441 exclude_directory programs/Xserver/hw/xfree86/os-support/nto
14442 exclude_directory programs/Xserver/hw/xfree86/os-support/pmax
14443 exclude_directory programs/Xserver/hw/xfree86/os-support/qnx4
14444 exclude_directory programs/Xserver/hw/xfree86/os-support/bsdi
14445 exclude_directory programs/Xserver/hw/xfree86/os-support/dgux
14446 exclude_directory programs/Xserver/hw/xfree86/os-support/hurd
14448 # This file is replaced by httptransport.c in the modular tree
14449 src_dir programs/xrx/helper
14450 action httptran.c
14452 # Some toplevel monolithic stuff
14453 src_dir
14454 action BUILD # description of the monolithic build system
14455 action ChangeLog # irrelevant to modular
14456 action Makefile # Only useful for monolith
14458 # These files generate the list of drivers (input and video) for the
14459 # monolithic build system and are not needed for the modular build
14460 src_dir programs/Xserver/hw/xfree86/drivers
14461 action confdrv.sh
14462 src_dir programs/Xserver/hw/xfree86/input
14463 action confdrv.sh
14465 # expat is external now
14466 src_dir lib/expat
14467 action expat_config.h
14469 # This file is replaced by a Makefile.am
14470 src_dir programs/Xserver/hw/xfree86/drivers/mga/util
14471 action Makefile
14473 # The via_drm.h file belongs in libdrm
14474 src_dir programs/Xserver/hw/xfree86/drivers/via
14475 action via_drm.h
14477 # This file is only useful in the monolith
14478 src_dir programs/Xserver/hw/dmx/doc
14479 action Makefile.linux
14481 # No longer needed as dlopen modules are default
14482 src_dir programs/Xserver/hw/xfree86/os-support/sunos
14483 action find_deps.pl
14485 # Obsolete docs
14486 src_dir programs/Xserver/hw/xfree86/doc/sgml
14487 action BUILD.sgml # - specific to the monolith
14488 # build system
14489 action Status.sgml # - obsolete
14490 action README.build-docs # - specific to monolith build
14492 src_dir programs/Xserver/hw/xfree86
14493 action XF86Conf.man
14494 action XF98Conf.cpp
14496 # These docs are only useful for monolith
14497 src_dir
14498 action LABEL
14499 action README
14500 action README.crypto
14501 action RELNOTES
14503 # This file is not used by in modular tree
14504 src_dir
14505 action xf86Date.h
14507 # This should be distributed to various font components
14508 src_dir fonts/bdf/misc
14509 action README
14511 # Using upstream version from Gnome
14512 src_dir fonts/scaled/TTF
14513 action COPYRIGHT.Vera
14515 # This file is not used by makedepend in the monolith
14516 src_dir config/makedepend
14517 action cpp.ed
14519 # This file is not used in the monolith
14520 src_dir config/docbook
14521 action docbookconv.sh
14523 # The following files are simple test files that should not be
14524 # included with the library
14525 src_dir lib/Xrandr
14526 action test.c
14527 src_dir lib/font/Type1
14528 action minimain.c
14529 action t1test.c
14531 # Don't symlink XFree86 xpm logos or sequent .Xdefaults from xdm
14532 src_dir programs/xdm/config
14533 action XFree86.xpm
14534 action XFree86bw.xpm
14535 action system.Xdefaults.sequent
14536 action system.xsession.sequent
14538 # Dead source file from cfb, never built in monolith
14539 src_dir programs/Xserver/cfb
14540 action stipple68k.s
14542 # Generated html, so don't symlink
14543 src_dir programs/xphelloworld/xphelloworld
14544 action xphelloworld.html
14546 src_dir programs/xphelloworld/xpsimplehelloworld
14547 action xpsimplehelloworld.html
14549 src_dir programs/xphelloworld/xpxmhelloworld
14550 action xpxmhelloworld.html
14552 src_dir programs/xphelloworld/xpxthelloworld
14553 action xpxthelloworld.html
14555 src_dir programs/xplsprinters
14556 action xplsprinters.html
14558 src_dir programs/xprehashprinterlist
14559 action xprehashprinterlist.html
14561 src_dir doc/man/general
14562 action Xprint.html
14564 # Unused symbol export control thing. No clue how this ever worked.
14565 exclude_glob "*.elist"
14567 # Highly non-free reimplementation of snprintf. If your libc is so
14568 # crippled as to need this, steal it from BSD's libc instead, thanks.
14569 src_dir lib/misc
14570 action snprintf.c
14571 action snprintf.h
14573 # A do-nothing header in Xevie. Take a drink.
14574 src_dir lib/Xevie
14575 action xevieplaceholder.h
14577 # Script to generate the list of widgets in the Xaw set. Hopefully
14578 # no one is adding new ones anymore...
14579 src_dir lib/Xaw
14580 action genlist.sh
14582 # Workarounds for long forgotten bugs in SunOS 4.1 & Solaris 2.3
14583 src_dir util/misc
14584 action dlsym.c
14585 action thr_stubs.c
14586 action rt.stdarg.h
14588 # Generated README files for the drivers
14589 src_dir programs/Xserver/hw/xfree86/doc
14590 action README.DECtga
14591 action README.I128
14592 action README.SiS
14593 action README.apm
14594 action README.chips
14595 action README.cyrix
14596 action README.i740
14597 action README.i810
14598 action README.mouse
14599 action README.newport
14600 action README.rendition
14601 action README.s3virge
14602 action README.ati
14603 action README.r128
14605 src_dir programs/Xserver/hw/xfree86/drivers/i740
14606 action README
14608 # We use the compiled version of ucs2any, so the perl version is no
14609 # longer needed or used
14610 src_dir fonts/util
14611 action ucs2any.pl
14613 # The .cf and .rules files are used only in the local xedit Imakefiles
14614 src_dir programs/xedit/lisp
14615 action lisp.cf
14616 action lisp.rules
14618 # The following file is duplicates the copyright that is already
14619 # present in the source files
14620 src_dir programs/rstart
14621 action c
14623 # These files are copies of FreeType source code
14624 src_dir lib/font/FreeType/module
14625 action ft2build.h
14626 action ftheader.h
14627 action ftmodule.h
14628 action ftoption.h
14629 action ftstdlib.h
14630 action fttypes.h
14631 action myftstdlib.h
14633 # This file is an older version of the README file already linked into
14634 # the neomagic driver
14635 src_dir programs/Xserver/hw/xfree86/doc
14636 action README.neomagic
14638 # This is just random libc implementations
14639 src_dir lib/Xbsd
14640 action Berklib.c
14642 # A file with no entries - and we already have an empty file
14643 # in the modular tree
14644 src_dir nls/Compose
14645 action zh_CN
14647 # These files are all generated from the sgml files in
14648 # doc/xorg-docs/sgml. When/if those files are converted to xml,
14649 # we can maybe do something with the generated results.
14650 src_dir programs/Xserver/hw/xfree86/doc
14652 action README.Darwin
14653 action README.dps
14654 action OS2.Notes
14655 action LICENSE
14656 action Install
14657 action README.LynxOS
14658 action README.NetBSD
14659 action README.OpenBSD
14660 action README.SCO
14661 action README.Solaris
14662 action Versions
14663 action README.XKB-Config
14664 action README.XKB-Enhancing
14665 action BUILD
14666 action README
14667 action RELNOTES
14669 # Not really useful given bugzilla
14670 action BugReport.cpp
14672 # like anybody cared
14673 action CODING
14675 # Pc98 doc - FIXME maybe this is actually useful
14676 action VideoBoard98
14678 # Generated from sgml/DESIGN.sgml
14679 action DESIGN
14681 src_dir programs/Xserver/hw/xfree86/doc/Japanese
14682 action README98
14683 action README98.1st
14685 # These files are not even used by the monolith
14686 src_dir lib/X11/xlibi18n/im/ximcp
14687 action Ximcp.mapfile
14688 src_dir lib/X11/xlibi18n/lc/def
14689 action Xlc.mapfile
14690 src_dir lib/X11/xlibi18n/lc/gen
14691 action Xlc.mapfile
14692 src_dir lib/X11/xlibi18n/om/generic
14693 action Xom.mapfile
14695 # This file is part of the monolithic build system
14696 src_dir lib/X11/xlibi18n
14697 action Xi18nLib.conf
14699 # These files are needed for cross compilation and OS/2
14700 src_dir config/imake
14701 action ccimake.c
14702 action imakesvc.cmd
14703 action Makefile.ini
14705 # Xfuncproto.h is now configurable in the modular tree
14706 src_dir include
14707 action Xfuncproto.h
14710 print_source()
14712 echo $1 >> symlink-processed-files
14715 generate_monolith_files()
14717 for cvsdir in `find $SRC_DIR -name "CVS"` ; do
14718 for file in `cat $cvsdir/Entries | grep -v "^D" | cut -d"/" -f2 `; do
14719 echo `echo $cvsdir | sed s/CVS//`$file >> all-monolith-files
14720 done
14721 done
14724 list_missing()
14726 rm -f symlink-processed-files
14727 rm -f symlink-processed-files.sorted
14728 rm -f all-monolith-files
14729 rm -f all-monolith-files.sorted
14731 # make sure we are not excluding anything that doesn't exist
14732 ACTION=check_exist EXPLANATION="Checking that excluded files exist" run_module non_linked_files
14734 # generate a list of all files that this script is going to link
14735 run print_source "Generating list of linked files"
14737 # generate a list of all files that this script is explicityly *not* going to link
14738 ACTION=print_source EXPLANATION="Generating list of non-linked files" run_module non_linked_files
14740 # generate a list of all files in the xc directory, except those that
14741 # we already know we don't care about
14743 echo -n Generating list of all monolithic files ...\
14745 generate_monolith_files
14747 echo DONE
14749 echo -n Generating list of missing files in file \"missing-files\" ...\
14751 sort symlink-processed-files > symlink-processed-files.sorted
14752 sort all-monolith-files > all-monolith-files.sorted
14754 diff -u symlink-processed-files.sorted all-monolith-files.sorted | grep -v "^-" | grep "^\+" | cut -d "+" -f2 > missing-files
14756 echo DONE
14760 #########
14762 # Helper functions
14764 #########
14766 error() {
14767 echo
14768 echo \ \ \ error:\ \ \ $1
14769 exit
14772 # printing out what's going on
14773 run_module() {
14774 # $1 module
14775 # $2 explanation
14776 echo -n $EXPLANATION for $1 module ...\
14777 symlink_$1
14778 echo DONE
14781 run() {
14782 # $1 what to do
14783 # $2 explanation
14785 ACTION=$1 EXPLANATION=$2 run_module proto
14786 ACTION=$1 EXPLANATION=$2 run_module lib
14787 ACTION=$1 EXPLANATION=$2 run_module app
14788 ACTION=$1 EXPLANATION=$2 run_module xserver
14789 ACTION=$1 EXPLANATION=$2 run_module driver
14790 ACTION=$1 EXPLANATION=$2 run_module font
14791 ACTION=$1 EXPLANATION=$2 run_module doc
14792 ACTION=$1 EXPLANATION=$2 run_module util
14793 ACTION=$1 EXPLANATION=$2 run_module data
14796 src_dir() {
14797 if [ x$1 = x ]; then
14798 REAL_SRC_DIR=$SRC_DIR
14799 else
14800 REAL_SRC_DIR=$SRC_DIR/$1
14802 if [ ! -d $REAL_SRC_DIR ] ; then
14803 error "Source directory $REAL_SRC_DIR does not exist"
14807 dst_dir() {
14808 REAL_DST_DIR=$DST_DIR/$1
14809 if [ ! -d $REAL_DST_DIR ] ; then
14810 mkdir -p $REAL_DST_DIR
14814 action() {
14815 if [ -z $2 ] ; then
14816 $ACTION $REAL_SRC_DIR/$1 $REAL_DST_DIR/$1
14817 else
14818 $ACTION $REAL_SRC_DIR/$1 $REAL_DST_DIR/$2
14822 usage() {
14823 echo
14824 echo Usage:
14825 echo \ symlink.sh [ -m ] src-dir dst-dir
14826 echo
14827 echo \ src-dir: the xc directory of the monolithic source tree
14828 echo \ dst-dir: the modular source tree containing proto, app, lib, ...
14829 echo
14830 echo \ -m: Instead of symlinking the files, list the files from the source
14831 echo \ \ \ \ \ \ directory that are not processed by this script
14834 # Check commandline args
14835 check_args() {
14836 MISSING_FILES=no
14837 if [ x$1 = "x-m" ] ; then
14838 MISSING_FILES=yes
14839 shift
14842 if [ -z $1 ] ; then
14843 echo Missing source dir
14844 usage
14845 exit 1
14848 if [ -z $2 ] ; then
14849 echo Missing destination dir
14850 usage
14851 exit 1
14854 if [ ! -d $1 ] ; then
14855 echo $1 is not a dir
14856 usage
14857 exit 1
14860 if [ ! -d $2 ] ; then
14861 echo $2 is not a dir
14862 usage
14863 exit 1
14866 if [ $1 = $2 ] ; then
14867 echo source and destination can\'t be the same
14868 usage
14869 exit 1
14872 D=`dirname "$relpath"`
14873 B=`basename "$relpath"`
14874 abspath="`cd \"$D\" 2>/dev/null && pwd || echo \"$D\"`/$B"
14876 SRC_DIR=`( cd $1 ; pwd )`
14877 DST_DIR=`( cd $2 ; pwd )`
14880 check_args $1 $2 $3
14882 if [ $MISSING_FILES = yes ] ; then
14883 list_missing
14884 else
14885 run_symlink