Automatically generate FUNCPROTO and NARROWPROTO defines in Xfuncproto.h.
[xorg-util-modular.git] / symlink.sh
bloba16a4f2210f6230bbb52309bb9372e2e08463256
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
2184 # man pages
2186 src_dir doc/man/Xt
2187 dst_dir lib/Xt/man
2189 action XtAddCbk.man XtAddCallback.man
2190 action XtAddEHand.man XtAddEventHandler.man
2191 action XtAddETReg.man XtAddExposureToRegion.man
2192 action XtAddGrab.man XtAddGrab.man
2193 action XtAppAAct.man XtAppAddActions.man
2194 action XtAddAct.man XtAddActions.man
2195 action XtAppAC.man XtAppAddConverter.man
2196 action XtAppAI.man XtAppAddInput.man
2197 action XtAppATO.man XtAppAddTimeOut.man
2198 action XtAppAWP.man XtAppAddWorkProc.man
2199 action XtAppCSh.man XtAppCreateShell.man
2200 action XtAppE.man XtAppError.man
2201 action XtAppEM.man XtAppErrorMsg.man
2202 action XtAppGEDB.man XtAppGetErrorDatabase.man
2203 action XtAppGSTO.man XtAppGetSelectionTimeout.man
2204 action XtAppNEv.man XtAppNextEvent.man
2205 action XtNextEv.man XtNextEvent.man
2206 action XtBEMask.man XtBuildEventMask.man
2207 action XtCallAFoc.man XtCallAcceptFocus.man
2208 action XtCallCbks.man XtCallCallbacks.man
2209 action XtClass.man XtClass.man
2210 action XtConfWid.man XtConfigureWidget.man
2211 action XtConvert.man XtConvert.man
2212 action XtConvSt.man XtConvertAndStore.man
2213 action XtCreACon.man XtCreateApplicationContext.man
2214 action XtCrePSh.man XtCreatePopupShell.man
2215 action XtCreWid.man XtCreateWidget.man
2216 action XtCreWin.man XtCreateWindow.man
2217 action XtDisplay.man XtDisplay.man
2218 action XtDisplayI.man XtDisplayInitialize.man
2219 action XtGetGC.man XtGetGC.man
2220 action XtGetRList.man XtGetResourceList.man
2221 action XtGetSVal.man XtGetSelectionValue.man
2222 action XtGetSres.man XtGetSubresources.man
2223 action XtGetAres.man XtGetApplicationResources.man
2224 action XtMakGReq.man XtMakeGeometryRequest.man
2225 action XtMalloc.man XtMalloc.man
2226 action XtManChild.man XtManageChildren.man
2227 action XtMapWid.man XtMapWidget.man
2228 action XtNameTWid.man XtNameToWidget.man
2229 action XtOffset.man XtOffset.man
2230 action XtOwnSel.man XtOwnSelection.man
2231 action XtParATab.man XtParseAcceleratorTable.man
2232 action XtParTTab.man XtParseTranslationTable.man
2233 action XtPopdown.man XtPopdown.man
2234 action XtPopup.man XtPopup.man
2235 action XtQueryGeo.man XtQueryGeometry.man
2236 action XtRealize.man XtRealizeWidget.man
2237 action XtSetArg.man XtSetArg.man
2238 action XtSetKFoc.man XtSetKeyboardFocus.man
2239 action XtSetKTr.man XtSetKeyTranslator.man
2240 action XtSetSens.man XtSetSensitive.man
2241 action XtSetVal.man XtSetValues.man
2242 action XtStrCW.man XtStringConversionWarning.man
2243 action XtDStrCW.man XtDisplayStringConversionWarning.man
2244 action XtTransC.man XtTranslateCoords.man
2245 action XtKeysym.man XtGetKeysymTable.man
2246 action XtAppSTC.man XtAppSetTypeConverter.man
2247 action XtActHook.man XtAppAddActionHook.man
2248 action XtGetActL.man XtGetActionList.man
2249 action XtCallActP.man XtCallActionProc.man
2250 action XtRegGA.man XtRegisterGrabAction.man
2251 action XtClickT.man XtSetMultiClickTime.man
2252 action XtGetActK.man XtGetActionKeysym.man
2253 action XtExtEvDis.man XtInsertEventTypeHandler.man
2254 action XtGetKFoc.man XtGetKeyboardFocusWidget.man
2255 action XtLastProc.man XtLastEventProcessed.man
2256 action XtAppASig.man XtAppAddSignal.man
2257 action XtAddIn.man XtAddInput.man
2258 action XtBlockH.man XtAppAddBlockHook.man
2259 action XtGetClExt.man XtGetClassExtension.man
2260 action XtVaCrArgL.man XtVaCreateArgsList.man
2261 action XtParent.man XtParent.man
2262 action XtName.man XtName.man
2263 action XtCreASh.man XtCreateApplicationShell.man
2264 action XtSetLangP.man XtSetLanguageProc.man
2265 action XtAppInit.man XtAppInitialize.man
2266 action XtInit.man XtInitialize.man
2267 action XtAppSetFR.man XtAppSetFallbackResources.man
2268 action XtInitWC.man XtInitializeWidgetClass.man
2269 action XtDisACon.man XtDisplayToApplicationContext.man
2270 action XtSession.man XtSessionGetToken.man
2271 action XtErrM.man XtErrorMsg.man
2272 action XtErr.man XtError.man
2273 action XtGEDB.man XtGetErrorDatabase.man
2274 action XtAllocGC.man XtAllocateGC.man
2275 action XtAppRCR.man XtAppReleaseCacheRefs.man
2276 action XtSetWMC.man XtSetWMColormapWindows.man
2277 action XtFindF.man XtFindFile.man
2278 action XtResPath.man XtResolvePathname.man
2279 action XtGetSValI.man XtGetSelectionValueIncremental.man
2280 action XtGetSTO.man XtGetSelectionTimeout.man
2281 action XtGetSR.man XtGetSelectionRequest.man
2282 action XtSetSP.man XtSetSelectionParameters.man
2283 action XtGetSP.man XtGetSelectionParameters.man
2284 action XtCreateSR.man XtCreateSelectionRequest.man
2285 action XtResPA.man XtReservePropertyAtom.man
2286 action XtGrabKey.man XtGrabKey.man
2287 action XtGetANC.man XtGetApplicationNameAndClass.man
2288 action XtRegDraw.man XtRegisterDrawable.man
2289 action XtHookOD.man XtHooksOfDisplay.man
2290 action XtGetDisp.man XtGetDisplays.man
2291 action XtThreadI.man XtToolkitThreadInitialize.man
2292 action XtAppSEF.man XtAppSetExitFlag.man
2293 action XtAppLock.man XtAppLock.man
2294 action XtProcLock.man XtProcessLock.man
2295 action XtOpenApp.man XtOpenApplication.man
2298 symlink_lib_xmu() {
2299 src_dir lib/Xmu
2300 dst_dir lib/Xmu/include/X11/Xmu
2302 action Atoms.h
2303 action CharSet.h
2304 action CloseHook.h
2305 action Converters.h
2306 action CurUtil.h
2307 action CvtCache.h
2308 action DisplayQue.h
2309 action Drawing.h
2310 action Editres.h
2311 action EditresP.h
2312 action Error.h
2313 action ExtAgent.h
2314 action Initer.h
2315 action Lookup.h
2316 action Misc.h
2317 action StdCmap.h
2318 action StdSel.h
2319 action SysUtil.h
2320 action WhitePoint.h
2321 action WidgetNode.h
2322 action WinUtil.h
2323 action Xct.h
2324 action Xmu.h
2326 dst_dir lib/Xmu
2327 action README
2329 dst_dir lib/Xmu/src
2331 action AllCmap.c
2332 action Atoms.c
2333 action ClientWin.c
2334 action Clip.c
2335 action CloseHook.c
2336 action CmapAlloc.c
2337 action CrCmap.c
2338 action CrPixFBit.c
2339 action CursorName.c
2340 action CvtCache.c
2341 action CvtStdSel.c
2342 action DefErrMsg.c
2343 action DelCmap.c
2344 action DisplayQue.c
2345 action Distinct.c
2346 action DrawLogo.c
2347 action DrRndRect.c
2348 action EditresCom.c
2349 action ExtAgent.c
2350 action FToCback.c
2351 action GetHost.c
2352 action GrayPixmap.c
2353 action Initer.c
2354 action LocBitmap.c
2355 action Lookup.c
2356 action LookupCmap.c
2357 action Lower.c
2358 action RdBitF.c
2359 action ScrOfWin.c
2360 action ShapeWidg.c
2361 action sharedlib.c
2362 action StdCmap.c
2363 action StrToBmap.c
2364 action StrToBS.c
2365 action StrToCurs.c
2366 action StrToGrav.c
2367 action StrToJust.c
2368 action StrToLong.c
2369 action StrToOrnt.c
2370 action StrToShap.c
2371 action StrToWidg.c
2372 action UpdMapHint.c
2373 action VisCmap.c
2374 action WidgetNode.c
2375 action Xct.c
2378 symlink_lib_xp() {
2379 src_dir lib/Xp
2380 dst_dir lib/Xp/src
2382 action XpAttr.c
2383 action XpContext.c
2384 action XpDoc.c
2385 action XpExtUtil.c
2386 action XpExtVer.c
2387 action XpGetData.c
2388 action XpImageRes.c
2389 action XpInput.c
2390 action XpJob.c
2391 action XpLocale.c
2392 action XpNotifyPdm.c
2393 action XpPage.c
2394 action XpPageDim.c
2395 action XpPrinter.c
2396 action XpPutData.c
2397 action XpScreens.c
2399 action XpExtUtil.h
2401 # man pages
2402 src_dir doc/man/Xp
2403 dst_dir lib/Xp/man
2405 action libXp.man
2406 action XpCancelDoc.man
2407 action XpCancelJob.man
2408 action XpCancelPage.man
2409 action XpCreateContext.man
2410 action XpDestroyContext.man
2411 action XpEndDoc.man
2412 action XpEndJob.man
2413 action XpEndPage.man
2414 action XpFreePrinterList.man
2415 action XpGetAttributes.man
2416 action XpGetContext.man
2417 action XpGetDocumentData.man
2418 action XpGetImageResolution.man
2419 action XpGetLocaleHinter.man
2420 action XpGetOneAttribute.man
2421 action XpGetPageDimensions.man
2422 action XpGetPdmStartParams.man
2423 action XpGetPrinterList.man
2424 action XpGetScreenOfContext.man
2425 action XpInputSelected.man
2426 action XpPutDocumentData.man
2427 action XpQueryExtension.man
2428 action XpQueryScreens.man
2429 action XpQueryVersion.man
2430 action XpRehashPrinterList.man
2431 action XpSelectInput.man
2432 action XpSetAttributes.man
2433 action XpSetContext.man
2434 action XpSetImageResolution.man
2435 action XpSetLocaleHinter.man
2436 action XpStartDoc.man
2437 action XpStartJob.man
2438 action XpStartPage.man
2441 symlink_lib_xpm() {
2442 src_dir extras/Xpm
2443 dst_dir lib/Xpm
2445 action CHANGES
2446 action COPYRIGHT
2447 action FAQ.html
2448 action FILES
2449 action README.AMIGA
2450 action README.html
2451 action README.MSW
2453 src_dir extras/Xpm/doc
2455 action xpm.PS.gz
2457 src_dir extras/Xpm/lib
2460 # Library
2463 # Public header
2464 dst_dir lib/Xpm/include/X11
2466 action xpm.h
2468 # Source
2470 dst_dir lib/Xpm/src
2472 # headers
2473 action amigax.h
2474 action rgbtab.h
2475 action simx.h
2476 action XpmI.h
2478 action amigax.c
2479 action Attrib.c
2480 action CrBufFrI.c
2481 action CrBufFrP.c
2482 action CrDatFrI.c
2483 action CrDatFrP.c
2484 action create.c
2485 action CrIFrBuf.c
2486 action CrIFrDat.c
2487 action CrIFrP.c
2488 action CrPFrBuf.c
2489 action CrPFrDat.c
2490 action CrPFrI.c
2491 action data.c
2492 action hashtab.c
2493 action Image.c
2494 action Info.c
2495 action misc.c
2496 action parse.c
2497 action RdFToBuf.c
2498 action RdFToDat.c
2499 action RdFToI.c
2500 action RdFToP.c
2501 action rgb.c
2502 action scan.c
2503 action simx.c
2504 action WrFFrBuf.c
2505 action WrFFrDat.c
2506 action WrFFrI.c
2507 action WrFFrP.c
2510 # Apps
2512 src_dir extras/Xpm/cxpm
2513 dst_dir lib/Xpm/cxpm
2515 action cxpm.c
2516 action cxpm.man
2518 src_dir extras/Xpm/sxpm
2519 dst_dir lib/Xpm/sxpm
2521 action sxpm.c
2522 action sxpm.man
2523 action plaid_ext.xpm
2524 action plaid_mask.xpm
2525 action plaid.xpm
2528 symlink_lib_xrender() {
2529 src_dir lib/Xrender
2530 dst_dir lib/Xrender/src
2532 action AddTrap.c
2533 action Color.c
2534 action Composite.c
2535 action Cursor.c
2536 action FillRect.c
2537 action FillRects.c
2538 action Filter.c
2539 action Glyph.c
2540 action Picture.c
2541 action Poly.c
2542 action Trap.c
2543 action Tri.c
2544 action Xrender.c
2546 action Xrenderint.h
2548 dst_dir lib/Xrender/include/X11/extensions
2550 action Xrender.h
2553 symlink_lib_xi() {
2554 src_dir lib/Xi
2555 dst_dir lib/Xi/src
2557 action XIint.h
2558 action XAllowDv.c
2559 action XChgDCtl.c
2560 action XChgFCtl.c
2561 action XChgKMap.c
2562 action XChgKbd.c
2563 action XChgPnt.c
2564 action XChgProp.c
2565 action XCloseDev.c
2566 action XDevBell.c
2567 action XExtInt.c
2568 action XExtToWire.c
2569 action XFreeLst.c
2570 action XGMotion.c
2571 action XGetBMap.c
2572 action XGetDCtl.c
2573 action XGetFCtl.c
2574 action XGetKMap.c
2575 action XGetMMap.c
2576 action XGetProp.c
2577 action XGetVers.c
2578 action XGrDvBut.c
2579 action XGrDvKey.c
2580 action XGrabDev.c
2581 action XGtFocus.c
2582 action XGtSelect.c
2583 action XListDev.c
2584 action XOpenDev.c
2585 action XQueryDv.c
2586 action XSelect.c
2587 action XSetBMap.c
2588 action XSetDVal.c
2589 action XSetMMap.c
2590 action XSetMode.c
2591 action XSndExEv.c
2592 action XStFocus.c
2593 action XUngrDev.c
2594 action XUngrDvB.c
2595 action XUngrDvK.c
2597 src_dir doc/man/Xi
2598 dst_dir lib/Xi/man
2600 action XAllDvEv.man XAllowDeviceEvents.man
2601 action XChDCtl.man XGetDeviceControl.man
2602 action XChFCtl.man XGetFeedbackControl.man
2603 action XChKMap.man XGetDeviceKeyMapping.man
2604 action XChMMap.man XGetDeviceModifierMapping.man
2605 action XChProp.man XChangeDeviceDontPropagateList.man
2606 action XChgKbd.man XChangeKeyboardDevice.man
2607 action XChgPtr.man XChangePointerDevice.man
2608 action XDevBell.man XDeviceBell.man
2609 action XGetDvMo.man XGetDeviceMotionEvents.man
2610 action XGetExtV.man XGetExtensionVersion.man
2611 action XGrDvBut.man XGrabDeviceButton.man
2612 action XGrDvKey.man XGrabDeviceKey.man
2613 action XGrabDev.man XGrabDevice.man
2614 action XListDev.man XListInputDevices.man
2615 action XOpenDev.man XOpenDevice.man
2616 action XQueryDv.man XQueryDeviceState.man
2617 action XSExEvnt.man XSendExtensionEvent.man
2618 action XSeBMap.man XSetDeviceButtonMapping.man
2619 action XSeDvFoc.man XSetDeviceFocus.man
2620 action XSelExtEv.man XSelectExtensionEvent.man
2621 action XSetDVal.man XSetDeviceValuators.man
2622 action XSetMode.man XSetDeviceMode.man
2626 symlink_lib_xfont() {
2627 src_dir lib/font/FreeType
2628 dst_dir lib/Xfont/src/FreeType
2630 action ft.h
2631 action ftenc.c
2632 action ftfuncs.c
2633 action ftfuncs.h
2634 action ftsystem.c
2635 action fttools.c
2636 action xttcap.c
2637 action xttcap.h
2639 src_dir lib/font/bitmap
2640 dst_dir lib/Xfont/src/bitmap
2642 action bdfread.c
2643 action bdfutils.c
2644 action bitmap.c
2645 action bitmapfunc.c
2646 action bitmaputil.c
2647 action bitscale.c
2648 action fontink.c
2649 action pcfread.c
2650 action pcfwrite.c
2651 action snfread.c
2652 action snfstr.h
2654 src_dir lib/font/bitmap
2655 dst_dir lib/Xfont/include/X11/fonts
2657 action bdfint.h
2658 action pcf.h
2660 src_dir lib/font/builtins
2661 dst_dir lib/Xfont/src/builtins
2663 action buildfont
2664 action builtin.h
2665 action dir.c
2666 action file.c
2667 action fonts.c
2668 action fpe.c
2669 action render.c
2671 src_dir lib/font/fc
2672 dst_dir lib/Xfont/src/fc
2674 action fsconvert.c
2675 action fserve.c
2676 action fserve.h
2677 action fservestr.h
2678 action fsio.c
2679 action fsio.h
2680 action fslibos.h
2682 src_dir lib/font/fontcache
2683 dst_dir lib/Xfont/src/fontcache
2685 action fcqueue.h
2686 action fontcache.c
2687 action fontcache.h
2689 src_dir lib/font/fontfile
2690 dst_dir lib/Xfont/src/fontfile
2692 action bitsource.c
2693 action bufio.c
2694 action decompress.c
2695 action defaults.c
2696 action dirfile.c
2697 action ffcheck.c
2698 action fileio.c
2699 action filewr.c
2700 action fontdir.c
2701 action fontencc.c
2702 action fontfile.c
2703 action fontscale.c
2704 action gunzip.c
2705 action printerfont.c
2706 action register.c
2707 action renderers.c
2709 src_dir lib/font/include
2710 dst_dir lib/Xfont/include/X11/fonts
2712 action bitmap.h
2713 action bufio.h
2714 action fntfil.h
2715 action fntfilio.h
2716 action fntfilst.h
2717 action fontencc.h
2718 action fontmisc.h
2719 action fontmod.h
2720 action fontshow.h
2721 action fontutil.h
2722 action fontxlfd.h
2724 src_dir lib/font/stubs
2725 dst_dir lib/Xfont/src/stubs
2727 action cauthgen.c
2728 action csignal.c
2729 action delfntcid.c
2730 action errorf.c
2731 action fatalerror.c
2732 action findoldfnt.c
2733 action getcres.c
2734 action getdefptsize.c
2735 action getnewfntcid.c
2736 action gettime.c
2737 action initfshdl.c
2738 action regfpefunc.c
2739 action rmfshdl.c
2740 action servclient.c
2741 action setfntauth.c
2742 action stfntcfnt.c
2743 action stubs.h
2744 action xpstubs.c
2746 src_dir lib/font/util
2747 dst_dir lib/Xfont/src/util
2749 action atom.c
2750 action fontaccel.c
2751 action fontnames.c
2752 action fontutil.c
2753 action fontxlfd.c
2754 action format.c
2755 action miscutil.c
2756 action patcache.c
2757 action private.c
2758 action utilbitmap.c
2760 src_dir lib/font/Speedo
2761 dst_dir lib/Xfont/src/Speedo
2763 action adobe-iso.h
2764 action bics-iso.h
2765 action bics-unicode.c
2766 action bics-unicode.h
2767 action do_char.c
2768 action do_trns.c
2769 action keys.h
2770 action out_bl2d.c
2771 action out_blk.c
2772 action out_outl.c
2773 action out_scrn.c
2774 action out_util.c
2775 action reset.c
2776 action set_spcs.c
2777 action set_trns.c
2778 action spdo_prv.h
2779 action speedo.h
2780 action spencode.c
2781 action sperr.c
2782 action spfile.c
2783 action spfont.c
2784 action spfuncs.c
2785 action spglyph.c
2786 action spinfo.c
2787 action spint.h
2788 action useropt.h
2790 src_dir lib/font/Type1
2791 dst_dir lib/Xfont/src/Type1
2793 action afm.c
2794 action AFM.h
2795 action arith.c
2796 action arith.h
2797 action blues.h
2798 action cidchar.c
2799 action cluts.h
2800 action curves.c
2801 action curves.h
2802 action digit.h
2803 action fontfcn.c
2804 action fontfcn.h
2805 action fonts.h
2806 action hdigit.h
2807 action hints.c
2808 action hints.h
2809 action lines.c
2810 action lines.h
2811 action objects.c
2812 action objects.h
2813 action paths.c
2814 action paths.h
2815 action pictures.h
2816 action range.h
2817 action regions.c
2818 action regions.h
2819 action scanfont.c
2820 action spaces.c
2821 action spaces.h
2822 action strokes.h
2823 action t1funcs.c
2824 action t1hdigit.h
2825 action t1imager.h
2826 action t1info.c
2827 action t1intf.h
2828 action t1io.c
2829 action t1malloc.c
2830 action t1snap.c
2831 action t1stdio.h
2832 action t1stub.c
2833 action t1unicode.c
2834 action t1unicode.h
2835 action token.c
2836 action token.h
2837 action tokst.h
2838 action trig.h
2839 action type1.c
2840 action util.c
2841 action util.h
2844 symlink_lib_fontenc() {
2845 src_dir lib/font/fontfile
2846 dst_dir lib/fontenc/src
2848 action fontenc.c
2849 action encparse.c
2850 action fontencI.h
2852 src_dir lib/font/include
2853 dst_dir lib/fontenc/include/X11/fonts
2855 action fontenc.h
2858 symlink_lib_xaw() {
2859 src_dir lib/Xaw
2861 dst_dir lib/Xaw/old-doc
2863 action CHANGES
2864 action Changelog
2866 dst_dir lib/Xaw/src
2868 action Actions.c
2869 action AllWidgets.c
2870 action AsciiSink.c
2871 action AsciiSrc.c
2872 action AsciiText.c
2873 action Box.c
2874 action Command.c
2875 action Converters.c
2876 action Dialog.c
2877 action DisplayList.c
2878 action Form.c
2879 action Grip.c
2880 action Label.c
2881 action List.c
2882 action MenuButton.c
2883 action MultiSink.c
2884 action MultiSrc.c
2885 action OS.c
2886 action Paned.c
2887 action Panner.c
2888 action Pixmap.c
2889 action Porthole.c
2890 action PrintShell.c
2891 action Repeater.c
2892 action Scrollbar.c
2893 action sharedlib.c
2894 action Simple.c
2895 action SimpleMenu.c
2896 action SmeBSB.c
2897 action Sme.c
2898 action SmeLine.c
2899 action StripChart.c
2900 action TextAction.c
2901 action Text.c
2902 action TextPop.c
2903 action TextSink.c
2904 action TextSrc.c
2905 action TextTr.c
2906 action Tip.c
2907 action Toggle.c
2908 action Tree.c
2909 action Vendor.c
2910 action Viewport.c
2911 action XawI18n.c
2912 action XawIm.c
2913 action XawInit.c
2915 action Private.h
2916 action XawI18n.h
2918 dst_dir lib/Xaw/include/X11/Xaw
2920 action AllWidgets.h
2921 action AsciiSink.h
2922 action AsciiSinkP.h
2923 action AsciiSrc.h
2924 action AsciiSrcP.h
2925 action AsciiText.h
2926 action AsciiTextP.h
2927 action Box.h
2928 action BoxP.h
2929 action Cardinals.h
2930 action Command.h
2931 action CommandP.h
2932 action Dialog.h
2933 action DialogP.h
2934 action Form.h
2935 action FormP.h
2936 action Grip.h
2937 action GripP.h
2938 action Label.h
2939 action LabelP.h
2940 action List.h
2941 action ListP.h
2942 action MenuButton.h
2943 action MenuButtoP.h
2944 action MultiSink.h
2945 action MultiSinkP.h
2946 action MultiSrc.h
2947 action MultiSrcP.h
2948 action Paned.h
2949 action PanedP.h
2950 action Panner.h
2951 action PannerP.h
2952 action Porthole.h
2953 action PortholeP.h
2954 action Print.h
2955 action PrintSP.h
2956 action Repeater.h
2957 action RepeaterP.h
2958 action Reports.h
2959 action Scrollbar.h
2960 action ScrollbarP.h
2961 action Simple.h
2962 action SimpleMenP.h
2963 action SimpleMenu.h
2964 action SimpleP.h
2965 action SmeBSB.h
2966 action SmeBSBP.h
2967 action Sme.h
2968 action SmeLine.h
2969 action SmeLineP.h
2970 action SmeP.h
2971 action StripCharP.h
2972 action StripChart.h
2973 action Template.c
2974 action Template.h
2975 action TemplateP.h
2976 action Text.h
2977 action TextP.h
2978 action TextSink.h
2979 action TextSinkP.h
2980 action TextSrc.h
2981 action TextSrcP.h
2982 action Tip.h
2983 action TipP.h
2984 action Toggle.h
2985 action ToggleP.h
2986 action Tree.h
2987 action TreeP.h
2988 action VendorEP.h
2989 action Viewport.h
2990 action ViewportP.h
2991 action XawImP.h
2992 action XawInit.h
2994 dst_dir lib/Xaw/man
2996 action Xaw.man
2999 symlink_lib_fs() {
3000 src_dir lib/FS
3001 dst_dir lib/FS/src
3003 action FSCloseFt.c
3004 action FSClServ.c
3005 action FSConnServ.c
3006 action FSErrDis.c
3007 action FSErrHndlr.c
3008 action FSFlush.c
3009 action FSFontInfo.c
3010 action FSFtNames.c
3011 action FSGetCats.c
3012 action FSlibInt.c
3013 action FSListCats.c
3014 action FSListExt.c
3015 action FSMisc.c
3016 action FSNextEv.c
3017 action FSOpenFont.c
3018 action FSOpenServ.c
3019 action FSQGlyphs.c
3020 action FSQuExt.c
3021 action FSQXExt.c
3022 action FSQXInfo.c
3023 action FSServName.c
3024 action FSSetCats.c
3025 action FSSync.c
3026 action FSSynchro.c
3028 action FSlibint.h
3029 action FSlibos.h
3031 dst_dir lib/FS/include/X11/fonts
3033 action FSlib.h
3036 symlink_lib_xres() {
3037 src_dir lib/XRes
3038 dst_dir lib/XRes/src
3040 action XRes.c
3042 src_dir include/extensions
3043 dst_dir lib/XRes/include/X11/extensions
3045 action XRes.h
3047 src_dir lib/XRes
3048 dst_dir lib/XRes/man
3050 action XRes.man
3053 symlink_lib_randr()
3055 src_dir lib/Xrandr
3056 dst_dir lib/Xrandr/src
3058 action Xrandrint.h
3059 action Xrandr.c
3061 dst_dir lib/Xrandr/include/X11/extensions
3063 action Xrandr.h
3065 dst_dir lib/Xrandr/man
3067 action Xrandr.man
3070 symlink_lib_windowswm() {
3071 src_dir lib/windows
3072 dst_dir lib/WindowsWM/src
3074 action windowswm.c
3076 dst_dir lib/WindowsWM/man
3078 action WindowsWM.man WindowsWM.3
3081 symlink_lib_xcursor()
3083 src_dir lib/Xcursor
3085 dst_dir lib/Xcursor/include/X11/Xcursor
3087 action Xcursor.h
3089 dst_dir lib/Xcursor/src
3091 action xcursorint.h
3092 action cursor.c
3093 action display.c
3094 action file.c
3095 action library.c
3096 action xlib.c
3098 dst_dir lib/Xcursor/man
3100 action Xcursor.man
3103 symlink_lib_xtrap()
3105 src_dir lib/XTrap
3106 dst_dir lib/XTrap/src
3108 action XECallBcks.c
3109 action XEConTxt.c
3110 action XEDsptch.c
3111 action XEPrInfo.c
3112 action XERqsts.c
3113 action XEStrMap.c
3114 action XETrapInit.c
3115 action XEWrappers.c
3118 symlink_lib_xfontcache()
3120 src_dir lib/Xfontcache
3121 dst_dir lib/Xfontcache/src
3123 action FontCache.c
3125 dst_dir lib/Xfontcache/man
3127 action Xfontcache.man
3130 symlink_lib_xinerama()
3132 src_dir lib/Xinerama
3133 dst_dir lib/Xinerama/src
3135 action Xinerama.c
3138 symlink_lib_xprint_util()
3140 src_dir lib/XprintUtil
3141 dst_dir lib/XprintUtil/src
3143 action xprintutil.c
3144 action xprintutil_printtofile.c
3146 dst_dir lib/XprintUtil/include/X11/XprintUtil
3148 action xprintutil.h
3151 symlink_lib_xprint_app_util()
3153 src_dir lib/XprintAppUtil
3154 dst_dir lib/XprintAppUtil/src
3156 action xpapputil.c
3158 dst_dir lib/XprintAppUtil/include/X11/XprintAppUtil
3160 action xpapputil.h
3163 symlink_lib_xss()
3165 src_dir lib/Xss
3166 dst_dir lib/XScrnSaver/src
3168 action XScrnSaver.c
3170 dst_dir lib/XScrnSaver/man
3172 action Xss.man
3175 symlink_lib_xxf86dga() {
3176 src_dir lib/Xxf86dga
3177 dst_dir lib/Xxf86dga/src
3179 action XF86DGA.c
3180 action XF86DGA2.c
3182 dst_dir lib/Xxf86dga/man
3184 action XDGA.man
3187 symlink_lib_xxf86misc() {
3188 src_dir lib/Xxf86misc
3189 dst_dir lib/Xxf86misc/src
3191 action XF86Misc.c
3193 dst_dir lib/Xxf86misc/man
3195 action XF86Misc.man
3198 symlink_lib_xxf86vm() {
3199 src_dir lib/Xxf86vm
3200 dst_dir lib/Xxf86vm/src
3202 action XF86VMode.c
3204 dst_dir lib/Xxf86vm/man
3206 action XF86VM.man
3209 symlink_lib_xtst() {
3210 src_dir lib/Xtst
3211 dst_dir lib/Xtst/src
3213 action XRecord.c
3214 action XTest.c
3217 symlink_lib_xv() {
3218 src_dir lib/Xv
3219 dst_dir lib/Xv/src
3221 action Xv.c
3222 action Xvlibint.h
3224 src_dir include/extensions
3225 dst_dir lib/Xv/include/X11/extensions
3227 action Xvlib.h
3229 src_dir doc/man/Xv
3230 dst_dir lib/Xv/man
3232 action XvFreeAdaptorInfo.man
3233 action XvFreeEncodingInfo.man
3234 action XvGetPortAttribute.man
3235 action XvGetStill.man
3236 action XvGetVideo.man
3237 action XvGrabPort.man
3238 action Xv.man
3239 action XvPortNotify.man
3240 action XvPutStill.man
3241 action XvPutVideo.man
3242 action XvQueryAdaptors.man
3243 action XvQueryBestSize.man
3244 action XvQueryEncodings.man
3245 action XvQueryExtension.man
3246 action XvSelectPortNotify.man
3247 action XvSelectVideoNotify.man
3248 action XvSetPortAttribute.man
3249 action XvStopVideo.man
3250 action XvUngrabPort.man
3251 action XvVideoNotify.man
3254 symlink_lib_xvmc() {
3255 src_dir lib/XvMC
3256 dst_dir lib/XvMC/src
3258 action XvMC.c
3259 action XvMClibint.h
3261 src_dir lib/XvMC/wrapper
3263 action XvMCWrapper.c
3265 src_dir include/extensions
3266 dst_dir lib/XvMC/include/X11/extensions
3268 action XvMClib.h
3271 symlink_lib_xxf86rush() {
3272 src_dir lib/Xxf86rush
3273 dst_dir lib/Xxf86rush/src
3275 action XF86Rush.c
3278 symlink_lib_xkbfile() {
3279 src_dir lib/xkbfile
3280 dst_dir lib/xkbfile/src
3282 action cout.c
3283 action maprules.c
3284 action srvmisc.c
3285 action xkbatom.c
3286 action xkbbells.c
3287 action xkbconfig.c
3288 action xkbdraw.c
3289 action xkberrs.c
3290 action xkbmisc.c
3291 action xkbout.c
3292 action xkbtext.c
3293 action xkmout.c
3294 action xkmread.c
3295 action XKBfileInt.h
3296 action magic
3298 dst_dir lib/xkbfile/include/X11/extensions
3300 action XKBbells.h
3301 action XKBconfig.h
3302 action XKBfile.h
3303 action XKBrules.h
3304 action XKMformat.h
3305 action XKM.h
3308 symlink_lib_xkbui() {
3309 src_dir lib/xkbui
3310 dst_dir lib/xkbui/src
3312 action XKBui.c
3313 action XKBuiPriv.h
3315 dst_dir lib/xkbui/include/X11/extensions
3317 action XKBui.h
3320 symlink_lib_oldx() {
3321 src_dir lib/oldX
3322 dst_dir lib/oldX/src
3324 action XCrAssoc.c
3325 action XDelAssoc.c
3326 action XDestAssoc.c
3327 action XDraw.c
3328 action XLookAssoc.c
3329 action XMakeAssoc.c
3331 dst_dir lib/oldX/include/X11
3333 action X10.h
3337 symlink_lib_lbxutil() {
3338 src_dir lib/lbxutil/image
3339 dst_dir lib/lbxutil/src/image
3341 action dfaxg42d.c
3342 action dpackbits.c
3343 action efaxg42d.c
3344 action epackbits.c
3345 action lbxbwcodes.h
3346 action lbxfax.h
3347 action misc.c
3348 action mkg3states.c
3350 src_dir lib/lbxutil/delta
3351 dst_dir lib/lbxutil/src/delta
3353 action lbxdelta.c
3355 src_dir lib/lbxutil/lbx_zlib
3356 dst_dir lib/lbxutil/src/lbx_zlib
3358 action lbx_zlib.c
3359 action lbx_zlib.h
3360 action lbx_zlib_io.c
3361 action reqstats.c
3362 action reqstats.h
3365 symlink_lib_xft() {
3366 src_dir lib/Xft
3367 dst_dir lib/Xft
3369 action NEWS
3370 action README
3371 action AUTHORS
3372 action ChangeLog
3373 action COPYING
3374 action INSTALL
3376 action xft.pc.in
3377 action xft-config.in
3379 dst_dir lib/Xft/man
3381 action Xft.3.in
3382 action xft-config.1.in
3384 dst_dir lib/Xft/include/X11/Xft
3386 action Xft.h
3387 action XftCompat.h
3389 dst_dir lib/Xft/src
3391 action xftcolor.c
3392 action xftcore.c
3393 action xftdbg.c
3394 action xftdpy.c
3395 action xftdraw.c
3396 action xftextent.c
3397 action xftfont.c
3398 action xftfreetype.c
3399 action xftglyphs.c
3400 action xftinit.c
3401 action xftint.h
3402 action xftlist.c
3403 action xftname.c
3404 action xftrender.c
3405 action xftstr.c
3406 action xftswap.c
3407 action xftxlfd.c
3410 symlink_lib() {
3411 symlink_lib_xft
3412 symlink_lib_applewm
3413 symlink_lib_windowswm
3414 symlink_lib_dmx
3415 symlink_lib_composite
3416 symlink_lib_damage
3417 symlink_lib_evie
3418 symlink_lib_fixes
3419 symlink_lib_xau
3420 symlink_lib_xtrans
3421 symlink_lib_xdmcp
3422 symlink_lib_x11
3423 symlink_lib_ice
3424 symlink_lib_sm
3425 symlink_lib_xt
3426 symlink_lib_xext
3427 symlink_lib_xmu
3428 symlink_lib_xp
3429 symlink_lib_xpm
3430 symlink_lib_fontenc
3431 symlink_lib_xfont
3432 symlink_lib_xrender
3433 symlink_lib_xi
3434 symlink_lib_xaw
3435 symlink_lib_fs
3436 symlink_lib_xres
3437 symlink_lib_randr
3438 symlink_lib_xcursor
3439 symlink_lib_xtrap
3440 symlink_lib_xfontcache
3441 symlink_lib_xinerama
3442 symlink_lib_xprint_util
3443 symlink_lib_xprint_app_util
3444 symlink_lib_xss
3445 symlink_lib_xxf86dga
3446 symlink_lib_xxf86misc
3447 symlink_lib_xxf86vm
3448 symlink_lib_xtst
3449 symlink_lib_xv
3450 symlink_lib_xxf86rush
3451 symlink_lib_xkbfile
3452 symlink_lib_xkbui
3453 symlink_lib_oldx
3454 symlink_lib_xvmc
3455 symlink_lib_lbxutil
3458 #########
3460 # The app module
3462 #########
3464 symlink_app_twm() {
3465 src_dir programs/twm
3466 dst_dir app/twm/src
3468 action add_window.c
3469 action add_window.h
3470 action cursor.c
3471 action deftwmrc.sed
3472 action events.c
3473 action events.h
3474 action gc.c
3475 action gc.h
3476 action gram.y
3477 action iconmgr.c
3478 action iconmgr.h
3479 action icons.c
3480 action icons.h
3481 action lex.l
3482 action list.c
3483 action list.h
3484 action menus.c
3485 action menus.h
3486 action parse.c
3487 action parse.h
3488 action resize.c
3489 action resize.h
3490 action screen.h
3491 action session.c
3492 action session.h
3493 action siconify.bm
3494 action system.twmrc
3495 action twm.c
3496 action twm.h
3497 action util.c
3498 action util.h
3499 action version.c
3500 action version.h
3502 dst_dir app/twm/man
3504 action twm.man
3506 src_dir programs/twm/sample-twmrc
3507 dst_dir app/twm/sample-twmrc
3509 action jim.twmrc
3510 action keith.twmrc
3511 action lemke.twmrc
3514 symlink_app_xdpyinfo() {
3515 src_dir programs/xdpyinfo
3516 dst_dir app/xdpyinfo
3518 action xdpyinfo.c
3519 action xdpyinfo.man
3522 symlink_app_xhost() {
3523 src_dir programs/xhost
3524 dst_dir app/xhost
3526 action xhost.c
3527 action xhost.man
3530 symlink_app_appres() {
3531 src_dir programs/appres
3532 dst_dir app/appres
3534 action appres.c
3536 action appres.man
3540 symlink_app_bdftopcf() {
3541 src_dir programs/bdftopcf
3542 dst_dir app/bdftopcf
3544 action bdftopcf.c
3546 action bdftopcf.man
3550 symlink_app_beforelight() {
3551 src_dir programs/beforelight
3552 dst_dir app/beforelight
3554 action B4light.ad Beforelight.ad
3556 action b4light.c
3558 action b4light.man beforelight.man
3562 symlink_app_bitmap() {
3563 src_dir programs/bitmap
3564 dst_dir app/bitmap
3566 action Bitmap.ad
3567 action Bitmap-co.ad Bitmap-color.ad
3568 action Bitmap-nocase.ad
3570 action atobm.c
3571 action BitEdit.c
3572 action Bitmap.c
3573 action bmtoa.c
3574 action CutPaste.c
3575 action Dialog.c
3576 action Graphics.c
3577 action Handlers.c
3578 action ReqMach.c
3580 action Bitmap.h
3581 action BitmapP.h
3582 action Dialog.h
3583 action Requests.h
3585 action bitmap.man
3587 action Dashes
3588 action Down
3589 action Excl
3590 action FlipHoriz
3591 action FlipVert
3592 action Fold
3593 action Left
3594 action Right
3595 action RotateLeft
3596 action RotateRight
3597 action Stipple
3598 action Term
3599 action Up
3601 action bitmap.icon
3604 symlink_app_editres() {
3605 src_dir programs/editres
3606 dst_dir app/editres
3608 action Edit-col.ad Editres-color.ad
3609 action Editres.ad
3611 action actions.c
3612 action comm.c
3613 action editres.c
3614 action geometry.c
3615 action handler.c
3616 action setvalues.c
3617 action svpopup.c
3618 action utils.c
3619 action widgets.c
3620 action wtree.c
3622 action README
3624 action editresP.h
3626 action editres.man
3630 symlink_app_fonttosfnt() {
3631 src_dir programs/fonttosfnt
3632 dst_dir app/fonttosfnt
3634 action env.c
3635 action fonttosfnt.c
3636 action read.c
3637 action struct.c
3638 action util.c
3639 action write.c
3641 action fonttosfnt.h
3643 action fonttosfnt.man
3647 symlink_app_fslsfonts() {
3648 src_dir programs/fslsfonts
3649 dst_dir app/fslsfonts
3651 action fslsfonts.c
3653 action fslsfonts.man
3657 symlink_app_fstobdf() {
3658 src_dir programs/fstobdf
3659 dst_dir app/fstobdf
3661 action chars.c
3662 action fstobdf.c
3663 action header.c
3664 action props.c
3666 action fstobdf.h
3668 action fstobdf.man
3672 symlink_app_iceauth() {
3673 src_dir programs/iceauth
3674 dst_dir app/iceauth
3676 action iceauth.c
3677 action process.c
3679 action iceauth.h
3681 action iceauth.man
3685 symlink_app_ico() {
3686 src_dir programs/ico
3687 dst_dir app/ico
3689 action ico.c
3691 action allobjs.h
3692 action objcube.h
3693 action objico.h
3694 action objocta.h
3695 action objplane.h
3696 action objpyr.h
3697 action polyinfo.h
3699 action ico.man
3703 symlink_app_listres() {
3704 src_dir programs/listres
3705 dst_dir app/listres
3707 action listres.c
3709 action listres.man
3713 symlink_app_luit() {
3714 src_dir programs/luit
3715 dst_dir app/luit
3717 action charset.c
3718 action iso2022.c
3719 action locale.c
3720 action luit.c
3721 action other.c
3722 action parser.c
3723 action sys.c
3725 action charset.h
3726 action iso2022.h
3727 action luit.h
3728 action other.h
3729 action parser.h
3730 action sys.h
3732 action luit.man
3736 symlink_app_mkcfm() {
3737 src_dir programs/mkcfm
3738 dst_dir app/mkcfm
3740 action mkcfm.c
3741 action mkcfm.man
3744 symlink_app_makepsres() {
3745 src_dir programs/makepsres
3746 dst_dir app/makepsres
3748 action makepsres.c
3750 action makepsres.man
3754 symlink_app_mkfontdir() {
3755 src_dir programs/mkfontdir
3756 dst_dir app/mkfontdir
3758 action mkfontdir.cpp
3760 action mkfontdir.man
3764 symlink_app_mkfontscale() {
3765 src_dir programs/mkfontscale
3766 dst_dir app/mkfontscale
3768 action hash.c
3769 action ident.c
3770 action list.c
3771 action mkfontscale.c
3773 action data.h
3774 action hash.h
3775 action ident.h
3776 action list.h
3778 action mkfontscale.man
3782 symlink_app_oclock() {
3783 src_dir programs/oclock
3784 dst_dir app/oclock
3786 action Clock-col.ad Clock-color.ad
3788 action Clock.c
3789 action oclock.c
3790 action transform.c
3792 action Clock.h
3793 action ClockP.h
3794 action transform.h
3796 action oclock.man
3798 action oclock.bit
3799 action oclmask.bit
3802 symlink_app_pclcomp() {
3803 src_dir programs/pclcomp
3804 dst_dir app/pclcomp
3806 action pclcomp.c
3808 action README
3809 action printer.note
3811 action pclcomp.man
3815 symlink_app_proxymngr() {
3816 src_dir programs/proxymngr
3817 dst_dir app/proxymngr
3819 action config.c
3820 action main.c
3821 action pmdb.c
3823 action config.h
3824 action pmdb.h
3825 action pmint.h
3827 action proxymngr.man
3829 action pmconfig.cpp
3832 symlink_app_rgb() {
3833 src_dir programs/rgb
3834 dst_dir app/rgb
3836 action rgb.c
3837 action showrgb.c
3838 action showrgb.man
3839 action rgb.txt
3841 src_dir programs/rgb/others
3842 dst_dir app/rgb/others
3844 action old-rgb.txt
3845 action raveling.txt
3846 action README
3847 action thomas.txt
3851 symlink_app_setxkbmap() {
3852 src_dir programs/setxkbmap
3853 dst_dir app/setxkbmap
3855 action setxkbmap.c
3857 action setxkbmap.man
3860 symlink_app_showfont() {
3861 src_dir programs/showfont
3862 dst_dir app/showfont
3864 action showfont.c
3866 action showfont.man
3869 symlink_app_smproxy() {
3870 src_dir programs/smproxy
3871 dst_dir app/smproxy
3873 action save.c
3874 action smproxy.c
3876 action smproxy.h
3878 action smproxy.man
3881 symlink_app_viewres() {
3882 src_dir programs/viewres
3883 dst_dir app/viewres
3885 action Viewres.ad
3887 action viewres.c
3889 action viewres.man
3892 symlink_app_x11perf() {
3893 src_dir programs/x11perf
3894 dst_dir app/x11perf
3896 action bitmaps.c
3897 action do_arcs.c
3898 action do_blt.c
3899 action do_complex.c
3900 action do_dots.c
3901 action do_lines.c
3902 action do_movewin.c
3903 action do_rects.c
3904 action do_segs.c
3905 action do_simple.c
3906 action do_tests.c
3907 action do_text.c
3908 action do_traps.c
3909 action do_tris.c
3910 action do_valgc.c
3911 action do_windows.c
3912 action x11perf.c
3914 action bitmaps.h
3915 action x11perf.h
3917 action x11pcomp.man x11perfcomp.man
3918 action x11perf.man
3919 action Xmark.man
3921 action fillblnk.sh fillblnk
3922 action perfboth.sh perfboth
3923 action perfratio.sh perfratio
3924 action Xmark.sh Xmark
3926 action x11pcomp.cpp
3929 symlink_app_xauth() {
3930 src_dir programs/xauth
3931 dst_dir app/xauth
3933 action gethost.c
3934 action parsedpy.c
3935 action process.c
3936 action xauth.c
3938 action xauth.h
3940 action xauth.man
3943 symlink_app_xbiff() {
3944 src_dir programs/xbiff
3945 dst_dir app/xbiff
3947 action Mailbox.c
3948 action xbiff.c
3950 action Mailbox.h
3951 action MailboxP.h
3953 action xbiff.man
3955 src_dir programs/xbiff/bitmaps
3956 dst_dir app/xbiff/bitmaps
3958 action mail-down
3959 action mail-down-mask
3960 action mail-up
3961 action mail-up-mask
3964 symlink_app_xcalc() {
3965 src_dir programs/xcalc
3966 dst_dir app/xcalc
3968 action XCalc.ad
3969 action XCalc-col.ad XCalc-color.ad
3971 action actions.c
3972 action math.c
3973 action xcalc.c
3975 action actions.h
3976 action xcalc.h
3978 action xcalc.man
3982 symlink_app_xclipboard() {
3983 src_dir programs/xclipboard
3984 dst_dir app/xclipboard
3986 action XClipboard.ad
3988 action xclipboard.c
3989 action xcutsel.c
3991 action xclipboard.man
3992 action xcutsel.man
3996 symlink_app_xclock() {
3997 src_dir programs/xclock
3998 dst_dir app/xclock
4000 action XClk-col.ad XClock-color.ad
4001 action XClock.ad
4003 action Clock.c
4004 action xclock.c
4006 action Clock.h
4007 action ClockP.h
4009 action xclock.man
4011 action clmask.bit
4012 action clock.bit
4016 symlink_app_xcmsdb() {
4017 src_dir programs/xcmsdb
4018 dst_dir app/xcmsdb
4020 action loadData.c
4021 action xcmsdb.c
4023 action SCCDFile.h
4025 action xcmsdb.man
4027 src_dir programs/xcmsdb/datafiles
4028 dst_dir app/xcmsdb/datafiles
4030 action sample1.dcc
4031 action sample2.dcc
4034 symlink_app_xconsole() {
4035 src_dir programs/xconsole
4036 dst_dir app/xconsole
4038 action XConsole.ad
4040 action xconsole.c
4042 action xconsole.man
4046 symlink_app_xcursorgen() {
4047 src_dir programs/xcursorgen
4048 dst_dir app/xcursorgen
4050 action xcursorgen.c
4051 action xcursorgen.man
4054 symlink_app_xdbedizzy() {
4055 src_dir programs/xdbedizzy
4056 dst_dir app/xdbedizzy
4058 action xdbedizzy.c
4060 action xdbedizzy.man
4062 action xdbedizzy.sgml
4065 symlink_app_xditview() {
4066 src_dir programs/xditview
4067 dst_dir app/xditview
4069 action Xdit-chrtr.ad Xditview-chrtr.ad
4070 action Xditview.ad
4072 action draw.c
4073 action Dvi.c
4074 action DviChar.c
4075 action font.c
4076 action lex.c
4077 action page.c
4078 action parse.c
4079 action xditview.c
4080 action XFontName.c
4082 action DviChar.h
4083 action Dvi.h
4084 action DviP.h
4085 action Menu.h
4086 action XFontName.h
4088 action xditview.man
4090 action xdit.bm
4091 action xdit_mask.bm
4093 action ldblarrow
4094 action rdblarrow
4097 symlink_app_xdriinfo() {
4098 src_dir programs/xdriinfo
4099 dst_dir app/xdriinfo
4101 action xdriinfo.c
4103 action xdriinfo.man
4107 symlink_app_xev() {
4108 src_dir programs/xev
4109 dst_dir app/xev
4111 action xev.c
4113 action xev.man
4117 symlink_app_xeyes() {
4118 src_dir programs/xeyes
4119 dst_dir app/xeyes
4121 action Eyes.c
4122 action transform.c
4123 action xeyes.c
4125 action Eyes.h
4126 action EyesP.h
4127 action transform.h
4129 action xeyes.man
4131 action eyes.bit
4132 action eyesmask.bit
4135 symlink_app_xf86dga() {
4136 src_dir programs/xf86dga
4137 dst_dir app/xf86dga
4139 action dga.c
4141 action dga.man
4145 symlink_app_xfd() {
4146 src_dir programs/xfd
4147 dst_dir app/xfd
4149 action Xfd.ad
4151 action grid.c
4152 action xfd.c
4154 action grid.h
4155 action gridP.h
4157 action xfd.man
4161 symlink_app_xfindproxy() {
4162 src_dir programs/xfindproxy
4163 dst_dir app/xfindproxy
4165 action xfindproxy.c
4167 action xfindproxy.h
4169 action xfindproxy.man
4173 symlink_app_xfontsel() {
4174 src_dir programs/xfontsel
4175 dst_dir app/xfontsel
4177 action XFontSel.ad
4179 action ULabel.c
4180 action xfontsel.c
4182 action ULabel.h
4183 action ULabelP.h
4185 action xfontsel.man
4189 symlink_app_xfsinfo() {
4190 src_dir programs/xfsinfo
4191 dst_dir app/xfsinfo
4193 action xfsinfo.c
4195 action xfsinfo.man
4199 symlink_app_xfwp() {
4200 src_dir programs/xfwp
4201 dst_dir app/xfwp
4203 action io.c
4204 action misc.c
4205 action pm.c
4206 action transport.c
4207 action xfwp.c
4209 action io.h
4210 action misc.h
4211 action pm.h
4212 action transport.h
4213 action xfwp.h
4215 action xfwp.man
4219 symlink_app_xgamma() {
4220 src_dir programs/xgamma
4221 dst_dir app/xgamma
4223 action xgamma.c
4225 action xgamma.man
4229 symlink_app_xgc() {
4230 src_dir programs/xgc
4231 dst_dir app/xgc
4233 action Xgc.ad
4235 action choice.c
4236 action dashlist.c
4237 action getfile.c
4238 action gram.y
4239 action interpret.c
4240 action lex.l
4241 action main.c
4242 action planemask.c
4243 action record.c
4244 action testfrac.c
4245 action tests.c
4246 action text.c
4248 action constants.h
4249 action main.h
4250 action xgc.h
4252 action xgc.man
4254 action Bugs
4255 action tile
4257 src_dir programs/xgc/Written
4258 dst_dir app/xgc/Written
4260 action FilledRects
4261 action Interface
4262 action Jim
4263 action Notes
4264 action Notes2
4265 action Outline
4266 action Widget
4269 symlink_app_xinit() {
4270 src_dir programs/xinit
4271 dst_dir app/xinit
4273 action xinit.c
4275 action README
4277 action startx.man
4278 action xinit.man
4280 action startx.cmd
4281 action xinitrc.cmd
4282 action xinit.def
4283 action startx.cpp
4284 action xinitrc.cpp
4287 symlink_app_xkbcomp() {
4288 src_dir programs/xkbcomp
4289 dst_dir app/xkbcomp
4291 action action.c
4292 action alias.c
4293 action compat.c
4294 action expr.c
4295 action geometry.c
4296 action indicators.c
4297 action keycodes.c
4298 action keymap.c
4299 action keytypes.c
4300 action listing.c
4301 action misc.c
4302 action parseutils.c
4303 action symbols.c
4304 action utils.c
4305 action vmod.c
4306 action xkbcomp.c
4307 action xkbparse.y
4308 action xkbpath.c
4309 action xkbscan.c
4311 action README
4312 action README.config
4313 action README.enhancing
4315 action action.h
4316 action alias.h
4317 action compat.h
4318 action expr.h
4319 action indicators.h
4320 action keycodes.h
4321 action misc.h
4322 action parseutils.h
4323 action tokens.h
4324 action utils.h
4325 action vmod.h
4326 action xkbcomp.h
4327 action xkbpath.h
4329 action xkbcomp.man
4333 symlink_app_xkbevd() {
4334 src_dir programs/xkbevd
4335 dst_dir app/xkbevd
4337 action cfgparse.y
4338 action cfgscan.c
4339 action evargs.c
4340 action printev.c
4341 action utils.c
4342 action xkbevd.c
4344 action tokens.h
4345 action utils.h
4346 action xkbevd.h
4348 action xkbevd.man
4350 action example.cf
4353 symlink_app_xkbprint() {
4354 src_dir programs/xkbprint
4355 dst_dir app/xkbprint
4357 action psgeom.c
4358 action utils.c
4359 action xkbprint.c
4361 action isokeys.h
4362 action utils.h
4363 action xkbprint.h
4365 action xkbprint.man
4369 symlink_app_xkbutils() {
4370 src_dir programs/xkbutils
4371 dst_dir app/xkbutils
4373 action LED.c
4374 action utils.c
4375 action xkbbell.c
4376 action xkbvleds.c
4377 action xkbwatch.c
4379 action LED.h
4380 action LEDP.h
4381 action utils.h
4385 symlink_app_xkill() {
4386 src_dir programs/xkill
4387 dst_dir app/xkill
4389 action xkill.c
4391 action xkill.man
4395 symlink_app_xload() {
4396 src_dir programs/xload
4397 dst_dir app/xload
4399 action XLoad.ad
4401 action get_load.c
4402 action get_rload.c
4403 action xload.c
4405 action xload.h
4407 action xload.man
4409 action xload.bit
4412 symlink_app_xlogo() {
4413 src_dir programs/xlogo
4414 dst_dir app/xlogo
4416 action XLogo.ad
4417 action XLogo-co.ad XLogo-color.ad
4419 action Logo.c
4420 action print.c
4421 action RenderLogo.c
4422 action xlogo.c
4424 action Logo.h
4425 action LogoP.h
4426 action print.h
4427 action RenderLogo.h
4428 action xlogo.h
4430 action xlogo.man
4434 symlink_app_xlsatoms() {
4435 src_dir programs/xlsatoms
4436 dst_dir app/xlsatoms
4438 action xlsatoms.c
4440 action xlsatoms.man
4444 symlink_app_xlsclients() {
4445 src_dir programs/xlsclients
4446 dst_dir app/xlsclients
4448 action xlsclients.c
4450 action xlscli.man xlsclients.man
4454 symlink_app_xlsfonts() {
4455 src_dir programs/xlsfonts
4456 dst_dir app/xlsfonts
4458 action dsimple.c
4459 action xlsfonts.c
4461 action dsimple.h
4463 action xlsfonts.man
4464 action xlsfonts.sgml
4467 symlink_app_xmag() {
4468 src_dir programs/xmag
4469 dst_dir app/xmag
4471 action Xmag.ad
4473 action CutPaste.c
4474 action RootWin.c
4475 action Scale.c
4476 action xmag.c
4478 action CutPaste.h
4479 action RootWin.h
4480 action RootWinP.h
4481 action Scale.h
4482 action ScaleP.h
4484 action Scale.doc Scale.txt
4486 action xmag.man
4488 action xmag.icon
4491 symlink_app_xman() {
4492 src_dir programs/xman
4493 dst_dir app/xman
4495 action Xman-noxprint.ad
4496 action Xman-xprint.ad
4498 action buttons.c
4499 action globals.c
4500 action handler.c
4501 action help.c
4502 action main.c
4503 action man.c
4504 action misc.c
4505 action print.c
4506 action ScrollByL.c
4507 action search.c
4508 action tkfuncs.c
4509 action vendor.c
4511 action defs.h
4512 action globals.h
4513 action iconclosed.h
4514 action icon_help.h
4515 action icon_open.h
4516 action man.h
4517 action print.h
4518 action ScrollByL.h
4519 action ScrollByLP.h
4520 action vendor.h
4521 action version.h
4523 action xman.help
4524 action xman.man
4528 symlink_app_xmessage() {
4529 src_dir programs/xmessage
4530 dst_dir app/xmessage
4532 action Xmessage.ad
4533 action Xmessage-color.ad
4535 action makeform.c
4536 action readfile.c
4537 action xmessage.c
4539 action README
4541 action readfile.h
4542 action xmessage.h
4544 action xmessage.man
4546 action Tests
4549 symlink_app_xmh() {
4550 src_dir programs/xmh
4551 dst_dir app/xmh
4553 action Xmh.ad
4555 action bbox.c
4556 action command.c
4557 action compfuncs.c
4558 action folder.c
4559 action init.c
4560 action main.c
4561 action menu.c
4562 action miscfuncs.c
4563 action mlist.c
4564 action msg.c
4565 action pick.c
4566 action popup.c
4567 action screen.c
4568 action toc.c
4569 action tocfuncs.c
4570 action tocutil.c
4571 action tsource.c
4572 action util.c
4573 action viewfuncs.c
4575 action actions.h
4576 action bbox.h
4577 action bboxint.h
4578 action externs.h
4579 action globals.h
4580 action mlist.h
4581 action msg.h
4582 action toc.h
4583 action tocintrnl.h
4584 action tocutil.h
4585 action tsource.h
4586 action tsourceP.h
4587 action version.h
4588 action xmh.h
4590 action xmh.man
4592 action black6
4593 action box6
4594 action Xmh.sample
4597 symlink_app_xmodmap() {
4598 src_dir programs/xmodmap
4599 dst_dir app/xmodmap
4601 action exec.c
4602 action handle.c
4603 action pf.c
4604 action xmodmap.c
4606 action wq.h
4607 action xmodmap.h
4609 action xmodmap.man
4611 action swap.km
4614 symlink_app_xmore() {
4615 src_dir programs/xmore
4616 dst_dir app/xmore
4618 action XMore.ad
4620 action print.c
4621 action printdialog.c
4622 action xmore.c
4624 action printdialog.h
4625 action printdialogprivates.h
4626 action print.h
4627 action xmore.h
4629 action xmore.man
4630 action xmore.sgml
4633 symlink_app_xplsprinters() {
4634 src_dir programs/xplsprinters
4635 dst_dir app/xplsprinters
4637 action xplsprinters.c
4639 action xplsprinters.man
4641 action xplsprinters.sgml
4644 symlink_app_xpr() {
4645 src_dir programs/xpr
4646 dst_dir app/xpr
4648 action x2jet.c
4649 action x2pmp.c
4650 action xpr.c
4652 action lncmd.h
4653 action pmp.h
4654 action xpr.h
4656 action xdpr.man
4657 action xpr.man
4659 action xdpr.script
4662 symlink_app_xprehashprinterlist() {
4663 src_dir programs/xprehashprinterlist
4664 dst_dir app/xprehashprinterlist
4666 action xprehashprinterlist.c
4668 action xprehashprinterlist.man
4670 action xprehashprinterlist.sgml
4673 symlink_app_xrandr() {
4674 src_dir programs/xrandr
4675 dst_dir app/xrandr
4677 action xrandr.c
4679 action xrandr.man
4683 symlink_app_xrdb() {
4684 src_dir programs/xrdb
4685 dst_dir app/xrdb
4687 action xrdb.c
4689 action xrdb.man
4693 symlink_app_xrefresh() {
4694 src_dir programs/xrefresh
4695 dst_dir app/xrefresh
4697 action xrefresh.c
4699 action xrefresh.man
4703 symlink_app_xset() {
4704 src_dir programs/xset
4705 dst_dir app/xset
4707 action xset.c
4709 action xset.man
4713 symlink_app_xsetmode() {
4714 src_dir programs/xsetmode
4715 dst_dir app/xsetmode
4717 action xsetmode.c
4719 action xsetmode.man
4723 symlink_app_xsetpointer() {
4724 src_dir programs/xsetpointer
4725 dst_dir app/xsetpointer
4727 action xsetpointer.c
4729 action xsetpnt.man xsetpointer.man
4733 symlink_app_xsetroot() {
4734 src_dir programs/xsetroot
4735 dst_dir app/xsetroot
4737 action xsetroot.c
4739 action xsetroot.man
4743 symlink_app_xsm() {
4744 src_dir programs/xsm
4745 dst_dir app/xsm
4747 action XSm.ad
4749 action auth.c
4750 action choose.c
4751 action globals.c
4752 action info.c
4753 action list.c
4754 action lock.c
4755 action log.c
4756 action mainwin.c
4757 action misc.c
4758 action popup.c
4759 action printhex.c
4760 action prop.c
4761 action remote.c
4762 action restart.c
4763 action save.c
4764 action saveutil.c
4765 action signals.c
4766 action xsm.c
4767 action xtwatch.c
4769 action README
4771 action system.xsm
4773 action auth.h
4774 action choose.h
4775 action info.h
4776 action list.h
4777 action lock.h
4778 action log.h
4779 action mainwin.h
4780 action popup.h
4781 action prop.h
4782 action restart.h
4783 action save.h
4784 action saveutil.h
4785 action xsm.h
4786 action xtwatch.h
4788 action xsm.man
4792 symlink_app_xstdcmap() {
4793 src_dir programs/xstdcmap
4794 dst_dir app/xstdcmap
4796 action xstdcmap.c
4798 action xstdcmap.man
4802 symlink_app_xtrap() {
4803 src_dir programs/xtrap
4804 dst_dir app/xtrap
4806 action chparse.c
4807 action XEKeybCtrl.c
4808 action xtrapchar.c
4809 action xtrapin.c
4810 action xtrapinfo.c
4811 action xtrapout.c
4812 action xtrapproto.c
4813 action xtrapreset.c
4814 action xtrapstats.c
4816 action chparse.h
4817 action XEKeybCtrl.h
4819 action xtrap.man
4823 symlink_app_xvidtune() {
4824 src_dir programs/xvidtune
4825 dst_dir app/xvidtune
4827 action Xvidtune.cpp
4829 action xvidtune.c
4831 action xvidtune.man
4835 symlink_app_xvinfo() {
4836 src_dir programs/xvinfo
4837 dst_dir app/xvinfo
4839 action xvinfo.c
4841 action xvinfo.man
4844 symlink_app_xwud() {
4845 src_dir programs/xwud
4846 dst_dir app/xwud
4848 action xwud.c
4850 action xwud.man
4853 symlink_app_scripts() {
4854 src_dir programs/scripts
4855 dst_dir app/scripts
4857 action fontname.sh
4858 action fontprop.sh
4859 action xauth_switch_to_sun-des-1.cpp
4860 action xon.sh xon
4862 action xon.man
4865 symlink_app_rstart() {
4866 src_dir programs/rstart
4867 dst_dir app/rstart
4869 action auth.c
4870 action server.c
4872 action rstartd.man
4873 action rstart.man
4875 action client.cpp
4876 action server.cpp
4877 action config.cpp
4879 action server.os2
4881 # commands
4883 src_dir programs/rstart/commands
4884 dst_dir app/rstart/commands
4886 action ListContexts
4887 action ListGenericCommands
4888 action @List
4890 # x11r6
4892 src_dir programs/rstart/commands/x11r6
4893 dst_dir app/rstart/commands/x11r6
4895 action @List
4896 action LoadMonitor
4897 action Terminal
4899 # contexts
4901 src_dir programs/rstart/contexts
4902 dst_dir app/rstart/contexts
4904 action @List
4905 action @Aliases
4906 action default
4907 action x11r6
4909 # samples
4911 # commands
4913 src_dir programs/rstart/samples/commands
4914 dst_dir app/rstart/samples/commands
4916 action @List
4917 action ListContexts
4918 action ListGenericCommands
4920 # odt1
4922 src_dir programs/rstart/samples/commands/odt1
4923 dst_dir app/rstart/samples/commands/odt1
4925 action @List
4926 action LoadMonitor
4927 action Terminal
4929 # openwindows2
4931 src_dir programs/rstart/samples/commands/openwindows2
4932 dst_dir app/rstart/samples/commands/openwindows2
4934 action @List
4935 action LoadMonitor
4936 action Terminal
4938 # openwindow3
4940 src_dir programs/rstart/samples/commands/openwindows3
4941 dst_dir app/rstart/samples/commands/openwindows3
4943 action @List
4944 action LoadMonitor
4945 action Terminal
4947 # x11r5
4949 src_dir programs/rstart/samples/commands/x11r5
4950 dst_dir app/rstart/samples/commands/x11r5
4952 action @List
4953 action LoadMonitor
4954 action Terminal
4956 # contexts.odt1
4958 src_dir programs/rstart/samples/contexts.odt1
4959 dst_dir app/rstart/samples/contexts.odt1
4961 action @Aliases
4962 action @List
4963 action default
4964 action odt1
4966 # contexts.sun
4968 src_dir programs/rstart/samples/contexts.sun
4969 dst_dir app/rstart/samples/contexts.odt1
4971 action @Aliases
4972 action @List
4973 action default
4974 action openwindows2
4975 action openwindows3
4976 action x11r5
4977 action x11r6
4980 symlink_app_sessreg() {
4981 src_dir programs/xdm
4982 dst_dir app/sessreg
4984 action sessreg.c
4985 action sessreg.man
4988 symlink_app_xdm() {
4989 src_dir programs/xdm
4990 dst_dir app/xdm
4992 action access.c
4993 action auth.c
4994 action choose.c
4995 action chooser.c
4996 action daemon.c
4997 action dm.c
4998 action dpylist.c
4999 action error.c
5000 action file.c
5001 action genauth.c
5002 action krb5auth.c
5003 action mitauth.c
5004 action netaddr.c
5005 action policy.c
5006 action prngc.c
5007 action protodpy.c
5008 action reset.c
5009 action resource.c
5010 action rpcauth.c
5011 action server.c
5012 action session.c
5013 action socket.c
5014 action streams.c
5015 action util.c
5016 action xdmauth.c
5017 action xdmcp.c
5018 action xdmshell.c
5020 action dm_auth.h
5021 action dm_error.h
5022 action dm.h
5023 action dm_socket.h
5024 action greet.h
5026 action Chooser.ad
5028 action xdm.man xdm.man.cpp
5030 src_dir programs/xdm/greeter
5031 dst_dir app/xdm/greeter
5033 action greet.c
5034 action Login.c
5035 action Login.h
5036 action LoginP.h
5037 action verify.c
5039 src_dir programs/xdm/config
5040 dst_dir app/xdm/config
5042 action README
5044 action GiveConsole
5045 action TakeConsole
5047 action xorg-bw.xpm
5048 action xorg.xpm
5050 action Xreset
5051 action Xaccess
5052 action Xservers.fs
5053 action Xsession.cpp
5054 action Xsetup_0
5055 action Xstartup
5056 action Xwilling
5058 action Xres.cpp Xresources.cpp
5059 action Xserv.ws.cpp Xservers.ws.cpp
5060 action xdm-conf.cpp xdm-config.cpp
5063 symlink_app_xprop() {
5064 src_dir programs/xprop
5065 dst_dir app/xprop
5067 action xprop.c
5069 action xprop.man
5071 src_dir programs/xlsfonts
5073 action dsimple.c
5074 action dsimple.h
5077 symlink_app_xwd() {
5078 src_dir programs/xwd
5079 dst_dir app/xwd
5081 action list.c
5082 action multiVis.c
5083 action xwd.c
5085 action list.h
5086 action multiVis.h
5087 action wsutils.h
5089 action xwd.man
5091 src_dir programs/xlsfonts
5093 action dsimple.c
5094 action dsimple.h
5097 symlink_app_xwininfo() {
5098 src_dir programs/xwininfo
5099 dst_dir app/xwininfo
5101 action xwininfo.c
5103 action xwininfo.man
5105 src_dir programs/xlsfonts
5107 action dsimple.c
5108 action dsimple.h
5111 symlink_app_xphelloworld() {
5112 src_dir programs/xphelloworld/xpxmhelloworld
5113 dst_dir app/xphelloworld/xpxmhelloworld
5115 action xpxmhelloworld.man
5116 action xpxmhelloworld.c
5117 action xpxmhelloworld.sgml
5119 src_dir programs/xphelloworld/xpsimplehelloworld
5120 dst_dir app/xphelloworld/xpsimplehelloworld
5122 action xpsimplehelloworld.sgml
5123 action xpsimplehelloworld.c
5124 action xpsimplehelloworld.man
5126 src_dir programs/xphelloworld/xpxthelloworld
5127 dst_dir app/xphelloworld/xpxthelloworld
5129 action xpxthelloworld.man
5130 action xpxthelloworld.sgml
5131 action xpxthelloworld.c
5133 src_dir programs/xphelloworld/xpawhelloworld
5134 dst_dir app/xphelloworld/xpawhelloworld
5136 action xpawhelloworld.c
5137 action xpawhelloworld.man
5139 src_dir programs/xphelloworld/xphelloworld
5140 dst_dir app/xphelloworld/xphelloworld
5142 action xphelloworld.sgml
5143 action xphelloworld.c
5144 action xphelloworld.man
5147 symlink_app_lbxproxy() {
5148 src_dir programs/lbxproxy
5149 dst_dir app/lbxproxy
5151 action design
5152 action lbxproxy.def
5153 action lbxproxy.man
5155 src_dir programs/lbxproxy/config
5156 dst_dir app/lbxproxy/config
5158 action AtomControl
5160 src_dir programs/lbxproxy/di
5161 dst_dir app/lbxproxy/di
5163 action atomcache.c
5164 action cache.c
5165 action cmap.c
5166 action cmaputil.c
5167 action dispatch.c
5168 action extensions.c
5169 action gfx.c
5170 action globals.c
5171 action init.c
5172 action lbxfuncs.c
5173 action lbxutil.c
5174 action main.c
5175 action options.c
5176 action pm.c
5177 action props.c
5178 action reqtype.c
5179 action resource.c
5180 action swaprep.c
5181 action swapreq.c
5182 action tables.c
5183 action tags.c
5184 action unsquish.c
5185 action utils.c
5186 action wire.c
5187 action zeropad.c
5189 src_dir programs/lbxproxy/include
5190 dst_dir app/lbxproxy/include
5192 action assert.h
5193 action atomcache.h
5194 action cache.h
5195 action colormap.h
5196 action init.h
5197 action lbxext.h
5198 action lbx.h
5199 action misc.h
5200 action os.h
5201 action pm.h
5202 action pmP.h
5203 action proxyopts.h
5204 action reqtype.h
5205 action resource.h
5206 action swap.h
5207 action tags.h
5208 action util.h
5209 action wire.h
5211 src_dir programs/lbxproxy/os
5212 dst_dir app/lbxproxy/os
5214 action connection.c
5215 action io.c
5216 action osdep.h
5217 action osinit.c
5218 action WaitFor.c
5221 symlink_app_xedit() {
5222 src_dir programs/xedit
5223 dst_dir app/xedit
5225 action xedit.h
5226 action commands.c
5227 action hook.c
5228 action ispell.c
5229 action lisp.c
5230 action options.c
5231 action realpath.c
5232 action strcasecmp.c
5233 action util.c
5234 action xedit.c
5236 action Xedit-color.ad
5237 action Xedit-noxprint.ad
5238 action Xedit-xprint.ad
5240 action Xedit-sample
5242 action xedit.man
5244 src_dir programs/xedit/lisp
5245 dst_dir app/xedit/lisp
5247 action bytecode.c
5248 action bytecode.h
5249 action compile.c
5250 action core.c
5251 action core.h
5252 action debugger.c
5253 action debugger.h
5254 action env.c
5255 action format.c
5256 action format.h
5257 action hash.c
5258 action hash.h
5259 action helper.c
5260 action helper.h
5261 action internal.h
5262 action io.c
5263 action io.h
5264 action lisp.c
5265 action lisp.h
5266 action lsp.c
5267 action math.c
5268 action math.h
5269 action mathimp.c
5270 action package.c
5271 action package.h
5272 action pathname.c
5273 action pathname.h
5274 action private.h
5275 action read.c
5276 action read.h
5277 action regex.c
5278 action regex.h
5279 action require.c
5280 action require.h
5281 action stream.c
5282 action stream.h
5283 action string.c
5284 action string.h
5285 action struct.c
5286 action struct.h
5287 action time.c
5288 action time.h
5289 action write.c
5290 action write.h
5291 action xedit.c
5292 action xedit.h
5293 action TODO
5294 action README
5296 src_dir programs/xedit/lisp/modules
5297 dst_dir app/xedit/lisp/modules
5299 action indent.lsp
5300 action lisp.lsp
5301 action syntax.lsp
5302 action xedit.lsp
5303 action psql.c
5304 action x11.c
5305 action xaw.c
5306 action xt.c
5308 src_dir programs/xedit/lisp/modules/progmodes
5309 dst_dir app/xedit/lisp/modules/progmodes
5311 action c.lsp
5312 action html.lsp
5313 action imake.lsp
5314 action lisp.lsp
5315 action make.lsp
5316 action man.lsp
5317 action patch.lsp
5318 action rpm.lsp
5319 action sgml.lsp
5320 action sh.lsp
5321 action xconf.lsp
5322 action xlog.lsp
5323 action xrdb.lsp
5325 src_dir programs/xedit/lisp/re
5326 dst_dir app/xedit/lisp/re
5328 action README
5329 action re.c
5330 action rec.c
5331 action re.h
5332 action reo.c
5333 action rep.h
5334 action tests.c
5335 action tests.txt
5337 src_dir programs/xedit/lisp/test
5338 dst_dir app/xedit/lisp/test
5340 action hello.lsp
5341 action list.lsp
5342 action math.lsp
5343 action psql-1.lsp
5344 action psql-2.lsp
5345 action psql-3.lsp
5346 action regex.lsp
5347 action stream.lsp
5348 action widgets.lsp
5350 src_dir programs/xedit/lisp/mp
5351 dst_dir app/xedit/lisp/mp
5353 action mp.c
5354 action mp.h
5355 action mpi.c
5356 action mpr.c
5358 src_dir programs/xmore
5359 dst_dir app/xedit
5361 action print.h
5362 action print.c
5363 action printdialog.h
5364 action printdialog.c
5365 action printdialogprivates.h
5368 symlink_app_xfs() {
5369 src_dir programs/xfs
5370 dst_dir app/xfs
5372 action xfs.def
5373 action xfs.man
5374 action README
5375 action config.cpp
5377 src_dir programs/xfs/difs
5378 dst_dir app/xfs/difs
5380 action atom.c
5381 action cache.c
5382 action charinfo.c
5383 action difsutils.c
5384 action dispatch.c
5385 action events.c
5386 action extensions.c
5387 action fontinfo.c
5388 action fonts.c
5389 action globals.c
5390 action initfonts.c
5391 action main.c
5392 action resource.c
5393 action swaprep.c
5394 action swapreq.c
5395 action tables.c
5397 src_dir programs/xfs/include
5398 dst_dir app/xfs/include
5400 action access.h
5401 action accstr.h
5402 action assert.h
5403 action auth.h
5404 action authstr.h
5405 action cache.h
5406 action cachestr.h
5407 action client.h
5408 action clientstr.h
5409 action closestr.h
5410 action closure.h
5411 action difsfn.h
5412 action difsfnst.h
5413 action difs.h
5414 action difsutils.h
5415 action dispatch.h
5416 action extentst.h
5417 action fsevents.h
5418 action fsresource.h
5419 action globals.h
5420 action misc.h
5421 action os.h
5422 action osstruct.h
5423 action servermd.h
5424 action site.h
5425 action swaprep.h
5426 action swapreq.h
5428 src_dir programs/xfs/os
5429 dst_dir app/xfs/os
5431 action access.c
5432 action config.c
5433 action config.h
5434 action configstr.h
5435 action connection.c
5436 action daemon.c
5437 action error.c
5438 action io.c
5439 action osdep.h
5440 action osglue.c
5441 action osinit.c
5442 action utils.c
5443 action waitfor.c
5446 symlink_app_xrx()
5448 src_dir programs/xrx/helper
5449 dst_dir app/xrx/helper
5451 action GetUrl.c
5452 action GetUrl.h
5453 action helper.c
5454 action xrx.man
5456 src_dir programs/xrx/libxplugin
5457 dst_dir app/xrx/libxplugin
5459 action README
5461 src_dir programs/xrx/rx
5462 dst_dir app/xrx/rx
5464 action XDpyName.h
5465 action XUrls.h
5466 action RxI.h
5467 action BuildReq.c
5468 action XDpyName.c
5469 action Rx.h
5470 action Prefs.c
5471 action Prefs.h
5472 action XAuth.c
5473 action PParse.c
5474 action XAuth.h
5475 action PRead.c
5476 action XUrls.c
5478 src_dir programs/xrx/xnest-plugin
5479 dst_dir app/xrx/xnest-plugin
5481 action PProcess.c
5482 action XnestDis.c
5483 action SetWin.c
5484 action RxPlugin.h
5485 action NewNDest.c
5487 src_dir programs/xrx/htdocs
5488 dst_dir app/xrx/htdocs
5490 action xclock
5491 action dtcm.html
5492 action excel.html
5493 action bitmap
5494 action bitmap.html
5495 action xclock.html
5496 action xload
5497 action dtcm
5498 action xload.html
5499 action excel
5501 src_dir programs/xrx/testplugin
5502 dst_dir app/xrx/testplugin
5504 action testplugin.man
5505 action testplugin.c
5507 src_dir programs/xrx/plugin
5508 dst_dir app/xrx/plugin
5510 action PProcess.c
5511 action stubs.c
5512 action libxrx.man
5513 action SetWin.c
5514 action Global.c
5515 action Main.c
5516 action RxPlugin.h
5517 action NewNDest.c
5519 src_dir programs/xrx/plugin/common
5520 dst_dir app/xrx/plugin/common
5522 action npunix.c
5524 src_dir programs/xrx/plugin/include
5525 dst_dir app/xrx/plugin/include
5527 action npapi.h
5528 action npupp.h
5529 action jri.h
5530 action jri_md.h
5531 action jritypes.h
5533 src_dir programs/xrx/cgi-bin
5534 dst_dir app/xrx/cgi-bin
5536 action xclock
5537 action dtcm.sh
5538 action bitmap
5539 action xload
5540 action dtcm
5541 action excel
5544 symlink_app() {
5545 symlink_app_xfs
5546 symlink_app_xedit
5547 symlink_app_lbxproxy
5548 symlink_app_xphelloworld
5549 symlink_app_xwininfo
5550 symlink_app_xwd
5551 symlink_app_xprop
5552 symlink_app_xwud
5553 symlink_app_xvinfo
5554 symlink_app_xvidtune
5555 symlink_app_xtrap
5556 symlink_app_xstdcmap
5557 symlink_app_xsm
5558 symlink_app_xsetroot
5559 symlink_app_xsetpointer
5560 symlink_app_xsetmode
5561 symlink_app_xset
5562 symlink_app_xrefresh
5563 symlink_app_xrdb
5564 symlink_app_xrandr
5565 symlink_app_xprehashprinterlist
5566 symlink_app_xpr
5567 symlink_app_xplsprinters
5568 symlink_app_xmore
5569 symlink_app_xmodmap
5570 symlink_app_xmh
5571 symlink_app_xmessage
5572 symlink_app_xman
5573 symlink_app_xmag
5574 symlink_app_xlsfonts
5575 symlink_app_xlsclients
5576 symlink_app_xlsatoms
5577 symlink_app_xlogo
5578 symlink_app_xload
5579 symlink_app_xkill
5580 symlink_app_xkbutils
5581 symlink_app_xkbprint
5582 symlink_app_xkbevd
5583 symlink_app_xkbcomp
5584 symlink_app_xinit
5585 symlink_app_xgc
5586 symlink_app_xgamma
5587 symlink_app_xfwp
5588 symlink_app_xfsinfo
5589 symlink_app_xfontsel
5590 symlink_app_xfindproxy
5591 symlink_app_xfd
5592 symlink_app_xf86dga
5593 symlink_app_xeyes
5594 symlink_app_xev
5595 symlink_app_xdriinfo
5596 symlink_app_xditview
5597 symlink_app_xdbedizzy
5598 symlink_app_xconsole
5599 symlink_app_xcmsdb
5600 symlink_app_xclock
5601 symlink_app_xclipboard
5602 symlink_app_xcalc
5603 symlink_app_xbiff
5604 symlink_app_xauth
5605 symlink_app_x11perf
5606 symlink_app_viewres
5607 symlink_app_smproxy
5608 symlink_app_showfont
5609 symlink_app_setxkbmap
5610 symlink_app_rstart
5611 symlink_app_rgb
5612 symlink_app_proxymngr
5613 symlink_app_pclcomp
5614 symlink_app_oclock
5615 symlink_app_mkfontdir
5616 symlink_app_mkfontscale
5617 symlink_app_makepsres
5618 symlink_app_mkcfm
5619 symlink_app_luit
5620 symlink_app_listres
5621 symlink_app_ico
5622 symlink_app_iceauth
5623 symlink_app_fstobdf
5624 symlink_app_fslsfonts
5625 symlink_app_fonttosfnt
5626 symlink_app_editres
5627 symlink_app_bitmap
5628 symlink_app_beforelight
5629 symlink_app_bdftopcf
5630 symlink_app_appres
5631 symlink_app_twm
5632 symlink_app_xdpyinfo
5633 symlink_app_xhost
5634 symlink_app_xcursorgen
5635 symlink_app_scripts
5636 symlink_app_xdm
5637 symlink_app_sessreg
5638 symlink_app_xrx
5639 # ...
5643 #########
5645 # The xserver module
5647 #########
5650 symlink_xserver_GL_apple() {
5651 src_dir programs/Xserver/GL/apple
5652 dst_dir xserver/xorg/GL/apple
5654 action aglGlx.c
5655 action indirect.c
5658 symlink_xserver_GL_dri() {
5659 src_dir programs/Xserver/GL/dri
5660 dst_dir xserver/xorg/hw/xfree86/dri
5662 action dri.c
5663 action dri.h
5664 action drimodule.c
5665 action dristruct.h
5666 action sarea.h
5667 action xf86dri.c
5669 # don't hate me
5670 # src_dir extras/drm/shared-core
5671 # action drm.h
5674 symlink_xserver_GL_glx() {
5675 src_dir programs/Xserver/GL/glx
5676 dst_dir xserver/xorg/GL/glx
5678 action g_disptab.c
5679 action g_disptab.h
5680 action g_disptab_EXT.c
5681 action g_disptab_EXT.h
5682 action g_render.c
5683 action g_renderswap.c
5684 action g_single.c
5685 action g_singleswap.c
5686 action global.c
5687 action glxbuf.c
5688 action glxbuf.h
5689 action glxcmds.c
5690 action glxcmdsswap.c
5691 action glxcontext.h
5692 action glxdrawable.h
5693 action glxerror.h
5694 action glxext.c
5695 action glxext.h
5696 action glxfb.c
5697 action glxfb.h
5698 action glximports.c
5699 action glximports.h
5700 action glxmem.c
5701 action glxmem.h
5702 action glxpix.c
5703 action glxpix.h
5704 action glxscreens.c
5705 action glxscreens.h
5706 action glxserver.h
5707 action glxutil.c
5708 action glxutil.h
5709 action impsize.h
5710 action render2.c
5711 action render2swap.c
5712 action renderpix.c
5713 action renderpixswap.c
5714 action rensize.c
5715 action rensizetab.c
5716 action single2.c
5717 action single2swap.c
5718 action singlepix.c
5719 action singlepixswap.c
5720 action singlesize.c
5721 action singlesize.h
5722 action unpack.h
5723 action xfont.c
5726 symlink_xserver_GL_include_GL() {
5727 src_dir programs/Xserver/GL/include/GL
5728 dst_dir xserver/xorg/GL/include/GL
5730 action glx_ansic.h
5731 action xf86glx.h
5734 symlink_xserver_GL_mesa_X() {
5735 src_dir programs/Xserver/GL/mesa/X
5736 dst_dir xserver/xorg/GL/mesa/X
5738 action xf86glx.c
5739 action xf86glx_util.c
5740 action xf86glx_util.h
5741 action xf86glxint.h
5744 symlink_xserver_GL_windows() {
5745 src_dir programs/Xserver/GL/windows
5746 dst_dir xserver/xorg/GL/windows
5748 action glwindows.h
5749 action glwrap.c
5750 action indirect.c
5752 action ChangeLog
5755 symlink_xserver_XTrap() {
5756 src_dir programs/Xserver/XTrap
5757 dst_dir xserver/xorg/XTrap
5759 action xtrapddmi.c
5760 action xtrapdi.c
5761 action xtrapdiswp.c
5762 action xtrapditbl.c
5764 dst_dir xserver/xorg/hw/xfree86/dixmods
5765 action xf86XTrapModule.c
5768 symlink_xserver_Xext() {
5769 src_dir programs/Xserver/Xext
5770 dst_dir xserver/xorg/Xext
5772 action EVI.c
5773 action EVIstruct.h
5774 action appgroup.c
5775 action appgroup.h
5776 action bigreq.c
5777 action cup.c
5778 action dpms.c
5779 action dpmsproc.h
5780 action dpmsstubs.c
5781 action fontcache.c
5782 action mbuf.c
5783 action mbufbf.c
5784 action mbufpx.c
5785 action mitmisc.c
5786 action panoramiX.c
5787 action panoramiX.h
5788 action panoramiXSwap.c
5789 action panoramiXh.h
5790 action panoramiXprocs.c
5791 action panoramiXsrv.h
5792 action sampleEVI.c
5793 action saver.c
5794 action security.c
5795 action shape.c
5796 action shm.c
5797 action sleepuntil.c
5798 action sleepuntil.h
5799 action sync.c
5800 action xcmisc.c
5801 action xevie.c
5802 action xf86bigfont.c
5803 action xprint.c
5804 action xres.c
5805 action xtest.c
5806 action xtest1dd.c
5807 action xtest1dd.h
5808 action xtest1di.c
5809 action xvdisp.c
5810 action xvdisp.h
5811 action xvdix.h
5812 action xvmain.c
5813 action xvmc.c
5814 action xvmcext.h
5815 action SecurityPolicy
5816 action xtest1.frags README.xtest1-ddx
5818 # some of these are really DDX-specific despite being in Xext
5820 dst_dir xserver/xorg/hw/xfree86/dixmods/extmod
5821 action dgaproc.h
5822 action vidmodeproc.h
5823 action xf86dga.c
5824 action xf86dga2.c
5825 action xf86dgaext.h
5826 action xf86misc.c
5827 action xf86miscproc.h
5828 action xf86vmode.c
5829 action xvmod.c
5830 action xvmodproc.h
5832 dst_dir xserver/xorg/hw/dmx
5833 action dmx.c
5836 symlink_xserver_Xext_extmod() {
5837 src_dir programs/Xserver/Xext/extmod
5838 dst_dir xserver/xorg/hw/xfree86/dixmods/extmod
5840 action modinit.c
5841 action modinit.h
5844 symlink_xserver_Xi() {
5845 src_dir programs/Xserver/Xi
5846 dst_dir xserver/xorg/Xi
5848 action allowev.c
5849 action allowev.h
5850 action chgdctl.c
5851 action chgdctl.h
5852 action chgfctl.c
5853 action chgfctl.h
5854 action chgkbd.c
5855 action chgkbd.h
5856 action chgkmap.c
5857 action chgkmap.h
5858 action chgprop.c
5859 action chgprop.h
5860 action chgptr.c
5861 action chgptr.h
5862 action closedev.c
5863 action closedev.h
5864 action devbell.c
5865 action devbell.h
5866 action exevents.c
5867 action exglobals.h
5868 action extinit.c
5869 action getbmap.c
5870 action getbmap.h
5871 action getdctl.c
5872 action getdctl.h
5873 action getfctl.c
5874 action getfctl.h
5875 action getfocus.c
5876 action getfocus.h
5877 action getkmap.c
5878 action getkmap.h
5879 action getmmap.c
5880 action getmmap.h
5881 action getprop.c
5882 action getprop.h
5883 action getselev.c
5884 action getselev.h
5885 action getvers.c
5886 action getvers.h
5887 action grabdev.c
5888 action grabdev.h
5889 action grabdevb.c
5890 action grabdevb.h
5891 action grabdevk.c
5892 action grabdevk.h
5893 action gtmotion.c
5894 action gtmotion.h
5895 action listdev.c
5896 action listdev.h
5897 action opendev.c
5898 action opendev.h
5899 action queryst.c
5900 action queryst.h
5901 action selectev.c
5902 action selectev.h
5903 action sendexev.c
5904 action sendexev.h
5905 action setbmap.c
5906 action setbmap.h
5907 action setdval.c
5908 action setdval.h
5909 action setfocus.c
5910 action setfocus.h
5911 action setmmap.c
5912 action setmmap.h
5913 action setmode.c
5914 action setmode.h
5915 action stubs.c
5916 action ungrdev.c
5917 action ungrdev.h
5918 action ungrdevb.c
5919 action ungrdevb.h
5920 action ungrdevk.c
5921 action ungrdevk.h
5924 symlink_xserver_Xprint() {
5925 src_dir programs/Xserver/Xprint
5926 dst_dir xserver/xorg/Xprint
5928 action AttrValid.c
5929 action AttrValid.h
5930 action DiPrint.h
5931 action Init.c
5932 action Oid.c
5933 action Oid.h
5934 action OidDefs.h
5935 action OidStrs.h
5936 action Util.c
5937 action ValTree.c
5938 action attributes.c
5939 action attributes.h
5940 action ddxInit.c
5941 action mediaSizes.c
5942 action spooler.c
5943 action spooler.h
5945 dst_dir xserver/xorg/Xprint/doc
5946 action Xprt.html
5947 action Xprt.man Xprt.man.pre
5948 action Xprt.sgml
5951 symlink_xserver_Xprint_etc() {
5952 src_dir programs/Xserver/Xprint/etc/init.d
5953 dst_dir xserver/xorg/Xprint/etc/init.d
5955 action xprint.cpp
5957 src_dir programs/Xserver/Xprint/etc/profile.d
5958 dst_dir xserver/xorg/Xprint/etc/profile.d
5960 action xprint.csh
5961 action xprint.sh
5963 src_dir programs/Xserver/Xprint/etc/Xsession.d
5964 dst_dir xserver/xorg/Xprint/etc/Xsession.d
5966 action cde_xsessiond_xprint.sh
5969 symlink_xserver_Xprint_ps() {
5970 src_dir programs/Xserver/Xprint/ps
5971 dst_dir xserver/xorg/Xprint/ps
5973 action Ps.h
5974 action PsArc.c
5975 action PsArea.c
5976 action PsAttVal.c
5977 action PsAttr.c
5978 action PsCache.c
5979 action PsColor.c
5980 action PsDef.h
5981 action PsFTFonts.c
5982 action PsFonts.c
5983 action PsGC.c
5984 action PsImageUtil.c
5985 action PsInit.c
5986 action PsLine.c
5987 action PsMisc.c
5988 action PsPixel.c
5989 action PsPixmap.c
5990 action PsPolygon.c
5991 action PsPrint.c
5992 action PsSpans.c
5993 action PsText.c
5994 action PsWindow.c
5995 action psout.c
5996 action psout.h
5997 action psout_ft.c
5998 action psout_ftpstype1.c
5999 action psout_ftpstype3.c
6000 action ttf2pt1wrap.c
6003 symlink_xserver_Xprint_pcl() {
6004 src_dir programs/Xserver/Xprint/pcl
6005 dst_dir xserver/xorg/Xprint/pcl
6007 action Pcl.h
6008 action PclArc.c
6009 action PclArea.c
6010 action PclAttVal.c
6011 action PclAttr.c
6012 action PclColor.c
6013 action PclCursor.c
6014 action PclDef.h
6015 action PclFonts.c
6016 action PclGC.c
6017 action PclInit.c
6018 action PclLine.c
6019 action PclMisc.c
6020 action PclPixel.c
6021 action PclPixmap.c
6022 action PclPolygon.c
6023 action PclPrint.c
6024 action PclSFonts.c
6025 action PclSFonts.h
6026 action PclSpans.c
6027 action PclText.c
6028 action PclWindow.c
6029 action Pclmap.h
6032 symlink_xserver_Xprint_raster() {
6033 src_dir programs/Xserver/Xprint/raster
6034 dst_dir xserver/xorg/Xprint/raster
6036 action Raster.c
6037 action Raster.h
6038 action RasterAttVal.c
6041 symlink_xserver_afb() {
6042 src_dir programs/Xserver/afb
6043 dst_dir xserver/xorg/afb
6045 action afb.h
6046 action afbbitblt.c
6047 action afbblt.c
6048 action afbbres.c
6049 action afbbresd.c
6050 action afbbstore.c
6051 action afbclip.c
6052 action afbcmap.c
6053 action afbfillarc.c
6054 action afbfillrct.c
6055 action afbfillsp.c
6056 action afbfont.c
6057 action afbgc.c
6058 action afbgetsp.c
6059 action afbhrzvert.c
6060 action afbimage.c
6061 action afbimggblt.c
6062 action afbline.c
6063 action afbmisc.c
6064 action afbpixmap.c
6065 action afbply1rct.c
6066 action afbplygblt.c
6067 action afbpntarea.c
6068 action afbpntwin.c
6069 action afbpolypnt.c
6070 action afbpushpxl.c
6071 action afbscrinit.c
6072 action afbsetsp.c
6073 action afbtegblt.c
6074 action afbtile.c
6075 action afbwindow.c
6076 action afbzerarc.c
6078 action README
6079 action Xdaniver.doc
6082 symlink_xserver_cfb() {
6083 src_dir programs/Xserver/cfb
6084 dst_dir xserver/xorg/cfb
6086 action cfb.h
6087 action cfb16.h
6088 action cfb24.h
6089 action cfb32.h
6090 action cfb8bit.c
6091 action cfb8bit.h
6092 action cfb8line.c
6093 action cfballpriv.c
6094 action cfbbitblt.c
6095 action cfbblt.c
6096 action cfbbres.c
6097 action cfbbresd.c
6098 action cfbbstore.c
6099 action cfbcmap.c
6100 action cfbcppl.c
6101 action cfbfillarc.c
6102 action cfbfillrct.c
6103 action cfbfillsp.c
6104 action cfbgc.c
6105 action cfbgetsp.c
6106 action cfbglblt8.c
6107 action cfbhrzvert.c
6108 action cfbigblt8.c
6109 action cfbimage.c
6110 action cfbline.c
6111 action cfbmap.h
6112 action cfbmskbits.c
6113 action cfbmskbits.h
6114 action cfbpixmap.c
6115 action cfbply1rct.c
6116 action cfbpntwin.c
6117 action cfbpolypnt.c
6118 action cfbpush8.c
6119 action cfbrctstp8.c
6120 action cfbrrop.c
6121 action cfbrrop.h
6122 action cfbscrinit.c
6123 action cfbsetsp.c
6124 action cfbsolid.c
6125 action cfbtab.h
6126 action cfbteblt8.c
6127 action cfbtegblt.c
6128 action cfbtile32.c
6129 action cfbtileodd.c
6130 action cfbunmap.h
6131 action cfbwindow.c
6132 action cfbzerarc.c
6133 action stip68kgnu.h
6134 action stipmips.s
6135 action stipsparc.s
6136 action stipsprc32.s
6139 symlink_xserver_cfb24() {
6140 src_dir programs/Xserver/cfb24
6141 dst_dir xserver/xorg/cfb24
6143 action cfbrrop24.h
6146 symlink_xserver_composite() {
6147 src_dir programs/Xserver/composite
6148 dst_dir xserver/xorg/composite
6150 action compalloc.c
6151 action compext.c
6152 action compinit.c
6153 action compint.h
6154 action compwindow.c
6157 symlink_xserver_damageext() {
6158 src_dir programs/Xserver/damageext
6159 dst_dir xserver/xorg/damageext
6161 action damageext.c
6162 action damageext.h
6163 action damageextint.h
6166 symlink_xserver_dbe() {
6167 src_dir programs/Xserver/dbe
6168 dst_dir xserver/xorg/dbe
6170 action dbe.c
6171 action dbestruct.h
6172 action midbe.c
6173 action midbe.h
6174 action midbestr.h
6177 symlink_xserver_dix() {
6178 src_dir programs/Xserver/dix
6179 dst_dir xserver/xorg/dix
6181 action atom.c
6182 action colormap.c
6183 action cursor.c
6184 action devices.c
6185 action dispatch.c
6186 action dispatch.h
6187 action dixfonts.c
6188 action dixutils.c
6189 action events.c
6190 action extension.c
6191 action ffs.c
6192 action gc.c
6193 action globals.c
6194 action glyphcurs.c
6195 action grabs.c
6196 action initatoms.c
6197 action main.c
6198 action pixmap.c
6199 action privates.c
6200 action property.c
6201 action resource.c
6202 action swaprep.c
6203 action swapreq.c
6204 action tables.c
6205 action window.c
6206 action xpstubs.c
6208 action buildatoms
6209 action BuiltInAtoms
6210 action CHANGES
6213 symlink_xserver_fb() {
6214 src_dir programs/Xserver/fb
6215 dst_dir xserver/xorg/fb
6217 action fb.h
6218 action fb24_32.c
6219 action fb24_32.h
6220 action fballpriv.c
6221 action fbarc.c
6222 action fbbits.c
6223 action fbbits.h
6224 action fbblt.c
6225 action fbbltone.c
6226 action fbbstore.c
6227 action fbcmap.c
6228 action fbcompose.c
6229 action fbcopy.c
6230 action fbedge.c
6231 action fbedgeimp.h
6232 action fbfill.c
6233 action fbfillrect.c
6234 action fbfillsp.c
6235 action fbgc.c
6236 action fbgetsp.c
6237 action fbglyph.c
6238 action fbimage.c
6239 action fbline.c
6240 action fbmmx.c
6241 action fbmmx.h
6242 action fboverlay.c
6243 action fboverlay.h
6244 action fbpict.c
6245 action fbpict.h
6246 action fbpixmap.c
6247 action fbpoint.c
6248 action fbpseudocolor.c
6249 action fbpseudocolor.h
6250 action fbpush.c
6251 action fbrop.h
6252 action fbscreen.c
6253 action fbseg.c
6254 action fbsetsp.c
6255 action fbsolid.c
6256 action fbstipple.c
6257 action fbtile.c
6258 action fbtrap.c
6259 action fbutil.c
6260 action fbwindow.c
6263 symlink_xserver_hw_darwin() {
6264 src_dir programs/Xserver/hw/darwin
6265 dst_dir xserver/xorg/hw/darwin
6267 action darwin.c
6268 action darwin.h
6269 action darwinClut8.h
6270 action darwinEvents.c
6271 action darwinKeyboard.c
6272 action darwinKeyboard.h
6273 action darwinXinput.c
6275 action XDarwin.man
6278 symlink_xserver_hw_darwin_bundle() {
6279 src_dir programs/Xserver/hw/darwin/bundle
6280 dst_dir xserver/xorg/hw/darwin/bundle
6282 action startXClients.cpp
6283 action XDarwin.icns
6285 src_dir programs/Xserver/hw/darwin/bundle/Dutch.lproj
6286 dst_dir xserver/xorg/hw/darwin/bundle/Dutch.lproj
6288 action Credits.rtf
6289 action Localizable.strings
6290 action XDarwinHelp.html.cpp
6292 src_dir programs/Xserver/hw/darwin/bundle/Dutch.lproj/MainMenu.nib
6293 dst_dir xserver/xorg/hw/darwin/bundle/Dutch.lproj/MainMenu.nib
6295 action classes.nib
6296 action objects.nib
6298 src_dir programs/Xserver/hw/darwin/bundle/English.lproj
6299 dst_dir xserver/xorg/hw/darwin/bundle/English.lproj
6301 action Credits.rtf
6302 action InfoPlist.strings.cpp
6303 action Localizable.strings
6304 action XDarwinHelp.html.cpp
6306 src_dir programs/Xserver/hw/darwin/bundle/English.lproj/MainMenu.nib
6307 dst_dir xserver/xorg/hw/darwin/bundle/English.lproj/MainMenu.nib
6309 action classes.nib
6310 action objects.nib
6312 src_dir programs/Xserver/hw/darwin/bundle/French.lproj
6313 dst_dir xserver/xorg/hw/darwin/bundle/French.lproj
6315 action Credits.rtf
6316 action Localizable.strings
6317 action XDarwinHelp.html.cpp
6319 src_dir programs/Xserver/hw/darwin/bundle/French.lproj/MainMenu.nib
6320 dst_dir xserver/xorg/hw/darwin/bundle/French.lproj/MainMenu.nib
6322 action classes.nib
6323 action objects.nib
6325 src_dir programs/Xserver/hw/darwin/bundle/German.lproj
6326 dst_dir xserver/xorg/hw/darwin/bundle/German.lproj
6328 action Credits.rtf
6329 action Localizable.strings
6330 action XDarwinHelp.html.cpp
6332 src_dir programs/Xserver/hw/darwin/bundle/German.lproj/MainMenu.nib
6333 dst_dir xserver/xorg/hw/darwin/bundle/German.lproj/MainMenu.nib
6335 action classes.nib
6336 action objects.nib
6338 src_dir programs/Xserver/hw/darwin/bundle/Japanese.lproj
6339 dst_dir xserver/xorg/hw/darwin/bundle/Japanese.lproj
6341 action Credits.rtf
6342 action Localizable.strings
6343 action XDarwinHelp.html.cpp
6345 src_dir programs/Xserver/hw/darwin/bundle/Japanese.lproj/MainMenu.nib
6346 dst_dir xserver/xorg/hw/darwin/bundle/Japanese.lproj/MainMenu.nib
6348 action classes.nib
6349 action objects.nib
6351 src_dir programs/Xserver/hw/darwin/bundle/ko.lproj
6352 dst_dir xserver/xorg/hw/darwin/bundle/ko.lproj
6354 action Credits.rtf
6355 action Localizable.strings
6356 action XDarwinHelp.html.cpp
6358 src_dir programs/Xserver/hw/darwin/bundle/ko.lproj/MainMenu.nib
6359 dst_dir xserver/xorg/hw/darwin/bundle/ko.lproj/MainMenu.nib
6361 action classes.nib
6362 action objects.nib
6364 src_dir programs/Xserver/hw/darwin/bundle/Portuguese.lproj
6365 dst_dir xserver/xorg/hw/darwin/bundle/Portuguese.lproj
6367 action Credits.rtf
6368 action Localizable.strings
6369 action XDarwinHelp.html.cpp
6371 src_dir programs/Xserver/hw/darwin/bundle/Portuguese.lproj/MainMenu.nib
6372 dst_dir xserver/xorg/hw/darwin/bundle/Portuguese.lproj/MainMenu.nib
6374 action classes.nib
6375 action objects.nib
6377 src_dir programs/Xserver/hw/darwin/bundle/Spanish.lproj
6378 dst_dir xserver/xorg/hw/darwin/bundle/Spanish.lproj
6380 action Credits.rtf
6381 action Localizable.strings
6382 action XDarwinHelp.html.cpp
6384 src_dir programs/Xserver/hw/darwin/bundle/Spanish.lproj/MainMenu.nib
6385 dst_dir xserver/xorg/hw/darwin/bundle/Spanish.lproj/MainMenu.nib
6387 action classes.nib
6388 action objects.nib
6390 src_dir programs/Xserver/hw/darwin/bundle/Swedish.lproj
6391 dst_dir xserver/xorg/hw/darwin/bundle/Swedish.lproj
6393 action Credits.rtf
6394 action Localizable.strings
6395 action XDarwinHelp.html.cpp
6397 src_dir programs/Xserver/hw/darwin/bundle/Swedish.lproj/MainMenu.nib
6398 dst_dir xserver/xorg/hw/darwin/bundle/Swedish.lproj/MainMenu.nib
6400 action classes.nib
6401 action objects.nib
6404 symlink_xserver_hw_darwin_iokit() {
6405 src_dir programs/Xserver/hw/darwin/iokit
6406 dst_dir xserver/xorg/hw/darwin/iokit
6408 action xfIOKit.c
6409 action xfIOKit.h
6410 action xfIOKitCursor.c
6411 action xfIOKitStartup.c
6414 symlink_xserver_hw_darwin_quartz() {
6415 src_dir programs/Xserver/hw/darwin/quartz
6416 dst_dir xserver/xorg/hw/darwin/quartz
6418 action Preferences.h
6419 action XApplication.h
6420 action XDarwinStartup.c
6421 action XServer.h
6422 action applewm.c
6423 action applewmExt.h
6424 action keysym2ucs.c
6425 action keysym2ucs.h
6426 action pseudoramiX.c
6427 action pseudoramiX.h
6428 action quartz.c
6429 action quartz.h
6430 action quartzAudio.c
6431 action quartzAudio.h
6432 action quartzCommon.h
6433 action quartzCursor.c
6434 action quartzCursor.h
6435 action quartzKeyboard.c
6436 action quartzPasteboard.c
6437 action quartzPasteboard.h
6438 action quartzStartup.c
6440 action Preferences.m
6441 action quartzCocoa.m
6442 action XApplication.m
6443 action XServer.m
6445 action XDarwinStartup.man
6447 src_dir programs/Xserver/hw/darwin/quartz/XDarwin.pbproj
6448 dst_dir xserver/xorg/hw/darwin/quartz/XDarwin.pbproj
6449 action project.pbxproj
6452 symlink_xserver_hw_darwin_quartz_cr() {
6453 src_dir programs/Xserver/hw/darwin/quartz/cr
6454 dst_dir xserver/xorg/hw/darwin/quartz/cr
6456 action XView.h
6457 action cr.h
6459 action crAppleWM.m
6460 action crFrame.m
6461 action crScreen.m
6462 action XView.m
6465 symlink_xserver_hw_darwin_quartz_fullscreen() {
6466 src_dir programs/Xserver/hw/darwin/quartz/fullscreen
6467 dst_dir xserver/xorg/hw/darwin/quartz/fullscreen
6469 action fullscreen.c
6470 action quartzCursor.c
6471 action quartzCursor.h
6474 symlink_xserver_hw_darwin_quartz_xpr() {
6475 src_dir programs/Xserver/hw/darwin/quartz/xpr
6476 dst_dir xserver/xorg/hw/darwin/quartz/xpr
6478 action Xplugin.h
6479 action appledri.c
6480 action dri.c
6481 action dri.h
6482 action dristruct.h
6483 action x-hash.c
6484 action x-hash.h
6485 action x-hook.c
6486 action x-hook.h
6487 action x-list.c
6488 action x-list.h
6489 action xpr.h
6490 action xprAppleWM.c
6491 action xprCursor.c
6492 action xprFrame.c
6493 action xprScreen.c
6496 symlink_xserver_hw_darwin_utils() {
6497 src_dir programs/Xserver/hw/darwin/utils
6498 dst_dir xserver/xorg/hw/darwin/utils
6500 action dumpkeymap.c
6501 action dumpkeymap.man
6502 action README.txt
6505 symlink_xserver_hw_dmx() {
6506 src_dir programs/Xserver/hw/dmx
6507 dst_dir xserver/xorg/hw/dmx
6509 action dmx.h
6510 action dmx_glxvisuals.c
6511 action dmx_glxvisuals.h
6512 action dmxcb.c
6513 action dmxcb.h
6514 action dmxclient.h
6515 action dmxcmap.c
6516 action dmxcmap.h
6517 action dmxcursor.c
6518 action dmxcursor.h
6519 action dmxdpms.c
6520 action dmxdpms.h
6521 action dmxextension.c
6522 action dmxextension.h
6523 action dmxfont.c
6524 action dmxfont.h
6525 action dmxgc.c
6526 action dmxgc.h
6527 action dmxgcops.c
6528 action dmxgcops.h
6529 action dmxinit.c
6530 action dmxinit.h
6531 action dmxinput.c
6532 action dmxinput.h
6533 action dmxlog.c
6534 action dmxlog.h
6535 action dmxpict.c
6536 action dmxpict.h
6537 action dmxpixmap.c
6538 action dmxpixmap.h
6539 action dmxprop.c
6540 action dmxprop.h
6541 action dmxscrinit.c
6542 action dmxscrinit.h
6543 action dmxshadow.c
6544 action dmxshadow.h
6545 action dmxstat.c
6546 action dmxstat.h
6547 action dmxsync.c
6548 action dmxsync.h
6549 action dmxvisual.c
6550 action dmxvisual.h
6551 action dmxwindow.c
6552 action dmxwindow.h
6554 action Xdmx.man
6557 symlink_xserver_hw_dmx_config() {
6558 src_dir programs/Xserver/hw/dmx/config
6559 dst_dir xserver/xorg/hw/dmx/config
6561 action Canvas.c
6562 action Canvas.h
6563 action CanvasP.h
6564 action dmxcompat.c
6565 action dmxcompat.h
6566 action dmxconfig.c
6567 action dmxconfig.h
6568 action dmxparse.c
6569 action dmxparse.h
6570 action dmxprint.c
6571 action dmxprint.h
6572 action dmxtodmx.c
6573 action dmxtodmx.man
6574 action parser.y
6575 action scanner.l
6576 action test-a.in
6577 action test-a.out
6578 action test-b.in
6579 action test-b.out
6580 action test-c.in
6581 action test-c.out
6582 action test-d.in
6583 action test-d.out
6584 action test-e.in
6585 action test-e.out
6586 action test-f.in
6587 action test-f.out
6588 action test-g.in
6589 action test-g.out
6590 action test-h.in
6591 action test-h.out
6592 action test-i.in
6593 action test-i.out
6594 action test-j.in
6595 action test-j.out
6596 action test-k.in
6597 action test-k.out
6598 action test-l.in
6599 action test-l.out
6600 action TODO
6601 action vdltodmx.c
6602 action vdltodmx.man
6603 action xdmxconfig.c
6604 action xdmxconfig.man
6607 symlink_xserver_hw_dmx_doc() {
6608 src_dir programs/Xserver/hw/dmx/doc
6609 dst_dir xserver/xorg/hw/dmx/doc
6611 action dmx.sgml
6612 action DMXSpec.txt
6613 action DMXSpec-v1.txt
6614 action dmx.txt
6615 action doxygen.conf
6616 action doxygen.css
6617 action doxygen.foot
6618 action doxygen.head
6619 action scaled.sgml
6620 action scaled.txt
6622 src_dir programs/Xserver/hw/dmx/doc/html
6623 dst_dir xserver/xorg/hw/dmx/doc/html
6625 action annotated.html
6626 action ChkNotMaskEv_8c.html
6627 action ChkNotMaskEv_8h.html
6628 action ChkNotMaskEv_8h-source.html
6629 action classes.html
6630 action dmx_8h.html
6631 action dmx_8h-source.html
6632 action dmxarg_8c.html
6633 action dmxarg_8h.html
6634 action dmxarg_8h-source.html
6635 action dmxbackend_8c.html
6636 action dmxbackend_8h.html
6637 action dmxbackend_8h-source.html
6638 action dmxcb_8c.html
6639 action dmxcb_8h.html
6640 action dmxcb_8h-source.html
6641 action dmxclient_8h.html
6642 action dmxclient_8h-source.html
6643 action dmxcmap_8c.html
6644 action dmxcmap_8h.html
6645 action dmxcmap_8h-source.html
6646 action dmxcommon_8c.html
6647 action dmxcommon_8h.html
6648 action dmxcommon_8h-source.html
6649 action dmxcompat_8c.html
6650 action dmxcompat_8h.html
6651 action dmxcompat_8h-source.html
6652 action dmxconfig_8c.html
6653 action dmxconfig_8h.html
6654 action dmxconfig_8h-source.html
6655 action dmxconsole_8c.html
6656 action dmxconsole_8h.html
6657 action dmxconsole_8h-source.html
6658 action dmxcursor_8c.html
6659 action dmxcursor_8h.html
6660 action dmxcursor_8h-source.html
6661 action dmxdetach_8c.html
6662 action dmxdpms_8c.html
6663 action dmxdpms_8h.html
6664 action dmxdpms_8h-source.html
6665 action dmxdummy_8c.html
6666 action dmxdummy_8h.html
6667 action dmxdummy_8h-source.html
6668 action dmxeq_8c.html
6669 action dmxeq_8h.html
6670 action dmxeq_8h-source.html
6671 action dmxevents_8c.html
6672 action dmxevents_8h.html
6673 action dmxevents_8h-source.html
6674 action dmxext_8h.html
6675 action dmxext_8h-source.html
6676 action dmxextension_8c.html
6677 action dmxextension_8h.html
6678 action dmxextension_8h-source.html
6679 action dmxfont_8c.html
6680 action dmxfont_8h.html
6681 action dmxfont_8h-source.html
6682 action dmxgc_8c.html
6683 action dmxgc_8h.html
6684 action dmxgc_8h-source.html
6685 action dmxgcops_8c.html
6686 action dmxgcops_8h.html
6687 action dmxgcops_8h-source.html
6688 action dmx__glxvisuals_8h-source.html
6689 action dmxinit_8c.html
6690 action dmxinit_8h.html
6691 action dmxinit_8h-source.html
6692 action dmxinput_8c.html
6693 action dmxinput_8h.html
6694 action dmxinput_8h-source.html
6695 action dmxinputinit_8c.html
6696 action dmxinputinit_8h.html
6697 action dmxinputinit_8h-source.html
6698 action dmxlog_8c.html
6699 action dmxlog_8h.html
6700 action dmxlog_8h-source.html
6701 action dmxmap_8c.html
6702 action dmxmap_8h.html
6703 action dmxmap_8h-source.html
6704 action dmxmotion_8c.html
6705 action dmxmotion_8h.html
6706 action dmxmotion_8h-source.html
6707 action dmxparse_8c.html
6708 action dmxparse_8h.html
6709 action dmxparse_8h-source.html
6710 action dmxpict_8c.html
6711 action dmxpict_8h.html
6712 action dmxpict_8h-source.html
6713 action dmxpixmap_8c.html
6714 action dmxpixmap_8h.html
6715 action dmxpixmap_8h-source.html
6716 action dmxprint_8c.html
6717 action dmxprint_8h.html
6718 action dmxprint_8h-source.html
6719 action dmxprop_8c.html
6720 action dmxprop_8h.html
6721 action dmxprop_8h-source.html
6722 action dmxproto_8h.html
6723 action dmxproto_8h-source.html
6724 action dmxscrinit_8c.html
6725 action dmxscrinit_8h.html
6726 action dmxscrinit_8h-source.html
6727 action dmxshadow_8c.html
6728 action dmxshadow_8h.html
6729 action dmxshadow_8h-source.html
6730 action dmxsigio_8c.html
6731 action dmxsigio_8h.html
6732 action dmxsigio_8h-source.html
6733 action dmxstat_8c.html
6734 action dmxstat_8h.html
6735 action dmxstat_8h-source.html
6736 action dmxsync_8c.html
6737 action dmxsync_8h.html
6738 action dmxsync_8h-source.html
6739 action dmxvisual_8c.html
6740 action dmxvisual_8h.html
6741 action dmxvisual_8h-source.html
6742 action dmxwindow_8c.html
6743 action dmxwindow_8h.html
6744 action dmxwindow_8h-source.html
6745 action dmxxinput_8c.html
6746 action doxygen.css
6747 action doxygen.png
6748 action files.html
6749 action ftv2blank.png
6750 action ftv2doc.png
6751 action ftv2folderclosed.png
6752 action ftv2folderopen.png
6753 action ftv2lastnode.png
6754 action ftv2link.png
6755 action ftv2mlastnode.png
6756 action ftv2mnode.png
6757 action ftv2node.png
6758 action ftv2plastnode.png
6759 action ftv2pnode.png
6760 action ftv2vertline.png
6761 action functions.html
6762 action functions_vars.html
6763 action globals_defs.html
6764 action globals_enum.html
6765 action globals_eval.html
6766 action globals_func.html
6767 action globals.html
6768 action globals_type.html
6769 action globals_vars.html
6770 action index.html
6771 action lib_2dmx_2dmx_8c.html
6772 action lnx-keyboard_8c.html
6773 action lnx-keyboard_8h.html
6774 action lnx-keyboard_8h-source.html
6775 action lnx-ms_8c.html
6776 action lnx-ms_8h.html
6777 action lnx-ms_8h-source.html
6778 action lnx-ps2_8c.html
6779 action lnx-ps2_8h.html
6780 action lnx-ps2_8h-source.html
6781 action main.html
6782 action programs_2Xserver_2Xext_2dmx_8c.html
6783 action struct__dmxArg.html
6784 action struct__dmxColormapPriv.html
6785 action structDMXConfigCmdStruct.html
6786 action struct__DMXConfigComment.html
6787 action struct__DMXConfigDisplay.html
6788 action struct__DMXConfigEntry.html
6789 action struct__DMXConfigFullDim.html
6790 action structDMXConfigListStruct.html
6791 action struct__DMXConfigNumber.html
6792 action struct__DMXConfigOption.html
6793 action struct__DMXConfigPair.html
6794 action struct__DMXConfigParam.html
6795 action struct__DMXConfigPartDim.html
6796 action struct__DMXConfigString.html
6797 action struct__DMXConfigSub.html
6798 action struct__DMXConfigToken.html
6799 action struct__DMXConfigVirtual.html
6800 action struct__DMXConfigWall.html
6801 action struct__dmxCursorPriv.html
6802 action structDMXDesktopAttributes.html
6803 action structDMXDesktopAttributesRec.html
6804 action struct__DMXEventMap.html
6805 action struct__dmxFontPriv.html
6806 action struct__dmxGCPriv.html
6807 action structdmxGlxVisualPrivate.html
6808 action struct__dmxGlyphPriv.html
6809 action structDMXInputAttributes.html
6810 action structDMXInputAttributesRec.html
6811 action struct__DMXInputInfo.html
6812 action struct__DMXLocalInitInfo.html
6813 action struct__DMXLocalInputInfo.html
6814 action struct__dmxPictPriv.html
6815 action struct__dmxPixPriv.html
6816 action structDMXScreenAttributes.html
6817 action structDMXScreenAttributesRec.html
6818 action struct__DMXScreenInfo.html
6819 action struct__DMXStatAvg.html
6820 action struct__DMXStatInfo.html
6821 action structDMXWindowAttributes.html
6822 action structDMXWindowAttributesRec.html
6823 action struct__dmxWinPriv.html
6824 action struct__Event.html
6825 action struct__EventQueue.html
6826 action struct__myPrivate.html
6827 action structxDMXAddInputReply.html
6828 action structxDMXAddInputReq.html
6829 action structxDMXAddScreenReply.html
6830 action structxDMXAddScreenReq.html
6831 action structxDMXChangeDesktopAttributesReply.html
6832 action structxDMXChangeDesktopAttributesReq.html
6833 action structxDMXChangeScreensAttributesReply.html
6834 action structxDMXChangeScreensAttributesReq.html
6835 action structxDMXForceWindowCreationReply.html
6836 action structxDMXForceWindowCreationReq.html
6837 action structxDMXGetDesktopAttributesReply.html
6838 action structxDMXGetDesktopAttributesReq.html
6839 action structxDMXGetInputAttributesReply.html
6840 action structxDMXGetInputAttributesReq.html
6841 action structxDMXGetInputCountReply.html
6842 action structxDMXGetInputCountReq.html
6843 action structxDMXGetScreenAttributesReply.html
6844 action structxDMXGetScreenAttributesReq.html
6845 action structxDMXGetScreenCountReply.html
6846 action structxDMXGetScreenCountReq.html
6847 action structxDMXGetWindowAttributesReply.html
6848 action structxDMXGetWindowAttributesReq.html
6849 action structxDMXQueryVersionReply.html
6850 action structxDMXQueryVersionReq.html
6851 action structxDMXRemoveInputReply.html
6852 action structxDMXRemoveInputReq.html
6853 action structxDMXRemoveScreenReply.html
6854 action structxDMXRemoveScreenReq.html
6855 action structxDMXSyncReply.html
6856 action structxDMXSyncReq.html
6857 action tree.html
6858 action usb-common_8c.html
6859 action usb-common_8h.html
6860 action usb-common_8h-source.html
6861 action usb-keyboard_8c.html
6862 action usb-keyboard_8h.html
6863 action usb-keyboard_8h-source.html
6864 action usb-mouse_8c.html
6865 action usb-mouse_8h.html
6866 action usb-mouse_8h-source.html
6867 action usb-other_8c.html
6868 action usb-other_8h.html
6869 action usb-other_8h-source.html
6870 action usb-private_8h.html
6871 action usb-private_8h-source.html
6874 symlink_xserver_hw_dmx_examples() {
6875 src_dir programs/Xserver/hw/dmx/examples
6876 dst_dir xserver/xorg/hw/dmx/examples
6878 action dmxaddinput.c
6879 action dmxaddscreen.c
6880 action dmxreconfig.c
6881 action dmxresize.c
6882 action dmxrminput.c
6883 action dmxrmscreen.c
6884 action dmxwininfo.c
6885 action ev.c
6886 action evi.c
6887 action res.c
6888 action xbell.c
6889 action xdmx.c
6890 action xinput.c
6891 action xled.c
6892 action xtest.c
6895 symlink_xserver_hw_dmx_glxProxy() {
6896 src_dir programs/Xserver/hw/dmx/glxProxy
6897 dst_dir xserver/xorg/hw/dmx/glxProxy
6899 action compsize.c
6900 action g_disptab.c
6901 action g_disptab.h
6902 action g_renderswap.c
6903 action global.c
6904 action glxcmds.c
6905 action glxcmdsswap.c
6906 action glxcontext.h
6907 action glxdrawable.h
6908 action glxerror.h
6909 action glxext.c
6910 action glxext.h
6911 action glxfbconfig.c
6912 action glxfbconfig.h
6913 action glxscreens.c
6914 action glxscreens.h
6915 action glxserver.h
6916 action glxsingle.c
6917 action glxsingle.h
6918 action glxswap.c
6919 action glxswap.h
6920 action glxutil.c
6921 action glxutil.h
6922 action glxvendor.c
6923 action glxvendor.h
6924 action glxvisuals.c
6925 action glxvisuals.h
6926 action render2swap.c
6927 action renderpixswap.c
6928 action unpack.h
6931 symlink_xserver_hw_dmx_input() {
6932 src_dir programs/Xserver/hw/dmx/input
6933 dst_dir xserver/xorg/hw/dmx/input
6935 action ChkNotMaskEv.c
6936 action ChkNotMaskEv.h
6937 action dmxarg.c
6938 action dmxarg.h
6939 action dmxbackend.c
6940 action dmxbackend.h
6941 action dmxcommon.c
6942 action dmxcommon.h
6943 action dmxconsole.c
6944 action dmxconsole.h
6945 action dmxdetach.c
6946 action dmxdummy.c
6947 action dmxdummy.h
6948 action dmxeq.c
6949 action dmxeq.h
6950 action dmxevents.c
6951 action dmxevents.h
6952 action dmxinputinit.c
6953 action dmxinputinit.h
6954 action dmxmap.c
6955 action dmxmap.h
6956 action dmxmotion.c
6957 action dmxmotion.h
6958 action dmxsigio.c
6959 action dmxsigio.h
6960 action dmxxinput.c
6961 action lnx-keyboard.c
6962 action lnx-keyboard.h
6963 action lnx-ms.c
6964 action lnx-ms.h
6965 action lnx-ps2.c
6966 action lnx-ps2.h
6967 action usb-common.c
6968 action usb-common.h
6969 action usb-keyboard.c
6970 action usb-keyboard.h
6971 action usb-mouse.c
6972 action usb-mouse.h
6973 action usb-other.c
6974 action usb-other.h
6975 action usb-private.h
6978 # We skip most of Xserver/hw/sun since it's no longer maintained, but a
6979 # couple of files are useful still
6980 symlink_xserver_hw_sun() {
6981 src_dir programs/Xserver/hw/sun
6983 dst_dir xserver/xorg/hw/xfree86/utils/kbd_mode
6984 action kbd_mode.c sun-kbd_mode.c
6985 action kbd_mode.man sun-kbd_mode.man.pre
6987 dst_dir app/constype
6988 action constype.c
6989 action constype.man
6992 symlink_xserver_hw_vfb() {
6993 src_dir programs/Xserver/hw/vfb
6994 dst_dir xserver/xorg/hw/vfb
6996 action InitInput.c
6997 action InitOutput.c
6998 action lk201kbd.h
7000 action Xvfb.man Xvfb.man.pre
7003 symlink_xserver_hw_xfree86() {
7004 src_dir programs/Xserver/hw/xfree86
7005 dst_dir xserver/xorg/hw/xfree86
7007 action xorgconf.cpp
7008 action Options
7011 symlink_xserver_hw_xfree86_common() {
7012 src_dir programs/Xserver/hw/xfree86/common
7013 dst_dir xserver/xorg/hw/xfree86/common
7015 action atKeynames.h
7016 action compiler.h
7017 action fourcc.h
7018 action scoasm.h
7019 action xf86.h
7020 action xf86AutoConfig.c
7021 action xf86Bus.c
7022 action xf86Bus.h
7023 action xf86Config.c
7024 action xf86Config.h
7025 action xf86Configure.c
7026 action xf86Cursor.c
7027 action xf86DGA.c
7028 action xf86DPMS.c
7029 action xf86Debug.c
7030 action xf86DefModes.c
7031 action xf86DoProbe.c
7032 action xf86DoScanPci.c
7033 action xf86Events.c
7034 action xf86Globals.c
7035 action xf86Helper.c
7036 action xf86InPriv.h
7037 action xf86Init.c
7038 action xf86Io.c
7039 action xf86Kbd.c
7040 action xf86KbdBSD.c
7041 action xf86KbdLnx.c
7042 action xf86KbdMach.c
7043 action xf86Keymap.h
7044 action xf86MiscExt.c
7045 action xf86Mode.c
7046 action xf86Module.h
7047 action xf86Opt.h
7048 action xf86Option.c
7049 action xf86PM.c
7050 action xf86PciInfo.h
7051 action xf86Priv.h
7052 action xf86Privstr.h
7053 action xf86RandR.c
7054 action xf86Resources.h
7055 action xf86Versions.c
7056 action xf86VidMode.c
7057 action xf86XKB.c
7058 action xf86Xinput.c
7059 action xf86Xinput.h
7060 action xf86cmap.c
7061 action xf86cmap.h
7062 action xf86fbBus.c
7063 action xf86fbman.c
7064 action xf86fbman.h
7065 action xf86isaBus.c
7066 action xf86noBus.c
7067 action xf86pciBus.c
7068 action xf86pciBus.h
7069 action xf86sbusBus.c
7070 action xf86sbusBus.h
7071 action xf86str.h
7072 action xf86xv.c
7073 action xf86xv.h
7074 action xf86xvmc.c
7075 action xf86xvmc.h
7076 action xf86xvpriv.h
7077 action xisb.c
7078 action xisb.h
7079 action xorgHelper.c
7081 action modeline2c.pl
7083 src_dir programs/Xserver/hw/xfree86
7084 action xf86Date.h
7085 action xf86Version.h
7086 action xorgVersion.h
7089 symlink_xserver_hw_xfree86_ddc() {
7090 src_dir programs/Xserver/hw/xfree86/ddc
7091 dst_dir xserver/xorg/hw/xfree86/ddc
7093 action ddcPriv.h
7094 action ddcProperty.c
7095 action edid.c
7096 action edid.h
7097 action interpret_edid.c
7098 action interpret_vdif.c
7099 action print_edid.c
7100 action print_vdif.c
7101 action vdif.h
7102 action xf86DDC.c
7103 action xf86DDC.h
7105 action DDC.HOWTO
7108 symlink_xserver_hw_xfree86_doc() {
7110 # Docs generic to all Xservers in xserver-xorg module:
7111 src_dir programs/Xserver
7112 dst_dir xserver/xorg/doc
7113 action Xserver.man Xserver.man.pre
7115 src_dir programs/Xserver/hw/xfree86/doc
7116 dst_dir xserver/xorg/doc
7117 action smartsched
7119 # Docs specific to XFree86 DDX/Xorg server:
7121 src_dir programs/Xserver/hw/xfree86
7122 dst_dir xserver/xorg/hw/xfree86/doc/man
7124 action Xorg.man Xorg.man.pre
7125 action xorg.conf.man xorg.conf.man.pre
7127 dst_dir xserver/xorg/hw/xfree86/doc/devel
7128 action DebuggingHints
7129 action Domain.note
7130 action RAC.Notes
7131 action Registry
7133 dst_dir xserver/xorg/hw/xfree86/doc/changelogs
7134 action CHANGELOG
7135 action CHANGELOG.ND
7136 action CHANGELOG.R5
7138 src_dir programs/Xserver/hw/xfree86/doc
7139 dst_dir xserver/xorg/hw/xfree86/doc/devel
7140 action exa-driver.txt
7141 action README.DRIcomp
7143 dst_dir xserver/xorg/hw/xfree86/doc
7144 action README.DRI
7145 action README.fonts
7146 action README.rapidaccess
7148 src_dir programs/Xserver/hw/xfree86/doc/sgml
7149 dst_dir xserver/xorg/hw/xfree86/doc/sgml
7151 action DESIGN.sgml
7153 # Docs about the entire Xorg distribution:
7155 dst_dir doc/old/sgml
7156 action Darwin.sgml
7157 action Install.sgml
7158 action LICENSE.sgml
7159 action LynxOS.sgml
7160 action NetBSD.sgml
7161 action OS2Notes.sgml
7162 action OpenBSD.sgml
7163 action README.sgml
7164 action RELNOTES.sgml
7165 action SCO.sgml
7166 action Solaris.sgml
7167 action Versions.sgml
7168 action XKB-Config.sgml
7169 action XKB-Enhancing.sgml
7170 action add.sh
7171 action dps.sgml
7172 action fonts.sgml
7173 action index.post
7174 action index.pre
7175 action mdefs.cpp mdefs.pre
7177 # Entity files and scripts needed for all sgml docs:
7179 dst_dir doc/xorg-sgml-doctools
7180 action defs.ent
7182 # Driver-specific docs:
7184 dst_dir driver/xf86-video-tga
7185 action DECtga.sgml README.sgml
7187 dst_dir driver/xf86-video-i128
7188 action I128.sgml README.sgml
7190 dst_dir driver/xf86-video-sis
7191 action SiS.sgml README.sgml
7193 dst_dir driver/xf86-video-apm
7194 action apm.sgml README.sgml
7196 dst_dir driver/xf86-video-ati
7197 action ati.sgml README.ati.sgml
7198 action r128.sgml README.r128.sgml
7200 dst_dir driver/xf86-video-chips
7201 action chips.sgml README.sgml
7203 dst_dir driver/xf86-video-cyrix
7204 action cyrix.sgml README.sgml
7206 dst_dir driver/xf86-video-i740
7207 action i740.sgml README.sgml
7209 dst_dir driver/xf86-video-i810
7210 action i810.sgml README.sgml
7212 dst_dir driver/xf86-input-mouse
7213 action mouse.sgml README.sgml
7215 dst_dir driver/xf86-video-newport
7216 action newport.sgml README.sgml
7218 dst_dir driver/xf86-video-rendition
7219 action rendition.sgml README.sgml
7221 dst_dir driver/xf86-video-s3virge
7222 action s3virge.sgml README.sgml
7224 # Japanese documentation
7225 src_dir programs/Xserver/hw/xfree86/doc/Japanese/sgml
7226 dst_dir doc/old/sgml/Japanese
7228 action 1st.sgml
7229 action read98.sgml
7232 symlink_xserver_hw_xfree86_etc() {
7233 src_dir programs/Xserver/hw/xfree86/etc
7235 dst_dir xserver/xorg/hw/xfree86/common
7236 action vesamodes
7237 action extramodes
7239 dst_dir xserver/xorg/hw/xfree86/utils/gtf
7240 action gtf.c
7241 action gtf.man gtf.man.pre
7243 dst_dir xserver/xorg/hw/xfree86/utils/ioport
7244 action ioport.c
7246 dst_dir xserver/xorg/hw/xfree86/utils/kbd_mode
7247 action kbd_mode.c bsd-kbd_mode.c
7248 action kbd_mode.man bsd-kbd_mode.man.pre
7250 dst_dir xserver/xorg/hw/xfree86/utils/pcitweak
7251 action pcitweak.c
7252 action pcitweak.man pcitweak.man.pre
7254 dst_dir xserver/xorg/hw/xfree86/os-support/solaris
7255 action apSolaris.shar
7258 symlink_xserver_hw_xfree86_x86emu() {
7259 src_dir extras/x86emu/include
7260 dst_dir xserver/xorg/hw/xfree86/x86emu
7262 action x86emu.h
7264 src_dir extras/x86emu/src/x86emu
7266 action debug.c
7267 action decode.c
7268 action fpu.c
7269 action ops2.c
7270 action ops.c
7271 action prim_ops.c
7272 action sys.c
7273 action validate.c
7275 dst_dir xserver/xorg/hw/xfree86/x86emu/x86emu
7276 src_dir extras/x86emu/include/x86emu
7278 action fpu_regs.h
7279 action regs.h
7280 action types.h
7282 src_dir extras/x86emu/src/x86emu/x86emu
7284 action debug.h
7285 action decode.h
7286 action fpu.h
7287 action ops.h
7288 action prim_asm.h
7289 action prim_ops.h
7290 action x86emui.h
7294 symlink_xserver_hw_xfree86_dixmods() {
7295 dst_dir xserver/xorg/hw/xfree86/dixmods
7297 src_dir programs/Xserver/GL
7298 action glxmodule.c
7300 src_dir programs/Xserver/GL/mesa/GLcore
7301 action GLcoremodule.c
7303 src_dir programs/Xserver/afb
7304 action afbmodule.c
7306 src_dir lib/font/bitmap/module
7307 action bitmapmod.c
7309 src_dir lib/font/FreeType/module
7310 action ftmodule.c
7312 src_dir lib/font/Type1/module
7313 action type1mod.c
7315 src_dir programs/Xserver/cfb
7316 action cfbmodule.c
7318 src_dir programs/Xserver/cfb16
7319 action cfbmodule.c cfb16module.c
7321 src_dir programs/Xserver/cfb24
7322 action cfbmodule.c cfb24module.c
7324 src_dir programs/Xserver/cfb32
7325 action cfbmodule.c cfb32module.c
7327 src_dir programs/Xserver/dbe
7328 action dbemodule.c
7330 src_dir programs/Xserver/fb
7331 action fbmodule.c
7333 src_dir programs/Xserver/miext/layer
7334 action laymodule.c
7336 src_dir programs/Xserver/miext/shadow
7337 action shmodule.c
7339 src_dir programs/Xserver/mfb
7340 action mfbmodule.c
7342 src_dir programs/Xserver/record
7343 action recordmod.c
7346 symlink_xserver_hw_xfree86_dummylib() {
7347 src_dir programs/Xserver/hw/xfree86/dummylib
7348 dst_dir xserver/xorg/hw/xfree86/dummylib
7350 action README
7351 action dummylib.h
7352 action fatalerror.c
7353 action getvalidbios.c
7354 action logvwrite.c
7355 action pcitestmulti.c
7356 action verrorf.c
7357 action xalloc.c
7358 action xf86addrestolist.c
7359 action xf86allocscripi.c
7360 action xf86drvmsg.c
7361 action xf86drvmsgverb.c
7362 action xf86errorf.c
7363 action xf86errorfverb.c
7364 action xf86getpagesize.c
7365 action xf86getverb.c
7366 action xf86info.c
7367 action xf86msg.c
7368 action xf86msgverb.c
7369 action xf86opt.c
7370 action xf86screens.c
7371 action xf86servisinit.c
7372 action xf86verbose.c
7375 symlink_xserver_hw_xfree86_exa() {
7376 src_dir programs/Xserver/hw/xfree86/exa
7377 dst_dir xserver/xorg/hw/xfree86/exa
7379 action exaasync.c
7380 action exa.c
7381 action exa.h
7382 action exaoffscreen.c
7383 action exapict.c
7384 action exaPriv.h
7387 symlink_xserver_hw_xfree86_fbdevhw() {
7388 src_dir programs/Xserver/hw/xfree86/fbdevhw
7389 dst_dir xserver/xorg/hw/xfree86/fbdevhw
7391 action fbdevhw.c
7392 action fbdevhw.h
7393 action fbdevhwstub.c
7394 action fbpriv.h
7395 action README
7396 action fbdevhw.man fbdevhw.man.pre
7399 symlink_xserver_hw_xfree86_getconfig() {
7400 src_dir programs/Xserver/hw/xfree86/getconfig
7401 dst_dir xserver/xorg/hw/xfree86/getconfig
7403 action cfg.man cfg.man.pre
7404 action cfg.sample
7405 action getconfig.man getconfig.man.pre
7406 action getconfig.pl
7407 action getconfig.sh getconfig
7408 action xorg.cfg
7411 symlink_xserver_hw_xfree86_i2c() {
7412 src_dir programs/Xserver/hw/xfree86/i2c
7413 dst_dir xserver/xorg/hw/xfree86/i2c
7415 action xf86i2c.c
7416 action xf86i2c.h
7417 action xf86i2cmodule.c
7419 src_dir programs/Xserver/hw/xfree86/drivers/i2c
7420 dst_dir xserver/xorg/hw/xfree86/i2c
7422 action i2c_def.h
7424 action bt829.c
7425 action bt829.h
7426 action bt829_module.c
7428 action fi1236.c
7429 action fi1236.h
7430 action fi1236_module.c
7432 action msp3430.c
7433 action msp3430.h
7434 action msp3430_module.c
7436 action tda8425.c
7437 action tda8425.h
7438 action tda8425_module.c
7440 action tda9850.c
7441 action tda9850.h
7442 action tda9850_module.c
7444 action tda9885.c
7445 action tda9885.h
7446 action tda9885_module.c
7448 action uda1380.c
7449 action uda1380.h
7450 action uda1380_module.c
7453 symlink_xserver_hw_xfree86_int10() {
7454 src_dir programs/Xserver/hw/xfree86/int10
7455 dst_dir xserver/xorg/hw/xfree86/int10
7457 action generic.c
7458 action helper_exec.c
7459 action helper_mem.c
7460 action pci.c
7461 action stub.c
7462 action x86emu.c
7463 action xf86int10.c
7464 action xf86int10.h
7465 action xf86int10module.c
7466 action xf86x86emu.c
7467 action xf86x86emu.h
7468 action INT10.HOWTO
7471 symlink_xserver_hw_xfree86_loader() {
7472 src_dir programs/Xserver/hw/xfree86/loader
7473 dst_dir xserver/xorg/hw/xfree86/loader
7475 action SparcMulDiv.S
7476 action aout.h
7477 action aoutloader.c
7478 action aoutloader.h
7479 action ar.h
7480 action coff.h
7481 action coffloader.c
7482 action coffloader.h
7483 action dixsym.c
7484 action dlloader.c
7485 action dlloader.h
7486 action elf.h
7487 action elfloader.c
7488 action elfloader.h
7489 action extsym.c
7490 action fontsym.c
7491 action hash.c
7492 action hash.h
7493 action loader.c
7494 action loader.h
7495 action loaderProcs.h
7496 action loadext.c
7497 action loadfont.c
7498 action loadmod.c
7499 action misym.c
7500 action os.c
7501 action sym.h
7502 action xf86sym.c
7505 symlink_xserver_hw_xfree86_ossupport() {
7506 src_dir programs/Xserver/hw/xfree86/os-support
7507 dst_dir xserver/xorg/hw/xfree86/os-support
7509 action assyntax.h
7510 action int10Defines.h
7511 action xf86OSKbd.h
7512 action xf86OSmouse.h
7513 action xf86OSpriv.h
7514 action xf86_OSlib.h
7515 action xf86_OSproc.h
7516 action xf86_ansic.h
7517 action xf86_libc.h
7519 action README.OS-lib
7521 src_dir extras/drm/libdrm
7523 action xf86drm.h
7524 action xf86drmCompat.h
7527 symlink_xserver_hw_xfree86_ossupport_bsd() {
7528 src_dir programs/Xserver/hw/xfree86/os-support/bsd
7529 dst_dir xserver/xorg/hw/xfree86/os-support/bsd
7531 action alpha_video.c
7532 action arm_video.c
7533 action bsdResource.c
7534 action bsd_KbdMap.c
7535 action bsd_VTsw.c
7536 action bsd_apm.c
7537 action bsd_axp.c
7538 action bsd_ev56.c
7539 action bsd_init.c
7540 action bsd_io.c
7541 action bsd_jstk.c
7542 action bsd_kbd.c
7543 action bsd_kbd.h
7544 action bsd_kmod.c
7545 action bsd_kqueue_apm.c
7546 action bsd_mouse.c
7547 action i386_video.c
7548 action memrange.h
7549 action ppc_video.c
7550 action sparc64_video.c
7553 symlink_xserver_hw_xfree86_ossupport_bsd_libusb() {
7554 src_dir programs/Xserver/hw/xfree86/os-support/bsd/libusb
7555 dst_dir xserver/xorg/hw/xfree86/os-support/bsd/libusb
7557 action data.c
7558 action descr.c
7559 action parse.c
7560 action usage.c
7561 action usb.h
7562 action usbvar.h
7563 action usb.3
7564 action usb_hid_usages
7567 symlink_xserver_hw_xfree86_ossupport_bus() {
7568 src_dir programs/Xserver/hw/xfree86/os-support/bus
7569 dst_dir xserver/xorg/hw/xfree86/os-support/bus
7571 action 460gxPCI.c
7572 action 460gxPCI.h
7573 action Pci.c
7574 action Pci.h
7575 action Sbus.c
7576 action altixPCI.c
7577 action altixPCI.h
7578 action axpPci.c
7579 action e8870PCI.c
7580 action e8870PCI.h
7581 action freebsdPci.c
7582 action ix86Pci.c
7583 action linuxPci.c
7584 action netbsdPci.c
7585 action ppcPci.c
7586 action sparcPci.c
7587 action xf86Pci.h
7588 action xf86Sbus.h
7589 action zx1PCI.c
7590 action zx1PCI.h
7593 symlink_xserver_hw_xfree86_ossupport_drm() {
7594 src_dir programs/Xserver/hw/xfree86/os-support/linux/drm
7595 dst_dir xserver/xorg/hw/xfree86/os-support/drm
7597 action drmmodule.c
7599 src_dir extras/drm/libdrm
7601 action xf86drm.c
7602 action xf86drmHash.c
7603 action xf86drmRandom.c
7604 action xf86drmSL.c
7607 symlink_xserver_hw_xfree86_ossupport_linux() {
7608 src_dir programs/Xserver/hw/xfree86/os-support/linux
7609 dst_dir xserver/xorg/hw/xfree86/os-support/linux
7611 action lnx.h
7612 action lnxResource.c
7613 action lnx_KbdMap.c
7614 action lnx_acpi.c
7615 action lnx_agp.c
7616 action lnx_apm.c
7617 action lnx_axp.c
7618 action lnx_ev56.c
7619 action lnx_font.c
7620 action lnx_ia64.c
7621 action lnx_init.c
7622 action lnx_io.c
7623 action lnx_jstk.c
7624 action lnx_kbd.c
7625 action lnx_kbd.h
7626 action lnx_kmod.c
7627 action lnx_mouse.c
7628 action lnx_pci.c
7629 action lnx_video.c
7632 symlink_xserver_hw_xfree86_ossupport_linux_int10() {
7633 src_dir programs/Xserver/hw/xfree86/os-support/linux/int10
7634 dst_dir xserver/xorg/hw/xfree86/os-support/linux/int10
7636 action linux.c
7639 symlink_xserver_hw_xfree86_ossupport_linux_int10_vm86() {
7640 src_dir programs/Xserver/hw/xfree86/os-support/linux/int10/vm86
7641 dst_dir xserver/xorg/hw/xfree86/os-support/linux/int10/vm86
7643 action linux_vm86.c
7646 symlink_xserver_hw_xfree86_ossupport_lynxos() {
7647 src_dir programs/Xserver/hw/xfree86/os-support/lynxos
7648 dst_dir xserver/xorg/hw/xfree86/os-support/lynxos
7650 action lynx_init.c
7651 action lynx_io.c
7652 action lynx_mmap.c
7653 action lynx_mouse.c
7654 action lynx_noinline.c
7655 action lynx_ppc.c
7656 action lynx_video.c
7657 action lynx_ppc.S
7660 symlink_xserver_hw_xfree86_ossupport_misc() {
7661 src_dir programs/Xserver/hw/xfree86/os-support/misc
7662 dst_dir xserver/xorg/hw/xfree86/os-support/misc
7664 action BUSmemcpy.c
7665 action Delay.c
7666 action IODelay.c
7667 action SlowBcopy.c
7668 action xf86_IlHack.c
7669 action xf86_Util.c
7671 action BUSmemcpy.S
7672 action IODelay.S
7673 action PortIO.S
7674 action SlowBcopy.S
7678 symlink_xserver_hw_xfree86_ossupport_sco() {
7679 src_dir programs/Xserver/hw/xfree86/os-support/sco
7680 dst_dir xserver/xorg/hw/xfree86/os-support/sco
7682 action VTsw_sco.c
7683 action sco_KbdMap.c
7684 action sco_init.c
7685 action sco_io.c
7686 action sco_iop.c
7687 action sco_kbd.c
7688 action sco_kbd.h
7689 action sco_mouse.c
7690 action sco_video.c
7693 symlink_xserver_hw_xfree86_ossupport_shared() {
7694 src_dir programs/Xserver/hw/xfree86/os-support/shared
7695 dst_dir xserver/xorg/hw/xfree86/os-support/shared
7697 action VTsw_noop.c
7698 action VTsw_usl.c
7699 action agp_noop.c
7700 action at_scancode.c
7701 action bios_devmem.c
7702 action bios_mmap.c
7703 action ia64Pci.c
7704 action ia64Pci.h
7705 action ioperm_noop.c
7706 action kbd.c
7707 action kmod_noop.c
7708 action libc_wrapper.c
7709 action pm_noop.c
7710 action posix_tty.c
7711 action sigio.c
7712 action sigiostubs.c
7713 action stdPci.c
7714 action stdResource.c
7715 action std_kbdEv.c
7716 action sysv_kbd.c
7717 action vidmem.c
7718 action xf86Axp.c
7719 action xf86Axp.h
7720 action inout.S
7723 symlink_xserver_hw_xfree86_ossupport_sunos() {
7724 src_dir programs/Xserver/hw/xfree86/os-support/sunos
7725 dst_dir xserver/xorg/hw/xfree86/os-support/solaris
7727 action sun_agp.c
7728 action agpgart.h
7729 action sun_bios.c
7730 action sun_init.c
7731 action sun_io.c
7732 action sun_kbd.h
7733 action sun_kbd.c
7734 action sun_kbdEv.c
7735 action sun_mouse.c
7736 action sun_vid.c
7737 action solaris-amd64.S
7738 action solaris-ia32.S
7739 action solaris-sparcv8plus.S
7740 action sun_inout.s
7743 symlink_xserver_hw_xfree86_ossupport_sysv() {
7744 src_dir programs/Xserver/hw/xfree86/os-support/sysv
7745 dst_dir xserver/xorg/hw/xfree86/os-support/sysv
7747 action sysv_init.c
7748 action sysv_io.c
7749 action sysv_mouse.c
7750 action sysv_video.c
7751 action xqueue.c
7752 action xqueue.h
7755 symlink_xserver_hw_xfree86_ossupport_usl() {
7756 src_dir programs/Xserver/hw/xfree86/os-support/usl
7757 dst_dir xserver/xorg/hw/xfree86/os-support/usl
7759 action usl_init.c
7760 action usl_io.c
7761 action usl_iop.c
7762 action usl_kbd.c
7763 action usl_kbd.h
7764 action usl_KbdMap.c
7765 action usl_mouse.c
7766 action usl_video.c
7767 action usl_vtsw.c
7768 action usl_xqueue.c
7769 action usl_xqueue.h
7772 symlink_xserver_hw_xfree86_parser() {
7773 src_dir programs/Xserver/hw/xfree86/parser
7774 dst_dir xserver/xorg/hw/xfree86/parser
7776 action Configint.h
7777 action DRI.c
7778 action Device.c
7779 action Extensions.c
7780 action Files.c
7781 action Flags.c
7782 action Input.c
7783 action Keyboard.c
7784 action Layout.c
7785 action Module.c
7786 action Monitor.c
7787 action Pointer.c
7788 action Screen.c
7789 action Vendor.c
7790 action Video.c
7791 action configProcs.h
7792 action cpconfig.c
7793 action read.c
7794 action scan.c
7795 action write.c
7796 action xf86Optrec.h
7797 action xf86Parser.h
7798 action xf86tokens.h
7801 symlink_xserver_hw_xfree86_rac() {
7802 src_dir programs/Xserver/hw/xfree86/rac
7803 dst_dir xserver/xorg/hw/xfree86/rac
7805 action xf86RAC.c
7806 action xf86RAC.h
7807 action xf86RACmodule.c
7810 symlink_xserver_hw_xfree86_ramdac() {
7811 src_dir programs/Xserver/hw/xfree86/ramdac
7812 dst_dir xserver/xorg/hw/xfree86/ramdac
7814 action BT.c
7815 action BT.h
7816 action BTPriv.h
7817 action IBM.c
7818 action IBM.h
7819 action IBMPriv.h
7820 action TI.c
7821 action TI.h
7822 action TIPriv.h
7823 action xf86Cursor.c
7824 action xf86Cursor.h
7825 action xf86CursorPriv.h
7826 action xf86HWCurs.c
7827 action xf86RamDac.c
7828 action xf86RamDac.h
7829 action xf86RamDacCmap.c
7830 action xf86RamDacMod.c
7831 action xf86RamDacPriv.h
7833 action CURSOR.NOTES
7836 symlink_xserver_hw_xfree86_scanpci() {
7837 src_dir programs/Xserver/hw/xfree86/scanpci
7838 dst_dir xserver/xorg/hw/xfree86/scanpci
7840 action xf86PciData.h
7841 action xf86PciStdIds.h
7842 action xf86PciStr.h
7843 action xf86ScanPci.c
7844 action xf86ScanPci.h
7846 action pciid2c.pl
7848 src_dir programs/Xserver/hw/xfree86/etc
7849 action pci.ids
7850 action extrapci.ids
7852 dst_dir xserver/xorg/hw/xfree86/utils/scanpci
7853 action scanpci.c
7854 action scanpci.man scanpci.man.pre
7857 symlink_xserver_hw_xfree86_shadowfb() {
7858 src_dir programs/Xserver/hw/xfree86/shadowfb
7859 dst_dir xserver/xorg/hw/xfree86/shadowfb
7861 action sfbmodule.c
7862 action shadow.c
7863 action shadowfb.h
7866 symlink_xserver_hw_xfree86_vbe() {
7867 src_dir programs/Xserver/hw/xfree86/vbe
7868 dst_dir xserver/xorg/hw/xfree86/vbe
7870 action vbe.c
7871 action vbe.h
7872 action vbeModes.c
7873 action vbeModes.h
7874 action vbe_module.c
7877 symlink_xserver_hw_xfree86_vgahw() {
7878 src_dir programs/Xserver/hw/xfree86/vgahw
7879 dst_dir xserver/xorg/hw/xfree86/vgahw
7881 action vgaCmap.c
7882 action vgaHW.c
7883 action vgaHW.h
7884 action vgaHWmodule.c
7887 symlink_xserver_hw_xfree86_xaa() {
7888 src_dir programs/Xserver/hw/xfree86/xaa
7889 dst_dir xserver/xorg/hw/xfree86/xaa
7891 action xaa.h
7892 action xaaBitBlt.c
7893 action xaaBitOrder.c
7894 action xaaBitmap.c
7895 action xaaCpyArea.c
7896 action xaaCpyPlane.c
7897 action xaaCpyWin.c
7898 action xaaDashLine.c
7899 action xaaFallback.c
7900 action xaaFillArc.c
7901 action xaaFillPoly.c
7902 action xaaFillRect.c
7903 action xaaGC.c
7904 action xaaGCmisc.c
7905 action xaaImage.c
7906 action xaaInit.c
7907 action xaaInitAccel.c
7908 action xaaLine.c
7909 action xaaLineMisc.c
7910 action xaaNonTEGlyph.c
7911 action xaaNonTEText.c
7912 action xaaOffscreen.c
7913 action xaaOverlay.c
7914 action xaaOverlayDF.c
7915 action xaaPCache.c
7916 action xaaPaintWin.c
7917 action xaaPict.c
7918 action xaaROP.c
7919 action xaaRect.c
7920 action xaaSpans.c
7921 action xaaStateChange.c
7922 action xaaStipple.c
7923 action xaaTEGlyph.c
7924 action xaaTEText.c
7925 action xaaTables.c
7926 action xaaWideLine.c
7927 action xaaWrapper.c
7928 action xaaWrapper.h
7929 action xaacexp.h
7930 action xaalocal.h
7931 action xaarop.h
7932 action xaawrap.h
7933 action xaaTEGlyphBlt.S
7935 action XAA.HOWTO
7938 symlink_xserver_hw_xfree86_xf1bpp() {
7939 src_dir programs/Xserver/hw/xfree86/xf1bpp
7940 dst_dir xserver/xorg/hw/xfree86/xf1bpp
7942 action mfbmap.h
7943 action mfbmodule.c
7944 action mfbunmap.h
7945 action xf1bpp.h
7946 action mfbmap.sh
7947 action mfbunmap.sh
7950 symlink_xserver_hw_xfree86_xf4bpp() {
7951 src_dir programs/Xserver/hw/xfree86/xf4bpp
7952 dst_dir xserver/xorg/hw/xfree86/xf4bpp
7954 action OScompiler.h
7955 action emulOpStip.c
7956 action emulRepAre.c
7957 action emulTile.c
7958 action ibmTrace.h
7959 action mfbbres.c
7960 action mfbbresd.c
7961 action mfbfillarc.c
7962 action mfbhrzvert.c
7963 action mfbimggblt.c
7964 action mfbline.c
7965 action mfbzerarc.c
7966 action offscreen.c
7967 action ppcArea.c
7968 action ppcBStore.c
7969 action ppcCReduce.c
7970 action ppcClip.c
7971 action ppcCpArea.c
7972 action ppcDepth.c
7973 action ppcFillRct.c
7974 action ppcGC.c
7975 action ppcGCstr.h
7976 action ppcGetSp.c
7977 action ppcIO.c
7978 action ppcImg.c
7979 action ppcPixFS.c
7980 action ppcPixmap.c
7981 action ppcPntWin.c
7982 action ppcPolyPnt.c
7983 action ppcPolyRec.c
7984 action ppcQuery.c
7985 action ppcRslvC.c
7986 action ppcSetSp.c
7987 action ppcSpMcro.h
7988 action ppcWinFS.c
7989 action ppcWindow.c
7990 action vgaBitBlt.c
7991 action vgaGC.c
7992 action vgaImages.c
7993 action vgaReg.h
7994 action vgaSolid.c
7995 action vgaStipple.c
7996 action vgaVideo.h
7997 action vgamodule.c
7998 action wm3.c
7999 action wm3.h
8000 action xf4bpp.h
8002 action NOTES
8005 symlink_xserver_hw_xfree86_xf8_16bpp() {
8006 src_dir programs/Xserver/hw/xfree86/xf8_16bpp
8007 dst_dir xserver/xorg/hw/xfree86/xf8_16bpp
8009 action cfb8_16.h
8010 action cfb8_16module.c
8011 action cfbscrinit.c
8012 action cfbwindow.c
8015 symlink_xserver_hw_xfree86_xf8_32bpp() {
8016 src_dir programs/Xserver/hw/xfree86/xf8_32bpp
8017 dst_dir xserver/xorg/hw/xfree86/xf8_32bpp
8019 action cfb8_32.h
8020 action cfb8_32module.c
8021 action cfbbstore.c
8022 action cfbcpyarea.c
8023 action cfbcpyplane.c
8024 action cfbgc.c
8025 action cfbgcmisc.c
8026 action cfbgcunder.c
8027 action cfbimage.c
8028 action cfbpntwin.c
8029 action cfbscrinit.c
8030 action cfbwindow.c
8031 action xf86overlay.c
8034 symlink_xserver_hw_xfree86_xf8_32wid() {
8035 src_dir programs/Xserver/hw/xfree86/xf8_32wid
8036 dst_dir xserver/xorg/hw/xfree86/xf8_32wid
8038 action cfb8_32wid.h
8039 action cfb8_32widmodule.c
8040 action cfbscrinit.c
8041 action cfbwid.c
8042 action cfbwindow.c
8045 symlink_xserver_hw_xfree86_xf86cfg() {
8046 src_dir programs/Xserver/hw/xfree86/xf86cfg
8047 dst_dir xserver/xorg/hw/xfree86/utils/xorgcfg
8049 action TODO
8050 action XOrgCfg.cpp XOrgCfg.pre
8051 action accessx.c
8052 action card-cfg.c
8053 action card-cfg.h
8054 action card.xbm
8055 action card.xpm
8056 action cards.c
8057 action cards.h
8058 action computer.xpm
8059 action config.c
8060 action config.h
8061 action down.xbm
8062 action expert.c
8063 action help.c
8064 action help.h
8065 action interface.c
8066 action keyboard-cfg.c
8067 action keyboard-cfg.h
8068 action keyboard.xbm
8069 action keyboard.xpm
8070 action left.xbm
8071 action loader.c
8072 action loader.h
8073 action loadmod.c
8074 action monitor-cfg.c
8075 action monitor-cfg.h
8076 action monitor.xbm
8077 action monitor.xpm
8078 action mouse-cfg.c
8079 action mouse-cfg.h
8080 action mouse.xbm
8081 action mouse.xpm
8082 action narrower.xbm
8083 action options.c
8084 action options.h
8085 action right.xbm
8086 action screen-cfg.c
8087 action screen-cfg.h
8088 action screen.c
8089 action screen.h
8090 action shorter.xbm
8091 action startx.c
8092 action stubs.c
8093 action stubs.h
8094 action taller.xbm
8095 action text-mode.c
8096 action up.xbm
8097 action vidmode.c
8098 action vidmode.h
8099 action wider.xbm
8100 action xf86config.c
8101 action xf86config.h
8102 action xorgcfg.man xorgcfg.man.pre
8106 symlink_xserver_hw_xfree86_xf86config() {
8107 src_dir programs/Xserver/hw/xfree86/xf86config
8108 dst_dir xserver/xorg/hw/xfree86/utils/xorgconfig
8110 action Cards
8111 action Cards98
8112 action cards.c
8113 action cards.h
8114 action xorgconfig.c
8115 action xorgconfig.man xorgconfig.man.pre
8118 symlink_xserver_hw_xnest() {
8119 src_dir programs/Xserver/hw/xnest
8120 dst_dir xserver/xorg/hw/xnest
8122 action Args.c
8123 action Args.h
8124 action Color.c
8125 action Color.h
8126 action Cursor.c
8127 action Display.c
8128 action Display.h
8129 action Drawable.h
8130 action Events.c
8131 action Events.h
8132 action Font.c
8133 action GC.c
8134 action GCOps.c
8135 action GCOps.h
8136 action GetTime.c
8137 action Handlers.c
8138 action Handlers.h
8139 action Init.c
8140 action Init.h
8141 action Keyboard.c
8142 action Keyboard.h
8143 action Pixmap.c
8144 action Pointer.c
8145 action Pointer.h
8146 action Screen.c
8147 action Screen.h
8148 action TestExt.c
8149 action Visual.c
8150 action Visual.h
8151 action Window.c
8152 action XNCursor.h
8153 action XNFont.h
8154 action XNGC.h
8155 action XNPixmap.h
8156 action XNWindow.h
8157 action Xnest.h
8158 action icon
8159 action os2Stub.c
8160 action screensaver
8162 action Xnest.man Xnest.man.pre
8165 symlink_xserver_hw_xwin() {
8166 src_dir programs/Xserver/hw/xwin
8167 dst_dir xserver/xorg/hw/xwin
8169 action InitInput.c
8170 action InitOutput.c
8171 action ddraw.h
8172 action win.h
8173 action winallpriv.c
8174 action winauth.c
8175 action winblock.c
8176 action winclip.c
8177 action winclipboard.h
8178 action winclipboardinit.c
8179 action winclipboardtextconv.c
8180 action winclipboardthread.c
8181 action winclipboardunicode.c
8182 action winclipboardwndproc.c
8183 action winclipboardwrappers.c
8184 action winclipboardxevents.c
8185 action wincmap.c
8186 action winconfig.c
8187 action winconfig.h
8188 action wincreatewnd.c
8189 action wincursor.c
8190 action windialogs.c
8191 action winengine.c
8192 action winerror.c
8193 action winfillsp.c
8194 action winfont.c
8195 action wingc.c
8196 action wingetsp.c
8197 action winglobals.c
8198 action winkeybd.c
8199 action winkeybd.h
8200 action winkeyhook.c
8201 action winkeymap.h
8202 action winkeynames.h
8203 action winlayouts.h
8204 action winmessages.h
8205 action winmisc.c
8206 action winmouse.c
8207 action winms.h
8208 action winmsg.c
8209 action winmsg.h
8210 action winmultiwindowclass.c
8211 action winmultiwindowclass.h
8212 action winmultiwindowicons.c
8213 action winmultiwindowshape.c
8214 action winmultiwindowwindow.c
8215 action winmultiwindowwm.c
8216 action winmultiwindowwndproc.c
8217 action winnativegdi.c
8218 action winpfbdd.c
8219 action winpixmap.c
8220 action winpntwin.c
8221 action winpolyline.c
8222 action winprefs.c
8223 action winprefs.h
8224 action winprefsyacc.y
8225 action winprefslex.l
8226 action winpriv.c
8227 action winpriv.h
8228 action winprocarg.c
8229 action winpushpxl.c
8230 action winrandr.c
8231 action winregistry.c
8232 action winresource.h
8233 action winrop.c
8234 action winscrinit.c
8235 action winsetsp.c
8236 action winshaddd.c
8237 action winshadddnl.c
8238 action winshadgdi.c
8239 action wintrayicon.c
8240 action winvalargs.c
8241 action winvideo.c
8242 action winwakeup.c
8243 action winwin32rootless.c
8244 action winwin32rootlesswindow.c
8245 action winwin32rootlesswndproc.c
8246 action winwindow.c
8247 action winwindow.h
8248 action winwindowswm.c
8249 action winwndproc.c
8251 action XWin.rc
8252 action X.ico
8253 action X-boxed.ico
8255 action XWin.man
8256 action XWinrc.man
8258 action _usr_X11R6_lib_X11_system.XWinrc
8260 action ChangeLog
8261 action README
8264 symlink_xserver_hw_xwin_xlaunch() {
8265 src_dir programs/Xserver/hw/xwin/xlaunch
8266 dst_dir xserver/xorg/hw/xwin/xlaunch
8268 action config.cc
8269 action config.h
8270 action COPYING
8271 action main.cc
8272 action Makefile
8274 src_dir programs/Xserver/hw/xwin/xlaunch/resources
8275 dst_dir xserver/xorg/hw/xwin/xlaunch/resources
8277 action dialog.rc
8278 action fullscreen.bmp
8279 action images.rc
8280 action multiwindow.bmp
8281 action nodecoration.bmp
8282 action resources.h
8283 action resources.rc
8284 action strings.rc
8285 action windowed.bmp
8287 src_dir programs/Xserver/hw/xwin/xlaunch/window
8288 dst_dir xserver/xorg/hw/xwin/xlaunch/window
8290 action dialog.cc
8291 action dialog.h
8292 action util.cc
8293 action util.h
8294 action window.cc
8295 action window.h
8296 action wizard.cc
8297 action wizard.h
8300 symlink_xserver_ilbm() {
8301 src_dir programs/Xserver/ilbm
8302 dst_dir xserver/xorg/ilbm
8304 action ilbm.h
8305 action ilbmbitblt.c
8306 action ilbmblt.c
8307 action ilbmbres.c
8308 action ilbmbresd.c
8309 action ilbmbstore.c
8310 action ilbmclip.c
8311 action ilbmcmap.c
8312 action ilbmfillarc.c
8313 action ilbmfillrct.c
8314 action ilbmfillsp.c
8315 action ilbmfont.c
8316 action ilbmgc.c
8317 action ilbmgetsp.c
8318 action ilbmhrzvert.c
8319 action ilbmimage.c
8320 action ilbmimggblt.c
8321 action ilbmline.c
8322 action ilbmmisc.c
8323 action ilbmpixmap.c
8324 action ilbmply1rct.c
8325 action ilbmplygblt.c
8326 action ilbmpntarea.c
8327 action ilbmpntwin.c
8328 action ilbmpolypnt.c
8329 action ilbmpushpxl.c
8330 action ilbmscrinit.c
8331 action ilbmsetsp.c
8332 action ilbmtegblt.c
8333 action ilbmtile.c
8334 action ilbmwindow.c
8335 action ilbmzerarc.c
8337 action README
8340 symlink_xserver_include() {
8341 src_dir programs/Xserver/include
8342 dst_dir xserver/xorg/include
8344 action bstore.h
8345 action bstorestr.h
8346 action closestr.h
8347 action closure.h
8348 action colormap.h
8349 action colormapst.h
8350 action cursor.h
8351 action cursorstr.h
8352 action dixevents.h
8353 action dixfont.h
8354 action dixfontstr.h
8355 action dixgrabs.h
8356 action dix.h
8357 action dixstruct.h
8358 action exevents.h
8359 action extension.h
8360 action extinit.h
8361 action extnsionst.h
8362 action gc.h
8363 action gcstruct.h
8364 action globals.h
8365 action input.h
8366 action inputstr.h
8367 action misc.h
8368 action miscstruct.h
8369 action opaque.h
8370 action os.h
8371 action pixmap.h
8372 action pixmapstr.h
8373 action property.h
8374 action propertyst.h
8375 action region.h
8376 action regionstr.h
8377 action resource.h
8378 action rgb.h
8379 action screenint.h
8380 action scrnintstr.h
8381 action selection.h
8382 action servermd.h
8383 action site.h
8384 action swaprep.h
8385 action swapreq.h
8386 action validate.h
8387 action window.h
8388 action windowstr.h
8389 action XIstubs.h
8392 symlink_xserver_iplan2p2() {
8393 src_dir programs/Xserver/iplan2p2
8394 dst_dir xserver/xorg/iplan2p2
8397 symlink_xserver_iplan2p4() {
8398 src_dir programs/Xserver/iplan2p4
8399 dst_dir xserver/xorg/iplan2p4
8401 action ipl.h
8402 action iplallpriv.c
8403 action iplbitblt.c
8404 action iplblt.c
8405 action iplbres.c
8406 action iplbresd.c
8407 action iplbstore.c
8408 action iplcmap.c
8409 action iplfillarc.c
8410 action iplfillrct.c
8411 action iplfillsp.c
8412 action iplgc.c
8413 action iplgetsp.c
8414 action iplhrzvert.c
8415 action iplimage.c
8416 action iplline.c
8417 action iplmap.h
8418 action iplmergerop.h
8419 action iplmskbits.c
8420 action iplmskbits.h
8421 action iplpack.c
8422 action iplpack.h
8423 action iplpixmap.c
8424 action iplply1rct.c
8425 action iplpntwin.c
8426 action iplpolypnt.c
8427 action iplrrop.c
8428 action iplrrop.h
8429 action iplscrinit.c
8430 action iplsetsp.c
8431 action iplsolid.c
8432 action ipltegblt.c
8433 action ipltile32.c
8434 action ipltileodd.c
8435 action iplwindow.c
8438 symlink_xserver_iplan2p8() {
8439 src_dir programs/Xserver/iplan2p8
8440 dst_dir xserver/xorg/iplan2p8
8444 symlink_xserver_lbx() {
8445 src_dir programs/Xserver/lbx
8446 dst_dir xserver/xorg/lbx
8448 action lbxcmap.c
8449 action lbxdata.h
8450 action lbxdix.c
8451 action lbxexts.c
8452 action lbxgfx.c
8453 action lbxmain.c
8454 action lbxopts.c
8455 action lbxprop.c
8456 action lbxserve.h
8457 action lbxsquish.c
8458 action lbxsrvopts.h
8459 action lbxswap.c
8460 action lbxtables.c
8461 action lbxtags.c
8462 action lbxtags.h
8463 action lbxzerorep.c
8466 symlink_xserver_mfb() {
8467 src_dir programs/Xserver/mfb
8468 dst_dir xserver/xorg/mfb
8470 action fastblt.h
8471 action maskbits.c
8472 action maskbits.h
8473 action mergerop.h
8474 action mfb.h
8475 action mfbbitblt.c
8476 action mfbblt.c
8477 action mfbbres.c
8478 action mfbbresd.c
8479 action mfbbstore.c
8480 action mfbclip.c
8481 action mfbcmap.c
8482 action mfbfillarc.c
8483 action mfbfillrct.c
8484 action mfbfillsp.c
8485 action mfbfont.c
8486 action mfbgc.c
8487 action mfbgetsp.c
8488 action mfbhrzvert.c
8489 action mfbimage.c
8490 action mfbimggblt.c
8491 action mfbline.c
8492 action mfbmisc.c
8493 action mfbpixmap.c
8494 action mfbply1rct.c
8495 action mfbplygblt.c
8496 action mfbpntarea.c
8497 action mfbpntwin.c
8498 action mfbpolypnt.c
8499 action mfbpushpxl.c
8500 action mfbscrclse.c
8501 action mfbscrinit.c
8502 action mfbsetsp.c
8503 action mfbtegblt.c
8504 action mfbtile.c
8505 action mfbwindow.c
8506 action mfbzerarc.c
8509 symlink_xserver_mi() {
8510 src_dir programs/Xserver/mi
8511 dst_dir xserver/xorg/mi
8513 action cbrt.c
8514 action mi.h
8515 action miarc.c
8516 action mibank.c
8517 action mibank.h
8518 action mibitblt.c
8519 action mibstore.c
8520 action mibstore.h
8521 action mibstorest.h
8522 action miclipn.c
8523 action micmap.c
8524 action micmap.h
8525 action micoord.h
8526 action micursor.c
8527 action midash.c
8528 action midispcur.c
8529 action mieq.c
8530 action miexpose.c
8531 action mifillarc.c
8532 action mifillarc.h
8533 action mifillrct.c
8534 action mifpoly.h
8535 action mifpolycon.c
8536 action migc.c
8537 action migc.h
8538 action miglblt.c
8539 action miinitext.c
8540 action miline.h
8541 action mioverlay.c
8542 action mioverlay.h
8543 action mipointer.c
8544 action mipointer.h
8545 action mipointrst.h
8546 action mipoly.c
8547 action mipoly.h
8548 action mipolycon.c
8549 action mipolygen.c
8550 action mipolypnt.c
8551 action mipolyrect.c
8552 action mipolyseg.c
8553 action mipolytext.c
8554 action mipolyutil.c
8555 action mipushpxl.c
8556 action miregion.c
8557 action miscanfill.h
8558 action miscrinit.c
8559 action mispans.c
8560 action mispans.h
8561 action misprite.c
8562 action misprite.h
8563 action mispritest.h
8564 action mistruct.h
8565 action mivalidate.h
8566 action mivaltree.c
8567 action miwideline.c
8568 action miwideline.h
8569 action miwindow.c
8570 action mizerarc.c
8571 action mizerarc.h
8572 action mizerclip.c
8573 action mizerline.c
8576 symlink_xserver_miext_cw() {
8577 src_dir programs/Xserver/miext/cw
8578 dst_dir xserver/xorg/miext/cw
8580 action cw.c
8581 action cw.h
8582 action cw_ops.c
8583 action cw_render.c
8586 symlink_xserver_miext_damage() {
8587 src_dir programs/Xserver/miext/damage
8588 dst_dir xserver/xorg/miext/damage
8590 action damage.c
8591 action damage.h
8592 action damagestr.h
8595 symlink_xserver_miext_layer() {
8596 src_dir programs/Xserver/miext/layer
8597 dst_dir xserver/xorg/miext/layer
8599 action layer.h
8600 action layergc.c
8601 action layerinit.c
8602 action layerpict.c
8603 action layerstr.h
8604 action layerwin.c
8607 symlink_xserver_miext_rootless() {
8608 src_dir programs/Xserver/miext/rootless
8609 dst_dir xserver/xorg/miext/rootless
8611 action rootless.h
8612 action rootlessCommon.c
8613 action rootlessCommon.h
8614 action rootlessConfig.h
8615 action rootlessGC.c
8616 action rootlessScreen.c
8617 action rootlessValTree.c
8618 action rootlessWindow.c
8619 action rootlessWindow.h
8621 action README.txt
8624 symlink_xserver_miext_rootless_accel() {
8625 src_dir programs/Xserver/miext/rootless/accel
8626 dst_dir xserver/xorg/miext/rootless/accel
8628 action rlAccel.c
8629 action rlAccel.h
8630 action rlBlt.c
8631 action rlCopy.c
8632 action rlFill.c
8633 action rlFillRect.c
8634 action rlFillSpans.c
8635 action rlGlyph.c
8636 action rlSolid.c
8639 symlink_xserver_miext_rootless_safealpha() {
8640 src_dir programs/Xserver/miext/rootless/safeAlpha
8641 dst_dir xserver/xorg/miext/rootless/safeAlpha
8643 action safeAlpha.h
8644 action safeAlphaPicture.c
8645 action safeAlphaWindow.c
8648 symlink_xserver_miext_shadow() {
8649 src_dir programs/Xserver/miext/shadow
8650 dst_dir xserver/xorg/miext/shadow
8652 action shadow.c
8653 action shadow.h
8654 action shalloc.c
8655 action shpacked.c
8656 action shplanar.c
8657 action shplanar8.c
8658 action shrot16pack.c
8659 action shrot16pack_180.c
8660 action shrot16pack_270.c
8661 action shrot16pack_90.c
8662 action shrot32pack.c
8663 action shrot32pack_180.c
8664 action shrot32pack_270.c
8665 action shrot32pack_90.c
8666 action shrot8pack.c
8667 action shrot8pack_180.c
8668 action shrot8pack_270.c
8669 action shrot8pack_90.c
8670 action shrotate.c
8671 action shrotpack.h
8674 symlink_xserver_os() {
8675 src_dir programs/Xserver/os
8676 dst_dir xserver/xorg/os
8678 action WaitFor.c
8679 action access.c
8680 action auth.c
8681 action connection.c
8682 action io.c
8683 action k5auth.c
8684 action lbxio.c
8685 action log.c
8686 action mitauth.c
8687 action oscolor.c
8688 action osdep.h
8689 action osinit.c
8690 action rpcauth.c
8691 action secauth.c
8692 action utils.c
8693 action xalloc.c
8694 action xdmauth.c
8695 action xdmcp.c
8696 action xprintf.c
8698 src_dir lib/misc
8699 action strlcat.c
8700 action strlcpy.c
8703 symlink_xserver_randr() {
8704 src_dir programs/Xserver/randr
8705 dst_dir xserver/xorg/randr
8707 action mirandr.c
8708 action randr.c
8709 action randrstr.h
8712 symlink_xserver_record() {
8713 src_dir programs/Xserver/record
8714 dst_dir xserver/xorg/record
8716 action record.c
8717 action set.c
8718 action set.h
8721 symlink_xserver_render() {
8722 src_dir programs/Xserver/render
8723 dst_dir xserver/xorg/render
8725 action animcur.c
8726 action filter.c
8727 action glyph.c
8728 action glyphstr.h
8729 action miglyph.c
8730 action miindex.c
8731 action mipict.c
8732 action mipict.h
8733 action mirect.c
8734 action mitrap.c
8735 action mitri.c
8736 action picture.c
8737 action picture.h
8738 action picturestr.h
8739 action render.c
8740 action renderedge.c
8741 action renderedge.h
8744 symlink_xserver_xfixes() {
8745 src_dir programs/Xserver/xfixes
8746 dst_dir xserver/xorg/xfixes
8748 action cursor.c
8749 action region.c
8750 action saveset.c
8751 action select.c
8752 action xfixes.c
8753 action xfixes.h
8754 action xfixesint.h
8757 symlink_xserver_xkb() {
8758 src_dir programs/Xserver/xkb
8759 dst_dir xserver/xorg/xkb
8761 action ddxBeep.c
8762 action ddxConfig.c
8763 action ddxCtrls.c
8764 action ddxDevBtn.c
8765 action ddxFakeBtn.c
8766 action ddxFakeMtn.c
8767 action ddxInit.c
8768 action ddxKeyClick.c
8769 action ddxKillSrv.c
8770 action ddxLEDs.c
8771 action ddxList.c
8772 action ddxLoad.c
8773 action ddxPrivate.c
8774 action ddxVT.c
8775 action xkb.c
8776 action xkb.h
8777 action xkbAccessX.c
8778 action xkbActions.c
8779 action xkbDflts.h
8780 action xkbEvents.c
8781 action xkbInit.c
8782 action xkbLEDs.c
8783 action xkbPrKeyEv.c
8784 action xkbPrOtherEv.c
8785 action xkbSwap.c
8786 action xkbUtils.c
8788 src_dir lib/X11
8789 action XKBAlloc.c
8790 action XKBGAlloc.c
8791 action XKBMAlloc.c
8792 action XKBMisc.c
8794 src_dir lib/xkbfile
8795 action maprules.c
8796 action xkbconfig.c
8797 action xkberrs.c
8798 action xkbmisc.c xkbfmisc.c
8799 action xkbout.c
8800 action xkbtext.c
8801 action xkmread.c
8803 src_dir programs/xkbcomp/compiled
8804 action README README.compiled
8807 symlink_xserver_xprint_config_models() {
8808 # CANONBJ10E-GS
8809 src_dir programs/Xserver/XpConfig/C/print/models/CANONBJ10E-GS
8810 dst_dir xserver/xorg/XpConfig/C/print/models/CANONBJ10E-GS
8812 action model-config
8814 # CANONC3200-PS
8815 src_dir programs/Xserver/XpConfig/C/print/models/CANONC3200-PS
8816 dst_dir xserver/xorg/XpConfig/C/print/models/CANONC3200-PS
8818 action model-config
8820 # GSdefault
8821 src_dir programs/Xserver/XpConfig/C/print/models/GSdefault
8822 dst_dir xserver/xorg/XpConfig/C/print/models/GSdefault
8824 action model-config
8826 # HPDJ1600C
8827 src_dir programs/Xserver/XpConfig/C/print/models/HPDJ1600C
8828 dst_dir xserver/xorg/XpConfig/C/print/models/HPDJ1600C
8830 action model-config
8832 src_dir programs/Xserver/XpConfig/C/print/models/HPDJ1600C/fonts
8833 dst_dir xserver/xorg/XpConfig/C/print/models/HPDJ1600C/fonts
8835 action 9nb00051.pmf
8836 action 9nb00052.pmf
8837 action 9nb00053.pmf
8838 action 9nb00054.pmf
8839 action 9nb00055.pmf
8840 action 9nb00056.pmf
8841 action 9nb00057.pmf
8842 action 9nb00058.pmf
8843 action 9nb00059.pmf
8844 action 9nb00060.pmf
8845 action 9nb00061.pmf
8846 action 9nb00062.pmf
8847 action 9nb00063.pmf
8848 action 9nb00064.pmf
8849 action 9nb00065.pmf
8850 action 9nb00066.pmf
8851 action 9nb00067.pmf
8852 action 9nb00068.pmf
8853 action 9nb00069.pmf
8854 action 9nb00070.pmf
8855 action 9nb00071.pmf
8856 action 9nb00072.pmf
8857 action 9nb00073.pmf
8858 action 9nb00074.pmf
8859 action 9nb00075.pmf
8860 action 9nb00076.pmf
8861 action 9nb00077.pmf
8862 action 9nb00079.pmf
8863 action 9nb00080.pmf
8864 action 9nb00081.pmf
8865 action 9nb00082.pmf
8866 action 9nb00083.pmf
8867 action 9nb00084.pmf
8868 action 9nb00085.pmf
8869 action 9nb00086.pmf
8870 action 9nb00087.pmf
8871 action 9nb00088.pmf
8872 action 9nb00089.pmf
8873 action 9nb00090.pmf
8874 action 9nb00091.pmf
8875 action 9nb00092.pmf
8876 action 9nb00093.pmf
8877 action 9nb00094.pmf
8878 action fonts.alias
8879 action fonts.dir
8880 action lpr0ye1a.pmf
8881 action README
8883 # HPLJ4050-PS
8884 src_dir programs/Xserver/XpConfig/C/print/models/HPLJ4050-PS
8885 dst_dir xserver/xorg/XpConfig/C/print/models/HPLJ4050-PS
8887 action model-config
8889 # HPLJ4family
8890 src_dir programs/Xserver/XpConfig/C/print/models/HPLJ4family
8891 dst_dir xserver/xorg/XpConfig/C/print/models/HPLJ4family
8893 action model-config
8895 src_dir programs/Xserver/XpConfig/C/print/models/HPLJ4family/fonts
8896 dst_dir xserver/xorg/XpConfig/C/print/models/HPLJ4family/fonts
8898 action 9nb00051.pmf
8899 action 9nb00052.pmf
8900 action 9nb00053.pmf
8901 action 9nb00054.pmf
8902 action 9nb00055.pmf
8903 action 9nb00056.pmf
8904 action 9nb00057.pmf
8905 action 9nb00058.pmf
8906 action 9nb00059.pmf
8907 action 9nb00060.pmf
8908 action 9nb00061.pmf
8909 action 9nb00062.pmf
8910 action 9nb00063.pmf
8911 action 9nb00064.pmf
8912 action 9nb00065.pmf
8913 action 9nb00066.pmf
8914 action 9nb00067.pmf
8915 action 9nb00068.pmf
8916 action 9nb00069.pmf
8917 action 9nb00070.pmf
8918 action 9nb00071.pmf
8919 action 9nb00072.pmf
8920 action 9nb00073.pmf
8921 action 9nb00074.pmf
8922 action 9nb00075.pmf
8923 action 9nb00076.pmf
8924 action 9nb00077.pmf
8925 action 9nb00079.pmf
8926 action 9nb00080.pmf
8927 action 9nb00081.pmf
8928 action 9nb00082.pmf
8929 action 9nb00083.pmf
8930 action 9nb00084.pmf
8931 action 9nb00085.pmf
8932 action 9nb00086.pmf
8933 action 9nb00087.pmf
8934 action 9nb00088.pmf
8935 action 9nb00089.pmf
8936 action 9nb00090.pmf
8937 action 9nb00091.pmf
8938 action 9nb00092.pmf
8939 action 9nb00093.pmf
8940 action 9nb00094.pmf
8941 action fonts.alias
8942 action fonts.dir
8943 action lpr0ye1a.pmf
8944 action README
8946 # PS2PDFspooldir-GS
8947 src_dir programs/Xserver/XpConfig/C/print/models/PS2PDFspooldir-GS
8948 dst_dir xserver/xorg/XpConfig/C/print/models/PS2PDFspooldir-GS
8950 action model-config
8951 action ps2pdf_spooltodir.sh
8953 # PSdefault
8954 src_dir programs/Xserver/XpConfig/C/print/models/PSdefault
8955 dst_dir xserver/xorg/XpConfig/C/print/models/PSdefault
8957 action model-config
8959 src_dir programs/Xserver/XpConfig/C/print/models/PSdefault/fonts
8960 dst_dir xserver/xorg/XpConfig/C/print/models/PSdefault/fonts
8962 action AvantGarde-BookOblique.pmf
8963 action AvantGarde-Book.pmf
8964 action AvantGarde-DemiOblique.pmf
8965 action AvantGarde-Demi.pmf
8966 action Courier-BoldOblique.pmf
8967 action Courier-Bold.pmf
8968 action Courier-Oblique.pmf
8969 action Courier.pmf
8970 action Helvetica-BoldOblique.pmf
8971 action Helvetica-Bold.pmf
8972 action Helvetica-Oblique.pmf
8973 action Helvetica.pmf
8974 action LubalinGraph-BookOblique.pmf
8975 action LubalinGraph-Book.pmf
8976 action LubalinGraph-DemiOblique.pmf
8977 action LubalinGraph-Demi.pmf
8978 action NewCenturySchlbk-BoldItalic.pmf
8979 action NewCenturySchlbk-Bold.pmf
8980 action NewCenturySchlbk-Italic.pmf
8981 action NewCenturySchlbk-Roman.pmf
8982 action Souvenir-DemiItalic.pmf
8983 action Souvenir-Demi.pmf
8984 action Souvenir-LightItalic.pmf
8985 action Souvenir-Light.pmf
8986 action Symbol.pmf
8987 action Times-BoldItalic.pmf
8988 action Times-Bold.pmf
8989 action Times-Italic.pmf
8990 action Times-Roman.pmf
8991 action ZapfDingbats.pmf
8993 # PSspooldir
8994 src_dir programs/Xserver/XpConfig/C/print/models/PSspooldir
8995 dst_dir xserver/xorg/XpConfig/C/print/models/PSspooldir
8997 action model-config
8998 action spooltodir.sh
9000 # SPSPARC2
9001 src_dir programs/Xserver/XpConfig/C/print/models/SPSPARC2
9002 dst_dir xserver/xorg/XpConfig/C/print/models/SPSPARC2
9004 action model-config
9009 symlink_xserver_xprint_config() {
9010 src_dir programs/Xserver/XpConfig
9011 dst_dir xserver/xorg/XpConfig
9013 action README
9015 src_dir programs/Xserver/XpConfig/C/print
9016 dst_dir xserver/xorg/XpConfig/C/print
9018 action Xprinters
9020 src_dir programs/Xserver/XpConfig/C/print/attributes
9021 dst_dir xserver/xorg/XpConfig/C/print/attributes
9023 action document
9024 action job
9025 action printer
9027 src_dir programs/Xserver/XpConfig/C/print/ddx-config/raster
9028 dst_dir xserver/xorg/XpConfig/C/print/ddx-config/raster
9030 action pcl
9031 action postscript
9033 src_dir programs/Xserver/XpConfig/en_US/print/attributes
9034 dst_dir xserver/xorg/XpConfig/en_US/print/attributes
9036 action document
9038 symlink_xserver_xprint_config_models
9041 symlink_xserver() {
9042 symlink_xserver_GL_apple
9043 symlink_xserver_GL_dri
9044 symlink_xserver_GL_glx
9045 symlink_xserver_GL_include_GL
9046 symlink_xserver_GL_mesa_X
9047 symlink_xserver_GL_windows
9048 symlink_xserver_XTrap
9049 symlink_xserver_Xext
9050 symlink_xserver_Xext_extmod
9051 symlink_xserver_Xi
9052 symlink_xserver_Xprint
9053 symlink_xserver_Xprint_etc
9054 symlink_xserver_Xprint_ps
9055 symlink_xserver_Xprint_pcl
9056 symlink_xserver_Xprint_raster
9057 symlink_xserver_afb
9058 symlink_xserver_cfb
9059 symlink_xserver_cfb24
9060 symlink_xserver_composite
9061 symlink_xserver_damageext
9062 symlink_xserver_dbe
9063 symlink_xserver_dix
9064 symlink_xserver_fb
9065 symlink_xserver_hw_darwin
9066 symlink_xserver_hw_darwin_bundle
9067 symlink_xserver_hw_darwin_iokit
9068 symlink_xserver_hw_darwin_quartz
9069 symlink_xserver_hw_darwin_quartz_cr
9070 symlink_xserver_hw_darwin_quartz_fullscreen
9071 symlink_xserver_hw_darwin_quartz_xpr
9072 symlink_xserver_hw_darwin_utils
9073 symlink_xserver_hw_dmx
9074 symlink_xserver_hw_dmx_config
9075 symlink_xserver_hw_dmx_doc
9076 symlink_xserver_hw_dmx_examples
9077 symlink_xserver_hw_dmx_glxProxy
9078 symlink_xserver_hw_dmx_input
9079 symlink_xserver_hw_sun
9080 symlink_xserver_hw_vfb
9081 symlink_xserver_hw_xfree86
9082 symlink_xserver_hw_xfree86_common
9083 symlink_xserver_hw_xfree86_ddc
9084 symlink_xserver_hw_xfree86_x86emu
9085 symlink_xserver_hw_xfree86_dixmods
9086 symlink_xserver_hw_xfree86_doc
9087 symlink_xserver_hw_xfree86_dummylib
9088 symlink_xserver_hw_xfree86_etc
9089 symlink_xserver_hw_xfree86_exa
9090 symlink_xserver_hw_xfree86_fbdevhw
9091 symlink_xserver_hw_xfree86_getconfig
9092 symlink_xserver_hw_xfree86_i2c
9093 symlink_xserver_hw_xfree86_int10
9094 symlink_xserver_hw_xfree86_loader
9095 symlink_xserver_hw_xfree86_ossupport
9096 symlink_xserver_hw_xfree86_ossupport_bsd
9097 symlink_xserver_hw_xfree86_ossupport_bsd_libusb
9098 symlink_xserver_hw_xfree86_ossupport_bus
9099 symlink_xserver_hw_xfree86_ossupport_drm
9100 symlink_xserver_hw_xfree86_ossupport_linux
9101 symlink_xserver_hw_xfree86_ossupport_linux_int10
9102 symlink_xserver_hw_xfree86_ossupport_linux_int10_vm86
9103 symlink_xserver_hw_xfree86_ossupport_lynxos
9104 symlink_xserver_hw_xfree86_ossupport_misc
9105 symlink_xserver_hw_xfree86_ossupport_sco
9106 symlink_xserver_hw_xfree86_ossupport_shared
9107 symlink_xserver_hw_xfree86_ossupport_sunos
9108 symlink_xserver_hw_xfree86_ossupport_sysv
9109 symlink_xserver_hw_xfree86_ossupport_usl
9110 symlink_xserver_hw_xfree86_parser
9111 symlink_xserver_hw_xfree86_rac
9112 symlink_xserver_hw_xfree86_ramdac
9113 symlink_xserver_hw_xfree86_scanpci
9114 symlink_xserver_hw_xfree86_shadowfb
9115 symlink_xserver_hw_xfree86_vbe
9116 symlink_xserver_hw_xfree86_vgahw
9117 symlink_xserver_hw_xfree86_xaa
9118 symlink_xserver_hw_xfree86_xf1bpp
9119 symlink_xserver_hw_xfree86_xf4bpp
9120 symlink_xserver_hw_xfree86_xf8_16bpp
9121 symlink_xserver_hw_xfree86_xf8_32bpp
9122 symlink_xserver_hw_xfree86_xf8_32wid
9123 symlink_xserver_hw_xfree86_xf86cfg
9124 symlink_xserver_hw_xfree86_xf86config
9125 symlink_xserver_hw_xnest
9126 symlink_xserver_hw_xwin
9127 symlink_xserver_hw_xwin_xlaunch
9128 symlink_xserver_ilbm
9129 symlink_xserver_include
9130 symlink_xserver_iplan2p2
9131 symlink_xserver_iplan2p4
9132 symlink_xserver_iplan2p8
9133 symlink_xserver_lbx
9134 symlink_xserver_mfb
9135 symlink_xserver_mi
9136 symlink_xserver_miext_cw
9137 symlink_xserver_miext_damage
9138 symlink_xserver_miext_layer
9139 symlink_xserver_miext_rootless
9140 symlink_xserver_miext_rootless_accel
9141 symlink_xserver_miext_rootless_safealpha
9142 symlink_xserver_miext_shadow
9143 symlink_xserver_os
9144 symlink_xserver_randr
9145 symlink_xserver_record
9146 symlink_xserver_render
9147 symlink_xserver_xfixes
9148 symlink_xserver_xkb
9149 symlink_xserver_xprint_config
9150 # ...
9153 #########
9155 # The driver module
9157 #########
9160 symlink_driver_apm() {
9161 src_dir programs/Xserver/hw/xfree86/drivers/apm
9162 dst_dir driver/xf86-video-apm
9164 action README
9166 src_dir programs/Xserver/hw/xfree86/drivers/apm
9167 dst_dir driver/xf86-video-apm/src
9169 action apm.h
9170 action apm_accel.c
9171 action apm_cursor.c
9172 action apm_dga.c
9173 action apm_driver.c
9174 action apm_funcs.c
9175 action apm_i2c.c
9176 action apm_regs.h
9177 action apm_rush.c
9178 action apm_video.c
9180 dst_dir driver/xf86-video-apm/man
9182 action apm.man
9185 symlink_driver_ark() {
9186 src_dir programs/Xserver/hw/xfree86/drivers/ark
9187 dst_dir driver/xf86-video-ark/src
9189 action ark.h
9190 action ark_accel.c
9191 action ark_driver.c
9192 action ark_reg.h
9194 dst_dir driver/xf86-video-ark/man
9198 symlink_driver_ati() {
9199 src_dir programs/Xserver/hw/xfree86/drivers/ati
9200 dst_dir driver/xf86-video-ati/src
9202 action ati.c
9203 action ati.h
9204 action atiaccel.c
9205 action atiaccel.h
9206 action atiadapter.c
9207 action atiadapter.h
9208 action atiadjust.c
9209 action atiadjust.h
9210 action atiaudio.c
9211 action atiaudio.h
9212 action atibank.c
9213 action atibank.h
9214 action atibus.c
9215 action atibus.h
9216 action atichip.c
9217 action atichip.h
9218 action aticlock.c
9219 action aticlock.h
9220 action aticonfig.c
9221 action aticonfig.h
9222 action aticonsole.c
9223 action aticonsole.h
9224 action aticrtc.h
9225 action aticursor.c
9226 action aticursor.h
9227 action atidac.c
9228 action atidac.h
9229 action atidecoder.c
9230 action atidecoder.h
9231 action atidga.c
9232 action atidga.h
9233 action atidri.c
9234 action atidri.h
9235 action atidripriv.h
9236 action atidsp.c
9237 action atidsp.h
9238 action atifillin.c
9239 action atifillin.h
9240 action atii2c.c
9241 action atii2c.h
9242 action atiident.c
9243 action atiident.h
9244 action atiio.h
9245 action atiload.c
9246 action atiload.h
9247 action atilock.c
9248 action atilock.h
9249 action atimach64.c
9250 action atimach64.h
9251 action atimach64accel.c
9252 action atimach64accel.h
9253 action atimach64cursor.c
9254 action atimach64cursor.h
9255 action atimach64i2c.c
9256 action atimach64i2c.h
9257 action atimach64io.c
9258 action atimach64io.h
9259 action atimach64xv.c
9260 action atimach64xv.h
9261 action atimisc.c
9262 action atimode.c
9263 action atimode.h
9264 action atimodule.c
9265 action atimodule.h
9266 action atimono.h
9267 action atioption.c
9268 action atioption.h
9269 action atipreinit.c
9270 action atipreinit.h
9271 action atiprint.c
9272 action atiprint.h
9273 action atipriv.h
9274 action atiprobe.c
9275 action atiprobe.h
9276 action atiregs.h
9277 action atirgb514.c
9278 action atirgb514.h
9279 action atiscreen.c
9280 action atiscreen.h
9281 action atistruct.h
9282 action atituner.c
9283 action atituner.h
9284 action atiutil.c
9285 action atiutil.h
9286 action ativalid.c
9287 action ativalid.h
9288 action ativersion.h
9289 action ativga.c
9290 action ativga.h
9291 action ativgaio.c
9292 action ativgaio.h
9293 action atividmem.c
9294 action atividmem.h
9295 action atiwonder.c
9296 action atiwonder.h
9297 action atiwonderio.c
9298 action atiwonderio.h
9299 action atixv.c
9300 action atixv.h
9301 action generic_bus.h
9302 action mach64_common.h
9303 action mach64_dri.h
9304 action mach64_sarea.h
9305 action r128.h
9306 action r128_accel.c
9307 action r128_chipset.h
9308 action r128_common.h
9309 action r128_cursor.c
9310 action r128_dga.c
9311 action r128_dri.c
9312 action r128_dri.h
9313 action r128_dripriv.h
9314 action r128_driver.c
9315 action r128_misc.c
9316 action r128_probe.c
9317 action r128_probe.h
9318 action r128_reg.h
9319 action r128_sarea.h
9320 action r128_version.h
9321 action r128_video.c
9322 action radeon.h
9323 action radeon_accel.c
9324 action radeon_accelfuncs.c
9325 action radeon_bios.c
9326 action radeon_chipset.h
9327 action radeon_common.h
9328 action radeon_commonfuncs.c
9329 action radeon_cursor.c
9330 action radeon_dga.c
9331 action radeon_dri.c
9332 action radeon_dri.h
9333 action radeon_dripriv.h
9334 action radeon_driver.c
9335 action radeon_exa.c
9336 action radeon_exa_funcs.c
9337 action radeon_exa_render.c
9338 action radeon_macros.h
9339 action radeon_mergedfb.c
9340 action radeon_mergedfb.h
9341 action radeon_misc.c
9342 action radeon_mm_i2c.c
9343 action radeon_probe.c
9344 action radeon_probe.h
9345 action radeon_reg.h
9346 action radeon_render.c
9347 action radeon_sarea.h
9348 action radeon_version.h
9349 action radeon_video.c
9350 action radeon_video.h
9351 action radeon_vip.c
9352 action theatre.c
9353 action theatre.h
9354 action theatre200.c
9355 action theatre200.h
9356 action theatre200_module.c
9357 action theatre_detect.c
9358 action theatre_detect.h
9359 action theatre_detect_module.c
9360 action theatre_module.c
9361 action theatre_reg.h
9363 dst_dir driver/xf86-video-ati/man
9365 action ati.man
9366 action r128.man
9367 action radeon.man
9370 symlink_driver_chips() {
9371 src_dir programs/Xserver/hw/xfree86/drivers/chips
9372 dst_dir driver/xf86-video-chips/src
9374 action ct_BlitMM.h
9375 action ct_Blitter.h
9376 action ct_BltHiQV.h
9377 action ct_accel.c
9378 action ct_bank.c
9379 action ct_cursor.c
9380 action ct_ddc.c
9381 action ct_dga.c
9382 action ct_driver.c
9383 action ct_driver.h
9384 action ct_regs.c
9385 action ct_shadow.c
9386 action ct_video.c
9388 dst_dir driver/xf86-video-chips/man
9390 action chips.man
9392 src_dir programs/Xserver/hw/xfree86/drivers/chips/util
9393 dst_dir driver/xf86-video-chips/util
9395 action AsmMacros.h
9396 action dRegs.c
9397 action modClock.c
9398 action mRegs.c
9401 symlink_driver_cirrus() {
9402 src_dir programs/Xserver/hw/xfree86/drivers/cirrus
9403 dst_dir driver/xf86-video-cirrus
9405 action README.multihead
9407 src_dir programs/Xserver/hw/xfree86/drivers/cirrus
9408 dst_dir driver/xf86-video-cirrus/src
9410 action CirrusClk.c
9411 action alp.h
9412 action alp_driver.c
9413 action alp_hwcurs.c
9414 action alp_i2c.c
9415 action alp_xaa.c
9416 action alp_xaam.c
9417 action cir.h
9418 action cir_dga.c
9419 action cir_driver.c
9420 action cir_shadow.c
9421 action lg.h
9422 action lg_driver.c
9423 action lg_hwcurs.c
9424 action lg_i2c.c
9425 action lg_xaa.c
9426 action lg_xaa.h
9428 dst_dir driver/xf86-video-cirrus/man
9430 action cirrus.man
9433 symlink_driver_cyrix() {
9434 src_dir programs/Xserver/hw/xfree86/drivers/cyrix
9435 dst_dir driver/xf86-video-cyrix
9437 action README
9438 action ChangeLog
9440 src_dir programs/Xserver/hw/xfree86/drivers/cyrix
9441 dst_dir driver/xf86-video-cyrix/src
9443 action cyrix.h
9444 action cyrix_accel.c
9445 action cyrix_bank.c
9446 action cyrix_driver.c
9447 action cyrix_helper.c
9448 action cyrix_shadow.c
9450 dst_dir driver/xf86-video-cyrix/man
9452 action cyrix.man
9455 symlink_driver_dummy() {
9456 src_dir programs/Xserver/hw/xfree86/drivers/dummy
9457 dst_dir driver/xf86-video-dummy/src
9459 action dummy.h
9460 action dummy_cursor.c
9461 action dummy_dga.c
9462 action dummy_driver.c
9464 dst_dir driver/xf86-video-dummy/man
9468 symlink_driver_fbdev() {
9469 src_dir programs/Xserver/hw/xfree86/drivers/fbdev
9470 dst_dir driver/xf86-video-fbdev/src
9472 action fbdev.c
9474 dst_dir driver/xf86-video-fbdev/man
9476 action fbdev.man
9479 symlink_driver_glide() {
9480 src_dir programs/Xserver/hw/xfree86/drivers/glide
9481 dst_dir driver/xf86-video-glide/src
9483 action glide_driver.c
9485 dst_dir driver/xf86-video-glide/man
9487 action glide.man
9490 symlink_driver_glint() {
9491 src_dir programs/Xserver/hw/xfree86/drivers/glint
9492 dst_dir driver/xf86-video-glint
9494 action DRI.txt
9495 action README.pm3
9497 src_dir programs/Xserver/hw/xfree86/drivers/glint
9498 dst_dir driver/xf86-video-glint/src
9500 action IBMramdac.c
9501 action TIramdac.c
9502 action glint.h
9503 action glint_common.h
9504 action glint_dga.c
9505 action glint_dri.c
9506 action glint_dri.h
9507 action glint_dripriv.h
9508 action glint_driver.c
9509 action glint_regs.h
9510 action glint_shadow.c
9511 action pm2_accel.c
9512 action pm2_dac.c
9513 action pm2_video.c
9514 action pm2ramdac.c
9515 action pm2v_dac.c
9516 action pm2vramdac.c
9517 action pm3_accel.c
9518 action pm3_dac.c
9519 action pm3_regs.h
9520 action pm3_video.c
9521 action pm_accel.c
9522 action pm_dac.c
9523 action sx_accel.c
9524 action tx_accel.c
9525 action tx_dac.c
9527 dst_dir driver/xf86-video-glint/man
9529 action glint.man
9532 symlink_driver_i128() {
9533 src_dir programs/Xserver/hw/xfree86/drivers/i128
9534 dst_dir driver/xf86-video-i128/src
9536 action IBMRGB.h
9537 action Ti302X.h
9538 action i128.h
9539 action i128IBMDAC.c
9540 action i128_driver.c
9541 action i128accel.c
9542 action i128dga.c
9543 action i128exa.c
9544 action i128init.c
9545 action i128reg.h
9547 dst_dir driver/xf86-video-i128/man
9549 action i128.man
9552 symlink_driver_i740() {
9553 src_dir programs/Xserver/hw/xfree86/drivers/i740
9554 dst_dir driver/xf86-video-i740/src
9556 action i740.h
9557 action i740_accel.c
9558 action i740_cursor.c
9559 action i740_dga.c
9560 action i740_dga.h
9561 action i740_driver.c
9562 action i740_i2c.c
9563 action i740_io.c
9564 action i740_macros.h
9565 action i740_reg.h
9566 action i740_video.c
9568 dst_dir driver/xf86-video-i740/man
9570 action i740.man
9573 symlink_driver_i810() {
9574 src_dir programs/Xserver/hw/xfree86/drivers/i810
9575 dst_dir driver/xf86-video-i810/src
9577 action common.h
9578 action i810.h
9579 action i810_accel.c
9580 action i810_common.h
9581 action i810_cursor.c
9582 action i810_dga.c
9583 action i810_dri.c
9584 action i810_dri.h
9585 action i810_driver.c
9586 action i810_hwmc.c
9587 action i810_io.c
9588 action i810_memory.c
9589 action i810_reg.h
9590 action i810_video.c
9591 action i810_wmark.c
9592 action i830.h
9593 action i830_accel.c
9594 action i830_common.h
9595 action i830_cursor.c
9596 action i830_dga.c
9597 action i830_dri.c
9598 action i830_dri.h
9599 action i830_driver.c
9600 action i830_memory.c
9601 action i830_modes.c
9602 action i830_shadow.c
9603 action i830_video.c
9605 dst_dir driver/xf86-video-i810/man
9607 action i810.man
9609 src_dir lib/XvMC/hw/i810
9610 dst_dir driver/xf86-video-i810/src/xvmc
9612 action I810XvMC.c
9613 action I810XvMC.h
9616 symlink_driver_imstt() {
9617 src_dir programs/Xserver/hw/xfree86/drivers/imstt
9618 dst_dir driver/xf86-video-imstt/src
9620 action imstt.h
9621 action imstt_accel.c
9622 action imstt_driver.c
9623 action imstt_reg.h
9625 dst_dir driver/xf86-video-imstt/man
9627 action imstt.man
9630 symlink_driver_mga() {
9631 src_dir programs/Xserver/hw/xfree86/drivers/mga
9632 dst_dir driver/xf86-video-mga
9634 action mga_PInS.txt
9635 action README_HALLIB
9637 src_dir programs/Xserver/hw/xfree86/drivers/mga/util
9638 dst_dir driver/xf86-video-mga/util
9640 action README
9641 action stormdwg.c
9643 src_dir programs/Xserver/hw/xfree86/drivers/mga
9644 dst_dir driver/xf86-video-mga/src
9646 action client.h
9647 action clientlx.c
9648 action mga.h
9649 action mga_arc.c
9650 action mga_bios.c
9651 action mga_common.h
9652 action mga_dac3026.c
9653 action mga_dacG.c
9654 action mga_dga.c
9655 action mga_dh.c
9656 action mga_dri.c
9657 action mga_dri.h
9658 action mga_dripriv.h
9659 action mga_driver.c
9660 action mga_esc.c
9661 action mga_g450pll.c
9662 action mga_halmod.c
9663 action mga_hwcurs.c
9664 action mga_macros.h
9665 action mga_map.h
9666 action mga_maven.h
9667 action mga_merge.c
9668 action mga_merge.h
9669 action mga_reg.h
9670 action mga_sarea.h
9671 action mga_shadow.c
9672 action mga_storm.c
9673 action mga_ucode.h
9674 action mga_video.c
9675 action mgareg_flags.h
9677 src_dir programs/Xserver/hw/xfree86/drivers/mga/HALlib
9679 action binding.h
9681 src_dir programs/Xserver/hw/xfree86/drivers/mga
9682 dst_dir driver/xf86-video-mga/man
9684 action mga.man
9687 symlink_driver_neomagic() {
9688 src_dir programs/Xserver/hw/xfree86/drivers/neomagic
9689 dst_dir driver/xf86-video-neomagic
9691 action NM-reg.txt
9692 action README
9693 action TODO
9695 src_dir programs/Xserver/hw/xfree86/drivers/neomagic
9696 dst_dir driver/xf86-video-neomagic/src
9698 action neo.h
9699 action neo_2070.c
9700 action neo_2090.c
9701 action neo_2097.c
9702 action neo_2200.c
9703 action neo_bank.c
9704 action neo_cursor.c
9705 action neo_dga.c
9706 action neo_driver.c
9707 action neo_i2c.c
9708 action neo_macros.h
9709 action neo_reg.h
9710 action neo_shadow.c
9711 action neo_video.c
9712 action neo_video.h
9714 dst_dir driver/xf86-video-neomagic/man
9716 action neomagic.man
9719 symlink_driver_newport() {
9720 src_dir programs/Xserver/hw/xfree86/drivers/newport
9721 dst_dir driver/xf86-video-newport
9723 action XF86Config.indy
9725 src_dir programs/Xserver/hw/xfree86/drivers/newport
9726 dst_dir driver/xf86-video-newport/src
9728 action newport.h
9729 action newport_accel.c
9730 action newport_cmap.c
9731 action newport_cursor.c
9732 action newport_driver.c
9733 action newport_regs.c
9734 action newport_regs.h
9735 action newport_shadow.c
9737 dst_dir driver/xf86-video-newport/man
9739 action newport.man
9742 symlink_driver_nsc() {
9743 src_dir programs/Xserver/hw/xfree86/drivers/nsc
9744 dst_dir driver/xf86-video-nsc/src
9746 action durango.c
9747 action nsc.h
9748 action nsc_driver.c
9749 action nsc_fourcc.h
9750 action nsc_galfns.c
9751 action nsc_galstub.c
9752 action nsc_gx1_accel.c
9753 action nsc_gx1_cursor.c
9754 action nsc_gx1_dga.c
9755 action nsc_gx1_driver.c
9756 action nsc_gx1_shadow.c
9757 action nsc_gx1_video.c
9758 action nsc_gx2_accel.c
9759 action nsc_gx2_cursor.c
9760 action nsc_gx2_dga.c
9761 action nsc_gx2_driver.c
9762 action nsc_gx2_shadow.c
9763 action nsc_gx2_vga.c
9764 action nsc_gx2_video.c
9765 action nsc_regacc.c
9766 action nsc_msr_asm.S
9767 action panel.c
9769 dst_dir driver/xf86-video-nsc/man
9771 action nsc.man
9773 src_dir programs/Xserver/hw/xfree86/drivers/nsc/gfx
9774 dst_dir driver/xf86-video-nsc/src/gfx
9776 action disp_gu1.c
9777 action disp_gu2.c
9778 action gfx_dcdr.c
9779 action gfx_defs.h
9780 action gfx_disp.c
9781 action gfx_i2c.c
9782 action gfx_init.c
9783 action gfx_mode.h
9784 action gfx_msr.c
9785 action gfx_regs.h
9786 action gfx_rndr.c
9787 action gfx_rtns.h
9788 action gfx_tv.c
9789 action gfx_type.h
9790 action gfx_vga.c
9791 action gfx_vid.c
9792 action gfx_vip.c
9793 action i2c_acc.c
9794 action i2c_gpio.c
9795 action init_gu1.c
9796 action init_gu2.c
9797 action msr_rdcl.c
9798 action rndr_gu1.c
9799 action rndr_gu2.c
9800 action saa7114.c
9801 action tv_1200.c
9802 action vga_gu1.c
9803 action vid_1200.c
9804 action vid_5530.c
9805 action vid_rdcl.c
9806 action vip_1200.c
9808 # These files are not actually used, but it probably makes sense to
9809 # distribute them along with the rest of gfx
9811 action durango.c
9812 action gfx_tv.h
9813 action history.h
9814 action release.txt
9815 action tv_fs450.c
9816 action tv_fs450.h
9817 action tv_fs451.c
9818 action tv_geode.c
9819 action vid_1400.c
9820 action vip_1400.c
9822 src_dir programs/Xserver/hw/xfree86/drivers/nsc/panel
9823 dst_dir driver/xf86-video-nsc/src/panel
9825 action 92xx.h
9826 action cen9211.c
9827 action cen9211.h
9828 action dora9211.c
9829 action dora9211.h
9830 action drac9210.c
9831 action drac9210.h
9832 action gx2_9211.c
9833 action gx2_9211.h
9834 action panel.c
9835 action panel.h
9836 action platform.c
9837 action pnl_bios.c
9838 action pnl_defs.h
9839 action pnl_init.c
9841 action readme.txt
9844 symlink_driver_nv() {
9845 src_dir programs/Xserver/hw/xfree86/drivers/nv
9846 dst_dir driver/xf86-video-nv/src
9848 action nv_const.h
9849 action nv_cursor.c
9850 action nv_dac.c
9851 action nv_dga.c
9852 action nv_dma.h
9853 action nv_driver.c
9854 action nv_hw.c
9855 action nv_include.h
9856 action nv_local.h
9857 action nv_proto.h
9858 action nv_setup.c
9859 action nv_shadow.c
9860 action nv_type.h
9861 action nv_video.c
9862 action nv_xaa.c
9863 action nvreg.h
9864 action nvvga.h
9865 action riva_const.h
9866 action riva_cursor.c
9867 action riva_dac.c
9868 action riva_dga.c
9869 action riva_driver.c
9870 action riva_hw.c
9871 action riva_hw.h
9872 action riva_include.h
9873 action riva_local.h
9874 action riva_proto.h
9875 action riva_setup.c
9876 action riva_shadow.c
9877 action riva_tbl.h
9878 action riva_type.h
9879 action riva_xaa.c
9881 dst_dir driver/xf86-video-nv/man
9882 action nv.man
9884 src_dir programs/Xserver/hw/xfree86/doc
9885 dst_dir driver/xf86-video-nv
9886 action README.NV1
9889 symlink_driver_rendition() {
9890 src_dir programs/Xserver/hw/xfree86/drivers/rendition
9891 dst_dir driver/xf86-video-rendition/src
9893 action README.uc
9894 action accel.h
9895 action accelX.c
9896 action cmd2d.h
9897 action commonregs.h
9898 action cscode.h
9899 action hwcursor.c
9900 action hwcursor.h
9901 action rendition.c
9902 action rendition.h
9903 action rendition_options.h
9904 action rendition_shadow.c
9905 action rendition_shadow.h
9906 action v10002d.uc
9907 action v20002d.uc
9908 action v1kregs.h
9909 action v1krisc.c
9910 action v1krisc.h
9911 action v2kregs.h
9912 action vboard.c
9913 action vboard.h
9914 action vloaduc.c
9915 action vloaduc.h
9916 action vmisc.c
9917 action vmisc.h
9918 action vmodes.c
9919 action vmodes.h
9920 action vos.h
9921 action vramdac.c
9922 action vramdac.h
9923 action vtypes.h
9925 action vgafont-std.data
9926 action vgafont-vrx.data
9927 action vgapalette.data
9929 dst_dir driver/xf86-video-rendition/man
9931 action rendition.man
9934 symlink_driver_s3() {
9935 src_dir programs/Xserver/hw/xfree86/drivers/s3
9936 dst_dir driver/xf86-video-s3/src
9938 action newmmio.h
9939 action s3.h
9940 action s3_IBMRGB.c
9941 action s3_Ti.c
9942 action s3_Trio64DAC.c
9943 action s3_accel.c
9944 action s3_bios.c
9945 action s3_cursor.c
9946 action s3_dga.c
9947 action s3_driver.c
9948 action s3_reg.h
9949 action s3_video.c
9951 dst_dir driver/xf86-video-s3/man
9955 symlink_driver_s3virge() {
9956 src_dir programs/Xserver/hw/xfree86/drivers/s3virge
9957 dst_dir driver/xf86-video-s3virge
9959 action CALLMAP
9960 action README
9961 action TODO_NOTES
9963 src_dir programs/Xserver/hw/xfree86/drivers/s3virge
9964 dst_dir driver/xf86-video-s3virge/src
9966 action newmmio.h
9967 action regs3v.h
9968 action s3v.h
9969 action s3v_accel.c
9970 action s3v_dac.c
9971 action s3v_dga.c
9972 action s3v_driver.c
9973 action s3v_hwcurs.c
9974 action s3v_i2c.c
9975 action s3v_macros.h
9976 action s3v_rop.h
9977 action s3v_shadow.c
9978 action s3v_xv.c
9980 dst_dir driver/xf86-video-s3virge/man
9982 action s3virge.man
9985 symlink_driver_savage() {
9986 src_dir programs/Xserver/hw/xfree86/drivers/savage
9987 dst_dir driver/xf86-video-savage/src
9989 action savage_accel.c
9990 action savage_bci.h
9991 action savage_common.h
9992 action savage_cursor.c
9993 action savage_dga.c
9994 action savage_dri.c
9995 action savage_dri.h
9996 action savage_dripriv.h
9997 action savage_driver.c
9998 action savage_driver.h
9999 action savage_drm.h
10000 action savage_hwmc.c
10001 action savage_i2c.c
10002 action savage_image.c
10003 action savage_regs.h
10004 action savage_sarea.h
10005 action savage_shadow.c
10006 action savage_streams.c
10007 action savage_streams.h
10008 action savage_vbe.c
10009 action savage_vbe.h
10010 action savage_video.c
10012 dst_dir driver/xf86-video-savage/man
10014 action savage.man
10017 symlink_driver_siliconmotion() {
10018 src_dir programs/Xserver/hw/xfree86/drivers/siliconmotion
10019 dst_dir driver/xf86-video-siliconmotion
10021 action README
10022 action CALLMAP
10023 action Release.txt
10025 src_dir programs/Xserver/hw/xfree86/drivers/siliconmotion
10026 dst_dir driver/xf86-video-siliconmotion/src
10028 action regsmi.h
10029 action smi.h
10030 action smi_accel.c
10031 action smi_dac.c
10032 action smi_dga.c
10033 action smi_driver.c
10034 action smi_hwcurs.c
10035 action smi_i2c.c
10036 action smi_shadow.c
10037 action smi_video.c
10038 action smi_video.h
10040 dst_dir driver/xf86-video-siliconmotion/man
10042 action siliconmotion.man
10045 symlink_driver_sis() {
10046 src_dir programs/Xserver/hw/xfree86/drivers/sis
10047 dst_dir driver/xf86-video-sis/src
10049 action 300vtbl.h
10050 action 310vtbl.h
10051 action init.c
10052 action init.h
10053 action init301.c
10054 action init301.h
10055 action initdef.h
10056 action initextx.c
10057 action initextx.h
10058 action oem300.h
10059 action oem310.h
10060 action osdef.h
10061 action sis.h
10062 action sis300_accel.c
10063 action sis300_accel.h
10064 action sis310_accel.c
10065 action sis310_accel.h
10066 action sis6326_video.c
10067 action sis_accel.c
10068 action sis_accel.h
10069 action sis_common.h
10070 action sis_cursor.c
10071 action sis_cursor.h
10072 action sis_dac.c
10073 action sis_dac.h
10074 action sis_dga.c
10075 action sis_dri.c
10076 action sis_dri.h
10077 action sis_driver.c
10078 action sis_driver.h
10079 action sis_memcpy.c
10080 action sis_opt.c
10081 action sis_regs.h
10082 action sis_setup.c
10083 action sis_shadow.c
10084 action sis_utility.c
10085 action sis_vb.c
10086 action sis_vga.c
10087 action sis_video.c
10088 action sis_video.h
10089 action sis_videostr.h
10090 action vgatypes.h
10091 action vstruct.h
10093 dst_dir driver/xf86-video-sis/man
10095 action sis.man
10098 symlink_driver_sisusb() {
10099 src_dir programs/Xserver/hw/xfree86/drivers/sisusb
10100 dst_dir driver/xf86-video-sisusb/src
10102 action sisusb.h
10103 action sisusb_accel.c
10104 action sisusb_accel.h
10105 action sisusb_cursor.c
10106 action sisusb_cursor.h
10107 action sisusb_dac.c
10108 action sisusb_dac.h
10109 action sisusb_driver.c
10110 action sisusb_driver.h
10111 action sisusb_init.c
10112 action sisusb_init.h
10113 action sisusb_opt.c
10114 action sisusb_osdef.h
10115 action sisusb_regs.h
10116 action sisusb_setup.c
10117 action sisusb_shadow.c
10118 action sisusb_struct.h
10119 action sisusb_types.h
10120 action sisusb_utility.c
10121 action sisusb_vga.c
10122 action sisusb_video.c
10123 action sisusb_video.h
10124 action sisusb_videostr.h
10126 dst_dir driver/xf86-video-sisusb/man
10128 action sisusb.man
10131 symlink_driver_sunbw2() {
10132 src_dir programs/Xserver/hw/xfree86/drivers/sunbw2
10133 dst_dir driver/xf86-video-sunbw2/src
10135 action bw2.h
10136 action bw2_driver.c
10138 dst_dir driver/xf86-video-sunbw2/man
10140 action sunbw2.man
10143 symlink_driver_suncg14() {
10144 src_dir programs/Xserver/hw/xfree86/drivers/suncg14
10145 dst_dir driver/xf86-video-suncg14/src
10147 action cg14.h
10148 action cg14_driver.c
10150 dst_dir driver/xf86-video-suncg14/man
10152 action suncg14.man
10155 symlink_driver_suncg3() {
10156 src_dir programs/Xserver/hw/xfree86/drivers/suncg3
10157 dst_dir driver/xf86-video-suncg3/src
10159 action cg3.h
10160 action cg3_driver.c
10162 dst_dir driver/xf86-video-suncg3/man
10164 action suncg3.man
10167 symlink_driver_suncg6() {
10168 src_dir programs/Xserver/hw/xfree86/drivers/suncg6
10169 dst_dir driver/xf86-video-suncg6/src
10171 action cg6.h
10172 action cg6_cursor.c
10173 action cg6_driver.c
10174 action cg6_regs.h
10176 dst_dir driver/xf86-video-suncg6/man
10178 action suncg6.man
10181 symlink_driver_sunffb() {
10182 src_dir programs/Xserver/hw/xfree86/drivers/sunffb
10183 dst_dir driver/xf86-video-sunffb/src
10185 action ffb.h
10186 action ffb_accel.c
10187 action ffb_attr.c
10188 action ffb_bcopy.c
10189 action ffb_checks.c
10190 action ffb_circle.c
10191 action ffb_clip.c
10192 action ffb_clip.h
10193 action ffb_cplane.c
10194 action ffb_cursor.c
10195 action ffb_dac.c
10196 action ffb_dac.h
10197 action ffb_dbe.c
10198 action ffb_ddc.c
10199 action ffb_dga.c
10200 action ffb_dri.c
10201 action ffb_drishare.h
10202 action ffb_driver.c
10203 action ffb_fifo.h
10204 action ffb_frect.c
10205 action ffb_fspans.c
10206 action ffb_gc.c
10207 action ffb_gc.h
10208 action ffb_glyph.c
10209 action ffb_gspans.c
10210 action ffb_line.c
10211 action ffb_loops.h
10212 action ffb_plygon.c
10213 action ffb_point.c
10214 action ffb_rcache.h
10215 action ffb_rect.c
10216 action ffb_regs.h
10217 action ffb_seg.c
10218 action ffb_sspans.c
10219 action ffb_stip.c
10220 action ffb_stip.h
10221 action ffb_stubs.c
10222 action ffb_wid.c
10223 action ffb_wline.c
10224 action ffb_zeroarc.c
10225 action ffb_asm.s
10226 action VISmoveImage.s
10228 dst_dir driver/xf86-video-sunffb/man
10230 action sunffb.man
10233 symlink_driver_sunleo() {
10234 src_dir programs/Xserver/hw/xfree86/drivers/sunleo
10235 dst_dir driver/xf86-video-sunleo/src
10237 action leo.h
10238 action leo_accel.c
10239 action leo_checks.c
10240 action leo_cursor.c
10241 action leo_driver.c
10242 action leo_frect.c
10243 action leo_frectsp.c
10244 action leo_fspans.c
10245 action leo_fspanssp.c
10246 action leo_glyph.c
10247 action leo_regs.h
10249 dst_dir driver/xf86-video-sunleo/man
10251 action sunleo.man
10254 symlink_driver_suntcx() {
10255 src_dir programs/Xserver/hw/xfree86/drivers/suntcx
10256 dst_dir driver/xf86-video-suntcx/src
10258 action tcx.h
10259 action tcx_cursor.c
10260 action tcx_driver.c
10261 action tcx_regs.h
10263 dst_dir driver/xf86-video-suntcx/man
10265 action suntcx.man
10268 symlink_driver_tdfx() {
10269 src_dir programs/Xserver/hw/xfree86/drivers/tdfx
10270 dst_dir driver/xf86-video-tdfx/src
10272 action tdfx.h
10273 action tdfx_accel.c
10274 action tdfx_dga.c
10275 action tdfx_dri.c
10276 action tdfx_dri.h
10277 action tdfx_dripriv.h
10278 action tdfx_driver.c
10279 action tdfx_hwcurs.c
10280 action tdfx_io.c
10281 action tdfx_priv.c
10282 action tdfx_priv.h
10283 action tdfx_sli.c
10284 action tdfx_video.c
10285 action tdfxdefs.h
10287 dst_dir driver/xf86-video-tdfx/man
10289 action tdfx.man
10292 symlink_driver_tga() {
10293 src_dir programs/Xserver/hw/xfree86/drivers/tga
10294 dst_dir driver/xf86-video-tga/src
10296 action BT463ramdac.c
10297 action BTramdac.c
10298 action IBM561ramdac.c
10299 action ICS1562.c
10300 action tga.h
10301 action tga_accel.c
10302 action tga_cursor.c
10303 action tga_dac.c
10304 action tga_driver.c
10305 action tga_line.c
10306 action tga_regs.h
10308 dst_dir driver/xf86-video-tga/man
10312 symlink_driver_trident() {
10313 src_dir programs/Xserver/hw/xfree86/drivers/trident
10314 dst_dir driver/xf86-video-trident/src
10316 action blade_accel.c
10317 action image_accel.c
10318 action trident.h
10319 action trident_accel.c
10320 action trident_bank.c
10321 action trident_dac.c
10322 action trident_dga.c
10323 action trident_driver.c
10324 action trident_i2c.c
10325 action trident_regs.h
10326 action trident_shadow.c
10327 action trident_tv.c
10328 action trident_video.c
10329 action tridenthelper.c
10330 action tridentramdac.c
10331 action tvga_dac.c
10332 action xp_accel.c
10334 dst_dir driver/xf86-video-trident/man
10336 action trident.man
10339 symlink_driver_tseng() {
10340 src_dir programs/Xserver/hw/xfree86/drivers/tseng
10341 dst_dir driver/xf86-video-tseng/src
10343 action README
10345 src_dir programs/Xserver/hw/xfree86/drivers/tseng
10346 dst_dir driver/xf86-video-tseng/src
10348 action tseng.h
10349 action tseng_accel.c
10350 action tseng_acl.c
10351 action tseng_acl.h
10352 action tseng_bank.c
10353 action tseng_clock.c
10354 action tseng_colexp.c
10355 action tseng_cursor.c
10356 action tseng_dga.c
10357 action tseng_dpms.c
10358 action tseng_driver.c
10359 action tseng_inline.h
10360 action tseng_ramdac.c
10362 dst_dir driver/xf86-video-tseng/man
10364 action tseng.man
10367 symlink_driver_v4l() {
10368 src_dir programs/Xserver/hw/xfree86/drivers/v4l
10369 dst_dir driver/xf86-video-v4l
10371 action README
10373 dst_dir driver/xf86-video-v4l/src
10375 action v4l.c
10376 action videodev.h
10378 dst_dir driver/xf86-video-v4l/man
10380 action v4l.man
10383 symlink_driver_vesa() {
10384 src_dir programs/Xserver/hw/xfree86/drivers/vesa
10385 dst_dir driver/xf86-video-vesa/src
10387 action vesa.c
10388 action vesa.h
10390 dst_dir driver/xf86-video-vesa/man
10392 action vesa.man
10395 symlink_driver_vga() {
10396 src_dir programs/Xserver/hw/xfree86/drivers/vga
10397 dst_dir driver/xf86-video-vga/src
10399 action generic.c
10401 dst_dir driver/xf86-video-vga/man
10403 action vga.man
10406 symlink_driver_via() {
10407 src_dir programs/Xserver/hw/xfree86/drivers/via
10408 dst_dir driver/xf86-video-via/src
10410 action via.h
10411 action via_accel.c
10412 action via_bios.h
10413 action via_bandwidth.c
10414 action via_cursor.c
10415 action via_dga.c
10416 action via_dri.c
10417 action via_dri.h
10418 action via_driver.c
10419 action via_driver.h
10420 action via_i2c.c
10421 action via_id.c
10422 action via_id.h
10423 action via_memcpy.c
10424 action via_memcpy.h
10425 action via_memory.c
10426 action via_mode.c
10427 action via_mode.h
10428 action via_priv.h
10429 action via_regs.h
10430 action via_shadow.c
10431 action via_swov.c
10432 action via_swov.h
10433 action via_vgahw.c
10434 action via_vgahw.h
10435 action via_video.c
10436 action via_video.h
10437 action via_vt162x.c
10438 action via_vt162x.h
10439 action via_xvmc.c
10440 action via_xvmc.h
10441 action via_xvpriv.h
10442 action via_drmclient.h
10443 action via_vbe.c
10445 dst_dir driver/xf86-video-via/man
10447 action via.man
10449 src_dir lib/XvMC/hw/via
10450 dst_dir driver/xf86-video-via/src/xvmc
10452 action driDrawable.c
10453 action driDrawable.h
10454 action viaLowLevel.h
10455 action viaXvMC.c
10456 action viaXvMCPriv.h
10457 action xf86dri.c
10458 action xf86dri.h
10459 action xf86dristr.h
10461 src_dir lib/XvMC/hw/via/unichrome
10462 dst_dir driver/xf86-video-via/src/xvmc/unichrome
10464 action viaLowLevel.c
10466 src_dir lib/XvMC/hw/via/unichromeProA
10467 dst_dir driver/xf86-video-via/src/xvmc/unichromeProA
10469 action viaLowLevelPro.c
10472 symlink_driver_vmware() {
10473 src_dir programs/Xserver/hw/xfree86/drivers/vmware
10474 dst_dir driver/xf86-video-vmware
10476 action README
10478 src_dir programs/Xserver/hw/xfree86/drivers/vmware
10479 dst_dir driver/xf86-video-vmware/src
10481 action bits2pixels.c
10482 action bits2pixels.h
10483 action guest_os.h
10484 action includeCheck.h
10485 action offscreen_manager.c
10486 action offscreen_manager.h
10487 action svga_limits.h
10488 action svga_reg.h
10489 action svga_struct.h
10490 action vm_basic_types.h
10491 action vm_device_version.h
10492 action vmware.c
10493 action vmware.h
10494 action vmwarecurs.c
10495 action vmwarexaa.c
10497 dst_dir driver/xf86-video-vmware/man
10499 action vmware.man
10502 symlink_driver_voodoo() {
10503 src_dir programs/Xserver/hw/xfree86/drivers/voodoo
10504 dst_dir driver/xf86-video-voodoo
10506 action README
10507 action TODO
10509 src_dir programs/Xserver/hw/xfree86/drivers/voodoo
10510 dst_dir driver/xf86-video-voodoo/src
10512 action voodoo.h
10513 action voodoo_dga.c
10514 action voodoo_driver.c
10515 action voodoo_hardware.c
10517 dst_dir driver/xf86-video-voodoo/man
10519 action voodoo.man
10522 symlink_driver_wsfb() {
10523 src_dir programs/Xserver/hw/xfree86/drivers/wsfb
10524 dst_dir driver/xf86-video-wsfb/src
10526 action wsfb_driver.c
10528 dst_dir driver/xf86-video-wsfb/man
10530 action wsfb.man
10533 symlink_driver_acecad() {
10534 src_dir programs/Xserver/hw/xfree86/input/acecad
10535 dst_dir driver/xf86-input-acecad/src
10537 action acecad.c
10538 action acecad.h
10540 dst_dir driver/xf86-input-acecad/man
10542 action acecad.man
10545 symlink_driver_aiptek() {
10546 src_dir programs/Xserver/hw/xfree86/input/aiptek
10547 dst_dir driver/xf86-input-aiptek/src
10549 action xf86Aiptek.c
10550 action xf86Aiptek.h
10552 dst_dir driver/xf86-input-aiptek/man
10554 action aiptek.man
10557 symlink_driver_calcomp() {
10558 src_dir programs/Xserver/hw/xfree86/input/calcomp
10559 dst_dir driver/xf86-input-calcomp/src
10561 action xf86Calcomp.c
10562 action xf86Calcomp.h
10564 dst_dir driver/xf86-input-calcomp/man
10566 action calcomp.man
10569 symlink_driver_citron() {
10570 src_dir programs/Xserver/hw/xfree86/input/citron
10571 dst_dir driver/xf86-input-citron/src
10573 action citron.c
10574 action citron.h
10576 dst_dir driver/xf86-input-citron/man
10578 action citron.man
10581 symlink_driver_digitaledge() {
10582 src_dir programs/Xserver/hw/xfree86/input/digitaledge
10583 dst_dir driver/xf86-input-digitaledge/src
10585 action DigitalEdge.c
10587 dst_dir driver/xf86-input-digitaledge/man
10591 symlink_driver_dmc() {
10592 src_dir programs/Xserver/hw/xfree86/input/dmc
10593 dst_dir driver/xf86-input-dmc/src
10595 action xf86DMC.c
10596 action xf86DMC.h
10598 dst_dir driver/xf86-input-dmc/man
10600 action dmc.man
10603 symlink_driver_dynapro() {
10604 src_dir programs/Xserver/hw/xfree86/input/dynapro
10605 dst_dir driver/xf86-input-dynapro/src
10607 action xf86Dyna.c
10608 action xf86Dyna.h
10610 dst_dir driver/xf86-input-dynapro/man
10612 action dynapro.man
10615 symlink_driver_elo2300() {
10616 src_dir programs/Xserver/hw/xfree86/input/elo2300
10617 dst_dir driver/xf86-input-elo2300/src
10619 action elo.c
10620 action elo.h
10622 dst_dir driver/xf86-input-elo2300/man
10626 symlink_driver_elographics() {
10627 src_dir programs/Xserver/hw/xfree86/input/elographics
10628 dst_dir driver/xf86-input-elographics/src
10630 action xf86Elo.c
10632 dst_dir driver/xf86-input-elographics/man
10634 action elographics.man
10637 symlink_driver_evdev() {
10638 src_dir programs/Xserver/hw/xfree86/input/evdev
10639 dst_dir driver/xf86-input-evdev/src
10641 action evdev.c
10643 dst_dir driver/xf86-input-evdev/man
10647 symlink_driver_fpit() {
10648 src_dir programs/Xserver/hw/xfree86/input/fpit
10650 dst_dir driver/xf86-input-fpit
10651 action readme.txt
10653 dst_dir driver/xf86-input-fpit/src
10654 action xf86Fpit.c
10656 dst_dir driver/xf86-input-fpit/man
10657 action fpit.man
10660 symlink_driver_hyperpen() {
10661 src_dir programs/Xserver/hw/xfree86/input/hyperpen
10662 dst_dir driver/xf86-input-hyperpen/src
10664 action xf86HyperPen.c
10666 dst_dir driver/xf86-input-hyperpen/man
10670 symlink_driver_jamstudio() {
10671 src_dir programs/Xserver/hw/xfree86/input/jamstudio
10672 dst_dir driver/xf86-input-jamstudio/src
10674 action js_x.c
10676 dst_dir driver/xf86-input-jamstudio/man
10678 action js_x.man
10681 symlink_driver_joystick() {
10682 src_dir programs/Xserver/hw/xfree86/input/joystick
10683 dst_dir driver/xf86-input-joystick/src
10685 action xf86Jstk.c
10687 dst_dir driver/xf86-input-joystick/man
10691 symlink_driver_keyboard() {
10692 src_dir programs/Xserver/hw/xfree86/input/keyboard
10693 dst_dir driver/xf86-input-keyboard/src
10695 action kbd.c
10697 dst_dir driver/xf86-input-keyboard/man
10699 action kbd.man
10700 action keyboard.man
10703 symlink_driver_magellan() {
10704 src_dir programs/Xserver/hw/xfree86/input/magellan
10705 dst_dir driver/xf86-input-magellan/src
10707 action magellan.c
10708 action magellan.h
10710 dst_dir driver/xf86-input-magellan/man
10714 symlink_driver_magictouch() {
10715 src_dir programs/Xserver/hw/xfree86/input/magictouch
10716 dst_dir driver/xf86-input-magictouch/src
10718 action xf86MagicTouch.c
10720 dst_dir driver/xf86-input-magictouch/man
10722 action magictouch.man
10725 symlink_driver_microtouch() {
10726 src_dir programs/Xserver/hw/xfree86/input/microtouch
10727 dst_dir driver/xf86-input-microtouch/src
10729 action microtouch.c
10730 action microtouch.h
10732 dst_dir driver/xf86-input-microtouch/man
10734 action microtouch.man
10737 symlink_driver_mouse() {
10738 src_dir programs/Xserver/hw/xfree86/input/mouse
10739 dst_dir driver/xf86-input-mouse/src
10741 action mouse.c
10742 action mouse.h
10743 action mousePriv.h
10744 action pnp.c
10746 dst_dir driver/xf86-input-mouse/man
10748 action mouse.man
10751 symlink_driver_mutouch() {
10752 src_dir programs/Xserver/hw/xfree86/input/mutouch
10753 dst_dir driver/xf86-input-mutouch/src
10755 action xf86MuTouch.c
10757 dst_dir driver/xf86-input-mutouch/man
10759 action mutouch.man
10762 symlink_driver_palmax() {
10763 src_dir programs/Xserver/hw/xfree86/input/palmax
10764 dst_dir driver/xf86-input-palmax/src
10766 action xf86Palmax.c
10768 dst_dir driver/xf86-input-palmax/man
10770 action palmax.man
10773 symlink_driver_penmount() {
10774 src_dir programs/Xserver/hw/xfree86/input/penmount
10775 dst_dir driver/xf86-input-penmount/src
10777 action xf86PM.c
10778 action xf86PM.h
10780 dst_dir driver/xf86-input-penmount/man
10782 action penmount.man
10785 symlink_driver_spaceorb() {
10786 src_dir programs/Xserver/hw/xfree86/input/spaceorb
10787 dst_dir driver/xf86-input-spaceorb/src
10789 action spaceorb.c
10790 action spaceorb.h
10792 dst_dir driver/xf86-input-spaceorb/man
10796 symlink_driver_summa() {
10797 src_dir programs/Xserver/hw/xfree86/input/summa
10798 dst_dir driver/xf86-input-summa/src
10800 action xf86Summa.c
10802 dst_dir driver/xf86-input-summa/man
10806 symlink_driver_tek4957() {
10807 src_dir programs/Xserver/hw/xfree86/input/tek4957
10808 dst_dir driver/xf86-input-tek4957/src
10810 action xf86Tek4957.c
10812 dst_dir driver/xf86-input-tek4957/man
10814 action tek4957.man
10817 symlink_driver_ur98() {
10818 src_dir programs/Xserver/hw/xfree86/input/ur98
10819 dst_dir driver/xf86-input-ur98/src
10821 action xf86Ur-98.c
10823 dst_dir driver/xf86-input-ur98/man
10825 action ur98.man
10828 symlink_driver_void() {
10829 src_dir programs/Xserver/hw/xfree86/input/void
10830 dst_dir driver/xf86-input-void/src
10832 action void.c
10834 dst_dir driver/xf86-input-void/man
10836 action void.man
10839 symlink_driver() {
10840 symlink_driver_apm
10841 symlink_driver_ark
10842 symlink_driver_ati
10843 symlink_driver_chips
10844 symlink_driver_cirrus
10845 symlink_driver_cyrix
10846 symlink_driver_dummy
10847 symlink_driver_fbdev
10848 symlink_driver_glide
10849 symlink_driver_glint
10850 symlink_driver_i128
10851 symlink_driver_i740
10852 symlink_driver_i810
10853 symlink_driver_imstt
10854 symlink_driver_mga
10855 symlink_driver_neomagic
10856 symlink_driver_newport
10857 symlink_driver_nsc
10858 symlink_driver_nv
10859 symlink_driver_rendition
10860 symlink_driver_s3
10861 symlink_driver_s3virge
10862 symlink_driver_savage
10863 symlink_driver_siliconmotion
10864 symlink_driver_sis
10865 symlink_driver_sisusb
10866 symlink_driver_sunbw2
10867 symlink_driver_suncg14
10868 symlink_driver_suncg3
10869 symlink_driver_suncg6
10870 symlink_driver_sunffb
10871 symlink_driver_sunleo
10872 symlink_driver_suntcx
10873 symlink_driver_tdfx
10874 symlink_driver_tga
10875 symlink_driver_trident
10876 symlink_driver_tseng
10877 symlink_driver_v4l
10878 symlink_driver_vesa
10879 symlink_driver_vga
10880 symlink_driver_via
10881 symlink_driver_vmware
10882 symlink_driver_voodoo
10883 symlink_driver_wsfb
10885 symlink_driver_acecad
10886 symlink_driver_aiptek
10887 symlink_driver_calcomp
10888 symlink_driver_citron
10889 symlink_driver_digitaledge
10890 symlink_driver_dmc
10891 symlink_driver_dynapro
10892 symlink_driver_elo2300
10893 symlink_driver_elographics
10894 symlink_driver_evdev
10895 symlink_driver_fpit
10896 symlink_driver_hyperpen
10897 symlink_driver_jamstudio
10898 symlink_driver_joystick
10899 symlink_driver_keyboard
10900 symlink_driver_magellan
10901 symlink_driver_magictouch
10902 symlink_driver_microtouch
10903 symlink_driver_mouse
10904 symlink_driver_mutouch
10905 symlink_driver_palmax
10906 symlink_driver_penmount
10907 symlink_driver_spaceorb
10908 symlink_driver_summa
10909 symlink_driver_tek4957
10910 symlink_driver_ur98
10911 symlink_driver_void
10912 # ...
10916 #########
10918 # The font module
10920 #########
10922 symlink_font_adobe_100dpi() {
10923 src_dir fonts/bdf/100dpi
10924 dst_dir font/adobe-100dpi
10926 action courB08.bdf
10927 action courB10.bdf
10928 action courB12.bdf
10929 action courB14.bdf
10930 action courB18.bdf
10931 action courB24.bdf
10932 action courBO08.bdf
10933 action courBO10.bdf
10934 action courBO12.bdf
10935 action courBO14.bdf
10936 action courBO18.bdf
10937 action courBO24.bdf
10938 action courO08.bdf
10939 action courO10.bdf
10940 action courO12.bdf
10941 action courO14.bdf
10942 action courO18.bdf
10943 action courO24.bdf
10944 action courR08.bdf
10945 action courR10.bdf
10946 action courR12.bdf
10947 action courR14.bdf
10948 action courR18.bdf
10949 action courR24.bdf
10950 action helvB08.bdf
10951 action helvB10.bdf
10952 action helvB12.bdf
10953 action helvB14.bdf
10954 action helvB18.bdf
10955 action helvB24.bdf
10956 action helvBO08.bdf
10957 action helvBO10.bdf
10958 action helvBO12.bdf
10959 action helvBO14.bdf
10960 action helvBO18.bdf
10961 action helvBO24.bdf
10962 action helvO08.bdf
10963 action helvO10.bdf
10964 action helvO12.bdf
10965 action helvO14.bdf
10966 action helvO18.bdf
10967 action helvO24.bdf
10968 action helvR08.bdf
10969 action helvR10.bdf
10970 action helvR12.bdf
10971 action helvR14.bdf
10972 action helvR18.bdf
10973 action helvR24.bdf
10974 action ncenB08.bdf
10975 action ncenB10.bdf
10976 action ncenB12.bdf
10977 action ncenB14.bdf
10978 action ncenB18.bdf
10979 action ncenB24.bdf
10980 action ncenBI08.bdf
10981 action ncenBI10.bdf
10982 action ncenBI12.bdf
10983 action ncenBI14.bdf
10984 action ncenBI18.bdf
10985 action ncenBI24.bdf
10986 action ncenI08.bdf
10987 action ncenI10.bdf
10988 action ncenI12.bdf
10989 action ncenI14.bdf
10990 action ncenI18.bdf
10991 action ncenI24.bdf
10992 action ncenR08.bdf
10993 action ncenR10.bdf
10994 action ncenR12.bdf
10995 action ncenR14.bdf
10996 action ncenR18.bdf
10997 action ncenR24.bdf
10998 action symb08.bdf
10999 action symb10.bdf
11000 action symb12.bdf
11001 action symb14.bdf
11002 action symb18.bdf
11003 action symb24.bdf
11004 action timB08.bdf
11005 action timB10.bdf
11006 action timB12.bdf
11007 action timB14.bdf
11008 action timB18.bdf
11009 action timB24.bdf
11010 action timBI08.bdf
11011 action timBI10.bdf
11012 action timBI12.bdf
11013 action timBI14.bdf
11014 action timBI18.bdf
11015 action timBI24.bdf
11016 action timI08.bdf
11017 action timI10.bdf
11018 action timI12.bdf
11019 action timI14.bdf
11020 action timI18.bdf
11021 action timI24.bdf
11022 action timR08.bdf
11023 action timR10.bdf
11024 action timR12.bdf
11025 action timR14.bdf
11026 action timR18.bdf
11027 action timR24.bdf
11030 symlink_font_adobe_utopia_100dpi() {
11031 src_dir fonts/bdf/100dpi
11032 dst_dir font/adobe-utopia-100dpi
11034 # XXX These fonts are copyright Adobe, but all rights reserved
11035 action UTB___10.bdf
11036 action UTB___12.bdf
11037 action UTB___14.bdf
11038 action UTB___18.bdf
11039 action UTB___24.bdf
11040 action UTBI__10.bdf
11041 action UTBI__12.bdf
11042 action UTBI__14.bdf
11043 action UTBI__18.bdf
11044 action UTBI__24.bdf
11045 action UTI___10.bdf
11046 action UTI___12.bdf
11047 action UTI___14.bdf
11048 action UTI___18.bdf
11049 action UTI___24.bdf
11050 action UTRG__10.bdf
11051 action UTRG__12.bdf
11052 action UTRG__14.bdf
11053 action UTRG__18.bdf
11054 action UTRG__24.bdf
11057 symlink_font_bh_100dpi() {
11058 src_dir fonts/bdf/100dpi
11059 dst_dir font/bh-100dpi
11061 action lubB08.bdf
11062 action lubB10.bdf
11063 action lubB12.bdf
11064 action lubB14.bdf
11065 action lubB18.bdf
11066 action lubB19.bdf
11067 action lubB24.bdf
11068 action lubBI08.bdf
11069 action lubBI10.bdf
11070 action lubBI12.bdf
11071 action lubBI14.bdf
11072 action lubBI18.bdf
11073 action lubBI19.bdf
11074 action lubBI24.bdf
11075 action lubI08.bdf
11076 action lubI10.bdf
11077 action lubI12.bdf
11078 action lubI14.bdf
11079 action lubI18.bdf
11080 action lubI19.bdf
11081 action lubI24.bdf
11082 action luBIS08.bdf
11083 action luBIS10.bdf
11084 action luBIS12.bdf
11085 action luBIS14.bdf
11086 action luBIS18.bdf
11087 action luBIS19.bdf
11088 action luBIS24.bdf
11089 action lubR08.bdf
11090 action lubR10.bdf
11091 action lubR12.bdf
11092 action lubR14.bdf
11093 action lubR18.bdf
11094 action lubR19.bdf
11095 action lubR24.bdf
11096 action luBS08.bdf
11097 action luBS10.bdf
11098 action luBS12.bdf
11099 action luBS14.bdf
11100 action luBS18.bdf
11101 action luBS19.bdf
11102 action luBS24.bdf
11103 action luIS08.bdf
11104 action luIS10.bdf
11105 action luIS12.bdf
11106 action luIS14.bdf
11107 action luIS18.bdf
11108 action luIS19.bdf
11109 action luIS24.bdf
11110 action luRS08.bdf
11111 action luRS10.bdf
11112 action luRS12.bdf
11113 action luRS14.bdf
11114 action luRS18.bdf
11115 action luRS19.bdf
11116 action luRS24.bdf
11118 action LU_LEGALNOTICE
11121 symlink_font_bh_lucidatypewriter_100dpi() {
11122 src_dir fonts/bdf/100dpi
11123 dst_dir font/bh-lucidatypewriter-100dpi
11125 action lutBS08.bdf
11126 action lutBS10.bdf
11127 action lutBS12.bdf
11128 action lutBS14.bdf
11129 action lutBS18.bdf
11130 action lutBS19.bdf
11131 action lutBS24.bdf
11132 action lutRS08.bdf
11133 action lutRS10.bdf
11134 action lutRS12.bdf
11135 action lutRS14.bdf
11136 action lutRS18.bdf
11137 action lutRS19.bdf
11138 action lutRS24.bdf
11141 symlink_font_bitstream_100dpi() {
11142 src_dir fonts/bdf/100dpi
11143 dst_dir font/bitstream-100dpi
11145 action charB08.bdf
11146 action charB10.bdf
11147 action charB12.bdf
11148 action charB14.bdf
11149 action charB18.bdf
11150 action charB24.bdf
11151 action charBI08.bdf
11152 action charBI10.bdf
11153 action charBI12.bdf
11154 action charBI14.bdf
11155 action charBI18.bdf
11156 action charBI24.bdf
11157 action charI08.bdf
11158 action charI10.bdf
11159 action charI12.bdf
11160 action charI14.bdf
11161 action charI18.bdf
11162 action charI24.bdf
11163 action charR08.bdf
11164 action charR10.bdf
11165 action charR12.bdf
11166 action charR14.bdf
11167 action charR18.bdf
11168 action charR24.bdf
11169 action tech14.bdf
11170 action techB14.bdf
11171 action term14.bdf
11172 action termB14.bdf
11175 symlink_font_adobe_75dpi() {
11176 src_dir fonts/bdf/75dpi
11177 dst_dir font/adobe-75dpi
11179 action courB08.bdf
11180 action courB10.bdf
11181 action courB12.bdf
11182 action courB14.bdf
11183 action courB18.bdf
11184 action courB24.bdf
11185 action courBO08.bdf
11186 action courBO10.bdf
11187 action courBO12.bdf
11188 action courBO14.bdf
11189 action courBO18.bdf
11190 action courBO24.bdf
11191 action courO08.bdf
11192 action courO10.bdf
11193 action courO12.bdf
11194 action courO14.bdf
11195 action courO18.bdf
11196 action courO24.bdf
11197 action courR08.bdf
11198 action courR10.bdf
11199 action courR12.bdf
11200 action courR14.bdf
11201 action courR18.bdf
11202 action courR24.bdf
11203 action helvB08.bdf
11204 action helvB10.bdf
11205 action helvB12.bdf
11206 action helvB14.bdf
11207 action helvB18.bdf
11208 action helvB24.bdf
11209 action helvBO08.bdf
11210 action helvBO10.bdf
11211 action helvBO12.bdf
11212 action helvBO14.bdf
11213 action helvBO18.bdf
11214 action helvBO24.bdf
11215 action helvO08.bdf
11216 action helvO10.bdf
11217 action helvO12.bdf
11218 action helvO14.bdf
11219 action helvO18.bdf
11220 action helvO24.bdf
11221 action helvR08.bdf
11222 action helvR10.bdf
11223 action helvR12.bdf
11224 action helvR14.bdf
11225 action helvR18.bdf
11226 action helvR24.bdf
11227 action ncenB08.bdf
11228 action ncenB10.bdf
11229 action ncenB12.bdf
11230 action ncenB14.bdf
11231 action ncenB18.bdf
11232 action ncenB24.bdf
11233 action ncenBI08.bdf
11234 action ncenBI10.bdf
11235 action ncenBI12.bdf
11236 action ncenBI14.bdf
11237 action ncenBI18.bdf
11238 action ncenBI24.bdf
11239 action ncenI08.bdf
11240 action ncenI10.bdf
11241 action ncenI12.bdf
11242 action ncenI14.bdf
11243 action ncenI18.bdf
11244 action ncenI24.bdf
11245 action ncenR08.bdf
11246 action ncenR10.bdf
11247 action ncenR12.bdf
11248 action ncenR14.bdf
11249 action ncenR18.bdf
11250 action ncenR24.bdf
11251 action symb08.bdf
11252 action symb10.bdf
11253 action symb12.bdf
11254 action symb14.bdf
11255 action symb18.bdf
11256 action symb24.bdf
11257 action timB08.bdf
11258 action timB10.bdf
11259 action timB12.bdf
11260 action timB14.bdf
11261 action timB18.bdf
11262 action timB24.bdf
11263 action timBI08.bdf
11264 action timBI10.bdf
11265 action timBI12.bdf
11266 action timBI14.bdf
11267 action timBI18.bdf
11268 action timBI24.bdf
11269 action timI08.bdf
11270 action timI10.bdf
11271 action timI12.bdf
11272 action timI14.bdf
11273 action timI18.bdf
11274 action timI24.bdf
11275 action timR08.bdf
11276 action timR10.bdf
11277 action timR12.bdf
11278 action timR14.bdf
11279 action timR18.bdf
11280 action timR24.bdf
11283 symlink_font_adobe_utopia_75dpi() {
11284 src_dir fonts/bdf/75dpi
11285 dst_dir font/adobe-utopia-75dpi
11287 # XXX These fonts are copyright Adobe, but all rights reserved
11288 action UTB___10.bdf
11289 action UTB___12.bdf
11290 action UTB___14.bdf
11291 action UTB___18.bdf
11292 action UTB___24.bdf
11293 action UTBI__10.bdf
11294 action UTBI__12.bdf
11295 action UTBI__14.bdf
11296 action UTBI__18.bdf
11297 action UTBI__24.bdf
11298 action UTI___10.bdf
11299 action UTI___12.bdf
11300 action UTI___14.bdf
11301 action UTI___18.bdf
11302 action UTI___24.bdf
11303 action UTRG__10.bdf
11304 action UTRG__12.bdf
11305 action UTRG__14.bdf
11306 action UTRG__18.bdf
11307 action UTRG__24.bdf
11310 symlink_font_bh_75dpi() {
11311 src_dir fonts/bdf/75dpi
11312 dst_dir font/bh-75dpi
11314 action lubB08.bdf
11315 action lubB10.bdf
11316 action lubB12.bdf
11317 action lubB14.bdf
11318 action lubB18.bdf
11319 action lubB19.bdf
11320 action lubB24.bdf
11321 action lubBI08.bdf
11322 action lubBI10.bdf
11323 action lubBI12.bdf
11324 action lubBI14.bdf
11325 action lubBI18.bdf
11326 action lubBI19.bdf
11327 action lubBI24.bdf
11328 action lubI08.bdf
11329 action lubI10.bdf
11330 action lubI12.bdf
11331 action lubI14.bdf
11332 action lubI18.bdf
11333 action lubI19.bdf
11334 action lubI24.bdf
11335 action luBIS08.bdf
11336 action luBIS10.bdf
11337 action luBIS12.bdf
11338 action luBIS14.bdf
11339 action luBIS18.bdf
11340 action luBIS19.bdf
11341 action luBIS24.bdf
11342 action lubR08.bdf
11343 action lubR10.bdf
11344 action lubR12.bdf
11345 action lubR14.bdf
11346 action lubR18.bdf
11347 action lubR19.bdf
11348 action lubR24.bdf
11349 action luBS08.bdf
11350 action luBS10.bdf
11351 action luBS12.bdf
11352 action luBS14.bdf
11353 action luBS18.bdf
11354 action luBS19.bdf
11355 action luBS24.bdf
11356 action luIS08.bdf
11357 action luIS10.bdf
11358 action luIS12.bdf
11359 action luIS14.bdf
11360 action luIS18.bdf
11361 action luIS19.bdf
11362 action luIS24.bdf
11363 action luRS08.bdf
11364 action luRS10.bdf
11365 action luRS12.bdf
11366 action luRS14.bdf
11367 action luRS18.bdf
11368 action luRS19.bdf
11369 action luRS24.bdf
11371 action LU_LEGALNOTICE
11374 symlink_font_bh_lucidatypewriter_75dpi() {
11375 src_dir fonts/bdf/75dpi
11376 dst_dir font/bh-lucidatypewriter-75dpi
11378 action lutBS08.bdf
11379 action lutBS10.bdf
11380 action lutBS12.bdf
11381 action lutBS14.bdf
11382 action lutBS18.bdf
11383 action lutBS19.bdf
11384 action lutBS24.bdf
11385 action lutRS08.bdf
11386 action lutRS10.bdf
11387 action lutRS12.bdf
11388 action lutRS14.bdf
11389 action lutRS18.bdf
11390 action lutRS19.bdf
11391 action lutRS24.bdf
11394 symlink_font_bitstream_75dpi() {
11395 src_dir fonts/bdf/75dpi
11396 dst_dir font/bitstream-75dpi
11398 action charB08.bdf
11399 action charB10.bdf
11400 action charB12.bdf
11401 action charB14.bdf
11402 action charB18.bdf
11403 action charB24.bdf
11404 action charBI08.bdf
11405 action charBI10.bdf
11406 action charBI12.bdf
11407 action charBI14.bdf
11408 action charBI18.bdf
11409 action charBI24.bdf
11410 action charI08.bdf
11411 action charI10.bdf
11412 action charI12.bdf
11413 action charI14.bdf
11414 action charI18.bdf
11415 action charI24.bdf
11416 action charR08.bdf
11417 action charR10.bdf
11418 action charR12.bdf
11419 action charR14.bdf
11420 action charR18.bdf
11421 action charR24.bdf
11422 action tech14.bdf
11423 action techB14.bdf
11424 action term14.bdf
11425 action termB14.bdf
11428 symlink_font_cronyx_cyrillic() {
11429 src_dir fonts/bdf/cyrillic
11430 dst_dir font/cronyx-cyrillic
11432 action crox1cb.bdf
11433 action crox1c.bdf
11434 action crox1cbo.bdf
11435 action crox1co.bdf
11436 action crox1hb.bdf
11437 action crox1h.bdf
11438 action crox1hbo.bdf
11439 action crox1ho.bdf
11440 action crox1tb.bdf
11441 action crox1t.bdf
11442 action crox1tbo.bdf
11443 action crox1to.bdf
11444 action crox2cb.bdf
11445 action crox2c.bdf
11446 action crox2cbo.bdf
11447 action crox2co.bdf
11448 action crox2hb.bdf
11449 action crox2h.bdf
11450 action crox2hbo.bdf
11451 action crox2ho.bdf
11452 action crox2tb.bdf
11453 action crox2t.bdf
11454 action crox2tbo.bdf
11455 action crox2to.bdf
11456 action crox3cb.bdf
11457 action crox3c.bdf
11458 action crox3cbo.bdf
11459 action crox3co.bdf
11460 action crox3hb.bdf
11461 action crox3h.bdf
11462 action crox3hbo.bdf
11463 action crox3ho.bdf
11464 action crox3tb.bdf
11465 action crox3t.bdf
11466 action crox3tbo.bdf
11467 action crox3to.bdf
11468 action crox4hb.bdf
11469 action crox4h.bdf
11470 action crox4hbo.bdf
11471 action crox4ho.bdf
11472 action crox4tb.bdf
11473 action crox4t.bdf
11474 action crox4tbo.bdf
11475 action crox4to.bdf
11476 action crox5hb.bdf
11477 action crox5h.bdf
11478 action crox5hbo.bdf
11479 action crox5ho.bdf
11480 action crox5tb.bdf
11481 action crox5t.bdf
11482 action crox5tbo.bdf
11483 action crox5to.bdf
11484 action crox6hb.bdf
11485 action crox6h.bdf
11486 action crox6hbo.bdf
11487 action crox6ho.bdf
11488 action crox6tb.bdf
11489 action crox6t.bdf
11490 action crox6tbo.bdf
11491 action crox6to.bdf
11492 action koi10x16b.bdf
11493 action koi10x20.bdf
11494 action koi6x10.bdf
11495 action koinil2.bdf
11497 action COPYRIGHT
11500 symlink_font_misc_cyrillic() {
11501 src_dir fonts/bdf/cyrillic
11502 dst_dir font/misc-cyrillic
11504 # XXX Should these be broken into three different components?
11506 # XXX "May be distributed and modified without restrictions"
11507 action koi12x24b.bdf
11508 action koi8x16b.bdf
11509 action koi8x16.bdf
11511 # XXX Same license as cronyx-cyrillic
11512 action koi12x24.bdf
11513 action koi6x13.bdf
11515 # XXX public domain
11516 action koi5x8.bdf
11517 action koi6x13b.bdf
11518 action koi6x9.bdf
11519 action koi7x14b.bdf
11520 action koi7x14.bdf
11521 action koi8x13.bdf
11522 action koi9x15b.bdf
11523 action koi9x15.bdf
11524 action koi9x18b.bdf
11525 action koi9x18.bdf
11528 symlink_font_screen_cyrillic() {
11529 src_dir fonts/bdf/cyrillic
11530 dst_dir font/screen-cyrillic
11532 # XXX no copyright/license at all
11533 action screen8x16b.bdf
11534 action screen8x16.bdf
11537 symlink_font_winitzki_cyrillic() {
11538 src_dir fonts/bdf/cyrillic
11539 dst_dir font/winitzki-cyrillic
11541 action proof9x16.bdf
11544 symlink_font_cursor_misc() {
11545 src_dir fonts/bdf/misc
11546 dst_dir font/cursor-misc
11548 # XXX Does "unencumbered" mean the same thing as public domain
11549 # in this context?
11550 action cursor.bdf
11553 symlink_font_daewoo_misc() {
11554 src_dir fonts/bdf/misc
11555 dst_dir font/daewoo-misc
11557 # XXX These fonts are copyright, but no permissions are given
11558 action hanglg16.bdf
11559 action hanglm16.bdf
11560 action hanglm24.bdf
11563 symlink_font_dec_misc() {
11564 src_dir fonts/bdf/misc
11565 dst_dir font/dec-misc
11567 action deccurs.bdf
11568 action decsess.bdf
11571 symlink_font_isas_misc() {
11572 src_dir fonts/bdf/misc
11573 dst_dir font/isas-misc
11575 action gb16fs.bdf
11576 action gb16st.bdf
11577 action gb24st.bdf
11580 symlink_font_jis_misc() {
11581 src_dir fonts/bdf/misc
11582 dst_dir font/jis-misc
11584 # XXX Verify license restrictions
11585 action jiskan16.bdf
11586 action jiskan24.bdf
11589 symlink_font_micro_misc() {
11590 src_dir fonts/bdf/misc
11591 dst_dir font/micro-misc
11593 action micro.bdf
11596 symlink_font_misc_misc() {
11597 src_dir fonts/bdf/misc
11598 dst_dir font/misc-misc
11600 action 10x20.bdf
11601 action 12x13ja.bdf
11602 action 18x18ja.bdf
11603 action 18x18ko.bdf
11604 action 4x6.bdf
11605 action 5x7.bdf
11606 action 5x8.bdf
11607 action 6x10.bdf
11608 action 6x12.bdf
11609 action 6x13B.bdf
11610 action 6x13.bdf
11611 action 6x13O.bdf
11612 action 6x9.bdf
11613 action 7x13B.bdf
11614 action 7x13.bdf
11615 action 7x13O.bdf
11616 action 7x14B.bdf
11617 action 7x14.bdf
11618 action 8x13B.bdf
11619 action 8x13.bdf
11620 action 8x13O.bdf
11621 action 9x15B.bdf
11622 action 9x15.bdf
11623 action 9x18B.bdf
11624 action 9x18.bdf
11625 action k14.bdf
11627 # XXX This font does not have any COPYRIGHT
11628 action nil2.bdf
11631 symlink_font_schumacher_misc() {
11632 src_dir fonts/bdf/misc
11633 dst_dir font/schumacher-misc
11635 action clB6x10.bdf
11636 action clB6x12.bdf
11637 action clB8x10.bdf
11638 action clB8x12.bdf
11639 action clB8x13.bdf
11640 action clB8x14.bdf
11641 action clB8x16.bdf
11642 action clB8x8.bdf
11643 action clB9x15.bdf
11644 action clI6x12.bdf
11645 action clI8x8.bdf
11646 action clR4x6.bdf
11647 action clR5x10.bdf
11648 action clR5x6.bdf
11649 action clR5x8.bdf
11650 action clR6x10.bdf
11651 action clR6x12.bdf
11652 action clR6x13.bdf
11653 action clR6x6.bdf
11654 action clR6x8.bdf
11655 action clR7x10.bdf
11656 action clR7x12.bdf
11657 action clR7x14.bdf
11658 action clR7x8.bdf
11659 action clR8x10.bdf
11660 action clR8x12.bdf
11661 action clR8x13.bdf
11662 action clR8x14.bdf
11663 action clR8x16.bdf
11664 action clR8x8.bdf
11665 action clR9x15.bdf
11668 symlink_font_sony_misc() {
11669 src_dir fonts/bdf/misc
11670 dst_dir font/sony-misc
11672 action 12x24.bdf
11673 action 12x24rk.bdf
11674 action 8x16.bdf
11675 action 8x16rk.bdf
11678 symlink_font_sun_misc() {
11679 src_dir fonts/bdf/misc
11680 dst_dir font/sun-misc
11682 action olcursor.bdf
11683 action olgl10.bdf
11684 action olgl12.bdf
11685 action olgl14.bdf
11686 action olgl19.bdf
11689 symlink_font_bh_ttf() {
11690 src_dir fonts/scaled/TTF
11691 dst_dir font/bh-ttf
11693 action luximbi.ttf
11694 action luximb.ttf
11695 action luximri.ttf
11696 action luximr.ttf
11697 action luxirbi.ttf
11698 action luxirb.ttf
11699 action luxirri.ttf
11700 action luxirr.ttf
11701 action luxisbi.ttf
11702 action luxisb.ttf
11703 action luxisri.ttf
11704 action luxisr.ttf
11706 action COPYRIGHT.BH
11709 symlink_font_adobe_utopia_type1() {
11710 src_dir fonts/scaled/Type1
11711 dst_dir font/adobe-utopia-type1
11713 # XXX These fonts are copyright Adobe, but all rights reserved
11714 action UTB_____.afm
11715 action UTBI____.afm
11716 action UTBI____.pfa
11717 action UTB_____.pfa
11718 action UTI_____.afm
11719 action UTI_____.pfa
11720 action UTRG____.afm
11721 action UTRG____.pfa
11724 symlink_font_bh_type1() {
11725 src_dir fonts/scaled/Type1
11726 dst_dir font/bh-type1
11728 action l047013t.afm
11729 action l047013t.pfa
11730 action l047016t.afm
11731 action l047016t.pfa
11732 action l047033t.afm
11733 action l047033t.pfa
11734 action l047036t.afm
11735 action l047036t.pfa
11736 action l048013t.afm
11737 action l048013t.pfa
11738 action l048016t.afm
11739 action l048016t.pfa
11740 action l048033t.afm
11741 action l048033t.pfa
11742 action l048036t.afm
11743 action l048036t.pfa
11744 action l049013t.afm
11745 action l049013t.pfa
11746 action l049016t.afm
11747 action l049016t.pfa
11748 action l049033t.afm
11749 action l049033t.pfa
11750 action l049036t.afm
11751 action l049036t.pfa
11753 action COPYRIGHT.BH
11756 symlink_font_bitstream_type1() {
11757 src_dir fonts/scaled/Type1
11758 dst_dir font/bitstream-type1
11760 action c0419bt_.afm
11761 action c0419bt_.pfb
11762 action c0582bt_.afm
11763 action c0582bt_.pfb
11764 action c0583bt_.afm
11765 action c0583bt_.pfb
11766 action c0611bt_.afm
11767 action c0611bt_.pfb
11768 action c0632bt_.afm
11769 action c0632bt_.pfb
11770 action c0633bt_.afm
11771 action c0633bt_.pfb
11772 action c0648bt_.afm
11773 action c0648bt_.pfb
11774 action c0649bt_.afm
11775 action c0649bt_.pfb
11777 action Copyright
11780 symlink_font_ibm_type1() {
11781 src_dir fonts/scaled/Type1
11782 dst_dir font/ibm-type1
11784 action cour.afm
11785 action courb.afm
11786 action courbi.afm
11787 action courbi.pfa
11788 action courb.pfa
11789 action couri.afm
11790 action couri.pfa
11791 action cour.pfa
11793 action COPYRIGHT.IBM
11796 symlink_font_xfree86_type1() {
11797 src_dir fonts/scaled/Type1
11798 dst_dir font/xfree86-type1
11800 action cursor.pfa
11803 symlink_font_arabic_misc() {
11804 src_dir extras/fonts/arabic24
11805 dst_dir font/arabic-misc
11807 action arabic24.bdf
11809 action README
11810 action uniarab.txt
11813 symlink_font_mutt_misc() {
11814 src_dir extras/fonts/ClearlyU
11815 dst_dir font/mutt-misc
11817 action cu12.bdf
11818 action cu-alt12.bdf
11819 action cu-arabic12.bdf
11820 action cuarabic12.bdf
11821 action cu-devnag12.bdf
11822 action cudevnag12.bdf
11823 action cu-lig12.bdf
11824 action cu-pua12.bdf
11826 action README
11830 symlink_font_misc_ethiopic() {
11831 src_dir fonts/scaled/Ethiopic
11832 dst_dir font/misc-ethiopic
11834 action GohaTibebZemen.otf
11835 action GohaTibebZemen.ttf
11837 action license.txt
11840 symlink_font_misc_meltho() {
11841 src_dir fonts/scaled/Meltho
11842 dst_dir font/misc-meltho
11844 action SyrCOMAdiabene.otf
11845 action SyrCOMAntioch.otf
11846 action SyrCOMBatnanBold.otf
11847 action SyrCOMBatnan.otf
11848 action SyrCOMCtesiphon.otf
11849 action SyrCOMEdessa.otf
11850 action SyrCOMJerusalemBold.otf
11851 action SyrCOMJerusalemItalic.otf
11852 action SyrCOMJerusalem.otf
11853 action SyrCOMJerusalemOutline.otf
11854 action SyrCOMKharput.otf
11855 action SyrCOMMalankara.otf
11856 action SyrCOMMardinBold.otf
11857 action SyrCOMMardin.otf
11858 action SyrCOMMidyat.otf
11859 action SyrCOMNisibin.otf
11860 action SyrCOMNisibinOutline.otf
11861 action SyrCOMQenNeshrin.otf
11862 action SyrCOMTalada.otf
11863 action SyrCOMTurAbdin.otf
11864 action SyrCOMUrhoyBold.otf
11865 action SyrCOMUrhoy.otf
11867 action license.txt
11868 action README
11871 symlink_font_bistream_speedo() {
11872 src_dir fonts/scaled/Speedo
11873 dst_dir font/bitstream-speedo
11875 action font0419.spd
11876 action font0582.spd
11877 action font0583.spd
11878 action font0611.spd
11879 action font0648.spd
11880 action font0649.spd
11881 action font0709.spd
11882 action font0710.spd
11884 action fonts.scale
11885 action COPYRIGHT
11889 symlink_font_alias() {
11890 src_dir fonts/bdf/100dpi
11891 dst_dir font/alias/100dpi
11893 action fonts.alias
11895 src_dir fonts/bdf/75dpi
11896 dst_dir font/alias/75dpi
11898 action fonts.alias
11900 src_dir fonts/bdf/cyrillic
11901 dst_dir font/alias/cyrillic
11903 action fonts.alias
11905 src_dir fonts/bdf/misc
11906 dst_dir font/alias/misc
11908 action fonts.alias
11911 symlink_font_util() {
11912 src_dir fonts/util
11913 dst_dir font/util
11915 action 8859-1.TXT map-ISO8859-1
11916 action 8859-2.TXT map-ISO8859-2
11917 action 8859-3.TXT map-ISO8859-3
11918 action 8859-4.TXT map-ISO8859-4
11919 action 8859-5.TXT map-ISO8859-5
11920 action 8859-6.TXT map-ISO8859-6
11921 action 8859-7.TXT map-ISO8859-7
11922 action 8859-8.TXT map-ISO8859-8
11923 action 8859-9.TXT map-ISO8859-9
11924 action 8859-10.TXT map-ISO8859-10
11925 action 8859-11.TXT map-ISO8859-11
11926 action 8859-13.TXT map-ISO8859-13
11927 action 8859-14.TXT map-ISO8859-14
11928 action 8859-15.TXT map-ISO8859-15
11929 action 8859-16.TXT map-ISO8859-16
11930 action JIS0201.TXT map-JISX0201.1976-0
11931 action KOI8-R.TXT map-KOI8-R
11933 action bdftruncate.man
11934 action bdftruncate.pl
11936 action ucs2any.c
11937 action ucs2any.man
11940 symlink_font_encodings() {
11941 src_dir fonts/encodings
11942 dst_dir font/encodings
11944 action adobe-dingbats.enc
11945 action adobe-standard.enc
11946 action adobe-symbol.enc
11947 action ansi-1251.enc
11948 action armscii-8.enc
11949 action ascii-0.enc
11950 action dec-special.enc
11951 action ibm-cp437.enc
11952 action ibm-cp850.enc
11953 action ibm-cp852.enc
11954 action ibm-cp866.enc
11955 action iso8859-11.enc
11956 action iso8859-13.enc
11957 action iso8859-16.enc
11958 action iso8859-6.16.enc
11959 action iso8859-6.8x.enc
11960 action microsoft-cp1250.enc
11961 action microsoft-cp1251.enc
11962 action microsoft-cp1252.enc
11963 action microsoft-cp1253.enc
11964 action microsoft-cp1254.enc
11965 action microsoft-cp1255.enc
11966 action microsoft-cp1256.enc
11967 action microsoft-cp1257.enc
11968 action microsoft-cp1258.enc
11969 action microsoft-win3.1.enc
11970 action mulearabic-0.enc
11971 action mulearabic-1.enc
11972 action mulearabic-2.enc
11973 action mulelao-1.enc
11974 action suneu-greek.enc
11975 action tcvn-0.enc
11976 action tis620-2.enc
11977 action viscii1.1-1.enc
11979 src_dir fonts/encodings/large
11980 dst_dir font/encodings/large
11982 action big5.eten-0.enc
11983 action big5hkscs-0.enc
11984 action cns11643-1.enc
11985 action cns11643-2.enc
11986 action cns11643-3.enc
11987 action gb18030-0.enc
11988 action gb18030.2000-0.enc
11989 action gb18030.2000-1.enc
11990 action gb2312.1980-0.enc
11991 action gbk-0.enc
11992 action jisx0201.1976-0.enc
11993 action jisx0208.1990-0.enc
11994 action jisx0212.1990-0.enc
11995 action ksc5601.1987-0.enc
11996 action ksc5601.1992-3.enc
11997 action sun.unicode.india-0.enc
12000 symlink_font() {
12001 symlink_font_adobe_100dpi
12002 symlink_font_adobe_utopia_100dpi
12003 symlink_font_bh_100dpi
12004 symlink_font_bh_lucidatypewriter_100dpi
12005 symlink_font_bitstream_100dpi
12007 symlink_font_adobe_75dpi
12008 symlink_font_adobe_utopia_75dpi
12009 symlink_font_bh_75dpi
12010 symlink_font_bh_lucidatypewriter_75dpi
12011 symlink_font_bitstream_75dpi
12013 symlink_font_cronyx_cyrillic
12014 symlink_font_misc_cyrillic
12015 symlink_font_screen_cyrillic
12016 symlink_font_winitzki_cyrillic
12018 symlink_font_cursor_misc
12019 symlink_font_daewoo_misc
12020 symlink_font_dec_misc
12021 symlink_font_isas_misc
12022 symlink_font_jis_misc
12023 symlink_font_micro_misc
12024 symlink_font_misc_misc
12025 symlink_font_schumacher_misc
12026 symlink_font_sony_misc
12027 symlink_font_sun_misc
12029 symlink_font_bh_ttf
12031 symlink_font_adobe_utopia_type1
12032 symlink_font_bh_type1
12033 symlink_font_bitstream_type1
12034 symlink_font_ibm_type1
12035 symlink_font_xfree86_type1
12037 symlink_font_mutt_misc
12038 symlink_font_arabic_misc
12040 symlink_font_misc_meltho
12041 symlink_font_misc_ethiopic
12043 symlink_font_bistream_speedo
12045 symlink_font_alias
12046 symlink_font_util
12048 symlink_font_encodings
12052 #########
12054 # The doc module
12056 #########
12058 symlink_doc_old() {
12059 src_dir doc/hardcopy
12060 dst_dir doc/old/hardcopy
12062 src_dir doc/hardcopy/BDF
12063 dst_dir doc/old/hardcopy/BDF
12065 action bdf.PS.gz
12067 src_dir doc/hardcopy/CTEXT
12068 dst_dir doc/old/hardcopy/CTEXT
12070 action ctext.PS.gz
12072 src_dir doc/hardcopy/FSProtocol
12073 dst_dir doc/old/hardcopy/FSProtocol
12075 action fsproto.PS.gz
12077 src_dir doc/hardcopy/i18n
12078 dst_dir doc/old/hardcopy/i18n
12080 action Framework.PS.gz
12081 action LocaleDB.PS.gz
12082 action Trans.PS.gz
12084 src_dir doc/hardcopy/ICCCM
12085 dst_dir doc/old/hardcopy/ICCCM
12087 action icccm.PS.gz
12088 action icccm.idx.PS.gz
12090 src_dir doc/hardcopy/ICE
12091 dst_dir doc/old/hardcopy/ICE
12093 action ICElib.PS.gz
12094 action ice.PS.gz
12096 src_dir doc/hardcopy/man
12097 dst_dir doc/old/hardcopy/man
12099 action man.PS.gz
12101 src_dir doc/hardcopy/rstart
12102 dst_dir doc/old/hardcopy/rstart
12104 action rstart.PS.gz
12106 src_dir doc/hardcopy/RX
12107 dst_dir doc/old/hardcopy/RX
12109 action RX.PS.gz
12111 src_dir doc/hardcopy/saver
12112 dst_dir doc/old/hardcopy/saver
12114 action saver.PS.gz
12116 src_dir doc/hardcopy/SM
12117 dst_dir doc/old/hardcopy/SM
12119 action SMlib.PS.gz
12120 action xsmp.PS.gz
12122 src_dir doc/hardcopy/X11
12123 dst_dir doc/old/hardcopy/X11
12125 action xlib.PS.gz
12126 action xlib.idx.PS.gz
12128 src_dir doc/hardcopy/Xaw
12129 dst_dir doc/old/hardcopy/Xaw
12131 action widg.idx.PS.gz
12132 action widgets.PS.gz
12134 src_dir doc/hardcopy/XDMCP
12135 dst_dir doc/old/hardcopy/XDMCP
12137 action xdmcp.PS.gz
12139 src_dir doc/hardcopy/Xext
12140 dst_dir doc/old/hardcopy/Xext
12142 action AppGroup.PS.gz
12143 action DPMS.PS.gz
12144 action DPMSLib.PS.gz
12145 action bigreq.PS.gz
12146 action buffer.PS.gz
12147 action dbe.PS.gz
12148 action dbelib.PS.gz
12149 action evi.PS.gz
12150 action lbx.PS.gz
12151 action lbx.html
12152 action lbxTOC.html
12153 action lbxalg.PS.gz
12154 action mit-shm.PS.gz
12155 action record.PS.gz
12156 action recordlib.PS.gz
12157 action security.PS.gz
12158 action shape.PS.gz
12159 action shapelib.PS.gz
12160 action sync.PS.gz
12161 action synclib.PS.gz
12162 action tog-cup.PS.gz
12163 action xc-misc.PS.gz
12164 action xtest.PS.gz
12165 action xtestlib.PS.gz
12167 src_dir doc/hardcopy/xfs
12168 dst_dir doc/old/hardcopy/xfs
12170 action design.PS.gz
12172 src_dir doc/hardcopy/Xi
12173 dst_dir doc/old/hardcopy/Xi
12175 action lib.PS.gz
12176 action port.PS.gz
12177 action proto.PS.gz
12179 src_dir doc/hardcopy/XIM
12180 dst_dir doc/old/hardcopy/XIM
12182 action xim.PS.gz
12184 src_dir doc/hardcopy/XKB
12185 dst_dir doc/old/hardcopy/XKB
12187 action XKBlib.ps.gz
12188 action XKBproto.ps.gz
12190 src_dir doc/hardcopy/XLFD
12191 dst_dir doc/old/hardcopy/XLFD
12193 action xlfd.PS.gz
12195 src_dir doc/hardcopy/Xmu
12196 dst_dir doc/old/hardcopy/Xmu
12198 action xmu.PS.gz
12200 src_dir doc/hardcopy/XPRINT
12201 dst_dir doc/old/hardcopy/XPRINT
12203 action Xprint_FAQ.html
12204 action Xprint_FAQ.txt
12205 action Xprint_FAQ.xml
12206 action Xprint_old_FAQ.txt
12207 action docbook.css
12208 action dtprint_fspec.PS.gz
12209 action xp_library.PS.gz
12210 action xp_proto.PS.gz
12212 src_dir doc/hardcopy/XProtocol
12213 dst_dir doc/old/hardcopy/XProtocol
12215 action proto.PS.gz
12216 action proto.idx.PS.gz
12218 src_dir doc/hardcopy/Xserver
12219 dst_dir doc/old/hardcopy/Xserver
12221 action Xprt.PS.gz
12222 action analysis.PS.gz
12223 action appgroup.PS.gz
12224 action ddx.PS.gz
12225 action fontlib.PS.gz
12226 action secint.PS.gz
12228 src_dir doc/hardcopy/Xt
12229 dst_dir doc/old/hardcopy/Xt
12231 action intr.idx.PS.gz
12232 action intrinsics.PS.gz
12234 src_dir doc/hardcopy/xterm
12235 dst_dir doc/old/hardcopy/xterm
12237 action ctlseqs.PS.gz
12239 src_dir doc/hardcopy/xtrans
12240 dst_dir doc/old/hardcopy/xtrans
12242 action Xtrans.PS.gz
12244 src_dir doc/hardcopy/Xv
12245 dst_dir doc/old/hardcopy/Xv
12247 action video
12248 action xv-protocol-v2.PS
12250 src_dir doc/man/general
12251 dst_dir doc/old/man/general
12253 action Consortium.man
12254 action security.man
12255 action Standards.man
12256 action X.man
12257 action XOrgFoundation.man
12258 action Xprint.man
12259 action Xprint.sgml
12260 action XProjectTeam.man
12262 # FIXME: other man pages should be moved to the appropriate library
12264 src_dir doc/misc
12265 dst_dir doc/old/misc
12267 action xlogo.epsi
12269 src_dir doc/specs
12270 dst_dir doc/old/specs
12272 action specindex.html
12274 src_dir doc/specs/BDF
12275 dst_dir doc/old/specs/BDF
12277 action bdf.ms
12278 action fig1.ps
12279 action fig2.ps
12281 src_dir doc/specs/CTEXT
12282 dst_dir doc/old/specs/CTEXT
12284 action ctext.tbl.ms
12286 src_dir doc/specs/FSProtocol
12287 dst_dir doc/old/specs/FSProtocol
12289 action protocol.ms
12291 src_dir doc/specs/GL
12292 dst_dir doc/old/specs/GL
12294 action libGL.txt
12296 src_dir doc/specs/i18n
12297 dst_dir doc/old/specs/i18n
12299 action Framework.ms
12300 action LocaleDB.ms
12301 action Trans.ms
12303 src_dir doc/specs/ICCCM
12304 dst_dir doc/old/specs/ICCCM
12306 action icccm.ms
12307 action indexmacros.t
12309 src_dir doc/specs/ICE
12310 dst_dir doc/old/specs/ICE
12312 action ICElib.ms
12313 action ice.ms
12315 src_dir doc/specs/PM
12316 dst_dir doc/old/specs/PM
12318 action PM_spec
12320 src_dir doc/specs/Randr
12321 dst_dir doc/old/specs/Randr
12323 action protocol.txt
12325 src_dir doc/specs/Render
12326 dst_dir doc/old/specs/Render
12328 action library
12329 action protocol
12331 src_dir doc/specs/rstart
12332 dst_dir doc/old/specs/rstart
12334 action fix.awk
12335 action fix.nawk
12336 action fix.sed
12337 action rstart.ms
12338 action rstartd.txt
12339 action tmac.rfc
12341 src_dir doc/specs/RX
12342 dst_dir doc/old/specs/RX
12344 action RX.mif
12346 src_dir doc/specs/saver
12347 dst_dir doc/old/specs/saver
12349 action saver.ms
12351 src_dir doc/specs/SIAddresses
12352 dst_dir doc/old/specs/SIAddresses
12354 action IPv6.txt
12355 action README
12356 action hostname.txt
12357 action localuser.txt
12359 src_dir doc/specs/SM
12360 dst_dir doc/old/specs/SM
12362 action SMlib.ms
12363 action xsmp.ms
12365 src_dir doc/specs/X11
12366 dst_dir doc/old/specs/X11
12368 action AppA
12369 action AppB
12370 action AppC
12371 action AppD
12372 action CH01
12373 action CH02
12374 action CH03
12375 action CH04
12376 action CH05
12377 action CH06
12378 action CH07
12379 action CH08
12380 action CH09
12381 action CH10
12382 action CH11
12383 action CH12
12384 action CH13
12385 action CH14
12386 action CH15
12387 action CH16
12388 action abstract.t
12389 action credits.t
12390 action glossary
12391 action indexmacros.t
12392 action postproc
12394 src_dir doc/specs/Xaw
12395 dst_dir doc/old/specs/Xaw
12397 action AsciiSink
12398 action AsciiSource
12399 action AsciiText
12400 action Box
12401 action CH1
12402 action CH2
12403 action CH3.intro
12404 action CH4.intro
12405 action CH5.intro
12406 action CH6.intro
12407 action CH7.intro
12408 action Command
12409 action Dialog
12410 action Form
12411 action Grip
12412 action Label
12413 action List
12414 action MenuButton
12415 action Paned
12416 action Panner
12417 action Porthole
12418 action Repeater
12419 action Scrollbar
12420 action Simple
12421 action SimpleMenu
12422 action Sme
12423 action SmeBSB
12424 action SmeLine
12425 action StripChart
12426 action TPage_Credits
12427 action Template
12428 action Text
12429 action TextActions
12430 action TextCustom
12431 action TextFuncs
12432 action TextSink
12433 action TextSource
12434 action Toggle
12435 action Tree
12436 action Viewport
12437 action Xtk.widg.front
12438 action Xtk.widgets
12439 action block.awk
12440 action fixindex.awk
12441 action strings.mit
12442 action strings.xaw
12443 action widg.idxmac.t
12445 src_dir doc/specs/XDMCP
12446 dst_dir doc/old/specs/XDMCP
12448 action xdmcp.ms
12450 src_dir doc/specs/Xext
12451 dst_dir doc/old/specs/Xext
12453 action AppGroup.mif
12454 action DPMS.ms
12455 action DPMSLib.ms
12456 action bigreq.ms
12457 action buffer.ms
12458 action dbe.tex
12459 action dbelib.tex
12460 action evi.ms
12461 action lbx.book
12462 action lbx.mif
12463 action lbxalg.mif
12464 action mit-shm.ms
12465 action record.ms
12466 action recordlib.ms
12467 action security.tex
12468 action shape.ms
12469 action shapelib.ms
12470 action sync.tex
12471 action synclib.tex
12472 action tog-cup.ms
12473 action xc-misc.ms
12474 action xtest.ms
12475 action xtest1.info
12476 action xtest1.mm
12477 action xtestlib.ms
12479 src_dir doc/specs/xfs
12480 dst_dir doc/old/specs/xfs
12482 action FSlib.doc
12483 action design.ms
12485 src_dir doc/specs/Xi
12486 dst_dir doc/old/specs/Xi
12488 action encoding.ms
12489 action library.ms
12490 action porting.ms
12491 action protocol.ms
12493 src_dir doc/specs/XIM
12494 dst_dir doc/old/specs/XIM
12496 action xim.ms
12498 src_dir doc/specs/XKB/Proto
12499 dst_dir doc/old/specs/XKB/Proto
12501 action XKBproto.book
12502 action dflttrns.fm5
12503 action encoding.fm5
12504 action keysyms.fm5
12505 action protocol.fm5
12506 action prototoc.doc
12507 action title.fm5
12508 action types.fm5
12510 src_dir doc/specs/XKB/XKBlib
12511 dst_dir doc/old/specs/XKB/XKBlib
12513 action XKBlib.book
12514 action allchaps.fm5
12515 action allchaps.ix
12516 action allchaps.lof
12517 action allchaps.lot
12518 action allchaps.ps
12519 action allchaps.toc
12520 action fonts.fm5
12521 action title.fm5
12523 src_dir doc/specs/XLFD
12524 dst_dir doc/old/specs/XLFD
12526 action xlfd.tbl.ms
12528 src_dir doc/specs/Xmu
12529 dst_dir doc/old/specs/Xmu
12531 action Xmu.ms
12533 src_dir doc/specs/XPRINT
12534 dst_dir doc/old/specs/XPRINT
12536 action xp_library.book
12537 action xp_library.mif
12538 action xp_libraryIX.doc
12539 action xp_libraryTOC.doc
12540 action xp_library_cov.mif
12541 action xp_proto.book
12542 action xp_proto.mif
12543 action xp_protoIX.doc
12544 action xp_protoTOC.doc
12545 action xp_proto_cov.mif
12547 src_dir doc/specs/XProtocol
12548 dst_dir doc/old/specs/XProtocol
12550 action X11.encoding
12551 action X11.keysyms
12552 action X11.protocol
12553 action glossary
12554 action indexmacros.t
12555 action postproc
12557 src_dir doc/specs/Xserver
12558 dst_dir doc/old/specs/Xserver
12560 action Xprt.book
12561 action Xprt.mif
12562 action XprtIX.doc
12563 action XprtTOC.doc
12564 action Xprt_cov.mif
12565 action analysis.tex
12566 action appgroup.ms
12567 action ddx.tbl.ms
12568 action fontlib.ms
12569 action secint.tex
12571 src_dir doc/specs/Xt
12572 dst_dir doc/old/specs/Xt
12574 action CH01
12575 action CH02
12576 action CH03
12577 action CH04
12578 action CH05
12579 action CH06
12580 action CH07
12581 action CH08
12582 action CH09
12583 action CH10
12584 action CH11
12585 action CH12
12586 action CH13
12587 action Xtk.intr.front
12588 action appA
12589 action appB
12590 action appC
12591 action appD
12592 action appE
12593 action appF
12594 action intr.idxmac.t
12595 action postproc
12596 action strings.mit
12598 src_dir doc/specs/xterm
12599 dst_dir doc/old/specs/xterm
12601 action ctlseqs.ms
12603 src_dir doc/specs/xtrans
12604 dst_dir doc/old/specs/xtrans
12606 action Xtrans.mm
12608 src_dir doc/specs/Xv
12609 dst_dir doc/old/specs/Xv
12611 action xv-protocol-v2.txt
12613 src_dir doc/specs/XvMC
12614 dst_dir doc/old/specs/XvMC
12616 action XvMC_API.txt
12618 src_dir doc/util
12619 dst_dir doc/old/util
12621 action block.awk
12622 action fixindex.awk
12623 action indexmacros.t
12624 action macros.t
12626 src_dir
12627 dst_dir doc/old
12628 action registry
12631 symlink_doc() {
12632 symlink_doc_old
12633 # symlink_doc_man
12634 # ...
12638 #########
12640 # The util module
12642 #########
12644 symlink_util_xmkmf() {
12645 src_dir config/util
12646 dst_dir util/xmkmf
12648 action xmkmf.cpp
12649 action xmkmf.man
12652 symlink_util_cf() {
12653 src_dir config/cf
12654 dst_dir util/cf
12656 action Amoeba.cf
12657 action apollo.cf
12658 action bsd.cf
12659 action bsdi.cf
12660 action bsdiLib.rules
12661 action bsdiLib.tmpl
12662 action bsdLib.rules
12663 action bsdLib.tmpl
12664 action cde.rules
12665 action cde.tmpl
12666 action convex.cf
12667 action cray.cf
12668 action cross.def
12669 action cross.rules
12670 action cygwin.cf
12671 action cygwin.rules
12672 action cygwin.tmpl
12673 action darwin.cf
12674 action darwinLib.rules
12675 action darwinLib.tmpl
12676 action DGUX.cf
12677 action dmx.cf
12678 action DragonFly.cf
12679 action FreeBSD.cf
12680 action fujitsu.cf
12681 action generic.cf
12682 action gnu.cf
12683 action gnuLib.rules
12684 action gnuLib.tmpl
12685 action hp.cf
12686 action hpLib.rules
12687 action hpLib.tmpl
12688 action ibm.cf
12689 action ibmLib.rules
12690 action ibmLib.tmpl
12691 action Imake.cf
12692 action Imake.rules
12693 action Imake.tmpl
12694 action isc.cf
12695 action Library.tmpl
12696 action linux.cf
12697 action lnxdoc.rules
12698 action lnxdoc.tmpl
12699 action lnxLib.rules
12700 action lnxLib.tmpl
12701 action luna.cf
12702 action lynx.cf
12703 action mach.cf
12704 action macII.cf
12705 action mingw.cf
12706 action mingw.rules
12707 action mingw.tmpl
12708 action minix.cf
12709 action Mips.cf
12710 action Motif.rules
12711 action Motif.tmpl
12712 action moto.cf
12713 action ncr.cf
12714 action nec.cf
12715 action necLib.rules
12716 action necLib.tmpl
12717 action NetBSD.cf
12718 action noop.rules
12719 action nto.cf
12720 action nto.rules
12721 action Oki.cf
12722 action oldlib.rules
12723 action OpenBSD.cf
12724 action OpenBSDLib.rules
12725 action OpenBSDLib.tmpl
12726 action os2.cf
12727 action os2def.db
12728 action os2Lib.rules
12729 action os2Lib.tmpl
12730 action os2.rules
12731 action osf1.cf
12732 action osfLib.rules
12733 action osfLib.tmpl
12734 action pegasus.cf
12735 action QNX4.cf
12736 action QNX4.rules
12737 action README
12738 action sco5.cf
12739 action sco.cf
12740 action scoLib.rules
12741 action sequent.cf
12742 action sequentLib.rules
12743 action ServerLib.tmpl
12744 action Server.tmpl
12745 action sgi.cf
12746 action sgiLib.rules
12747 action sgiLib.tmpl
12748 action site.def
12749 action site.sample
12750 action sony.cf
12751 action sun.cf
12752 action sunLib.rules
12753 action sunLib.tmpl
12754 action sv3Lib.rules
12755 action sv3Lib.tmpl
12756 action sv4Lib.rules
12757 action sv4Lib.tmpl
12758 action svr3.cf
12759 action svr4.cf
12760 action Threads.tmpl
12761 action ultrix.cf
12762 action usl.cf
12763 action Win32.cf
12764 action Win32.rules
12765 action WinLib.tmpl
12766 action X11.rules
12767 action X11.tmpl
12768 action x386.cf
12769 action xf86.rules
12770 action xf86site.def
12771 action xf86.tmpl
12772 action xfree86.cf
12773 action xorg.cf
12774 action xorgsite.def
12775 action xorg.tmpl
12776 action xorgversion.def
12777 action xprint_host.def
12780 symlink_util_imake() {
12781 src_dir config/imake
12782 dst_dir util/imake
12784 action imake.c
12785 action imake.man
12786 action imakemdep.h
12788 src_dir config/util
12789 action makeg.man
12790 action makeg.sh makeg
12793 symlink_util_makedepend() {
12794 src_dir config/makedepend
12795 dst_dir util/makedepend
12797 action cppsetup.c
12798 action def.h
12799 action ifparser.c
12800 action ifparser.h
12801 action include.c
12802 action main.c
12803 action mkdepend.man makedepend.man
12804 action parse.c
12805 action pr.c
12807 src_dir config/imake
12808 dst_dir util/makedepend
12810 action imakemdep.h
12813 symlink_util() {
12814 symlink_util_cf
12815 symlink_util_imake
12816 symlink_util_makedepend
12817 symlink_util_xmkmf
12818 # ...
12821 symlink_data_cursors_handhelds() {
12822 src_dir programs/xcursorgen/handhelds
12823 dst_dir data/cursors/handhelds
12825 action X_cursor.cfg
12826 action based_arrow_down.cfg
12827 action based_arrow_up.cfg
12828 action bottom_left_corner.cfg
12829 action bottom_right_corner.cfg
12830 action bottom_side.cfg
12831 action bottom_tee.cfg
12832 action center_ptr.cfg
12833 action circle.cfg
12834 action cross.cfg
12835 action dot.cfg
12836 action dotbox.cfg
12837 action double_arrow.cfg
12838 action draped_box.cfg
12839 action fleur.cfg
12840 action gumby.cfg
12841 action hand2.cfg
12842 action left_ptr.cfg
12843 action left_ptr_watch.cfg
12844 action left_side.cfg
12845 action left_tee.cfg
12846 action ll_angle.cfg
12847 action pencil.cfg
12848 action right_ptr.cfg
12849 action right_side.cfg
12850 action right_tee.cfg
12851 action sb_h_double_arrow.cfg
12852 action sb_right_arrow.cfg
12853 action sb_up_arrow.cfg
12854 action sb_v_double_arrow.cfg
12855 action shuttle.cfg
12856 action top_left_corner.cfg
12857 action top_right_corner.cfg
12858 action top_side.cfg
12859 action top_tee.cfg
12860 action watch.cfg
12861 action xterm.cfg
12864 symlink_data_cursors_redglass() {
12865 src_dir programs/xcursorgen/redglass
12866 dst_dir data/cursors/redglass
12868 action X_cursor-16.png
12869 action X_cursor-24.png
12870 action X_cursor-32.png
12871 action X_cursor-48.png
12872 action X_cursor-64.png
12873 action based_arrow_down-16.png
12874 action based_arrow_down-24.png
12875 action based_arrow_down-32.png
12876 action based_arrow_down-48.png
12877 action based_arrow_down-64.png
12878 action based_arrow_up-16.png
12879 action based_arrow_up-24.png
12880 action based_arrow_up-32.png
12881 action based_arrow_up-48.png
12882 action based_arrow_up-64.png
12883 action bottom_left_corner-16.png
12884 action bottom_left_corner-24.png
12885 action bottom_left_corner-32.png
12886 action bottom_left_corner-48.png
12887 action bottom_left_corner-64.png
12888 action bottom_right_corner-16.png
12889 action bottom_right_corner-24.png
12890 action bottom_right_corner-32.png
12891 action bottom_right_corner-48.png
12892 action bottom_right_corner-64.png
12893 action bottom_side-16.png
12894 action bottom_side-24.png
12895 action bottom_side-32.png
12896 action bottom_side-48.png
12897 action bottom_side-64.png
12898 action bottom_tee-16.png
12899 action bottom_tee-24.png
12900 action bottom_tee-32.png
12901 action bottom_tee-48.png
12902 action bottom_tee-64.png
12903 action center_ptr-16.png
12904 action center_ptr-24.png
12905 action center_ptr-32.png
12906 action center_ptr-48.png
12907 action center_ptr-64.png
12908 action circle-16.png
12909 action circle-24.png
12910 action circle-32.png
12911 action circle-48.png
12912 action circle-64.png
12913 action cross-16.png
12914 action cross-24.png
12915 action cross-32.png
12916 action cross-48.png
12917 action cross-64.png
12918 action dot-16.png
12919 action dot-24.png
12920 action dot-32.png
12921 action dot-48.png
12922 action dot-64.png
12923 action dotbox-16.png
12924 action dotbox-24.png
12925 action dotbox-32.png
12926 action dotbox-48.png
12927 action dotbox-64.png
12928 action double_arrow-16.png
12929 action double_arrow-24.png
12930 action double_arrow-32.png
12931 action double_arrow-48.png
12932 action double_arrow-64.png
12933 action draped_box-16.png
12934 action draped_box-24.png
12935 action draped_box-32.png
12936 action draped_box-48.png
12937 action draped_box-64.png
12938 action fleur-16.png
12939 action fleur-24.png
12940 action fleur-32.png
12941 action fleur-48.png
12942 action fleur-64.png
12943 action gumby-128.png
12944 action gumby-16.png
12945 action gumby-24.png
12946 action gumby-32.png
12947 action gumby-48.png
12948 action gumby-64.png
12949 action hand2-16.png
12950 action hand2-24.png
12951 action hand2-32.png
12952 action hand2-48.png
12953 action hand2-64.png
12954 action hourglass-135-16.png
12955 action hourglass-135-24.png
12956 action hourglass-135-32.png
12957 action hourglass-135-48.png
12958 action hourglass-135-64.png
12959 action hourglass-25-16.png
12960 action hourglass-25-24.png
12961 action hourglass-25-32.png
12962 action hourglass-25-48.png
12963 action hourglass-25-64.png
12964 action hourglass-45-16.png
12965 action hourglass-45-24.png
12966 action hourglass-45-32.png
12967 action hourglass-45-48.png
12968 action hourglass-45-64.png
12969 action hourglass-50-16.png
12970 action hourglass-50-24.png
12971 action hourglass-50-32.png
12972 action hourglass-50-48.png
12973 action hourglass-50-64.png
12974 action hourglass-75-16.png
12975 action hourglass-75-24.png
12976 action hourglass-75-32.png
12977 action hourglass-75-48.png
12978 action hourglass-75-64.png
12979 action hourglass-90-16.png
12980 action hourglass-90-24.png
12981 action hourglass-90-32.png
12982 action hourglass-90-48.png
12983 action hourglass-90-64.png
12984 action hourglass-empty-16.png
12985 action hourglass-empty-24.png
12986 action hourglass-empty-32.png
12987 action hourglass-empty-48.png
12988 action hourglass-empty-64.png
12989 action hourglass-full-16.png
12990 action hourglass-full-24.png
12991 action hourglass-full-32.png
12992 action hourglass-full-48.png
12993 action hourglass-full-64.png
12994 action left_ptr-16.png
12995 action left_ptr-24.png
12996 action left_ptr-32.png
12997 action left_ptr-48.png
12998 action left_ptr-64.png
12999 action left_ptr_watch-16.png
13000 action left_ptr_watch-24.png
13001 action left_ptr_watch-32.png
13002 action left_ptr_watch-48.png
13003 action left_ptr_watch-64.png
13004 action left_side-16.png
13005 action left_side-24.png
13006 action left_side-32.png
13007 action left_side-48.png
13008 action left_side-64.png
13009 action left_tee-16.png
13010 action left_tee-24.png
13011 action left_tee-32.png
13012 action left_tee-48.png
13013 action left_tee-64.png
13014 action ll_angle-16.png
13015 action ll_angle-24.png
13016 action ll_angle-32.png
13017 action ll_angle-48.png
13018 action ll_angle-64.png
13019 action pencil-16.png
13020 action pencil-24.png
13021 action pencil-32.png
13022 action pencil-48.png
13023 action pencil-64.png
13024 action right_ptr-16.png
13025 action right_ptr-24.png
13026 action right_ptr-32.png
13027 action right_ptr-48.png
13028 action right_ptr-64.png
13029 action right_side-16.png
13030 action right_side-24.png
13031 action right_side-32.png
13032 action right_side-48.png
13033 action right_side-64.png
13034 action right_tee-16.png
13035 action right_tee-24.png
13036 action right_tee-32.png
13037 action right_tee-48.png
13038 action right_tee-64.png
13039 action sb_h_double_arrow-16.png
13040 action sb_h_double_arrow-24.png
13041 action sb_h_double_arrow-32.png
13042 action sb_h_double_arrow-48.png
13043 action sb_h_double_arrow-64.png
13044 action sb_right_arrow-16.png
13045 action sb_right_arrow-24.png
13046 action sb_right_arrow-32.png
13047 action sb_right_arrow-48.png
13048 action sb_right_arrow-64.png
13049 action sb_up_arrow-16.png
13050 action sb_up_arrow-24.png
13051 action sb_up_arrow-32.png
13052 action sb_up_arrow-48.png
13053 action sb_up_arrow-64.png
13054 action sb_v_double_arrow-16.png
13055 action sb_v_double_arrow-24.png
13056 action sb_v_double_arrow-32.png
13057 action sb_v_double_arrow-48.png
13058 action sb_v_double_arrow-64.png
13059 action shuttle-16.png
13060 action shuttle-24.png
13061 action shuttle-32.png
13062 action shuttle-48.png
13063 action shuttle-64.png
13064 action top_left_corner-16.png
13065 action top_left_corner-24.png
13066 action top_left_corner-32.png
13067 action top_left_corner-48.png
13068 action top_left_corner-64.png
13069 action top_right_corner-16.png
13070 action top_right_corner-24.png
13071 action top_right_corner-32.png
13072 action top_right_corner-48.png
13073 action top_right_corner-64.png
13074 action top_side-16.png
13075 action top_side-24.png
13076 action top_side-32.png
13077 action top_side-48.png
13078 action top_side-64.png
13079 action top_tee-16.png
13080 action top_tee-24.png
13081 action top_tee-32.png
13082 action top_tee-48.png
13083 action top_tee-64.png
13084 action watch-16.png
13085 action watch-24.png
13086 action watch-32.png
13087 action watch-48.png
13088 action watch-64.png
13089 action xterm-16.png
13090 action xterm-24.png
13091 action xterm-32.png
13092 action xterm-48.png
13093 action xterm-64.png
13095 action X_cursor.cfg
13096 action based_arrow_down.cfg
13097 action based_arrow_up.cfg
13098 action bottom_left_corner.cfg
13099 action bottom_right_corner.cfg
13100 action bottom_side.cfg
13101 action bottom_tee.cfg
13102 action center_ptr.cfg
13103 action circle.cfg
13104 action cross.cfg
13105 action dot.cfg
13106 action dotbox.cfg
13107 action double_arrow.cfg
13108 action draped_box.cfg
13109 action fleur.cfg
13110 action gumby.cfg
13111 action hand2.cfg
13112 action left_ptr.cfg
13113 action left_ptr_watch.cfg
13114 action left_side.cfg
13115 action left_tee.cfg
13116 action ll_angle.cfg
13117 action pencil.cfg
13118 action right_ptr.cfg
13119 action right_side.cfg
13120 action right_tee.cfg
13121 action sb_h_double_arrow.cfg
13122 action sb_right_arrow.cfg
13123 action sb_up_arrow.cfg
13124 action sb_v_double_arrow.cfg
13125 action shuttle.cfg
13126 action top_left_corner.cfg
13127 action top_right_corner.cfg
13128 action top_side.cfg
13129 action top_tee.cfg
13130 action watch.cfg
13131 action xterm.cfg
13133 action based_arrow_down.xcf
13134 action based_arrow_up.xcf
13135 action basic_arrow.xcf
13136 action bottom_left_corner.xcf
13137 action bottom_right_corner.xcf
13138 action bottom_side.xcf
13139 action bottom_tee.xcf
13140 action center_ptr.xcf
13141 action circle.xcf
13142 action cross.xcf
13143 action dotbox.xcf
13144 action dot.xcf
13145 action double_arrow.xcf
13146 action draped_box.xcf
13147 action fleur.xcf
13148 action gumby.xcf
13149 action hand2.xcf
13150 action hourglass-135.xcf
13151 action hourglass-25.xcf
13152 action hourglass-45.xcf
13153 action hourglass-50.xcf
13154 action hourglass-75.xcf
13155 action hourglass-90.xcf
13156 action hourglass-empty.xcf
13157 action hourglass-full.xcf
13158 action hourglass-plain.xcf
13159 action left_ptr_watch.xcf
13160 action left_ptr.xcf
13161 action left_side.xcf
13162 action left_tee.xcf
13163 action ll_angle.xcf
13164 action pencil.xcf
13165 action right_ptr.xcf
13166 action right_side.xcf
13167 action right_tee.xcf
13168 action sb_h_double_arrow.xcf
13169 action sb_right_arrow.xcf
13170 action sb_up_arrow.xcf
13171 action sb_v_double_arrow.xcf
13172 action shuttle.xcf
13173 action top_left_corner.xcf
13174 action top_right_corner.xcf
13175 action top_side.xcf
13176 action top_tee.xcf
13177 action watch.xcf
13178 action X_cursor.xcf
13179 action xterm.xcf
13181 action gumby.svg
13184 symlink_data_cursors_whiteglass() {
13185 src_dir programs/xcursorgen/whiteglass
13186 dst_dir data/cursors/whiteglass
13188 action X_cursor-16.png
13189 action X_cursor-24.png
13190 action X_cursor-32.png
13191 action X_cursor-48.png
13192 action X_cursor-64.png
13193 action base_arrow_down-16.png
13194 action base_arrow_down-24.png
13195 action base_arrow_down-32.png
13196 action base_arrow_down-48.png
13197 action base_arrow_down-64.png
13198 action base_arrow_up-16.png
13199 action base_arrow_up-24.png
13200 action base_arrow_up-32.png
13201 action base_arrow_up-48.png
13202 action base_arrow_up-64.png
13203 action basic_arrow-16.png
13204 action basic_arrow-24.png
13205 action basic_arrow-32.png
13206 action basic_arrow-48.png
13207 action basic_arrow-64.png
13208 action boat-16.png
13209 action boat-24.png
13210 action boat-32.png
13211 action boat-48.png
13212 action boat-64.png
13213 action bottom_left_corner-16.png
13214 action bottom_left_corner-24.png
13215 action bottom_left_corner-32.png
13216 action bottom_left_corner-48.png
13217 action bottom_left_corner-64.png
13218 action bottom_right_corner-16.png
13219 action bottom_right_corner-24.png
13220 action bottom_right_corner-32.png
13221 action bottom_right_corner-48.png
13222 action bottom_right_corner-64.png
13223 action bottom_side-16.png
13224 action bottom_side-24.png
13225 action bottom_side-32.png
13226 action bottom_side-48.png
13227 action bottom_side-64.png
13228 action bottom_tee-16.png
13229 action bottom_tee-24.png
13230 action bottom_tee-32.png
13231 action bottom_tee-48.png
13232 action bottom_tee-64.png
13233 action center_ptr-16.png
13234 action center_ptr-24.png
13235 action center_ptr-32.png
13236 action center_ptr-48.png
13237 action center_ptr-64.png
13238 action circle-16.png
13239 action circle-24.png
13240 action circle-32.png
13241 action circle-48.png
13242 action circle-64.png
13243 action cross-16.png
13244 action cross-24.png
13245 action cross-32.png
13246 action cross-48.png
13247 action cross-64.png
13248 action dot-16.png
13249 action dot-24.png
13250 action dot-32.png
13251 action dot-48.png
13252 action dot-64.png
13253 action dot_box_mask-16.png
13254 action dot_box_mask-24.png
13255 action dot_box_mask-32.png
13256 action dot_box_mask-48.png
13257 action dot_box_mask-64.png
13258 action double_arrow-16.png
13259 action double_arrow-24.png
13260 action double_arrow-32.png
13261 action double_arrow-48.png
13262 action double_arrow-64.png
13263 action draped_box-16.png
13264 action draped_box-24.png
13265 action draped_box-32.png
13266 action draped_box-48.png
13267 action draped_box-64.png
13268 action exchange-16.png
13269 action exchange-24.png
13270 action exchange-32.png
13271 action exchange-48.png
13272 action exchange-64.png
13273 action fleur-16.png
13274 action fleur-24.png
13275 action fleur-32.png
13276 action fleur-48.png
13277 action fleur-64.png
13278 action gumby-128.png
13279 action gumby-16.png
13280 action gumby-24.png
13281 action gumby-32.png
13282 action gumby-48.png
13283 action gumby-64.png
13284 action hand1-16.png
13285 action hand1-24.png
13286 action hand1-32.png
13287 action hand1-48.png
13288 action hand1-64.png
13289 action hand2-16.png
13290 action hand2-24.png
13291 action hand2-32.png
13292 action hand2-48.png
13293 action hand2-64.png
13294 action left_ptr-16.png
13295 action left_ptr-24.png
13296 action left_ptr-32.png
13297 action left_ptr-48.png
13298 action left_ptr-64.png
13299 action left_ptr_watch-16.png
13300 action left_ptr_watch-24.png
13301 action left_ptr_watch-32.png
13302 action left_ptr_watch-48.png
13303 action left_ptr_watch-64.png
13304 action left_side-16.png
13305 action left_side-24.png
13306 action left_side-32.png
13307 action left_side-48.png
13308 action left_side-64.png
13309 action left_tee-16.png
13310 action left_tee-24.png
13311 action left_tee-32.png
13312 action left_tee-48.png
13313 action left_tee-64.png
13314 action ll_angle-16.png
13315 action ll_angle-24.png
13316 action ll_angle-32.png
13317 action ll_angle-48.png
13318 action ll_angle-64.png
13319 action lr_angle-16.png
13320 action lr_angle-24.png
13321 action lr_angle-32.png
13322 action lr_angle-48.png
13323 action lr_angle-64.png
13324 action pencil-16.png
13325 action pencil-24.png
13326 action pencil-32.png
13327 action pencil-48.png
13328 action pencil-64.png
13329 action pirate-16.png
13330 action pirate-24.png
13331 action pirate-32.png
13332 action pirate-48.png
13333 action pirate-64.png
13334 action question_arrow-16.png
13335 action question_arrow-24.png
13336 action question_arrow-32.png
13337 action question_arrow-48.png
13338 action question_arrow-64.png
13339 action right_ptr-16.png
13340 action right_ptr-24.png
13341 action right_ptr-32.png
13342 action right_ptr-48.png
13343 action right_ptr-64.png
13344 action right_side-16.png
13345 action right_side-24.png
13346 action right_side-32.png
13347 action right_side-48.png
13348 action right_side-64.png
13349 action right_tee-16.png
13350 action right_tee-24.png
13351 action right_tee-32.png
13352 action right_tee-48.png
13353 action right_tee-64.png
13354 action sailboat-16.png
13355 action sailboat-24.png
13356 action sailboat-32.png
13357 action sailboat-48.png
13358 action sailboat-64.png
13359 action sb_down_arrow-16.png
13360 action sb_down_arrow-24.png
13361 action sb_down_arrow-32.png
13362 action sb_down_arrow-48.png
13363 action sb_down_arrow-64.png
13364 action sb_h_double_arrow-16.png
13365 action sb_h_double_arrow-24.png
13366 action sb_h_double_arrow-32.png
13367 action sb_h_double_arrow-48.png
13368 action sb_h_double_arrow-64.png
13369 action sb_left_arrow-16.png
13370 action sb_left_arrow-24.png
13371 action sb_left_arrow-32.png
13372 action sb_left_arrow-48.png
13373 action sb_left_arrow-64.png
13374 action sb_right_arrow-16.png
13375 action sb_right_arrow-24.png
13376 action sb_right_arrow-32.png
13377 action sb_right_arrow-48.png
13378 action sb_right_arrow-64.png
13379 action sb_up_arrow-16.png
13380 action sb_up_arrow-24.png
13381 action sb_up_arrow-32.png
13382 action sb_up_arrow-48.png
13383 action sb_up_arrow-64.png
13384 action sb_v_double_arrow-16.png
13385 action sb_v_double_arrow-24.png
13386 action sb_v_double_arrow-32.png
13387 action sb_v_double_arrow-48.png
13388 action sb_v_double_arrow-64.png
13389 action shuttle-16.png
13390 action shuttle-24.png
13391 action shuttle-32.png
13392 action shuttle-48.png
13393 action shuttle-64.png
13394 action sizing-16.png
13395 action sizing-24.png
13396 action sizing-32.png
13397 action sizing-48.png
13398 action sizing-64.png
13399 action target-16.png
13400 action target-24.png
13401 action target-32.png
13402 action target-48.png
13403 action target-64.png
13404 action top_left_corner-16.png
13405 action top_left_corner-24.png
13406 action top_left_corner-32.png
13407 action top_left_corner-48.png
13408 action top_left_corner-64.png
13409 action top_right_corner-16.png
13410 action top_right_corner-24.png
13411 action top_right_corner-32.png
13412 action top_right_corner-48.png
13413 action top_right_corner-64.png
13414 action top_side-16.png
13415 action top_side-24.png
13416 action top_side-32.png
13417 action top_side-48.png
13418 action top_side-64.png
13419 action top_tee-16.png
13420 action top_tee-24.png
13421 action top_tee-32.png
13422 action top_tee-48.png
13423 action top_tee-64.png
13424 action trek-16.png
13425 action trek-24.png
13426 action trek-32.png
13427 action trek-48.png
13428 action trek-64.png
13429 action ul_angle-16.png
13430 action ul_angle-24.png
13431 action ul_angle-32.png
13432 action ul_angle-48.png
13433 action ul_angle-64.png
13434 action ur_angle-16.png
13435 action ur_angle-24.png
13436 action ur_angle-32.png
13437 action ur_angle-48.png
13438 action ur_angle-64.png
13439 action watch-16.png
13440 action watch-24.png
13441 action watch-32.png
13442 action watch-48.png
13443 action watch-64.png
13444 action xterm-16.png
13445 action xterm-24.png
13446 action xterm-32.png
13447 action xterm-48.png
13448 action xterm-64.png
13450 action X_cursor.cfg
13451 action base_arrow_down.cfg
13452 action base_arrow_up.cfg
13453 action basic_arrow.cfg
13454 action boat.cfg
13455 action bottom_left_corner.cfg
13456 action bottom_right_corner.cfg
13457 action bottom_side.cfg
13458 action bottom_tee.cfg
13459 action center_ptr.cfg
13460 action circle.cfg
13461 action cross.cfg
13462 action dot.cfg
13463 action dot_box_mask.cfg
13464 action double_arrow.cfg
13465 action draped_box.cfg
13466 action exchange.cfg
13467 action fleur.cfg
13468 action gumby.cfg
13469 action hand1.cfg
13470 action hand2.cfg
13471 action left_ptr.cfg
13472 action left_ptr_watch.cfg
13473 action left_side.cfg
13474 action left_tee.cfg
13475 action ll_angle.cfg
13476 action lr_angle.cfg
13477 action pencil.cfg
13478 action pirate.cfg
13479 action question_arrow.cfg
13480 action right_ptr.cfg
13481 action right_side.cfg
13482 action right_tee.cfg
13483 action sailboat.cfg
13484 action sb_down_arrow.cfg
13485 action sb_h_double_arrow.cfg
13486 action sb_left_arrow.cfg
13487 action sb_right_arrow.cfg
13488 action sb_up_arrow.cfg
13489 action sb_v_double_arrow.cfg
13490 action shuttle.cfg
13491 action sizing.cfg
13492 action target.cfg
13493 action top_left_corner.cfg
13494 action top_right_corner.cfg
13495 action top_side.cfg
13496 action top_tee.cfg
13497 action trek.cfg
13498 action ul_angle.cfg
13499 action ur_angle.cfg
13500 action watch.cfg
13501 action xterm.cfg
13503 action base_arrow_down.xcf
13504 action base_arrow_up.xcf
13505 action basic_arrow.xcf
13506 action boat.xcf
13507 action bottom_left_corner.xcf
13508 action bottom_right_corner.xcf
13509 action bottom_side.xcf
13510 action bottom_tee.xcf
13511 action center_ptr.xcf
13512 action circle.xcf
13513 action cross.xcf
13514 action dot_box_mask.xcf
13515 action dot.xcf
13516 action double_arrow.xcf
13517 action draped_box.xcf
13518 action exchange.xcf
13519 action fleur.xcf
13520 action gumby.xcf
13521 action hand1.xcf
13522 action hand2.xcf
13523 action left_ptr_watch.xcf
13524 action left_ptr.xcf
13525 action left_side.xcf
13526 action left_tee.xcf
13527 action ll_angle.xcf
13528 action lr_angle.xcf
13529 action pencil.xcf
13530 action pirate.xcf
13531 action question_arrow.xcf
13532 action right_ptr.xcf
13533 action right_side.xcf
13534 action right_tee.xcf
13535 action sailboat.xcf
13536 action sb_down_arrow.xcf
13537 action sb_h_double_arrow.xcf
13538 action sb_left_arrow.xcf
13539 action sb_right_arrow.xcf
13540 action sb_up_arrow.xcf
13541 action sb_v_double_arrow.xcf
13542 action shuttle.xcf
13543 action sizing.xcf
13544 action target.xcf
13545 action top_left_corner.xcf
13546 action top_right_corner.xcf
13547 action top_side.xcf
13548 action top_tee.xcf
13549 action trek.xcf
13550 action ul_angle.xcf
13551 action ur_angle.xcf
13552 action watch.xcf
13553 action X_cursor.xcf
13554 action xterm.xcf
13557 symlink_data_cursors() {
13558 symlink_data_cursors_handhelds
13559 symlink_data_cursors_redglass
13560 symlink_data_cursors_whiteglass
13563 symlink_data_bitmaps() {
13564 src_dir include/bitmaps
13565 dst_dir data/bitmaps
13567 action 1x1
13568 action 2x2
13569 action black
13570 action boxes
13571 action calculator
13572 action cntr_ptr
13573 action cntr_ptrmsk
13574 action cross_weave
13575 action dimple1
13576 action dimple3
13577 action dot
13578 action dropbar7
13579 action dropbar8
13580 action escherknot
13581 action flagdown
13582 action flagup
13583 action flipped_gray
13584 action gray
13585 action gray1
13586 action gray3
13587 action grid16
13588 action grid2
13589 action grid4
13590 action grid8
13591 action hlines2
13592 action hlines3
13593 action icon
13594 action keyboard16
13595 action left_ptr
13596 action left_ptrmsk
13597 action letters
13598 action light_gray
13599 action mailempty
13600 action mailemptymsk
13601 action mailfull
13602 action mailfullmsk
13603 action mensetmanus
13604 action menu10
13605 action menu12
13606 action menu16
13607 action menu6
13608 action menu8
13609 action noletters
13610 action opendot
13611 action opendotMask
13612 action plaid
13613 action right_ptr
13614 action right_ptrmsk
13615 action root_weave
13616 action scales
13617 action sipb
13618 action star
13619 action starMask
13620 action stipple
13621 action target
13622 action terminal
13623 action tie_fighter
13624 action vlines2
13625 action vlines3
13626 action weird_size
13627 action wide_weave
13628 action wingdogs
13629 action woman
13630 action xfd_icon
13631 action xlogo11
13632 action xlogo16
13633 action xlogo32
13634 action xlogo64
13635 action xsnow
13638 symlink_data_xkbdata() {
13639 src_dir programs/xkbcomp/torture
13640 dst_dir data/xkbdata/torture
13642 action indicator
13643 action indicator1
13644 action indicator2
13645 action indicator3
13646 action mod_compat
13647 action mod_compat1
13648 action mod_compat2
13649 action mod_compat3
13650 action mod_compat4
13651 action sym_interp
13652 action sym_interp1
13653 action sym_interp2
13654 action sym_interp3
13655 action sym_interp4
13656 action types
13658 src_dir programs/xkbcomp/types
13659 dst_dir data/xkbdata/types
13661 action README
13663 action basic
13664 action cancel
13665 action caps
13666 action complete
13667 action default
13668 action extra
13669 action iso9995
13670 action mousekeys
13671 action numpad
13672 action pc
13674 src_dir programs/xkbcomp/keycodes
13675 dst_dir data/xkbdata/keycodes
13677 action aliases
13678 action amiga
13679 action ataritt
13680 action fujitsu
13681 action hp
13682 action ibm
13683 action macintosh
13684 action powerpcps2
13685 action README
13686 action sony
13687 action sun
13688 action xfree86
13689 action xfree98
13691 src_dir programs/xkbcomp/keycodes/digital
13692 dst_dir data/xkbdata/keycodes/digital
13694 action lk
13695 action pc
13697 src_dir programs/xkbcomp/keycodes/sgi
13698 dst_dir data/xkbdata/keycodes/sgi
13700 action indigo
13701 action iris
13702 action indy
13704 src_dir programs/xkbcomp/rules
13705 dst_dir data/xkbdata/rules
13707 action README
13708 action sgi
13709 action sgi.lst
13710 action sun
13711 action sun.lst
13712 action xfree98
13713 action xfree98.lst
13714 action xkb.dtd
13715 action xml2lst.pl
13716 action xorg
13717 action xorg-it.lst
13718 action xorg.lst
13719 action xorg.xml
13721 src_dir programs/xkbcomp/compat
13722 dst_dir data/xkbdata/compat
13724 action accessx
13725 action basic
13726 action complete
13727 action default
13728 action iso9995
13729 action japan
13730 action keypad
13731 action ledcaps
13732 action lednum
13733 action ledscroll
13734 action misc
13735 action mousekeys
13736 action norepeat
13737 action pc
13738 action pc98
13739 action README
13740 action xfree86
13741 action xtest
13743 src_dir programs/xkbcomp/geometry
13744 dst_dir data/xkbdata/geometry
13746 action amiga
13747 action ataritt
13748 action chicony
13749 action dell
13750 action everex
13751 action fujitsu
13752 action hp
13753 action keytronic
13754 action kinesis
13755 action macintosh
13756 action microsoft
13757 action nec
13758 action northgate
13759 action pc
13760 action README
13761 action sony
13762 action sun
13763 action winbook
13765 src_dir programs/xkbcomp/geometry/sgi
13766 dst_dir data/xkbdata/geometry/sgi
13768 action indigo
13769 action indy
13770 action O2
13772 src_dir programs/xkbcomp/geometry/ibm
13773 dst_dir data/xkbdata/geometry/ibm
13775 action thinkpad
13777 src_dir programs/xkbcomp/geometry/digital
13778 dst_dir data/xkbdata/geometry/digital
13780 action lk
13781 action pc
13782 action unix
13784 src_dir programs/xkbcomp/semantics
13785 dst_dir data/xkbdata/semantics
13787 action basic
13788 action complete
13789 action default
13790 action xtest
13792 src_dir programs/xkbcomp/keymap
13793 dst_dir data/xkbdata/keymap
13795 action amiga
13796 action ataritt
13797 action macintosh
13798 action README
13799 action sony
13800 action xfree86
13801 action xfree98
13803 src_dir programs/xkbcomp/keymap/digital
13804 dst_dir data/xkbdata/keymap/digital
13806 action us
13808 src_dir programs/xkbcomp/keymap/sgi
13809 dst_dir data/xkbdata/keymap/sgi
13811 action be
13812 action bg
13813 action ca
13814 action cz
13815 action cz_qwerty
13816 action de
13817 action de_CH
13818 action dk
13819 action dvorak
13820 action en_US
13821 action es
13822 action fi
13823 action fr
13824 action fr_CH
13825 action gb
13826 action hu
13827 action it
13828 action jp
13829 action no
13830 action pl
13831 action pt
13832 action ru
13833 action se
13834 action sk
13835 action sk_qwerty
13836 action th
13837 action us
13839 src_dir programs/xkbcomp/keymap/sun
13840 dst_dir data/xkbdata/keymap/sun
13842 action de
13843 action es
13844 action fi
13845 action fr
13846 action no
13847 action pl
13848 action ru
13849 action se
13850 action uk
13851 action us
13853 src_dir programs/xkbcomp/symbols
13854 dst_dir data/xkbdata/symbols
13856 action al
13857 action altwin
13858 action am
13859 action apple
13860 action ar
13861 action az
13862 action be
13863 action ben
13864 action bg
13865 action br
13866 action bs
13867 action by
13868 action ca
13869 action ca_enhanced
13870 action capslock
13871 action compose
13872 action ctrl
13873 action cz
13874 action cz_qwerty
13875 action czsk
13876 action de
13877 action de_CH
13878 action dev
13879 action dk
13880 action dvorak
13881 action ee
13882 action el
13883 action en_US
13884 action es
13885 action eurosign
13886 action fi
13887 action fo
13888 action fr
13889 action fr_CH
13890 action gb
13891 action ge_la
13892 action ge_ru
13893 action group
13894 action guj
13895 action gur
13896 action hr
13897 action hr_US
13898 action hu
13899 action hu_qwerty
13900 action hu_US
13901 action ie
13902 action il
13903 action il_phonetic
13904 action inet
13905 action ir
13906 action is
13907 action iso9995-3
13908 action it
13909 action iu
13910 action jp
13911 action kan
13912 action keypad
13913 action la
13914 action level3
13915 action lo
13916 action lock
13917 action lt
13918 action lt_a
13919 action lt_p
13920 action lt_std
13921 action lv
13922 action mk
13923 action ml
13924 action mm
13925 action mn
13926 action mt
13927 action mt_us
13928 action nl
13929 action no
13930 action ogham
13931 action ori
13932 action pc104
13933 action pl
13934 action pl2
13935 action pt
13936 action ralt
13937 action README
13938 action ro
13939 action ro2
13940 action ru
13941 action sapmi
13942 action se
13943 action se_FI
13944 action se_NO
13945 action se_SE
13946 action si
13947 action sk
13948 action sk_qwerty
13949 action sr
13950 action srvr_ctrl
13951 action syr
13952 action syr_phonetic
13953 action tel
13954 action th
13955 action th_pat
13956 action th_tis
13957 action tj
13958 action tml
13959 action tr
13960 action tr_f
13961 action ua
13962 action us
13963 action us_group2
13964 action us_group3
13965 action us_intl
13966 action uz
13967 action vn
13968 action yu
13970 src_dir programs/xkbcomp/symbols/sun
13971 dst_dir data/xkbdata/symbols/sun
13973 action se
13974 action us
13975 action usb
13977 src_dir programs/xkbcomp/symbols/hp
13978 dst_dir data/xkbdata/symbols/hp
13980 action us
13982 src_dir programs/xkbcomp/symbols/macintosh
13983 dst_dir data/xkbdata/symbols/macintosh
13985 action de
13986 action de_CH
13987 action dk
13988 action es
13989 action fi
13990 action fr
13991 action fr_CH
13992 action gb
13993 action it
13994 action nl
13995 action no
13996 action pt
13997 action se
13998 action us
14000 src_dir programs/xkbcomp/symbols/pc
14001 dst_dir data/xkbdata/symbols/pc
14003 action al
14004 action am
14005 action ara
14006 action az
14007 action ba
14008 action bd
14009 action be
14010 action bg
14011 action br
14012 action bt
14013 action by
14014 action ca
14015 action ch
14016 action cz
14017 action de
14018 action dk
14019 action ee
14020 action es
14021 action fi
14022 action fo
14023 action fr
14024 action gb
14025 action ge
14026 action gr
14027 action hr
14028 action hu
14029 action ie
14030 action il
14031 action in
14032 action ir
14033 action is
14034 action it
14035 action jp
14036 action kg
14037 action la
14038 action latam
14039 action latin
14040 action lk
14041 action lt
14042 action lv
14043 action mao
14044 action mkd
14045 action mm
14046 action mn
14047 action mt
14048 action nl
14049 action no
14050 action pc
14051 action pk
14052 action pl
14053 action pt
14054 action ro
14055 action ru
14056 action se
14057 action si
14058 action sk
14059 action srp
14060 action sy
14061 action th
14062 action tj
14063 action tr
14064 action ua
14065 action us
14066 action uz
14067 action vn
14069 src_dir programs/xkbcomp/symbols/sgi
14070 dst_dir data/xkbdata/symbols/sgi
14072 action jp
14074 src_dir programs/xkbcomp/symbols/xfree68
14075 dst_dir data/xkbdata/symbols/xfree68
14077 action amiga
14078 action ataritt
14080 src_dir programs/xkbcomp/symbols/fujitsu
14081 dst_dir data/xkbdata/symbols/fujitsu
14083 action jp
14084 action us
14086 src_dir programs/xkbcomp/symbols/digital
14087 dst_dir data/xkbdata/symbols/digital
14089 action lk
14090 action pc
14091 action us
14092 action vt
14094 src_dir programs/xkbcomp/symbols/sony
14095 dst_dir data/xkbdata/symbols/sony
14097 action us
14099 src_dir programs/xkbcomp/symbols/nec
14100 dst_dir data/xkbdata/symbols/nec
14102 action jp
14105 symlink_data() {
14106 symlink_data_cursors
14107 symlink_data_bitmaps
14108 symlink_data_xkbdata
14112 ########
14114 # List of files that are deliberately not symlinked into
14115 # the modular tree
14117 #########
14119 # exclude $1 and everything in it
14120 exclude_directory()
14122 for dir in `find $SRC_DIR/$1 -type d` ; do
14123 dir=`echo $dir | sed s,$SRC_DIR,, | sed s,^/,,`
14124 src_dir $dir
14126 # Some versions of find do not support -maxdepth
14127 # for file in `find $SRC_DIR/$dir -maxdepth 1 -type f `; do
14128 # action `basename $file`
14129 # done
14130 for file in $SRC_DIR/$dir/*; do
14131 if [ -f $file ]; then
14132 action `basename $file`
14134 done
14135 done
14138 exclude_glob()
14140 for file in `find $SRC_DIR -name "$1"` ; do
14141 src_dir `dirname $file | sed s,$SRC_DIR,, | sed s,^/,,`
14142 action `basename $file`
14143 done
14146 exclude_xft_buildsystem()
14148 src_dir lib/Xft
14150 action aclocal.m4
14151 action autogen.sh
14152 action config.guess
14153 action config.h.in
14154 action config.sub
14155 action configure
14156 action configure.ac
14157 action depcomp
14158 action install-sh
14159 action ltmain.sh
14160 action Makefile.am
14161 action Makefile.in
14162 action missing
14163 action mkinstalldirs
14164 action Xft-def.cpp
14166 src_dir lib/Xft/config
14167 action config-subst
14170 exclude_render_buildsystem()
14172 src_dir lib/Xrender
14174 action AUTHORS
14175 action autogen.sh
14176 action ChangeLog
14177 action config.h
14178 action configure.ac
14179 action COPYING
14180 action INSTALL
14181 action NEWS
14182 action README
14183 action Xrender-def.cpp
14184 action xrender.pc.in
14187 exclude_composite_buildsystem()
14189 src_dir lib/Xcomposite
14191 action AUTHORS
14192 action autogen.sh
14193 action ChangeLog
14194 action configure.ac
14195 action COPYING
14196 action .cvsignore
14197 action INSTALL
14198 action Makefile.am
14199 action NEWS
14200 action README
14201 action xcomposite.pc.in
14204 exclude_cursor_buildsystem()
14206 src_dir lib/Xcursor
14208 action AUTHORS
14209 action autogen.sh
14210 action ChangeLog
14211 action config.h
14212 action config-subst
14213 action configure.ac
14214 action COPYING
14215 action INSTALL
14216 action Makefile.am
14217 action NEWS
14218 action README
14219 action xcursor-config.in
14220 action Xcursor-def.cpp
14221 action xcursor.pc.in
14224 exclude_damage_buildsystem()
14226 src_dir lib/Xdamage
14228 action AUTHORS
14229 action autogen.sh
14230 action ChangeLog
14231 action configure.ac
14232 action COPYING
14233 action .cvsignore
14234 action INSTALL
14235 action Makefile.am
14236 action NEWS
14237 action README
14238 action xdamage.pc.in
14241 exclude_fixes_buildsystem()
14243 src_dir lib/Xfixes
14245 action AUTHORS
14246 action autogen.sh
14247 action ChangeLog
14248 action configure.ac
14249 action COPYING
14250 action .cvsignore
14251 action INSTALL
14252 action Makefile.am
14253 action NEWS
14254 action README
14255 action Xfixes-def.cpp
14256 action xfixes.pc.in
14259 exclude_gl_apple()
14261 # These files should be part of Mesa,
14262 # according to Adam
14263 src_dir lib/GL/apple
14265 action appledri.c
14266 action appledri.h
14267 action appledristr.h
14268 action build-dispatch
14269 action dri_dispatch.c
14270 action dri_dispatch.defs
14271 action dri_dispatch.h
14272 action dri_driver.c
14273 action dri_driver.h
14274 action dri_glx.c
14275 action dri_glx.h
14278 symlink_non_linked_files()
14280 # SGI is upstream for these files. Not sure what to about them, but
14281 # one place they absolutely do _not_ belong, is in the X tree.
14282 exclude_directory doc/man/GL
14283 exclude_directory doc/man/GLU
14285 # This stuff is used to build binary distributions of the monolith.
14286 # It would have to be redone to do something similar for the modular.
14287 exclude_directory programs/Xserver/hw/xfree86/etc/bindist
14289 # DPS is not part of the modular tree
14290 exclude_directory lib/dps
14291 exclude_directory programs/dpsexec
14292 exclude_directory programs/dpsinfo
14293 exclude_directory programs/texteroids
14294 exclude_directory include/DPS
14295 exclude_directory config/pswrap
14296 exclude_directory lib/dpstk
14297 exclude_directory lib/psres
14299 # Speedo font support is deprecated in 7.0
14300 exclude_directory lib/font/Speedo
14302 # Exclude unmaintained sun and sunLynx
14303 exclude_directory programs/Xserver/hw/sun
14304 exclude_directory programs/Xserver/hw/sunLynx
14306 # Exclude deprecated wacom(4)
14307 exclude_directory programs/Xserver/hw/xfree86/input/wacom
14309 # Exclude old and known-broken sample(4)
14310 exclude_directory programs/Xserver/hw/xfree86/input/sample
14312 # Exclude xterm
14313 exclude_directory programs/xterm
14315 # Nobody should really care about Xft1 anymore
14316 exclude_directory lib/Xft1
14318 # these are included with Mesa
14319 exclude_directory programs/glxgears
14320 exclude_directory programs/glxinfo
14321 exclude_directory lib/GLw
14322 exclude_directory include/GL
14324 # exclude config/util - I don't think it's relevant for the modular tree
14325 exclude_directory config/util
14327 # These all have their own build systems in the modular tree
14328 exclude_xft_buildsystem
14329 exclude_render_buildsystem
14330 exclude_composite_buildsystem
14331 exclude_cursor_buildsystem
14332 exclude_damage_buildsystem
14333 exclude_fixes_buildsystem
14335 # By definition the monolith is not upstream for this
14336 exclude_directory extras
14338 # Exclude memleak (verified by keithp)
14339 exclude_directory util/memleak
14341 # Use upstream packaging of expat
14342 exclude_directory lib/expat
14344 # Exclude fontconfig
14345 exclude_directory programs/fc-cache
14346 exclude_directory programs/fc-list
14347 exclude_directory lib/fontconfig
14349 # Stuff that may be resurrected if someone complains enough
14350 exclude_directory programs/Xserver/hw/xfree86/etc
14352 # Exclude empty directory that just has README saying kdrive doesn't
14353 # live here any more
14354 exclude_directory programs/Xserver/hw/kdrive
14356 # Empty stubs for projects not yet checked into CVS
14357 exclude_directory programs/Xserver/Xprint/pdf
14358 exclude_directory programs/Xserver/Xprint/svg
14359 exclude_directory programs/Xserver/Xprint/windows
14361 # Exclude monolithic tree SDK
14362 exclude_directory programs/Xserver/hw/xfree86/sdk
14364 # Exclude platforms that are no longer maintained
14365 src_dir programs/Xserver/hw/xfree86/etc
14366 action install.sv3
14367 action mmapSVR3.shar
14368 action svr3_patch
14369 action svr3_rem_pch
14370 action svr4_patch
14371 action svr4_rem_pch
14373 # Upgrades stone age (pre-1994) config files to bronze age (1994)
14374 # config files. Not built in the monolith since XFree86 3.9 series
14375 # in 1998 and XFree86 has even deleted from their monolith.
14376 exclude_directory programs/Xserver/hw/xfree86/reconfig
14378 # These fonts are not needed because they are generated
14379 exclude_glob "*-L1.bdf"
14380 exclude_glob "*-JISX0201.bdf"
14382 # These files are not needed
14383 exclude_glob "Imakefile*"
14384 exclude_glob "jump_*"
14385 exclude_glob ".cvsignore"
14387 exclude_gl_apple
14389 # These files are only used by OS/2 and can be added back if a
14390 # maintainer steps up
14391 exclude_glob "*-def.cpp"
14392 src_dir programs/Xserver
14393 action XFree86.def
14394 action Xnest.def
14395 action Xorg.def
14396 action Xvfb.def
14397 src_dir programs/Xserver/hw/xfree86/xf86config
14398 action xf86config.cmd
14399 src_dir programs/Xserver/hw/xfree86/loader
14400 action os2funcs.c
14401 exclude_directory programs/Xserver/hw/xfree86/os-support/os2
14402 exclude_directory programs/Xserver/hw/xfree86/os-support/os2/int10
14404 # Exclude unsupported os-support directories.
14405 exclude_directory programs/Xserver/hw/xfree86/os-support/nto
14406 exclude_directory programs/Xserver/hw/xfree86/os-support/pmax
14407 exclude_directory programs/Xserver/hw/xfree86/os-support/qnx4
14408 exclude_directory programs/Xserver/hw/xfree86/os-support/bsdi
14409 exclude_directory programs/Xserver/hw/xfree86/os-support/dgux
14410 exclude_directory programs/Xserver/hw/xfree86/os-support/hurd
14412 # This file is replaced by httptransport.c in the modular tree
14413 src_dir programs/xrx/helper
14414 action httptran.c
14416 # Some toplevel monolithic stuff
14417 src_dir
14418 action BUILD # description of the monolithic build system
14419 action ChangeLog # irrelevant to modular
14420 action Makefile # Only useful for monolith
14422 # These files generate the list of drivers (input and video) for the
14423 # monolithic build system and are not needed for the modular build
14424 src_dir programs/Xserver/hw/xfree86/drivers
14425 action confdrv.sh
14426 src_dir programs/Xserver/hw/xfree86/input
14427 action confdrv.sh
14429 # expat is external now
14430 src_dir lib/expat
14431 action expat_config.h
14433 # This file is replaced by a Makefile.am
14434 src_dir programs/Xserver/hw/xfree86/drivers/mga/util
14435 action Makefile
14437 # The via_drm.h file belongs in libdrm
14438 src_dir programs/Xserver/hw/xfree86/drivers/via
14439 action via_drm.h
14441 # This file is only useful in the monolith
14442 src_dir programs/Xserver/hw/dmx/doc
14443 action Makefile.linux
14445 # No longer needed as dlopen modules are default
14446 src_dir programs/Xserver/hw/xfree86/os-support/sunos
14447 action find_deps.pl
14449 # Obsolete docs
14450 src_dir programs/Xserver/hw/xfree86/doc/sgml
14451 action BUILD.sgml # - specific to the monolith
14452 # build system
14453 action Status.sgml # - obsolete
14454 action README.build-docs # - specific to monolith build
14456 src_dir programs/Xserver/hw/xfree86
14457 action XF86Conf.man
14458 action XF98Conf.cpp
14460 # These docs are only useful for monolith
14461 src_dir
14462 action LABEL
14463 action README
14464 action README.crypto
14465 action RELNOTES
14467 # This file is not used by in modular tree
14468 src_dir
14469 action xf86Date.h
14471 # This should be distributed to various font components
14472 src_dir fonts/bdf/misc
14473 action README
14475 # Using upstream version from Gnome
14476 src_dir fonts/scaled/TTF
14477 action COPYRIGHT.Vera
14479 # This file is not used by makedepend in the monolith
14480 src_dir config/makedepend
14481 action cpp.ed
14483 # This file is not used in the monolith
14484 src_dir config/docbook
14485 action docbookconv.sh
14487 # The following files are simple test files that should not be
14488 # included with the library
14489 src_dir lib/Xrandr
14490 action test.c
14491 src_dir lib/font/Type1
14492 action minimain.c
14493 action t1test.c
14495 # Don't symlink XFree86 xpm logos or sequent .Xdefaults from xdm
14496 src_dir programs/xdm/config
14497 action XFree86.xpm
14498 action XFree86bw.xpm
14499 action system.Xdefaults.sequent
14500 action system.xsession.sequent
14502 # Dead source file from cfb, never built in monolith
14503 src_dir programs/Xserver/cfb
14504 action stipple68k.s
14506 # Generated html, so don't symlink
14507 src_dir programs/xphelloworld/xphelloworld
14508 action xphelloworld.html
14510 src_dir programs/xphelloworld/xpsimplehelloworld
14511 action xpsimplehelloworld.html
14513 src_dir programs/xphelloworld/xpxmhelloworld
14514 action xpxmhelloworld.html
14516 src_dir programs/xphelloworld/xpxthelloworld
14517 action xpxthelloworld.html
14519 src_dir programs/xplsprinters
14520 action xplsprinters.html
14522 src_dir programs/xprehashprinterlist
14523 action xprehashprinterlist.html
14525 src_dir doc/man/general
14526 action Xprint.html
14528 # Unused symbol export control thing. No clue how this ever worked.
14529 exclude_glob "*.elist"
14531 # Highly non-free reimplementation of snprintf. If your libc is so
14532 # crippled as to need this, steal it from BSD's libc instead, thanks.
14533 src_dir lib/misc
14534 action snprintf.c
14535 action snprintf.h
14537 # A do-nothing header in Xevie. Take a drink.
14538 src_dir lib/Xevie
14539 action xevieplaceholder.h
14541 # Script to generate the list of widgets in the Xaw set. Hopefully
14542 # no one is adding new ones anymore...
14543 src_dir lib/Xaw
14544 action genlist.sh
14546 # Workarounds for long forgotten bugs in SunOS 4.1 & Solaris 2.3
14547 src_dir util/misc
14548 action dlsym.c
14549 action thr_stubs.c
14550 action rt.stdarg.h
14552 # Generated README files for the drivers
14553 src_dir programs/Xserver/hw/xfree86/doc
14554 action README.DECtga
14555 action README.I128
14556 action README.SiS
14557 action README.apm
14558 action README.chips
14559 action README.cyrix
14560 action README.i740
14561 action README.i810
14562 action README.mouse
14563 action README.newport
14564 action README.rendition
14565 action README.s3virge
14566 action README.ati
14567 action README.r128
14569 src_dir programs/Xserver/hw/xfree86/drivers/i740
14570 action README
14572 # We use the compiled version of ucs2any, so the perl version is no
14573 # longer needed or used
14574 src_dir fonts/util
14575 action ucs2any.pl
14577 # The .cf and .rules files are used only in the local xedit Imakefiles
14578 src_dir programs/xedit/lisp
14579 action lisp.cf
14580 action lisp.rules
14582 # The following file is duplicates the copyright that is already
14583 # present in the source files
14584 src_dir programs/rstart
14585 action c
14587 # These files are copies of FreeType source code
14588 src_dir lib/font/FreeType/module
14589 action ft2build.h
14590 action ftheader.h
14591 action ftmodule.h
14592 action ftoption.h
14593 action ftstdlib.h
14594 action fttypes.h
14595 action myftstdlib.h
14597 # This file is an older version of the README file already linked into
14598 # the neomagic driver
14599 src_dir programs/Xserver/hw/xfree86/doc
14600 action README.neomagic
14602 # This is just random libc implementations
14603 src_dir lib/Xbsd
14604 action Berklib.c
14606 # A file with no entries - and we already have an empty file
14607 # in the modular tree
14608 src_dir nls/Compose
14609 action zh_CN
14611 # These files are all generated from the sgml files in doc/old/sgml
14612 # When/if those files are converted to xml, we can maybe do something
14613 # with the generated results
14614 src_dir programs/Xserver/hw/xfree86/doc
14616 action README.Darwin
14617 action README.dps
14618 action OS2.Notes
14619 action LICENSE
14620 action Install
14621 action README.LynxOS
14622 action README.NetBSD
14623 action README.OpenBSD
14624 action README.SCO
14625 action README.Solaris
14626 action Versions
14627 action README.XKB-Config
14628 action README.XKB-Enhancing
14629 action BUILD
14630 action README
14631 action RELNOTES
14633 # Not really useful given bugzilla
14634 action BugReport.cpp
14636 # like anybody cared
14637 action CODING
14639 # Pc98 doc - FIXME maybe this is actually useful
14640 action VideoBoard98
14642 # Generated from sgml/DESIGN.sgml
14643 action DESIGN
14645 src_dir programs/Xserver/hw/xfree86/doc/Japanese
14646 action README98
14647 action README98.1st
14649 # These files are not even used by the monolith
14650 src_dir lib/X11/xlibi18n/im/ximcp
14651 action Ximcp.mapfile
14652 src_dir lib/X11/xlibi18n/lc/def
14653 action Xlc.mapfile
14654 src_dir lib/X11/xlibi18n/lc/gen
14655 action Xlc.mapfile
14656 src_dir lib/X11/xlibi18n/om/generic
14657 action Xom.mapfile
14659 # This file is part of the monolithic build system
14660 src_dir lib/X11/xlibi18n
14661 action Xi18nLib.conf
14663 # These files are needed for cross compilation and OS/2
14664 src_dir config/imake
14665 action ccimake.c
14666 action imakesvc.cmd
14667 action Makefile.ini
14669 # Xfuncproto.h is now configurable in the modular tree
14670 src_dir include
14671 action Xfuncproto.h
14674 print_source()
14676 echo $1 >> symlink-processed-files
14679 generate_monolith_files()
14681 for cvsdir in `find $SRC_DIR -name "CVS"` ; do
14682 for file in `cat $cvsdir/Entries | grep -v "^D" | cut -d"/" -f2 `; do
14683 echo `echo $cvsdir | sed s/CVS//`$file >> all-monolith-files
14684 done
14685 done
14688 list_missing()
14690 rm -f symlink-processed-files
14691 rm -f symlink-processed-files.sorted
14692 rm -f all-monolith-files
14693 rm -f all-monolith-files.sorted
14695 # make sure we are not excluding anything that doesn't exist
14696 ACTION=check_exist EXPLANATION="Checking that excluded files exist" run_module non_linked_files
14698 # generate a list of all files that this script is going to link
14699 run print_source "Generating list of linked files"
14701 # generate a list of all files that this script is explicityly *not* going to link
14702 ACTION=print_source EXPLANATION="Generating list of non-linked files" run_module non_linked_files
14704 # generate a list of all files in the xc directory, except those that
14705 # we already know we don't care about
14707 echo -n Generating list of all monolithic files ...\
14709 generate_monolith_files
14711 echo DONE
14713 echo -n Generating list of missing files in file \"missing-files\" ...\
14715 sort symlink-processed-files > symlink-processed-files.sorted
14716 sort all-monolith-files > all-monolith-files.sorted
14718 diff -u symlink-processed-files.sorted all-monolith-files.sorted | grep -v "^-" | grep "^\+" | cut -d "+" -f2 > missing-files
14720 echo DONE
14724 #########
14726 # Helper functions
14728 #########
14730 error() {
14731 echo
14732 echo \ \ \ error:\ \ \ $1
14733 exit
14736 # printing out what's going on
14737 run_module() {
14738 # $1 module
14739 # $2 explanation
14740 echo -n $EXPLANATION for $1 module ...\
14741 symlink_$1
14742 echo DONE
14745 run() {
14746 # $1 what to do
14747 # $2 explanation
14749 ACTION=$1 EXPLANATION=$2 run_module proto
14750 ACTION=$1 EXPLANATION=$2 run_module lib
14751 ACTION=$1 EXPLANATION=$2 run_module app
14752 ACTION=$1 EXPLANATION=$2 run_module xserver
14753 ACTION=$1 EXPLANATION=$2 run_module driver
14754 ACTION=$1 EXPLANATION=$2 run_module font
14755 ACTION=$1 EXPLANATION=$2 run_module doc
14756 ACTION=$1 EXPLANATION=$2 run_module util
14757 ACTION=$1 EXPLANATION=$2 run_module data
14760 src_dir() {
14761 if [ x$1 = x ]; then
14762 REAL_SRC_DIR=$SRC_DIR
14763 else
14764 REAL_SRC_DIR=$SRC_DIR/$1
14766 if [ ! -d $REAL_SRC_DIR ] ; then
14767 error "Source directory $REAL_SRC_DIR does not exist"
14771 dst_dir() {
14772 REAL_DST_DIR=$DST_DIR/$1
14773 if [ ! -d $REAL_DST_DIR ] ; then
14774 mkdir -p $REAL_DST_DIR
14778 action() {
14779 if [ -z $2 ] ; then
14780 $ACTION $REAL_SRC_DIR/$1 $REAL_DST_DIR/$1
14781 else
14782 $ACTION $REAL_SRC_DIR/$1 $REAL_DST_DIR/$2
14786 usage() {
14787 echo
14788 echo Usage:
14789 echo \ symlink.sh [ -m ] src-dir dst-dir
14790 echo
14791 echo \ src-dir: the xc directory of the monolithic source tree
14792 echo \ dst-dir: the modular source tree containing proto, app, lib, ...
14793 echo
14794 echo \ -m: Instead of symlinking the files, list the files from the source
14795 echo \ \ \ \ \ \ directory that are not processed by this script
14798 # Check commandline args
14799 check_args() {
14800 MISSING_FILES=no
14801 if [ x$1 = "x-m" ] ; then
14802 MISSING_FILES=yes
14803 shift
14806 if [ -z $1 ] ; then
14807 echo Missing source dir
14808 usage
14809 exit 1
14812 if [ -z $2 ] ; then
14813 echo Missing destination dir
14814 usage
14815 exit 1
14818 if [ ! -d $1 ] ; then
14819 echo $1 is not a dir
14820 usage
14821 exit 1
14824 if [ ! -d $2 ] ; then
14825 echo $2 is not a dir
14826 usage
14827 exit 1
14830 if [ $1 = $2 ] ; then
14831 echo source and destination can\'t be the same
14832 usage
14833 exit 1
14836 D=`dirname "$relpath"`
14837 B=`basename "$relpath"`
14838 abspath="`cd \"$D\" 2>/dev/null && pwd || echo \"$D\"`/$B"
14840 SRC_DIR=`( cd $1 ; pwd )`
14841 DST_DIR=`( cd $2 ; pwd )`
14844 check_args $1 $2 $3
14846 if [ $MISSING_FILES = yes ] ; then
14847 list_missing
14848 else
14849 run_symlink