devel@ where you _can_ ask
 help / color / mirror / Atom feed
* [newbies] Hasher brlcad FHS violation with bytes written exceeded
@ 2016-11-22 15:50 Константин Яблочкин
  2016-11-22 15:59 ` Ruslan Hihin
                   ` (3 more replies)
  0 siblings, 4 replies; 16+ messages in thread
From: Константин Яблочкин @ 2016-11-22 15:50 UTC (permalink / raw)
  To: devel-newbies

Почти собрался brlcad (пока не удаётся подключить qt и libbullet). Но в конце пишет, что /opt/brlcad/... даёт FHS violations, и сразу где-то переполнение:

hasher-priv: master: bytes written limit (65536 bytes) exceeded
hsh-rebuild: pkg.tar: sisyphus_check failed.

(как я понял, там надо пятое QT, и оно ставится, но cmake его не находит. Надо пятое QT, судя по этой странице: http://brlcad.org/wiki/Convert_MGED_from_Tk_to_Qt )

Далее spec и конец вывода (сборка в hasher)

============НАЧАЛО СПЕКА======================
Name: brlcad
Version: 7.26.0
# patch 2 altrelease 1
Release: alt2.1

Summary: BRL-CAD is a powerful open source cross-platform solid modeling system that includes interactive geometry editing, high-performance ray-tracing for rendering and geometric analysis, a system performance analysis benchmark suite, geometry libraries for application developers, and more than 30 years of active development.

License: LGPL
Group: Engineering
Url: https://brlcad.org/

Packager: Konstantin Yablochkin <yakonstb@altlinux.org>
BuildPreReq: cmake, rpm-macros-cmake, gcc5-c++, tcl-devel, tk, tklib, tcl-incrtcl-devel, tcl-incrtk-devel, tcl-togl-devel, tcl-trf-devel, tcl-blt-devel, tcl-iwidgets, tcl-img, tcl-dom-devel, libGL-devel, libX11-devel, libuuid-devel, libsocket-devel, libGLES-devel, libGLU-devel, libGLUT-devel, libGLee-devel, libGLw-devel, libQGLViewer-qt5-devel, qt5-gstreamer1-devel, libqtermwidget-qt5-devel, qt5-3d-devel, qt5-base-devel, qt5-connectivity-devel, qt5-declarative-devel, qt5-location-devel, qt5-multimedia-devel, qt5-phonon-devel, qt5-quick1-devel, qt5-quickcontrols2-devel, qt5-script-devel, qt5-sensors-devel, qt5-serialbus-devel, qt5-serialport-devel, qt5-speech-devel, qt5-svg-devel, qt5-tools-devel, qt5-wayland-devel, qt5-webchannel-devel, qt5-webengine-devel, qt5-webkit-devel, qt5-websockets-devel, qt5-x11extras-devel, qt5-xmlpatterns-devel, zlib-devel, bzlib-devel, lzlib-devel, libpng-devel, libpnglite-devel, libpng++-devel, libpcre-devel, libpcre2-devel, libpcrecpp-devel, libexpat-devel, libbullet3-devel
#BuildPreReq: cmake, rpm-macros-cmake, gcc5-c++, tcl-devel, tk, tklib, tcl-incrtcl-devel, tcl-incrtk-devel, tcl-togl-devel, tcl-trf-devel, tcl-blt-devel, tcl-iwidgets, tcl-img, tcl-dom-devel, libbullet-devel, libGL-devel, libX11-devel, libqt4-devel, libuuid-devel, libsocket-devel, libGLES-devel, libGLU-devel, libGLUT-devel, libGLee-devel, libGLw-devel
Source: brlcad-7.26.0.tar
Patch0: %name-rel-7-26-0-2.patch

%description
BRL-CAD is a powerful cross-platform Open Source combinatorial
Constructive Solid Geometry (CSG) solid modeling system that
includes interactive 3D solid geometry editing, high-performance
ray-tracing support for rendering and geometric analysis,
network-distributed framebuffer support, image and signal-processing
tools, path-tracing and photon mapping support for realistic image
synthesis, a system performance analysis benchmark suite, an
embedded scripting interface, and libraries for robust
high-performance geometric representation and analysis.

%prep
%setup
%patch0 -p0

%build

# tcl scripts start with #!/bin/sh. Replacing with #!/usr/bin/tclsh
export excl_mark='!'
mkdir tcl-origin
for i in `find -iname "*.tcl"` src/tclscripts/rtwizard/rtwizard ; do
  if test "x${i}" = "x*" ; then
    break
  fi
  j=`basename "${i}"`
  cp $i tcl-origin/
  sed -e "s/^#${excl_mark}\/bin\/sh$/#${excl_mark}\/usr\/bin\/tclsh/g" tcl-origin/${j} > ${i}
done


# manually written configure script. Also can enable things one by one. Or manually call cmake.
# can't go to /usr, it uses it's own libraries which would go into /usr/lib and potentially cause conflict (read next)
./configure --prefix=/opt/brlcad --enable-all
# if --prefix=/usr, cmake will tell this:
#
#  }}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}
#
#  It is STRONGLY recommended that you DO NOT install BRL-CAD into /usr as
#  BRL-CAD provides several libraries that may conflict with other libraries
#  (e.g.  librt, libbu, libbn) on certain system configurations.
#
#  Since our libraries predate all those that we're known to conflict with and
#  are at the very core of our geometry services and project heritage, we have
#  no plans to change the names of our libraries at this time.
#
#  INSTALLING INTO /usr CAN MAKE A SYSTEM COMPLETELY UNUSABLE.  If you choose
#  to continue installing into /usr, you do so entirely at your own risk.  You
#  have been warned.
#
#  }}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}
%make_build

%install
%makeinstall_std


# create wrappers for binaries. Wrappers go into /usr/bin
mkdir -p %buildroot/usr/bin
pushd %buildroot/opt/brlcad/bin
for i in * ; do
  if test "x${i}" = "x*" ; then
    break
  fi
  case "${i}" in
    *.py) cp "${i}" %buildroot/usr/bin/
      ;;
    *)
      excl_mark='!'
      echo -en "#${excl_mark}/bin/bash\n/opt/brlcad/bin/${i} \"\$@\"\n" > %buildroot/usr/bin/${i}
      chmod +x %buildroot/usr/bin/${i}
      ;;
  esac
done
popd


# change "#!/bin/sh" to "#!/usr/bin/wish" in listed files
mkdir wish-origin
for i in %buildroot/opt/brlcad/lib/tk8.5/demos/browse %buildroot/opt/brlcad/lib/tk8.5/demos/hello %buildroot/opt/brlcad/lib/tk8.5/demos/ixset %buildroot/opt/brlcad/lib/tk8.5/demos/rmt %buildroot/opt/brlcad/lib/tk8.5/demos/rolodex %buildroot/opt/brlcad/lib/tk8.5/demos/square %buildroot/opt/brlcad/lib/tk8.5/demos/tcolor %buildroot/opt/brlcad/lib/tk8.5/demos/timer %buildroot/opt/brlcad/lib/tk8.5/demos/widget ; do
  j=`basename "${i}"`
  cp ${i} wish-origin/
  excl_mark='!'
  sed -e "s/^#${excl_mark}\/bin\/sh$/#${excl_mark}\/usr\/bin\/wish/g" wish-origin/${j} > ${i}
done


# binaries won't pass test with default mode. They have /opt/brlcad/lib in RPATH
RPM_VERIFY_ELF_METHOD="relaxed"



%find_lang %name


%files -f %name.lang
%doc AUTHORS ChangeLog NEWS BUGS CHANGES COPYING HACKING INSTALL README TODO
/opt/brlcad
/usr/bin/*

%changelog
* Sun Nov 20 2016 Konstantin Yabochkin <yakonstb@altlinux.org> 7.26.0-alt2.1
- initial build
============КОНЕЦ======================


===============НАЧАЛО ВЫВОДА========================
...
...
find-requires: running scripts (debuginfo)
Requires: brlcad = 7.26.0-alt2.1, /usr/lib/debug/lib64/ld-linux-x86-64.so.2.debug, debug64(ld-linux-x86-64.so.2), debug64(libGL.so.1), debug64(libX11.so.6), debug64(libXft.so.2), debug64(libXi.so.6), debug64(libc.so.6), debug64(libdl.so.2), debug64(libfontconfig.so.1), debug64(libgcc_s.so.1), debug64(libm.so.6), debug64(libpthread.so.0), debug64(libstdc++.so.6), debug64(libuuid.so.1)
Wrote: /usr/src/RPM/SRPMS/brlcad-7.26.0-alt2.1.src.rpm
Wrote: /usr/src/RPM/RPMS/x86_64/brlcad-7.26.0-alt2.1.x86_64.rpm
Wrote: /usr/src/RPM/RPMS/x86_64/brlcad-debuginfo-7.26.0-alt2.1.x86_64.rpm
2759.14user 700.84system 35:47.93elapsed 161%CPU (0avgtext+0avgdata 346004maxresident)k
1358360inputs+6959040outputs (2149major+79137850minor)pagefaults 0swaps
/.out/brlcad-7.26.0-alt2.1.x86_64.rpm: FHS violations: /opt/brlcad /opt/brlcad/bin /opt/brlcad/bin/3dm-g /opt/brlcad/bin/a-d /opt/brlcad/bin/adrt_master /opt/brlcad/bin/alias-pix /opt/brlcad/bin/all_sf /opt/brlcad/bin/anim_cascade /opt/brlcad/bin/anim_fly /opt/brlcad/bin/anim_hardtrack /opt/brlcad/bin/anim_keyread /opt/brlcad/bin/anim_lookat /opt/brlcad/bin/anim_offset /opt/brlcad/bin/anim_orient /opt/brlcad/bin/anim_script /opt/brlcad/bin/anim_sort /opt/brlcad/bin/anim_time /opt/brlcad/bin/anim_track /opt/brlcad/bin/anim_turn /opt/brlcad/bin/ap-pix /opt/brlcad/bin/archer /opt/brlcad/bin/asc-nmg /opt/brlcad/bin/asc-plot3 /opt/brlcad/bin/asc2dsp /opt/brlcad/bin/asc2g /opt/brlcad/bin/asc2pix /opt/brlcad/bin/azel /opt/brlcad/bin/bary /opt/brlcad/bin/benchmark /opt/brlcad/bin/bolt /opt/brlcad/bin/bombardier /opt/brlcad/bin/bot-bldxf /opt/brlcad/bin/bot_dump /opt/brlcad/bin/bot_shell-vtk /opt/brlcad/bin/brlcad-config /opt/brlcad/bin/brlman /opt/brlcad/bin/btclsh /opt/brlcad/bin/buffer /opt/brlcad/bin/burst /opt/brlcad/bin/bw-a /opt/brlcad/bin/bw-d /opt/brlcad/bin/bw-fb /opt/brlcad/bin/bw-imp /opt/brlcad/bin/bw-pix /opt/brlcad/bin/bw-png /opt/brlcad/bin/bw-ps /opt/brlcad/bin/bw-rle /opt/brlcad/bin/bwcrop /opt/brlcad/bin/bwdiff /opt/brlcad/bin/bwfilter /opt/brlcad/bin/bwhist /opt/brlcad/bin/bwhisteq /opt/brlcad/bin/bwish /opt/brlcad/bin/bwmod /opt/brlcad/bin/bwrect /opt/brlcad/bin/bwrot /opt/brlcad/bin/bwscale /opt/brlcad/bin/bwshrink /opt/brlcad/bin/bwstat /opt/brlcad/bin/bwthresh /opt/brlcad/bin/c-d /opt/brlcad/bin/cad_boundp /opt/brlcad/bin/cad_parea /opt/brlcad/bin/cell-fb /opt/brlcad/bin/chan_add /opt/brlcad/bin/chan_mult /opt/brlcad/bin/chan_permute /opt/brlcad/bin/cmap-fb /opt/brlcad/bin/cmp.sh /opt/brlcad/bin/coil /opt/brlcad/bin/comgeom-g /opt/brlcad/bin/conv-vg2g /opt/brlcad/bin/conversion.sh /opt/brlcad/bin/cv /opt/brlcad/bin/cy-g /opt/brlcad/bin/d-a /opt/brlcad/bin/d-bw /opt/brlcad/bin/d-f /opt/brlcad/bin/d-i /opt/brlcad/bin/d-u /opt/brlcad/bin/d2-c /opt/brlcad/bin/damdf /opt/brlcad/bin/dauto /opt/brlcad/bin/dauto2 /opt/brlcad/bin/dbupgrade /opt/brlcad/bin/dconv /opt/brlcad/bin/ddisp /opt/brlcad/bin/decimate /opt/brlcad/bin/dem-g /opt/brlcad/bin/dfft /opt/brlcad/bin/dmod /opt/brlcad/bin/double-asc /opt/brlcad/bin/dpeak /opt/brlcad/bin/dpix-pix /opt/brlcad/bin/dsel /opt/brlcad/bin/dstats /opt/brlcad/bin/dwin /opt/brlcad/bin/dxf-g /opt/brlcad/bin/elapsed.sh /opt/brlcad/bin/enf-g /opt/brlcad/bin/euclid-g /opt/brlcad/bin/euclid_format /opt/brlcad/bin/euclid_unformat /opt/brlcad/bin/f-d /opt/brlcad/bin/f-i /opt/brlcad/bin/facetall.sh /opt/brlcad/bin/fast4-g /opt/brlcad/bin/fb-bw /opt/brlcad/bin/fb-cmap /opt/brlcad/bin/fb-fb /opt/brlcad/bin/fb-pix /opt/brlcad/bin/fb-png /opt/brlcad/bin/fb-rle /opt/brlcad/bin/fbanim /opt/brlcad/bin/fbcbars /opt/brlcad/bin/fbclear /opt/brlcad/bin/fbcmap /opt/brlcad/bin/fbcmrot /opt/brlcad/bin/fbcolor /opt/brlcad/bin/fbed /opt/brlcad/bin/fbfade /opt/brlcad/bin/fbframe /opt/brlcad/bin/fbfree /opt/brlcad/bin/fbgamma /opt/brlcad/bin/fbgrid /opt/brlcad/bin/fbhelp /opt/brlcad/bin/fblabel /opt/brlcad/bin/fbline /opt/brlcad/bin/fbpoint /opt/brlcad/bin/fbscanplot /opt/brlcad/bin/fbserv /opt/brlcad/bin/fbstretch /opt/brlcad/bin/fbzoom /opt/brlcad/bin/fence /opt/brlcad/bin/firpass /opt/brlcad/bin/fix_polysolids /opt/brlcad/bin/g-acad /opt/brlcad/bin/g-dot /opt/brlcad/bin/g-dxf /opt/brlcad/bin/g-egg /opt/brlcad/bin/g-euclid /opt/brlcad/bin/g-euclid1 /opt/brlcad/bin/g-iges /opt/brlcad/bin/g-jack /opt/brlcad/bin/g-nff /opt/brlcad/bin/g-nmg /opt/brlcad/bin/g-obj /opt/brlcad/bin/g-off /opt/brlcad/bin/g-ply /opt/brlcad/bin/g-raw /opt/brlcad/bin/g-shell-rect /opt/brlcad/bin/g-step /opt/brlcad/bin/g-stl /opt/brlcad/bin/g-tankill /opt/brlcad/bin/g-var /opt/brlcad/bin/g-voxel /opt/brlcad/bin/g-vrml /opt/brlcad/bin/g-x3d /opt/brlcad/bin/g2asc /opt/brlcad/bin/gastank /opt/brlcad/bin/gcv /opt/brlcad/bin/gdiff /opt/brlcad/bin/gencolor /opt/brlcad/bin/gif-fb /opt/brlcad/bin/gif2fb /opt/brlcad/bin/glint /opt/brlcad/bin/gqa /opt/brlcad/bin/halftone /opt/brlcad/bin/handle /opt/brlcad/bin/hex /opt/brlcad/bin/human /opt/brlcad/bin/i-a /opt/brlcad/bin/i-d /opt/brlcad/bin/i-f /opt/brlcad/bin/icv /opt/brlcad/bin/iges-g /opt/brlcad/bin/ihist /opt/brlcad/bin/imgdims /opt/brlcad/bin/imod /opt/brlcad/bin/intaval-g.py /opt/brlcad/bin/ir-X /opt/brlcad/bin/irdisp /opt/brlcad/bin/isst /opt/brlcad/bin/istats /opt/brlcad/bin/jack-g /opt/brlcad/bin/lgt /opt/brlcad/bin/loop /opt/brlcad/bin/lowp /opt/brlcad/bin/mac-pix /opt/brlcad/bin/mged /opt/brlcad/bin/mged.bat /opt/brlcad/bin/morphedit.tcl /opt/brlcad/bin/nastran-g /opt/brlcad/bin/nirt /opt/brlcad/bin/nmg-bot /opt/brlcad/bin/nmg-rib /opt/brlcad/bin/nmg-sgp /opt/brlcad/bin/obj-g /opt/brlcad/bin/off-g /opt/brlcad/bin/orbit.sh /opt/brlcad/bin/patch-g /opt/brlcad/bin/picket_fence /opt/brlcad/bin/pictx /opt/brlcad/bin/pix-alias /opt/brlcad/bin/pix-bw /opt/brlcad/bin/pix-fb /opt/brlcad/bin/pix-png /opt/brlcad/bin/pix-ppm /opt/brlcad/bin/pix-ps /opt/brlcad/bin/pix-rle /opt/brlcad/bin/pix-spm /opt/brlcad/bin/pix-sun /opt/brlcad/bin/pix-yuv /opt/brlcad/bin/pix2asc /opt/brlcad/bin/pix3filter /opt/brlcad/bin/pixautosize /opt/brlcad/bin/pixbackgnd /opt/brlcad/bin/pixbgstrip /opt/brlcad/bin/pixblend /opt/brlcad/bin/pixborder /opt/brlcad/bin/pixbustup /opt/brlcad/bin/pixclump /opt/brlcad/bin/pixcmp /opt/brlcad/bin/pixcolors /opt/brlcad/bin/pixcount /opt/brlcad/bin/pixcrop /opt/brlcad/bin/pixcut /opt/brlcad/bin/pixdiff /opt/brlcad/bin/pixdsplit /opt/brlcad/bin/pixelswap /opt/brlcad/bin/pixembed /opt/brlcad/bin/pixfade /opt/brlcad/bin/pixfields /opt/brlcad/bin/pixfieldsep /opt/brlcad/bin/pixfilter /opt/brlcad/bin/pixflip-fb /opt/brlcad/bin/pixhalve /opt/brlcad/bin/pixhist /opt/brlcad/bin/pixhist3d /opt/brlcad/bin/pixhist3d-plot3 /opt/brlcad/bin/pixinfo.sh /opt/brlcad/bin/pixinterp2x /opt/brlcad/bin/pixmatte /opt/brlcad/bin/pixmerge /opt/brlcad/bin/pixmorph /opt/brlcad/bin/pixpaste /opt/brlcad/bin/pixrect /opt/brlcad/bin/pixrot /opt/brlcad/bin/pixsaturate /opt/brlcad/bin/pixscale /opt/brlcad/bin/pixshrink /opt/brlcad/bin/pixstat /opt/brlcad/bin/pixsubst /opt/brlcad/bin/pixtile /opt/brlcad/bin/pixuntile /opt/brlcad/bin/plot3-X /opt/brlcad/bin/plot3-asc /opt/brlcad/bin/plot3-dm /opt/brlcad/bin/plot3-fb /opt/brlcad/bin/plot3-hpgl /opt/brlcad/bin/plot3-plot3 /opt/brlcad/bin/plot3-ps /opt/brlcad/bin/plot3-tek /opt/brlcad/bin/plot3color /opt/brlcad/bin/plot3debug /opt/brlcad/bin/plot3getframe /opt/brlcad/bin/plot3line2 /opt/brlcad/bin/plot3rot /opt/brlcad/bin/plot3stat /opt/brlcad/bin/ply-g /opt/brlcad/bin/png-bw /opt/brlcad/bin/png-fb /opt/brlcad/bin/png-pix /opt/brlcad/bin/png_info /opt/brlcad/bin/polar-fb /opt/brlcad/bin/poly-bot /opt/brlcad/bin/pp-fb /opt/brlcad/bin/proe-g /opt/brlcad/bin/random /opt/brlcad/bin/raw-g /opt/brlcad/bin/remapid /opt/brlcad/bin/remrt /opt/brlcad/bin/reshoot /opt/brlcad/bin/rle-fb /opt/brlcad/bin/rle-pix /opt/brlcad/bin/rpatch /opt/brlcad/bin/rt /opt/brlcad/bin/rt_bot_faces /opt/brlcad/bin/rtarea /opt/brlcad/bin/rtcell /opt/brlcad/bin/rtcheck /opt/brlcad/bin/rtedge /opt/brlcad/bin/rtfrac /opt/brlcad/bin/rtg3 /opt/brlcad/bin/rthide /opt/brlcad/bin/rtpp /opt/brlcad/bin/rtrad /opt/brlcad/bin/rtrange /opt/brlcad/bin/rtray /opt/brlcad/bin/rtregis /opt/brlcad/bin/rtscale /opt/brlcad/bin/rtshot /opt/brlcad/bin/rtsil /opt/brlcad/bin/rtsrv /opt/brlcad/bin/rttherm /opt/brlcad/bin/rtwalk /opt/brlcad/bin/rtweight /opt/brlcad/bin/rtwizard /opt/brlcad/bin/rtxray /opt/brlcad/bin/script-tab /opt/brlcad/bin/secpass /opt/brlcad/bin/shapefact /opt/brlcad/bin/show.sh /opt/brlcad/bin/showshot /opt/brlcad/bin/showtherm /opt/brlcad/bin/shp-g /opt/brlcad/bin/smod /opt/brlcad/bin/spm-fb /opt/brlcad/bin/ssamp-bw /opt/brlcad/bin/ssampview /opt/brlcad/bin/ssampview.tcl /opt/brlcad/bin/step-g /opt/brlcad/bin/stl-g /opt/brlcad/bin/sun-pix /opt/brlcad/bin/tabinterp /opt/brlcad/bin/tabsub /opt/brlcad/bin/tankill-g /opt/brlcad/bin/tclsh /opt/brlcad/bin/tclsh-8.5 /opt/brlcad/bin/terrain /opt/brlcad/bin/texturescale /opt/brlcad/bin/tgf-g /opt/brlcad/bin/tire /opt/brlcad/bin/ttcp /opt/brlcad/bin/u-a /opt/brlcad/bin/u-bw /opt/brlcad/bin/u-d /opt/brlcad/bin/u-f /opt/brlcad/bin/umod /opt/brlcad/bin/ustats /opt/brlcad/bin/vdeck /opt/brlcad/bin/viewpoint-g /opt/brlcad/bin/wavelet /opt/brlcad/bin/window /opt/brlcad/bin/window_frame /opt/brlcad/bin/wire /opt/brlcad/bin/wish /opt/brlcad/bin/wish-8.5 /opt/brlcad/bin/xyz-plot3 /opt/brlcad/bin/yuv-pix /opt/brlcad/etc /opt/brlcad/etc/termcap /opt/brlcad/include /opt/brlcad/include/brlcad /opt/brlcad/include/brlcad/RtServerImpl.h /opt/brlcad/include/brlcad/analyze.h /opt/brlcad/include/brlcad/bg /opt/brlcad/include/brlcad/bg.h /opt/brlcad/include/brlcad/bg/chull.h /opt/brlcad/include/brlcad/bg/defines.h /opt/brlcad/include/brlcad/bg/obr.h /opt/brlcad/include/brlcad/bg/polygon.h /opt/brlcad/include/brlcad/bg/tri_ray.h /opt/brlcad/include/brlcad/bg/tri_tri.h /opt/brlcad/include/brlcad/bio.h /opt/brlcad/include/brlcad/bn /opt/brlcad/include/brlcad/bn.h /opt/brlcad/include/brlcad/bn/adc.h /opt/brlcad/include/brlcad/bn/anim.h /opt/brlcad/include/brlcad/bn/clip.h /opt/brlcad/include/brlcad/bn/complex.h /opt/brlcad/include/brlcad/bn/defines.h /opt/brlcad/include/brlcad/bn/dvec.h /opt/brlcad/include/brlcad/bn/mat.h /opt/brlcad/include/brlcad/bn/msr.h /opt/brlcad/include/brlcad/bn/multipoly.h /opt/brlcad/include/brlcad/bn/noise.h /opt/brlcad/include/brlcad/bn/plane.h /opt/brlcad/include/brlcad/bn/plot3.h /opt/brlcad/include/brlcad/bn/poly.h /opt/brlcad/include/brlcad/bn/qmath.h /opt/brlcad/include/brlcad/bn/rand.h /opt/brlcad/include/brlcad/bn/randmt.h /opt/brlcad/include/brlcad/bn/spm.h /opt/brlcad/include/brlcad/bn/str.h /opt/brlcad/include/brlcad/bn/tabdata.h /opt/brlcad/include/brlcad/bn/tol.h /opt/brlcad/include/brlcad/bn/vectfont.h /opt/brlcad/include/brlcad/bn/vector_fpu.h /opt/brlcad/include/brlcad/bn/vector_x86.h /opt/brlcad/include/brlcad/bn/version.h /opt/brlcad/include/brlcad/bn/vert_tree.h /opt/brlcad/include/brlcad/bn/vlist.h /opt/brlcad/include/brlcad/bn/wavelet.h /opt/brlcad/include/brlcad/bnetwork.h /opt/brlcad/include/brlcad/brep /opt/brlcad/include/brlcad/brep.h /opt/brlcad/include/brlcad/brep/bbnode.h /opt/brlcad/include/brlcad/brep/boolean.h /opt/brlcad/include/brlcad/brep/brnode.h /opt/brlcad/include/brlcad/brep/csg.h /opt/brlcad/include/brlcad/brep/curvetree.h /opt/brlcad/include/brlcad/brep/defines.h /opt/brlcad/include/brlcad/brep/intersect.h /opt/brlcad/include/brlcad/brep/pullback.h /opt/brlcad/include/brlcad/brep/ray.h /opt/brlcad/include/brlcad/brep/surfacetree.h /opt/brlcad/include/brlcad/brep/util.h /opt/brlcad/include/brlcad/bresource.h /opt/brlcad/include/brlcad/brlcad.h /opt/brlcad/include/brlcad/brlcad.i /opt/brlcad/include/brlcad/brlcad_config.h /opt/brlcad/include/brlcad/bsocket.h /opt/brlcad/include/brlcad/bu /opt/brlcad/include/brlcad/bu.h /opt/brlcad/include/brlcad/bu/avs.h /opt/brlcad/include/brlcad/bu/bitv.h /opt/brlcad/include/brlcad/bu/cmd.h /opt/brlcad/include/brlcad/bu/color.h /opt/brlcad/include/brlcad/bu/cv.h /opt/brlcad/include/brlcad/bu/debug.h /opt/brlcad/include/brlcad/bu/defines.h /opt/brlcad/include/brlcad/bu/endian.h /opt/brlcad/include/brlcad/bu/env.h /opt/brlcad/include/brlcad/bu/file.h /opt/brlcad/include/brlcad/bu/getopt.h /opt/brlcad/include/brlcad/bu/hash.h /opt/brlcad/include/brlcad/bu/hist.h /opt/brlcad/include/brlcad/bu/list.h /opt/brlcad/include/brlcad/bu/log.h /opt/brlcad/include/brlcad/bu/magic.h /opt/brlcad/include/brlcad/bu/malloc.h /opt/brlcad/include/brlcad/bu/mapped_file.h /opt/brlcad/include/brlcad/bu/mime.h /opt/brlcad/include/brlcad/bu/observer.h /opt/brlcad/include/brlcad/bu/opt.h /opt/brlcad/include/brlcad/bu/parallel.h /opt/brlcad/include/brlcad/bu/parse.h /opt/brlcad/include/brlcad/bu/path.h /opt/brlcad/include/brlcad/bu/ptbl.h /opt/brlcad/include/brlcad/bu/rb.h /opt/brlcad/include/brlcad/bu/simd.h /opt/brlcad/include/brlcad/bu/sort.h /opt/brlcad/include/brlcad/bu/str.h /opt/brlcad/include/brlcad/bu/time.h /opt/brlcad/include/brlcad/bu/units.h /opt/brlcad/include/brlcad/bu/uuid.h /opt/brlcad/include/brlcad/bu/version.h /opt/brlcad/include/brlcad/bu/vfont.h /opt/brlcad/include/brlcad/bu/vlb.h /opt/brlcad/include/brlcad/bu/vls.h /opt/brlcad/include/brlcad/common.h /opt/brlcad/include/brlcad/cursor.h /opt/brlcad/include/brlcad/dm /opt/brlcad/include/brlcad/dm.h /opt/brlcad/include/brlcad/dm/bview.h /opt/brlcad/include/brlcad/dm/defines.h /opt/brlcad/include/brlcad/dm/dm_xvars.h /opt/brlcad/include/brlcad/fb.h /opt/brlcad/include/brlcad/fft.h /opt/brlcad/include/brlcad/gcv /opt/brlcad/include/brlcad/gcv.h /opt/brlcad/include/brlcad/gcv/api.h /opt/brlcad/include/brlcad/gcv/defines.h /opt/brlcad/include/brlcad/gcv/util.h /opt/brlcad/include/brlcad/ged /opt/brlcad/include/brlcad/ged.h /opt/brlcad/include/brlcad/ged/analyze.h /opt/brlcad/include/brlcad/ged/database.h /opt/brlcad/include/brlcad/ged/debug.h /opt/brlcad/include/brlcad/ged/defines.h /opt/brlcad/include/brlcad/ged/framebuffer.h /opt/brlcad/include/brlcad/ged/objects.h /opt/brlcad/include/brlcad/ged/rt.h /opt/brlcad/include/brlcad/ged/view /opt/brlcad/include/brlcad/ged/view.h /opt/brlcad/include/brlcad/ged/view/adc.h /opt/brlcad/include/brlcad/ged/view/matrix.h /opt/brlcad/include/brlcad/ged/view/select.h /opt/brlcad/include/brlcad/ged/view/state.h /opt/brlcad/include/brlcad/icv /opt/brlcad/include/brlcad/icv.h /opt/brlcad/include/brlcad/icv/colorspace.h /opt/brlcad/include/brlcad/icv/crop.h /opt/brlcad/include/brlcad/icv/defines.h /opt/brlcad/include/brlcad/icv/filters.h /opt/brlcad/include/brlcad/icv/io.h /opt/brlcad/include/brlcad/icv/ops.h /opt/brlcad/include/brlcad/icv/stat.h /opt/brlcad/include/brlcad/libtermio.h /opt/brlcad/include/brlcad/nmg.h /opt/brlcad/include/brlcad/optical /opt/brlcad/include/brlcad/optical.h /opt/brlcad/include/brlcad/optical/debug.h /opt/brlcad/include/brlcad/optical/defines.h /opt/brlcad/include/brlcad/optical/light.h /opt/brlcad/include/brlcad/optical/plastic.h /opt/brlcad/include/brlcad/optical/shadefuncs.h /opt/brlcad/include/brlcad/optical/shadework.h /opt/brlcad/include/brlcad/pc.h /opt/brlcad/include/brlcad/photonmap.h /opt/brlcad/include/brlcad/pkg.h /opt/brlcad/include/brlcad/pstdint.h /opt/brlcad/include/brlcad/raytrace.h /opt/brlcad/include/brlcad/rt /opt/brlcad/include/brlcad/rt/anim.h /opt/brlcad/include/brlcad/rt/application.h /opt/brlcad/include/brlcad/rt/arb_edit.h /opt/brlcad/include/brlcad/rt/binunif.h /opt/brlcad/include/brlcad/rt/boolweave.h /opt/brlcad/include/brlcad/rt/calc.h /opt/brlcad/include/brlcad/rt/cmd.h /opt/brlcad/include/brlcad/rt/comb.h /opt/brlcad/include/brlcad/rt/db4.h /opt/brlcad/include/brlcad/rt/db5.h /opt/brlcad/include/brlcad/rt/db_attr.h /opt/brlcad/include/brlcad/rt/db_diff.h /opt/brlcad/include/brlcad/rt/db_fullpath.h /opt/brlcad/include/brlcad/rt/db_instance.h /opt/brlcad/include/brlcad/rt/db_internal.h /opt/brlcad/include/brlcad/rt/db_io.h /opt/brlcad/include/brlcad/rt/debug.h /opt/brlcad/include/brlcad/rt/defines.h /opt/brlcad/include/brlcad/rt/directory.h /opt/brlcad/include/brlcad/rt/dspline.h /opt/brlcad/include/brlcad/rt/func.h /opt/brlcad/include/brlcad/rt/functab.h /opt/brlcad/include/brlcad/rt/geom.h /opt/brlcad/include/brlcad/rt/global.h /opt/brlcad/include/brlcad/rt/hit.h /opt/brlcad/include/brlcad/rt/htbl.h /opt/brlcad/include/brlcad/rt/mater.h /opt/brlcad/include/brlcad/rt/mem.h /opt/brlcad/include/brlcad/rt/misc.h /opt/brlcad/include/brlcad/rt/nmg.h /opt/brlcad/include/brlcad/rt/nongeom.h /opt/brlcad/include/brlcad/rt/nurb.h /opt/brlcad/include/brlcad/rt/op.h /opt/brlcad/include/brlcad/rt/overlap.h /opt/brlcad/include/brlcad/rt/pattern.h /opt/brlcad/include/brlcad/rt/piece.h /opt/brlcad/include/brlcad/rt/prep.h /opt/brlcad/include/brlcad/rt/primitives /opt/brlcad/include/brlcad/rt/primitives/arb8.h /opt/brlcad/include/brlcad/rt/primitives/ars.h /opt/brlcad/include/brlcad/rt/primitives/bot.h /opt/brlcad/include/brlcad/rt/primitives/brep.h /opt/brlcad/include/brlcad/rt/primitives/cline.h /opt/brlcad/include/brlcad/rt/primitives/dsp.h /opt/brlcad/include/brlcad/rt/primitives/ell.h /opt/brlcad/include/brlcad/rt/primitives/epa.h /opt/brlcad/include/brlcad/rt/primitives/hf.h /opt/brlcad/include/brlcad/rt/primitives/metaball.h /opt/brlcad/include/brlcad/rt/primitives/pg.h /opt/brlcad/include/brlcad/rt/primitives/pipe.h /opt/brlcad/include/brlcad/rt/primitives/rhc.h /opt/brlcad/include/brlcad/rt/primitives/rpc.h /opt/brlcad/include/brlcad/rt/primitives/sketch.h /opt/brlcad/include/brlcad/rt/primitives/tgc.h /opt/brlcad/include/brlcad/rt/primitives/tor.h /opt/brlcad/include/brlcad/rt/private.h /opt/brlcad/include/brlcad/rt/ray_partition.h /opt/brlcad/include/brlcad/rt/region.h /opt/brlcad/include/brlcad/rt/resource.h /opt/brlcad/include/brlcad/rt/rt_instance.h /opt/brlcad/include/brlcad/rt/search.h /opt/brlcad/include/brlcad/rt/seg.h /opt/brlcad/include/brlcad/rt/shoot.h /opt/brlcad/include/brlcad/rt/solid.h /opt/brlcad/include/brlcad/rt/soltab.h /opt/brlcad/include/brlcad/rt/space_partition.h /opt/brlcad/include/brlcad/rt/tie.h /opt/brlcad/include/brlcad/rt/timer.h /opt/brlcad/include/brlcad/rt/tol.h /opt/brlcad/include/brlcad/rt/tree.h /opt/brlcad/include/brlcad/rt/version.h /opt/brlcad/include/brlcad/rt/view.h /opt/brlcad/include/brlcad/rt/vlist.h /opt/brlcad/include/brlcad/rt/wdb.h /opt/brlcad/include/brlcad/rt/xray.h /opt/brlcad/include/brlcad/rtserver.h /opt/brlcad/include/brlcad/spectrum.h /opt/brlcad/include/brlcad/tclcad.h /opt/brlcad/include/brlcad/vmath.h /opt/brlcad/include/brlcad/wdb.h /opt/brlcad/include/clipper.hpp /opt/brlcad/include/exit_status.h /opt/brlcad/include/freetype2 /opt/brlcad/include/freetype2/config /opt/brlcad/include/freetype2/config/ftconfig.h /opt/brlcad/include/freetype2/config/ftheader.h /opt/brlcad/include/freetype2/config/ftmodule.h /opt/brlcad/include/freetype2/config/ftoption.h /opt/brlcad/include/freetype2/config/ftstdlib.h /opt/brlcad/include/freetype2/freetype.h /opt/brlcad/include/freetype2/freetype2 /opt/brlcad/include/freetype2/freetype2/ftconfig.h /opt/brlcad/include/freetype2/ft2build.h /opt/brlcad/include/freetype2/ftadvanc.h /opt/brlcad/include/freetype2/ftautoh.h /opt/brlcad/include/freetype2/ftbbox.h /opt/brlcad/include/freetype2/ftbdf.h /opt/brlcad/include/freetype2/ftbitmap.h /opt/brlcad/include/freetype2/ftbzip2.h /opt/brlcad/include/freetype2/ftcache.h /opt/brlcad/include/freetype2/ftcffdrv.h /opt/brlcad/include/freetype2/ftchapters.h /opt/brlcad/include/freetype2/ftcid.h /opt/brlcad/include/freetype2/fterrdef.h /opt/brlcad/include/freetype2/fterrors.h /opt/brlcad/include/freetype2/ftgasp.h /opt/brlcad/include/freetype2/ftglyph.h /opt/brlcad/include/freetype2/ftgxval.h /opt/brlcad/include/freetype2/ftgzip.h /opt/brlcad/include/freetype2/ftimage.h /opt/brlcad/include/freetype2/ftincrem.h /opt/brlcad/include/freetype2/ftlcdfil.h /opt/brlcad/include/freetype2/ftlist.h /opt/brlcad/include/freetype2/ftlzw.h /opt/brlcad/include/freetype2/ftmac.h /opt/brlcad/include/freetype2/ftmm.h /opt/brlcad/include/freetype2/ftmodapi.h /opt/brlcad/include/freetype2/ftmoderr.h /opt/brlcad/include/freetype2/ftotval.h /opt/brlcad/include/freetype2/ftoutln.h /opt/brlcad/include/freetype2/ftpfr.h /opt/brlcad/include/freetype2/ftrender.h /opt/brlcad/include/freetype2/ftsizes.h /opt/brlcad/include/freetype2/ftsnames.h /opt/brlcad/include/freetype2/ftstroke.h /opt/brlcad/include/freetype2/ftsynth.h /opt/brlcad/include/freetype2/ftsystem.h /opt/brlcad/include/freetype2/fttrigon.h /opt/brlcad/include/freetype2/ftttdrv.h /opt/brlcad/include/freetype2/fttypes.h /opt/brlcad/include/freetype2/ftwinfnt.h /opt/brlcad/include/freetype2/ftxf86.h /opt/brlcad/include/freetype2/t1tables.h /opt/brlcad/include/freetype2/ttnameid.h /opt/brlcad/include/freetype2/tttables.h /opt/brlcad/include/freetype2/tttags.h /opt/brlcad/include/freetype2/ttunpat.h /opt/brlcad/include/itcl.h /opt/brlcad/include/itclDecls.h /opt/brlcad/include/itclInt.h /opt/brlcad/include/itclIntDecls.h /opt/brlcad/include/itk.h /opt/brlcad/include/itkDecls.h /opt/brlcad/include/libpng16 /opt/brlcad/include/libpng16/png.h /opt/brlcad/include/libpng16/pngconf.h /opt/brlcad/include/libpng16/pnglibconf.h /opt/brlcad/include/openNURBS /opt/brlcad/include/openNURBS/opennurbs.h /opt/brlcad/include/openNURBS/opennurbs_3dm.h /opt/brlcad/include/openNURBS/opennurbs_3dm_attributes.h /opt/brlcad/include/openNURBS/opennurbs_3dm_properties.h /opt/brlcad/include/openNURBS/opennurbs_3dm_settings.h /opt/brlcad/include/openNURBS/opennurbs_annotation.h /opt/brlcad/include/openNURBS/opennurbs_annotation2.h /opt/brlcad/include/openNURBS/opennurbs_arc.h /opt/brlcad/include/openNURBS/opennurbs_arccurve.h /opt/brlcad/include/openNURBS/opennurbs_archive.h /opt/brlcad/include/openNURBS/opennurbs_array.h /opt/brlcad/include/openNURBS/opennurbs_array_defs.h /opt/brlcad/include/openNURBS/opennurbs_base32.h /opt/brlcad/include/openNURBS/opennurbs_base64.h /opt/brlcad/include/openNURBS/opennurbs_beam.h /opt/brlcad/include/openNURBS/opennurbs_bezier.h /opt/brlcad/include/openNURBS/opennurbs_bitmap.h /opt/brlcad/include/openNURBS/opennurbs_bounding_box.h /opt/brlcad/include/openNURBS/opennurbs_box.h /opt/brlcad/include/openNURBS/opennurbs_brep.h /opt/brlcad/include/openNURBS/opennurbs_circle.h /opt/brlcad/include/openNURBS/opennurbs_color.h /opt/brlcad/include/openNURBS/opennurbs_compress.h /opt/brlcad/include/openNURBS/opennurbs_cone.h /opt/brlcad/include/openNURBS/opennurbs_crc.h /opt/brlcad/include/openNURBS/opennurbs_curve.h /opt/brlcad/include/openNURBS/opennurbs_curveonsurface.h /opt/brlcad/include/openNURBS/opennurbs_curveproxy.h /opt/brlcad/include/openNURBS/opennurbs_cylinder.h /opt/brlcad/include/openNURBS/opennurbs_defines.h /opt/brlcad/include/openNURBS/opennurbs_detail.h /opt/brlcad/include/openNURBS/opennurbs_dimstyle.h /opt/brlcad/include/openNURBS/opennurbs_dll_resource.h /opt/brlcad/include/openNURBS/opennurbs_ellipse.h /opt/brlcad/include/openNURBS/opennurbs_error.h /opt/brlcad/include/openNURBS/opennurbs_evaluate_nurbs.h /opt/brlcad/include/openNURBS/opennurbs_extensions.h /opt/brlcad/include/openNURBS/opennurbs_font.h /opt/brlcad/include/openNURBS/opennurbs_fpoint.h /opt/brlcad/include/openNURBS/opennurbs_fsp.h /opt/brlcad/include/openNURBS/opennurbs_fsp_defs.h /opt/brlcad/include/openNURBS/opennurbs_geometry.h /opt/brlcad/include/openNURBS/opennurbs_group.h /opt/brlcad/include/openNURBS/opennurbs_hatch.h /opt/brlcad/include/openNURBS/opennurbs_hsort_template.h /opt/brlcad/include/openNURBS/opennurbs_instance.h /opt/brlcad/include/openNURBS/opennurbs_intersect.h /opt/brlcad/include/openNURBS/opennurbs_knot.h /opt/brlcad/include/openNURBS/opennurbs_layer.h /opt/brlcad/include/openNURBS/opennurbs_light.h /opt/brlcad/include/openNURBS/opennurbs_line.h /opt/brlcad/include/openNURBS/opennurbs_linecurve.h /opt/brlcad/include/openNURBS/opennurbs_linestyle.h /opt/brlcad/include/openNURBS/opennurbs_linetype.h /opt/brlcad/include/openNURBS/opennurbs_lookup.h /opt/brlcad/include/openNURBS/opennurbs_mapchan.h /opt/brlcad/include/openNURBS/opennurbs_massprop.h /opt/brlcad/include/openNURBS/opennurbs_material.h /opt/brlcad/include/openNURBS/opennurbs_math.h /opt/brlcad/include/openNURBS/opennurbs_matrix.h /opt/brlcad/include/openNURBS/opennurbs_memory.h /opt/brlcad/include/openNURBS/opennurbs_mesh.h /opt/brlcad/include/openNURBS/opennurbs_nurbscurve.h /opt/brlcad/include/openNURBS/opennurbs_nurbssurface.h /opt/brlcad/include/openNURBS/opennurbs_object.h /opt/brlcad/include/openNURBS/opennurbs_object_history.h /opt/brlcad/include/openNURBS/opennurbs_objref.h /opt/brlcad/include/openNURBS/opennurbs_offsetsurface.h /opt/brlcad/include/openNURBS/opennurbs_optimize.h /opt/brlcad/include/openNURBS/opennurbs_plane.h /opt/brlcad/include/openNURBS/opennurbs_planesurface.h /opt/brlcad/include/openNURBS/opennurbs_pluginlist.h /opt/brlcad/include/openNURBS/opennurbs_point.h /opt/brlcad/include/openNURBS/opennurbs_pointcloud.h /opt/brlcad/include/openNURBS/opennurbs_pointgeometry.h /opt/brlcad/include/openNURBS/opennurbs_pointgrid.h /opt/brlcad/include/openNURBS/opennurbs_polycurve.h /opt/brlcad/include/openNURBS/opennurbs_polyedgecurve.h /opt/brlcad/include/openNURBS/opennurbs_polyline.h /opt/brlcad/include/openNURBS/opennurbs_polylinecurve.h /opt/brlcad/include/openNURBS/opennurbs_qsort_template.h /opt/brlcad/include/openNURBS/opennurbs_rand.h /opt/brlcad/include/openNURBS/opennurbs_rendering.h /opt/brlcad/include/openNURBS/opennurbs_revsurface.h /opt/brlcad/include/openNURBS/opennurbs_rtree.h /opt/brlcad/include/openNURBS/opennurbs_sphere.h /opt/brlcad/include/openNURBS/opennurbs_string.h /opt/brlcad/include/openNURBS/opennurbs_sumsurface.h /opt/brlcad/include/openNURBS/opennurbs_surface.h /opt/brlcad/include/openNURBS/opennurbs_surfaceproxy.h /opt/brlcad/include/openNURBS/opennurbs_system.h /opt/brlcad/include/openNURBS/opennurbs_textlog.h /opt/brlcad/include/openNURBS/opennurbs_texture.h /opt/brlcad/include/openNURBS/opennurbs_texture_mapping.h /opt/brlcad/include/openNURBS/opennurbs_torus.h /opt/brlcad/include/openNURBS/opennurbs_unicode.h /opt/brlcad/include/openNURBS/opennurbs_userdata.h /opt/brlcad/include/openNURBS/opennurbs_uuid.h /opt/brlcad/include/openNURBS/opennurbs_version.h /opt/brlcad/include/openNURBS/opennurbs_viewport.h /opt/brlcad/include/openNURBS/opennurbs_workspace.h /opt/brlcad/include/openNURBS/opennurbs_x.h /opt/brlcad/include/openNURBS/opennurbs_xform.h /opt/brlcad/include/openNURBS/opennurbs_zlib.h /opt/brlcad/include/png.h /opt/brlcad/include/pngconf.h /opt/brlcad/include/pnglibconf.h /opt/brlcad/include/poly2tri /opt/brlcad/include/poly2tri/common /opt/brlcad/include/poly2tri/common/shapes.h /opt/brlcad/include/poly2tri/poly2tri.h /opt/brlcad/include/poly2tri/sweep /opt/brlcad/include/poly2tri/sweep/cdt.h /opt/brlcad/include/pyramid.h /opt/brlcad/include/regex.h /opt/brlcad/include/rle.h /opt/brlcad/include/rle_code.h /opt/brlcad/include/rle_config.h /opt/brlcad/include/rle_put.h /opt/brlcad/include/rle_raw.h /opt/brlcad/include/stepcode /opt/brlcad/include/stepcode/base /opt/brlcad/include/stepcode/base/sc_benchmark.h /opt/brlcad/include/stepcode/base/sc_getopt.h /opt/brlcad/include/stepcode/base/sc_memmgr.h /opt/brlcad/include/stepcode/base/sc_trace_fprintf.h /opt/brlcad/include/stepcode/cldai /opt/brlcad/include/stepcode/cldai/sdaiApplication_instance_set.h /opt/brlcad/include/stepcode/cldai/sdaiBinary.h /opt/brlcad/include/stepcode/cldai/sdaiDaObject.h /opt/brlcad/include/stepcode/cldai/sdaiEntity_extent.h /opt/brlcad/include/stepcode/cldai/sdaiEntity_extent_set.h /opt/brlcad/include/stepcode/cldai/sdaiEnum.h /opt/brlcad/include/stepcode/cldai/sdaiModel_contents.h /opt/brlcad/include/stepcode/cldai/sdaiModel_contents_list.h /opt/brlcad/include/stepcode/cldai/sdaiObject.h /opt/brlcad/include/stepcode/cldai/sdaiSession_instance.h /opt/brlcad/include/stepcode/cldai/sdaiString.h /opt/brlcad/include/stepcode/cleditor /opt/brlcad/include/stepcode/cleditor/STEPfile.h /opt/brlcad/include/stepcode/cleditor/SdaiHeaderSchema.h /opt/brlcad/include/stepcode/cleditor/SdaiHeaderSchemaClasses.h /opt/brlcad/include/stepcode/cleditor/SdaiSchemaInit.h /opt/brlcad/include/stepcode/cleditor/cmdmgr.h /opt/brlcad/include/stepcode/cleditor/editordefines.h /opt/brlcad/include/stepcode/cleditor/seeinfodefault.h /opt/brlcad/include/stepcode/cllazyfile /opt/brlcad/include/stepcode/cllazyfile/headerSectionReader.h /opt/brlcad/include/stepcode/cllazyfile/instMgrHelper.h /opt/brlcad/include/stepcode/cllazyfile/lazyDataSectionReader.h /opt/brlcad/include/stepcode/cllazyfile/lazyFileReader.h /opt/brlcad/include/stepcode/cllazyfile/lazyInstMgr.h /opt/brlcad/include/stepcode/cllazyfile/lazyP21DataSectionReader.h /opt/brlcad/include/stepcode/cllazyfile/lazyTypes.h /opt/brlcad/include/stepcode/cllazyfile/p21HeaderSectionReader.h /opt/brlcad/include/stepcode/cllazyfile/sectionReader.h /opt/brlcad/include/stepcode/clstepcore /opt/brlcad/include/stepcode/clstepcore/ExpDict.h /opt/brlcad/include/stepcode/clstepcore/Registry.h /opt/brlcad/include/stepcode/clstepcore/STEPaggregate.h /opt/brlcad/include/stepcode/clstepcore/STEPattribute.h /opt/brlcad/include/stepcode/clstepcore/STEPattributeList.h /opt/brlcad/include/stepcode/clstepcore/STEPcomplex.h /opt/brlcad/include/stepcode/clstepcore/STEPundefined.h /opt/brlcad/include/stepcode/clstepcore/SingleLinkList.h /opt/brlcad/include/stepcode/clstepcore/SubSuperIterators.h /opt/brlcad/include/stepcode/clstepcore/baseType.h /opt/brlcad/include/stepcode/clstepcore/complexSupport.h /opt/brlcad/include/stepcode/clstepcore/dictdefs.h /opt/brlcad/include/stepcode/clstepcore/dispnode.h /opt/brlcad/include/stepcode/clstepcore/dispnodelist.h /opt/brlcad/include/stepcode/clstepcore/instmgr.h /opt/brlcad/include/stepcode/clstepcore/mgrnode.h /opt/brlcad/include/stepcode/clstepcore/mgrnodearray.h /opt/brlcad/include/stepcode/clstepcore/mgrnodelist.h /opt/brlcad/include/stepcode/clstepcore/needFunc.h /opt/brlcad/include/stepcode/clstepcore/read_func.h /opt/brlcad/include/stepcode/clstepcore/sdai.h /opt/brlcad/include/stepcode/clstepcore/sdaiApplication_instance.h /opt/brlcad/include/stepcode/clstepcore/sdaiSelect.h /opt/brlcad/include/stepcode/clutils /opt/brlcad/include/stepcode/clutils/Str.h /opt/brlcad/include/stepcode/clutils/dirobj.h /opt/brlcad/include/stepcode/clutils/errordesc.h /opt/brlcad/include/stepcode/clutils/gennode.h /opt/brlcad/include/stepcode/clutils/gennodearray.h /opt/brlcad/include/stepcode/clutils/gennodelist.h /opt/brlcad/include/stepcode/clutils/sc_hash.h /opt/brlcad/include/stepcode/exppp /opt/brlcad/include/stepcode/exppp/exppp.h /opt/brlcad/include/stepcode/express /opt/brlcad/include/stepcode/express/alg.h /opt/brlcad/include/stepcode/express/basic.h /opt/brlcad/include/stepcode/express/caseitem.h /opt/brlcad/include/stepcode/express/dict.h /opt/brlcad/include/stepcode/express/entity.h /opt/brlcad/include/stepcode/express/error.h /opt/brlcad/include/stepcode/express/expbasic.h /opt/brlcad/include/stepcode/express/expr.h /opt/brlcad/include/stepcode/express/express.h /opt/brlcad/include/stepcode/express/hash.h /opt/brlcad/include/stepcode/express/lexact.h /opt/brlcad/include/stepcode/express/linklist.h /opt/brlcad/include/stepcode/express/memory.h /opt/brlcad/include/stepcode/express/object.h /opt/brlcad/include/stepcode/express/resolve.h /opt/brlcad/include/stepcode/express/schema.h /opt/brlcad/include/stepcode/express/scope.h /opt/brlcad/include/stepcode/express/stmt.h /opt/brlcad/include/stepcode/express/symbol.h /opt/brlcad/include/stepcode/express/type.h /opt/brlcad/include/stepcode/express/variable.h /opt/brlcad/include/stepcode/ordered_attrs.h /opt/brlcad/include/stepcode/sc_cf.h /opt/brlcad/include/stepcode/sc_export.h /opt/brlcad/include/stepcode/sc_stdbool.h /opt/brlcad/include/stepcode/sc_version_string.h /opt/brlcad/include/tcl.h /opt/brlcad/include/tclDecls.h /opt/brlcad/include/tclPlatDecls.h /opt/brlcad/include/tclTomMath.h /opt/brlcad/include/tclTomMathDecls.h /opt/brlcad/include/tie /opt/brlcad/include/tie/adrt.h /opt/brlcad/include/tie/adrt_struct.h /opt/brlcad/include/tie/camera.h /opt/brlcad/include/tie/render.h /opt/brlcad/include/tie/render_internal.h /opt/brlcad/include/tie/render_util.h /opt/brlcad/include/tie/texture.h /opt/brlcad/include/tie/texture_internal.h /opt/brlcad/include/tk.h /opt/brlcad/include/tkDecls.h /opt/brlcad/include/tkPlatDecls.h /opt/brlcad/include/zconf.h /opt/brlcad/include/zlib.h /opt/brlcad/lib /opt/brlcad/lib/Itcl3.4 /opt/brlcad/lib/Itcl3.4/pkgIndex.tcl /opt/brlcad/lib/Itk3.4 /opt/brlcad/lib/Itk3.4/pkgIndex.tcl /opt/brlcad/lib/Iwidgets4.0.1 /opt/brlcad/lib/Iwidgets4.0.1/iwidgets.tcl /opt/brlcad/lib/Iwidgets4.0.1/license.terms /opt/brlcad/lib/Iwidgets4.0.1/pkgIndex.tcl /opt/brlcad/lib/Iwidgets4.0.1/scripts /opt/brlcad/lib/Iwidgets4.0.1/scripts/buttonbox.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/calendar.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/canvasprintbox.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/canvasprintdialog.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/checkbox.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/colors.itcl /opt/brlcad/lib/Iwidgets4.0.1/scripts/combobox.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/dateentry.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/datefield.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/dialog.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/dialogshell.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/disjointlistbox.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/entryfield.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/extbutton.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/extfileselectionbox.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/extfileselectiondialog.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/feedback.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/fileselectionbox.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/fileselectiondialog.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/finddialog.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/hierarchy.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/hyperhelp.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/labeledframe.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/labeledwidget.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/mainwindow.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/menubar.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/messagebox.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/messagedialog.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/notebook.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/optionmenu.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/pane.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/panedwindow.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/promptdialog.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/pushbutton.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/radiobox.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/regexpfield.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/roman.itcl /opt/brlcad/lib/Iwidgets4.0.1/scripts/scopedobject.itcl /opt/brlcad/lib/Iwidgets4.0.1/scripts/scrolledcanvas.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/scrolledframe.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/scrolledhtml.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/scrolledlistbox.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/scrolledtext.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/scrolledwidget.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/selectionbox.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/selectiondialog.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/shell.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/spindate.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/spinint.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/spinner.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/spintime.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/tabnotebook.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/tabset.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/tclIndex /opt/brlcad/lib/Iwidgets4.0.1/scripts/timeentry.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/timefield.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/toolbar.itk /opt/brlcad/lib/Iwidgets4.0.1/scripts/unknownimage.gif /opt/brlcad/lib/Iwidgets4.0.1/scripts/watch.itk /opt/brlcad/lib/Tk8.5.9 /opt/brlcad/lib/Tk8.5.9/pkgIndex.tcl /opt/brlcad/lib/Tkhtml3.0 /opt/brlcad/lib/Tkhtml3.0/pkgIndex.tcl /opt/brlcad/lib/Tktable2.10 /opt/brlcad/lib/Tktable2.10/README.txt /opt/brlcad/lib/Tktable2.10/license.txt /opt/brlcad/lib/Tktable2.10/pkgIndex.tcl /opt/brlcad/lib/Tktable2.10/tkTable.tcl /opt/brlcad/lib/Tktable2.10/tktable.py /opt/brlcad/lib/itcl3.4 /opt/brlcad/lib/itcl3.4/itcl.tcl /opt/brlcad/lib/itk3.4 /opt/brlcad/lib/itk3.4/Archetype.itk /opt/brlcad/lib/itk3.4/Toplevel.itk /opt/brlcad/lib/itk3.4/Widget.itk /opt/brlcad/lib/itk3.4/itk.tcl /opt/brlcad/lib/itk3.4/tclIndex /opt/brlcad/lib/libTkhtml.so /opt/brlcad/lib/libTkhtml.so.3.0 /opt/brlcad/lib/libTktable.so /opt/brlcad/lib/libTktable.so.2.10 /opt/brlcad/lib/libanalyze.so /opt/brlcad/lib/libanalyze.so.20 /opt/brlcad/lib/libanalyze.so.20.0.1 /opt/brlcad/lib/libbase.so /opt/brlcad/lib/libbase.so.2 /opt/brlcad/lib/libbase.so.2.0.0 /opt/brlcad/lib/libbg.so /opt/brlcad/lib/libbg.so.20 /opt/brlcad/lib/libbg.so.20.0.1 /opt/brlcad/lib/libbn.so /opt/brlcad/lib/libbn.so.20 /opt/brlcad/lib/libbn.so.20.0.1 /opt/brlcad/lib/libbrep.so /opt/brlcad/lib/libbrep.so.20 /opt/brlcad/lib/libbrep.so.20.0.1 /opt/brlcad/lib/libbu.so /opt/brlcad/lib/libbu.so.20 /opt/brlcad/lib/libbu.so.20.0.1 /opt/brlcad/lib/libclipper.so /opt/brlcad/lib/libclipper.so.4 /opt/brlcad/lib/libclipper.so.4.6.0 /opt/brlcad/lib/libcursor.so /opt/brlcad/lib/libcursor.so.20 /opt/brlcad/lib/libcursor.so.20.0.1 /opt/brlcad/lib/libdm.so /opt/brlcad/lib/libdm.so.20 /opt/brlcad/lib/libdm.so.20.0.1 /opt/brlcad/lib/libexppp.so /opt/brlcad/lib/libexppp.so.2 /opt/brlcad/lib/libexppp.so.2.0.0 /opt/brlcad/lib/libexpress.so /opt/brlcad/lib/libexpress.so.2 /opt/brlcad/lib/libexpress.so.2.0.0 /opt/brlcad/lib/libfb.so /opt/brlcad/lib/libfb.so.20 /opt/brlcad/lib/libfb.so.20.0.1 /opt/brlcad/lib/libfft.so /opt/brlcad/lib/libfft.so.20 /opt/brlcad/lib/libfft.so.20.0.1 /opt/brlcad/lib/libfreetype.so /opt/brlcad/lib/libfreetype.so.2.5.5 /opt/brlcad/lib/libfreetype.so.6 /opt/brlcad/lib/libgcv.so /opt/brlcad/lib/libgcv.so.20 /opt/brlcad/lib/libgcv.so.20.0.1 /opt/brlcad/lib/libgcv_plugins /opt/brlcad/lib/libgcv_plugins/libgcv_decimate.so /opt/brlcad/lib/libgcv_plugins/libgcv_fastgen4.so /opt/brlcad/lib/libgcv_plugins/libgcv_obj.so /opt/brlcad/lib/libgcv_plugins/libgcv_rhino.so /opt/brlcad/lib/libgcv_plugins/libgcv_stl.so /opt/brlcad/lib/libgcv_plugins/libgcv_vrml.so /opt/brlcad/lib/libgdiam.so /opt/brlcad/lib/libged.so /opt/brlcad/lib/libged.so.20 /opt/brlcad/lib/libged.so.20.0.1 /opt/brlcad/lib/libicv.so /opt/brlcad/lib/libicv.so.20 /opt/brlcad/lib/libicv.so.20.0.1 /opt/brlcad/lib/libitcl.so /opt/brlcad/lib/libitcl.so.3 /opt/brlcad/lib/libitcl.so.3.4 /opt/brlcad/lib/libitclstub.a /opt/brlcad/lib/libitk.so /opt/brlcad/lib/libitk.so.3 /opt/brlcad/lib/libitk.so.3.4 /opt/brlcad/lib/libitkstub.a /opt/brlcad/lib/libmultispectral.so /opt/brlcad/lib/libmultispectral.so.20 /opt/brlcad/lib/libmultispectral.so.20.0.1 /opt/brlcad/lib/libnetpbm.so /opt/brlcad/lib/libopenNURBS.so /opt/brlcad/lib/libopenNURBS.so.2012.10.245 /opt/brlcad/lib/liboptical.so /opt/brlcad/lib/liboptical.so.20 /opt/brlcad/lib/liboptical.so.20.0.1 /opt/brlcad/lib/libp2t.so /opt/brlcad/lib/libp2t.so.1 /opt/brlcad/lib/libp2t.so.1.0.1 /opt/brlcad/lib/libpkg.so /opt/brlcad/lib/libpkg.so.20 /opt/brlcad/lib/libpkg.so.20.0.1 /opt/brlcad/lib/libpng.a /opt/brlcad/lib/libpng.so /opt/brlcad/lib/libpng16.a /opt/brlcad/lib/libpng16.so /opt/brlcad/lib/libpng16.so.16 /opt/brlcad/lib/libpng16.so.16.20.0 /opt/brlcad/lib/libregex.a /opt/brlcad/lib/libregex.so /opt/brlcad/lib/libregex.so.1 /opt/brlcad/lib/libregex.so.1.0.4 /opt/brlcad/lib/librender.so /opt/brlcad/lib/librender.so.20 /opt/brlcad/lib/librender.so.20.0.1 /opt/brlcad/lib/librply.so /opt/brlcad/lib/librt.so /opt/brlcad/lib/librt.so.20 /opt/brlcad/lib/librt.so.20.0.1 /opt/brlcad/lib/libstdvds.so /opt/brlcad/lib/libstdvds.so.1 /opt/brlcad/lib/libstdvds.so.1.0.1 /opt/brlcad/lib/libstepcore.so /opt/brlcad/lib/libstepcore.so.2 /opt/brlcad/lib/libstepcore.so.2.0.0 /opt/brlcad/lib/libstepdai.so /opt/brlcad/lib/libstepdai.so.2 /opt/brlcad/lib/libstepdai.so.2.0.0 /opt/brlcad/lib/libstepeditor.so /opt/brlcad/lib/libstepeditor.so.2 /opt/brlcad/lib/libstepeditor.so.2.0.0 /opt/brlcad/lib/libsteplazyfile.so /opt/brlcad/lib/libsteplazyfile.so.2 /opt/brlcad/lib/libsteplazyfile.so.2.0.0 /opt/brlcad/lib/libsteputils.so /opt/brlcad/lib/libsteputils.so.2 /opt/brlcad/lib/libsteputils.so.2.0.0 /opt/brlcad/lib/libtcl.so /opt/brlcad/lib/libtcl.so.8.5 /opt/brlcad/lib/libtcl.so.8.5.9 /opt/brlcad/lib/libtclcad.so /opt/brlcad/lib/libtclcad.so.20 /opt/brlcad/lib/libtclcad.so.20.0.1 /opt/brlcad/lib/libtclstub.a /opt/brlcad/lib/libtermio.so /opt/brlcad/lib/libtermio.so.20 /opt/brlcad/lib/libtermio.so.20.0.1 /opt/brlcad/lib/libtermlib.a /opt/brlcad/lib/libtermlib.so /opt/brlcad/lib/libtermlib.so.1 /opt/brlcad/lib/libtermlib.so.1.7.1 /opt/brlcad/lib/libtinycthread.so /opt/brlcad/lib/libtk.so /opt/brlcad/lib/libtk.so.8.5 /opt/brlcad/lib/libtkpng.so /opt/brlcad/lib/libtkpng.so.0.8 /opt/brlcad/lib/libtkstub.a /opt/brlcad/lib/libutahrle.a /opt/brlcad/lib/libutahrle.so /opt/brlcad/lib/libutahrle.so.19 /opt/brlcad/lib/libutahrle.so.19.0.1 /opt/brlcad/lib/libvds.so /opt/brlcad/lib/libvds.so.1 /opt/brlcad/lib/libvds.so.1.0.1 /opt/brlcad/lib/libwdb.so /opt/brlcad/lib/libwdb.so.20 /opt/brlcad/lib/libwdb.so.20.0.1 /opt/brlcad/lib/libwfobj.so /opt/brlcad/lib/libwfobj.so.20 /opt/brlcad/lib/libwfobj.so.20.0.1 /opt/brlcad/lib/liby2038.so /opt/brlcad/lib/libz.so /opt/brlcad/lib/libz.so.1 /opt/brlcad/lib/libz.so.1.2.5 /opt/brlcad/lib/pkgconfig /opt/brlcad/lib/pkgconfig/libanalyze.pc /opt/brlcad/lib/pkgconfig/libbn.pc /opt/brlcad/lib/pkgconfig/libbrlcad.pc /opt/brlcad/lib/pkgconfig/libbu.pc /opt/brlcad/lib/pkgconfig/libdm.pc /opt/brlcad/lib/pkgconfig/libfb.pc /opt/brlcad/lib/pkgconfig/libfft.pc /opt/brlcad/lib/pkgconfig/libgcv.pc /opt/brlcad/lib/pkgconfig/libged.pc /opt/brlcad/lib/pkgconfig/libgm.pc /opt/brlcad/lib/pkgconfig/libicv.pc /opt/brlcad/lib/pkgconfig/libmultispectral.pc /opt/brlcad/lib/pkgconfig/liboptical.pc /opt/brlcad/lib/pkgconfig/libpc.pc /opt/brlcad/lib/pkgconfig/libpkg.pc /opt/brlcad/lib/pkgconfig/librt.pc /opt/brlcad/lib/pkgconfig/libwdb.pc /opt/brlcad/lib/tcl8 /opt/brlcad/lib/tcl8.5 /opt/brlcad/lib/tcl8.5/auto.tcl /opt/brlcad/lib/tcl8.5/clock.tcl /opt/brlcad/lib/tcl8.5/encoding /opt/brlcad/lib/tcl8.5/encoding/ascii.enc /opt/brlcad/lib/tcl8.5/encoding/big5.enc /opt/brlcad/lib/tcl8.5/encoding/cp1250.enc /opt/brlcad/lib/tcl8.5/encoding/cp1251.enc /opt/brlcad/lib/tcl8.5/encoding/cp1252.enc /opt/brlcad/lib/tcl8.5/encoding/cp1253.enc /opt/brlcad/lib/tcl8.5/encoding/cp1254.enc /opt/brlcad/lib/tcl8.5/encoding/cp1255.enc /opt/brlcad/lib/tcl8.5/encoding/cp1256.enc /opt/brlcad/lib/tcl8.5/encoding/cp1257.enc /opt/brlcad/lib/tcl8.5/encoding/cp1258.enc /opt/brlcad/lib/tcl8.5/encoding/cp437.enc /opt/brlcad/lib/tcl8.5/encoding/cp737.enc /opt/brlcad/lib/tcl8.5/encoding/cp775.enc /opt/brlcad/lib/tcl8.5/encoding/cp850.enc /opt/brlcad/lib/tcl8.5/encoding/cp852.enc /opt/brlcad/lib/tcl8.5/encoding/cp855.enc /opt/brlcad/lib/tcl8.5/encoding/cp857.enc /opt/brlcad/lib/tcl8.5/encoding/cp860.enc /opt/brlcad/lib/tcl8.5/encoding/cp861.enc /opt/brlcad/lib/tcl8.5/encoding/cp862.enc /opt/brlcad/lib/tcl8.5/encoding/cp863.enc /opt/brlcad/lib/tcl8.5/encoding/cp864.enc /opt/brlcad/lib/tcl8.5/encoding/cp865.enc /opt/brlcad/lib/tcl8.5/encoding/cp866.enc /opt/brlcad/lib/tcl8.5/encoding/cp869.enc /opt/brlcad/lib/tcl8.5/encoding/cp874.enc /opt/brlcad/lib/tcl8.5/encoding/cp932.enc /opt/brlcad/lib/tcl8.5/encoding/cp936.enc /opt/brlcad/lib/tcl8.5/encoding/cp949.enc /opt/brlcad/lib/tcl8.5/encoding/cp950.enc /opt/brlcad/lib/tcl8.5/encoding/dingbats.enc /opt/brlcad/lib/tcl8.5/encoding/ebcdic.enc /opt/brlcad/lib/tcl8.5/encoding/euc-cn.enc /opt/brlcad/lib/tcl8.5/encoding/euc-jp.enc /opt/brlcad/lib/tcl8.5/encoding/euc-kr.enc /opt/brlcad/lib/tcl8.5/encoding/gb12345.enc /opt/brlcad/lib/tcl8.5/encoding/gb1988.enc /opt/brlcad/lib/tcl8.5/encoding/gb2312-raw.enc /opt/brlcad/lib/tcl8.5/encoding/gb2312.enc /opt/brlcad/lib/tcl8.5/encoding/iso2022-jp.enc /opt/brlcad/lib/tcl8.5/encoding/iso2022-kr.enc /opt/brlcad/lib/tcl8.5/encoding/iso2022.enc /opt/brlcad/lib/tcl8.5/encoding/iso8859-1.enc /opt/brlcad/lib/tcl8.5/encoding/iso8859-10.enc /opt/brlcad/lib/tcl8.5/encoding/iso8859-13.enc /opt/brlcad/lib/tcl8.5/encoding/iso8859-14.enc /opt/brlcad/lib/tcl8.5/encoding/iso8859-15.enc /opt/brlcad/lib/tcl8.5/encoding/iso8859-16.enc /opt/brlcad/lib/tcl8.5/encoding/iso8859-2.enc /opt/brlcad/lib/tcl8.5/encoding/iso8859-3.enc /opt/brlcad/lib/tcl8.5/encoding/iso8859-4.enc /opt/brlcad/lib/tcl8.5/encoding/iso8859-5.enc /opt/brlcad/lib/tcl8.5/encoding/iso8859-6.enc /opt/brlcad/lib/tcl8.5/encoding/iso8859-7.enc /opt/brlcad/lib/tcl8.5/encoding/iso8859-8.enc /opt/brlcad/lib/tcl8.5/encoding/iso8859-9.enc /opt/brlcad/lib/tcl8.5/encoding/jis0201.enc /opt/brlcad/lib/tcl8.5/encoding/jis0208.enc /opt/brlcad/lib/tcl8.5/encoding/jis0212.enc /opt/brlcad/lib/tcl8.5/encoding/koi8-r.enc /opt/brlcad/lib/tcl8.5/encoding/koi8-u.enc /opt/brlcad/lib/tcl8.5/encoding/ksc5601.enc /opt/brlcad/lib/tcl8.5/encoding/macCentEuro.enc /opt/brlcad/lib/tcl8.5/encoding/macCroatian.enc /opt/brlcad/lib/tcl8.5/encoding/macCyrillic.enc /opt/brlcad/lib/tcl8.5/encoding/macDingbats.enc /opt/brlcad/lib/tcl8.5/encoding/macGreek.enc /opt/brlcad/lib/tcl8.5/encoding/macIceland.enc /opt/brlcad/lib/tcl8.5/encoding/macJapan.enc /opt/brlcad/lib/tcl8.5/encoding/macRoman.enc /opt/brlcad/lib/tcl8.5/encoding/macRomania.enc /opt/brlcad/lib/tcl8.5/encoding/macThai.enc /opt/brlcad/lib/tcl8.5/encoding/macTurkish.enc /opt/brlcad/lib/tcl8.5/encoding/macUkraine.enc /opt/brlcad/lib/tcl8.5/encoding/shiftjis.enc /opt/brlcad/lib/tcl8.5/encoding/symbol.enc /opt/brlcad/lib/tcl8.5/encoding/tis-620.enc /opt/brlcad/lib/tcl8.5/history.tcl /opt/brlcad/lib/tcl8.5/http1.0 /opt/brlcad/lib/tcl8.5/http1.0/http.tcl /opt/brlcad/lib/tcl8.5/http1.0/pkgIndex.tcl /opt/brlcad/lib/tcl8.5/init.tcl /opt/brlcad/lib/tcl8.5/msgs /opt/brlcad/lib/tcl8.5/msgs/af.msg /opt/brlcad/lib/tcl8.5/msgs/af_za.msg /opt/brlcad/lib/tcl8.5/msgs/ar.msg /opt/brlcad/lib/tcl8.5/msgs/ar_in.msg /opt/brlcad/lib/tcl8.5/msgs/ar_jo.msg /opt/brlcad/lib/tcl8.5/msgs/ar_lb.msg /opt/brlcad/lib/tcl8.5/msgs/ar_sy.msg /opt/brlcad/lib/tcl8.5/msgs/be.msg /opt/brlcad/lib/tcl8.5/msgs/bg.msg /opt/brlcad/lib/tcl8.5/msgs/bn.msg /opt/brlcad/lib/tcl8.5/msgs/bn_in.msg /opt/brlcad/lib/tcl8.5/msgs/ca.msg /opt/brlcad/lib/tcl8.5/msgs/cs.msg /opt/brlcad/lib/tcl8.5/msgs/da.msg /opt/brlcad/lib/tcl8.5/msgs/de.msg /opt/brlcad/lib/tcl8.5/msgs/de_at.msg /opt/brlcad/lib/tcl8.5/msgs/de_be.msg /opt/brlcad/lib/tcl8.5/msgs/el.msg /opt/brlcad/lib/tcl8.5/msgs/en_au.msg /opt/brlcad/lib/tcl8.5/msgs/en_be.msg /opt/brlcad/lib/tcl8.5/msgs/en_bw.msg /opt/brlcad/lib/tcl8.5/msgs/en_ca.msg /opt/brlcad/lib/tcl8.5/msgs/en_gb.msg /opt/brlcad/lib/tcl8.5/msgs/en_hk.msg /opt/brlcad/lib/tcl8.5/msgs/en_ie.msg /opt/brlcad/lib/tcl8.5/msgs/en_in.msg /opt/brlcad/lib/tcl8.5/msgs/en_nz.msg /opt/brlcad/lib/tcl8.5/msgs/en_ph.msg /opt/brlcad/lib/tcl8.5/msgs/en_sg.msg /opt/brlcad/lib/tcl8.5/msgs/en_za.msg /opt/brlcad/lib/tcl8.5/msgs/en_zw.msg /opt/brlcad/lib/tcl8.5/msgs/eo.msg /opt/brlcad/lib/tcl8.5/msgs/es.msg /opt/brlcad/lib/tcl8.5/msgs/es_ar.msg /opt/brlcad/lib/tcl8.5/msgs/es_bo.msg /opt/brlcad/lib/tcl8.5/msgs/es_cl.msg /opt/brlcad/lib/tcl8.5/msgs/es_co.msg /opt/brlcad/lib/tcl8.5/msgs/es_cr.msg /opt/brlcad/lib/tcl8.5/msgs/es_do.msg /opt/brlcad/lib/tcl8.5/msgs/es_ec.msg /opt/brlcad/lib/tcl8.5/msgs/es_gt.msg /opt/brlcad/lib/tcl8.5/msgs/es_hn.msg /opt/brlcad/lib/tcl8.5/msgs/es_mx.msg /opt/brlcad/lib/tcl8.5/msgs/es_ni.msg /opt/brlcad/lib/tcl8.5/msgs/es_pa.msg /opt/brlcad/lib/tcl8.5/msgs/es_pe.msg /opt/brlcad/lib/tcl8.5/msgs/es_pr.msg /opt/brlcad/lib/tcl8.5/msgs/es_py.msg /opt/brlcad/lib/tcl8.5/msgs/es_sv.msg /opt/brlcad/lib/tcl8.5/msgs/es_uy.msg /opt/brlcad/lib/tcl8.5/msgs/es_ve.msg /opt/brlcad/lib/tcl8.5/msgs/et.msg /opt/brlcad/lib/tcl8.5/msgs/eu.msg /opt/brlcad/lib/tcl8.5/msgs/eu_es.msg /opt/brlcad/lib/tcl8.5/msgs/fa.msg /opt/brlcad/lib/tcl8.5/msgs/fa_in.msg /opt/brlcad/lib/tcl8.5/msgs/fa_ir.msg /opt/brlcad/lib/tcl8.5/msgs/fi.msg /opt/brlcad/lib/tcl8.5/msgs/fo.msg /opt/brlcad/lib/tcl8.5/msgs/fo_fo.msg /opt/brlcad/lib/tcl8.5/msgs/fr.msg /opt/brlcad/lib/tcl8.5/msgs/fr_be.msg /opt/brlcad/lib/tcl8.5/msgs/fr_ca.msg /opt/brlcad/lib/tcl8.5/msgs/fr_ch.msg /opt/brlcad/lib/tcl8.5/msgs/ga.msg /opt/brlcad/lib/tcl8.5/msgs/ga_ie.msg /opt/brlcad/lib/tcl8.5/msgs/gl.msg /opt/brlcad/lib/tcl8.5/msgs/gl_es.msg /opt/brlcad/lib/tcl8.5/msgs/gv.msg /opt/brlcad/lib/tcl8.5/msgs/gv_gb.msg /opt/brlcad/lib/tcl8.5/msgs/he.msg /opt/brlcad/lib/tcl8.5/msgs/hi.msg /opt/brlcad/lib/tcl8.5/msgs/hi_in.msg /opt/brlcad/lib/tcl8.5/msgs/hr.msg /opt/brlcad/lib/tcl8.5/msgs/hu.msg /opt/brlcad/lib/tcl8.5/msgs/id.msg /opt/brlcad/lib/tcl8.5/msgs/id_id.msg /opt/brlcad/lib/tcl8.5/msgs/is.msg /opt/brlcad/lib/tcl8.5/msgs/it.msg /opt/brlcad/lib/tcl8.5/msgs/it_ch.msg /opt/brlcad/lib/tcl8.5/msgs/ja.msg /opt/brlcad/lib/tcl8.5/msgs/kl.msg /opt/brlcad/lib/tcl8.5/msgs/kl_gl.msg /opt/brlcad/lib/tcl8.5/msgs/ko.msg /opt/brlcad/lib/tcl8.5/msgs/ko_kr.msg /opt/brlcad/lib/tcl8.5/msgs/kok.msg /opt/brlcad/lib/tcl8.5/msgs/kok_in.msg /opt/brlcad/lib/tcl8.5/msgs/kw.msg /opt/brlcad/lib/tcl8.5/msgs/kw_gb.msg /opt/brlcad/lib/tcl8.5/msgs/lt.msg /opt/brlcad/lib/tcl8.5/msgs/lv.msg /opt/brlcad/lib/tcl8.5/msgs/mk.msg /opt/brlcad/lib/tcl8.5/msgs/mr.msg /opt/brlcad/lib/tcl8.5/msgs/mr_in.msg /opt/brlcad/lib/tcl8.5/msgs/ms.msg /opt/brlcad/lib/tcl8.5/msgs/ms_my.msg /opt/brlcad/lib/tcl8.5/msgs/mt.msg /opt/brlcad/lib/tcl8.5/msgs/nb.msg /opt/brlcad/lib/tcl8.5/msgs/nl.msg /opt/brlcad/lib/tcl8.5/msgs/nl_be.msg /opt/brlcad/lib/tcl8.5/msgs/nn.msg /opt/brlcad/lib/tcl8.5/msgs/pl.msg /opt/brlcad/lib/tcl8.5/msgs/pt.msg /opt/brlcad/lib/tcl8.5/msgs/pt_br.msg /opt/brlcad/lib/tcl8.5/msgs/ro.msg /opt/brlcad/lib/tcl8.5/msgs/ru.msg /opt/brlcad/lib/tcl8.5/msgs/ru_ua.msg /opt/brlcad/lib/tcl8.5/msgs/sh.msg /opt/brlcad/lib/tcl8.5/msgs/sk.msg /opt/brlcad/lib/tcl8.5/msgs/sl.msg /opt/brlcad/lib/tcl8.5/msgs/sq.msg /opt/brlcad/lib/tcl8.5/msgs/sr.msg /opt/brlcad/lib/tcl8.5/msgs/sv.msg /opt/brlcad/lib/tcl8.5/msgs/sw.msg /opt/brlcad/lib/tcl8.5/msgs/ta.msg /opt/brlcad/lib/tcl8.5/msgs/ta_in.msg /opt/brlcad/lib/tcl8.5/msgs/te.msg /opt/brlcad/lib/tcl8.5/msgs/te_in.msg /opt/brlcad/lib/tcl8.5/msgs/th.msg /opt/brlcad/lib/tcl8.5/msgs/tr.msg /opt/brlcad/lib/tcl8.5/msgs/uk.msg /opt/brlcad/lib/tcl8.5/msgs/vi.msg /opt/brlcad/lib/tcl8.5/msgs/zh.msg /opt/brlcad/lib/tcl8.5/msgs/zh_cn.msg /opt/brlcad/lib/tcl8.5/msgs/zh_hk.msg /opt/brlcad/lib/tcl8.5/msgs/zh_sg.msg /opt/brlcad/lib/tcl8.5/msgs/zh_tw.msg /opt/brlcad/lib/tcl8.5/opt0.4 /opt/brlcad/lib/tcl8.5/opt0.4/optparse.tcl /opt/brlcad/lib/tcl8.5/opt0.4/pkgIndex.tcl /opt/brlcad/lib/tcl8.5/package.tcl /opt/brlcad/lib/tcl8.5/parray.tcl /opt/brlcad/lib/tcl8.5/safe.tcl /opt/brlcad/lib/tcl8.5/tclAppInit.c /opt/brlcad/lib/tcl8.5/tclIndex /opt/brlcad/lib/tcl8.5/tm.tcl /opt/brlcad/lib/tcl8.5/word.tcl /opt/brlcad/lib/tcl8/8.4 /opt/brlcad/lib/tcl8/8.4/http-2.7.5.tm /opt/brlcad/lib/tcl8/8.4/platform /opt/brlcad/lib/tcl8/8.4/platform-1.0.9.tm /opt/brlcad/lib/tcl8/8.4/platform/shell-1.1.4.tm /opt/brlcad/lib/tcl8/8.5 /opt/brlcad/lib/tcl8/8.5/msgcat-1.4.3.tm /opt/brlcad/lib/tcl8/8.5/tcltest-2.3.2.tm /opt/brlcad/lib/tk8.5 /opt/brlcad/lib/tk8.5.9 /opt/brlcad/lib/tk8.5.9/tkAppInit.c /opt/brlcad/lib/tk8.5/bgerror.tcl /opt/brlcad/lib/tk8.5/button.tcl /opt/brlcad/lib/tk8.5/choosedir.tcl /opt/brlcad/lib/tk8.5/clrpick.tcl /opt/brlcad/lib/tk8.5/comdlg.tcl /opt/brlcad/lib/tk8.5/console.tcl /opt/brlcad/lib/tk8.5/demos /opt/brlcad/lib/tk8.5/demos/README /opt/brlcad/lib/tk8.5/demos/anilabel.tcl /opt/brlcad/lib/tk8.5/demos/aniwave.tcl /opt/brlcad/lib/tk8.5/demos/arrow.tcl /opt/brlcad/lib/tk8.5/demos/bind.tcl /opt/brlcad/lib/tk8.5/demos/bitmap.tcl /opt/brlcad/lib/tk8.5/demos/browse /opt/brlcad/lib/tk8.5/demos/button.tcl /opt/brlcad/lib/tk8.5/demos/check.tcl /opt/brlcad/lib/tk8.5/demos/clrpick.tcl /opt/brlcad/lib/tk8.5/demos/colors.tcl /opt/brlcad/lib/tk8.5/demos/combo.tcl /opt/brlcad/lib/tk8.5/demos/cscroll.tcl /opt/brlcad/lib/tk8.5/demos/ctext.tcl /opt/brlcad/lib/tk8.5/demos/dialog1.tcl /opt/brlcad/lib/tk8.5/demos/dialog2.tcl /opt/brlcad/lib/tk8.5/demos/en.msg /opt/brlcad/lib/tk8.5/demos/entry1.tcl /opt/brlcad/lib/tk8.5/demos/entry2.tcl /opt/brlcad/lib/tk8.5/demos/entry3.tcl /opt/brlcad/lib/tk8.5/demos/filebox.tcl /opt/brlcad/lib/tk8.5/demos/floor.tcl /opt/brlcad/lib/tk8.5/demos/form.tcl /opt/brlcad/lib/tk8.5/demos/goldberg.tcl /opt/brlcad/lib/tk8.5/demos/hello /opt/brlcad/lib/tk8.5/demos/hscale.tcl /opt/brlcad/lib/tk8.5/demos/icon.tcl /opt/brlcad/lib/tk8.5/demos/image1.tcl /opt/brlcad/lib/tk8.5/demos/image2.tcl /opt/brlcad/lib/tk8.5/demos/images /opt/brlcad/lib/tk8.5/demos/images/earth.gif /opt/brlcad/lib/tk8.5/demos/images/earthris.gif /opt/brlcad/lib/tk8.5/demos/images/face.xbm /opt/brlcad/lib/tk8.5/demos/images/flagdown.xbm /opt/brlcad/lib/tk8.5/demos/images/flagup.xbm /opt/brlcad/lib/tk8.5/demos/images/gray25.xbm /opt/brlcad/lib/tk8.5/demos/images/letters.xbm /opt/brlcad/lib/tk8.5/demos/images/noletter.xbm /opt/brlcad/lib/tk8.5/demos/images/pattern.xbm /opt/brlcad/lib/tk8.5/demos/images/tcllogo.gif /opt/brlcad/lib/tk8.5/demos/images/teapot.ppm /opt/brlcad/lib/tk8.5/demos/items.tcl /opt/brlcad/lib/tk8.5/demos/ixset /opt/brlcad/lib/tk8.5/demos/knightstour.tcl /opt/brlcad/lib/tk8.5/demos/label.tcl /opt/brlcad/lib/tk8.5/demos/labelframe.tcl /opt/brlcad/lib/tk8.5/demos/license.terms /opt/brlcad/lib/tk8.5/demos/mclist.tcl /opt/brlcad/lib/tk8.5/demos/menu.tcl /opt/brlcad/lib/tk8.5/demos/menubu.tcl /opt/brlcad/lib/tk8.5/demos/msgbox.tcl /opt/brlcad/lib/tk8.5/demos/nl.msg /opt/brlcad/lib/tk8.5/demos/paned1.tcl /opt/brlcad/lib/tk8.5/demos/paned2.tcl /opt/brlcad/lib/tk8.5/demos/pendulum.tcl /opt/brlcad/lib/tk8.5/demos/plot.tcl /opt/brlcad/lib/tk8.5/demos/puzzle.tcl /opt/brlcad/lib/tk8.5/demos/radio.tcl /opt/brlcad/lib/tk8.5/demos/rmt /opt/brlcad/lib/tk8.5/demos/rolodex /opt/brlcad/lib/tk8.5/demos/ruler.tcl /opt/brlcad/lib/tk8.5/demos/sayings.tcl /opt/brlcad/lib/tk8.5/demos/search.tcl /opt/brlcad/lib/tk8.5/demos/spin.tcl /opt/brlcad/lib/tk8.5/demos/square /opt/brlcad/lib/tk8.5/demos/states.tcl /opt/brlcad/lib/tk8.5/demos/style.tcl /opt/brlcad/lib/tk8.5/demos/tclIndex /opt/brlcad/lib/tk8.5/demos/tcolor /opt/brlcad/lib/tk8.5/demos/text.tcl /opt/brlcad/lib/tk8.5/demos/textpeer.tcl /opt/brlcad/lib/tk8.5/demos/timer /opt/brlcad/lib/tk8.5/demos/toolbar.tcl /opt/brlcad/lib/tk8.5/demos/tree.tcl /opt/brlcad/lib/tk8.5/demos/ttkbut.tcl /opt/brlcad/lib/tk8.5/demos/ttkmenu.tcl /opt/brlcad/lib/tk8.5/demos/ttknote.tcl /opt/brlcad/lib/tk8.5/demos/ttkpane.tcl /opt/brlcad/lib/tk8.5/demos/ttkprogress.tcl /opt/brlcad/lib/tk8.5/demos/ttkscale.tcl /opt/brlcad/lib/tk8.5/demos/twind.tcl /opt/brlcad/lib/tk8.5/demos/unicodeout.tcl /opt/brlcad/lib/tk8.5/demos/vscale.tcl /opt/brlcad/lib/tk8.5/demos/widget /opt/brlcad/lib/tk8.5/dialog.tcl /opt/brlcad/lib/tk8.5/entry.tcl /opt/brlcad/lib/tk8.5/focus.tcl /opt/brlcad/lib/tk8.5/images /opt/brlcad/lib/tk8.5/images/README /opt/brlcad/lib/tk8.5/images/logo.eps /opt/brlcad/lib/tk8.5/images/logo100.gif /opt/brlcad/lib/tk8.5/images/logo64.gif /opt/brlcad/lib/tk8.5/images/logoLarge.gif /opt/brlcad/lib/tk8.5/images/logoMed.gif /opt/brlcad/lib/tk8.5/images/pwrdLogo.eps /opt/brlcad/lib/tk8.5/images/pwrdLogo100.gif /opt/brlcad/lib/tk8.5/images/pwrdLogo150.gif /opt/brlcad/lib/tk8.5/images/pwrdLogo175.gif /opt/brlcad/lib/tk8.5/images/pwrdLogo200.gif /opt/brlcad/lib/tk8.5/images/pwrdLogo75.gif /opt/brlcad/lib/tk8.5/images/tai-ku.gif /opt/brlcad/lib/tk8.5/listbox.tcl /opt/brlcad/lib/tk8.5/menu.tcl /opt/brlcad/lib/tk8.5/mkpsenc.tcl /opt/brlcad/lib/tk8.5/msgbox.tcl /opt/brlcad/lib/tk8.5/msgs /opt/brlcad/lib/tk8.5/msgs/cs.msg /opt/brlcad/lib/tk8.5/msgs/da.msg /opt/brlcad/lib/tk8.5/msgs/de.msg /opt/brlcad/lib/tk8.5/msgs/el.msg /opt/brlcad/lib/tk8.5/msgs/en.msg /opt/brlcad/lib/tk8.5/msgs/en_gb.msg /opt/brlcad/lib/tk8.5/msgs/eo.msg /opt/brlcad/lib/tk8.5/msgs/es.msg /opt/brlcad/lib/tk8.5/msgs/fr.msg /opt/brlcad/lib/tk8.5/msgs/hu.msg /opt/brlcad/lib/tk8.5/msgs/it.msg /opt/brlcad/lib/tk8.5/msgs/nl.msg /opt/brlcad/lib/tk8.5/msgs/pl.msg /opt/brlcad/lib/tk8.5/msgs/pt.msg /opt/brlcad/lib/tk8.5/msgs/ru.msg /opt/brlcad/lib/tk8.5/msgs/sv.msg /opt/brlcad/lib/tk8.5/obsolete.tcl /opt/brlcad/lib/tk8.5/optMenu.tcl /opt/brlcad/lib/tk8.5/palette.tcl /opt/brlcad/lib/tk8.5/panedwindow.tcl /opt/brlcad/lib/tk8.5/prolog.ps /opt/brlcad/lib/tk8.5/safetk.tcl /opt/brlcad/lib/tk8.5/scale.tcl /opt/brlcad/lib/tk8.5/scrlbar.tcl /opt/brlcad/lib/tk8.5/spinbox.tcl /opt/brlcad/lib/tk8.5/tclIndex /opt/brlcad/lib/tk8.5/tearoff.tcl /opt/brlcad/lib/tk8.5/text.tcl /opt/brlcad/lib/tk8.5/tk.tcl /opt/brlcad/lib/tk8.5/tkfbox.tcl /opt/brlcad/lib/tk8.5/ttk /opt/brlcad/lib/tk8.5/ttk/altTheme.tcl /opt/brlcad/lib/tk8.5/ttk/aquaTheme.tcl /opt/brlcad/lib/tk8.5/ttk/button.tcl /opt/brlcad/lib/tk8.5/ttk/clamTheme.tcl /opt/brlcad/lib/tk8.5/ttk/classicTheme.tcl /opt/brlcad/lib/tk8.5/ttk/combobox.tcl /opt/brlcad/lib/tk8.5/ttk/cursors.tcl /opt/brlcad/lib/tk8.5/ttk/defaults.tcl /opt/brlcad/lib/tk8.5/ttk/entry.tcl /opt/brlcad/lib/tk8.5/ttk/fonts.tcl /opt/brlcad/lib/tk8.5/ttk/menubutton.tcl /opt/brlcad/lib/tk8.5/ttk/notebook.tcl /opt/brlcad/lib/tk8.5/ttk/panedwindow.tcl /opt/brlcad/lib/tk8.5/ttk/progress.tcl /opt/brlcad/lib/tk8.5/ttk/scale.tcl /opt/brlcad/lib/tk8.5/ttk/scrollbar.tcl /opt/brlcad/lib/tk8.5/ttk/sizegrip.tcl /opt/brlcad/lib/tk8.5/ttk/spinbox.tcl /opt/brlcad/lib/tk8.5/ttk/treeview.tcl /opt/brlcad/lib/tk8.5/ttk/ttk.tcl /opt/brlcad/lib/tk8.5/ttk/utils.tcl /opt/brlcad/lib/tk8.5/ttk/vistaTheme.tcl /opt/brlcad/lib/tk8.5/ttk/winTheme.tcl /opt/brlcad/lib/tk8.5/ttk/xpTheme.tcl /opt/brlcad/lib/tk8.5/unsupported.tcl /opt/brlcad/lib/tk8.5/xmfbox.tcl /opt/brlcad/lib/tkpng0.8 /opt/brlcad/lib/tkpng0.8/pkgIndex.tcl /opt/brlcad/share /opt/brlcad/share/AUTHORS /opt/brlcad/share/CHANGES /opt/brlcad/share/COPYING /opt/brlcad/share/HACKING /opt/brlcad/share/INSTALL /opt/brlcad/share/NEWS /opt/brlcad/share/README /opt/brlcad/share/data /opt/brlcad/share/data/GQA_SAMPLE_DENSITIES /opt/brlcad/share/data/NIST_DENSITIES /opt/brlcad/share/db /opt/brlcad/share/db/ADA073408.g /opt/brlcad/share/db/Business_Jet.g /opt/brlcad/share/db/Generic_Twin.g /opt/brlcad/share/db/NIST_MBE_PMI_1.g /opt/brlcad/share/db/NIST_MBE_PMI_11.g /opt/brlcad/share/db/NIST_MBE_PMI_2.g /opt/brlcad/share/db/NIST_MBE_PMI_3.g /opt/brlcad/share/db/NIST_MBE_PMI_4.g /opt/brlcad/share/db/NIST_MBE_PMI_5.g /opt/brlcad/share/db/NIST_MBE_PMI_6.g /opt/brlcad/share/db/NIST_MBE_PMI_7-10.g /opt/brlcad/share/db/axis.g /opt/brlcad/share/db/bldg391.g /opt/brlcad/share/db/boolean-ops.g /opt/brlcad/share/db/castle.g /opt/brlcad/share/db/cornell-kunigami.g /opt/brlcad/share/db/cornell.g /opt/brlcad/share/db/cray.g /opt/brlcad/share/db/crod.g /opt/brlcad/share/db/cube.g /opt/brlcad/share/db/demo.g /opt/brlcad/share/db/galileo.g /opt/brlcad/share/db/goliath.g /opt/brlcad/share/db/havoc.g /opt/brlcad/share/db/kman.g /opt/brlcad/share/db/ktank.g /opt/brlcad/share/db/lgt-test.g /opt/brlcad/share/db/m35.g /opt/brlcad/share/db/moss.g /opt/brlcad/share/db/operators.g /opt/brlcad/share/db/pic.g /opt/brlcad/share/db/pinewood.g /opt/brlcad/share/db/prim.g /opt/brlcad/share/db/sphflake.g /opt/brlcad/share/db/star.g /opt/brlcad/share/db/tank_car.g /opt/brlcad/share/db/terra.dsp /opt/brlcad/share/db/terra.g /opt/brlcad/share/db/toyjeep.g /opt/brlcad/share/db/truck.g /opt/brlcad/share/db/wave.g /opt/brlcad/share/db/woodsman.g /opt/brlcad/share/db/world.g /opt/brlcad/share/db/xmp.g /opt/brlcad/share/doc /opt/brlcad/share/doc/BRL-CAD.bib /opt/brlcad/share/doc/IDEAS /opt/brlcad/share/doc/PROJECTS /opt/brlcad/share/doc/README.AIX /opt/brlcad/share/doc/README.BSD /opt/brlcad/share/doc/README.IRIX /opt/brlcad/share/doc/README.Linux /opt/brlcad/share/doc/README.MacOSX /opt/brlcad/share/doc/README.Solaris /opt/brlcad/share/doc/README.VAX /opt/brlcad/share/doc/README.Windows /opt/brlcad/share/doc/TODO.BREP /opt/brlcad/share/doc/TODO.shaded_displays /opt/brlcad/share/doc/anim.txt /opt/brlcad/share/doc/archer_ack.txt /opt/brlcad/share/doc/benchmark.tr /opt/brlcad/share/doc/brep.txt /opt/brlcad/share/doc/code_review.txt /opt/brlcad/share/doc/cvs.txt /opt/brlcad/share/doc/description.txt /opt/brlcad/share/doc/editors.txt /opt/brlcad/share/doc/ged.tr /opt/brlcad/share/doc/history.txt /opt/brlcad/share/doc/html /opt/brlcad/share/doc/html/ReleaseNotes /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0 /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/activem.gif /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/activep.gif /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/collapse.gif /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/expand.gif /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/first.gif /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/home.gif /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/ielogo.gif /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/img001.jpg /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/img002.jpg /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/img003.jpg /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/img004.jpg /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/img005.jpg /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/img006.jpg /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/img007.jpg /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/img008.jpg /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/img009.jpg /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/img010.jpg /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/img011.jpg /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/img012.jpg /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/img013.jpg /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/img014.jpg /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/img015.jpg /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/img016.jpg /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/img017.jpg /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/img018.jpg /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/img019.jpg /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/index.html /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/info.gif /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/last.gif /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/next.gif /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/pptani.gif /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/prev.gif /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/sld001.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/sld002.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/sld003.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/sld004.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/sld005.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/sld006.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/sld007.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/sld008.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/sld009.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/sld010.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/sld011.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/sld012.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/sld013.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/sld014.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/sld015.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/sld016.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/sld017.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/sld018.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/sld019.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/space.gif /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/text.gif /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/tsld001.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/tsld002.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/tsld003.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/tsld004.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/tsld005.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/tsld006.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/tsld007.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/tsld008.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/tsld009.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/tsld010.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/tsld011.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/tsld012.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/tsld013.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/tsld014.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/tsld015.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/tsld016.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/tsld017.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/tsld018.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/Summary/tsld019.htm /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/deprecated.html /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/index.html /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/new_cmds.html /opt/brlcad/share/doc/html/ReleaseNotes/Rel5.0/new_libs.html /opt/brlcad/share/doc/html/ReleaseNotes/Rel6.0 /opt/brlcad/share/doc/html/ReleaseNotes/Rel6.0/index.html /opt/brlcad/share/doc/html/ReleaseNotes/email2.0.html /opt/brlcad/share/doc/html/ReleaseNotes/email3.0.html /opt/brlcad/share/doc/html/ReleaseNotes/email3.1.html /opt/brlcad/share/doc/html/ReleaseNotes/email4.0.html /opt/brlcad/share/doc/html/ReleaseNotes/email4.4.html /opt/brlcad/share/doc/html/ReleaseNotes/email5.0.html /opt/brlcad/share/doc/html/ReleaseNotes/index.html /opt/brlcad/share/doc/html/articles /opt/brlcad/share/doc/html/articles/en /opt/brlcad/share/doc/html/articles/en/TEMPLATE.html /opt/brlcad/share/doc/html/articles/en/about.html /opt/brlcad/share/doc/html/articles/en/animation_tutorial.html /opt/brlcad/share/doc/html/articles/en/build_pattern.html /opt/brlcad/share/doc/html/articles/en/build_region.html /opt/brlcad/share/doc/html/articles/en/camo_shader.html /opt/brlcad/share/doc/html/articles/en/ebm_primitive.html /opt/brlcad/share/doc/html/articles/en/gcv.html /opt/brlcad/share/doc/html/articles/en/ged.html /opt/brlcad/share/doc/html/articles/en
hasher-priv: master: bytes written limit (65536 bytes) exceeded
hsh-rebuild: pkg.tar: sisyphus_check failed.
[toor@gbgb build-brlcad]$ 
===============================КОНЕЦ=================================

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [newbies] Hasher brlcad FHS violation with bytes written exceeded
  2016-11-22 15:50 [newbies] Hasher brlcad FHS violation with bytes written exceeded Константин Яблочкин
@ 2016-11-22 15:59 ` Ruslan Hihin
  2016-11-22 16:00 ` Michael Shigorin
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 16+ messages in thread
From: Ruslan Hihin @ 2016-11-22 15:59 UTC (permalink / raw)
  To: devel@ where you _can_ ask

В /opt запрещено собирать 
-- 
Простите за краткость, создано в K-9 Mail.


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [newbies] Hasher brlcad FHS violation with bytes written exceeded
  2016-11-22 15:50 [newbies] Hasher brlcad FHS violation with bytes written exceeded Константин Яблочкин
  2016-11-22 15:59 ` Ruslan Hihin
@ 2016-11-22 16:00 ` Michael Shigorin
  2016-11-22 19:10   ` Dmitry V. Levin
  2016-11-22 17:25 ` Константин Яблочкин
  2016-11-22 20:46 ` Константин Яблочкин
  3 siblings, 1 reply; 16+ messages in thread
From: Michael Shigorin @ 2016-11-22 16:00 UTC (permalink / raw)
  To: devel-newbies

On Tue, Nov 22, 2016 at 06:50:40PM +0300, Константин Яблочкин wrote:
> Почти собрался brlcad (пока не удаётся подключить qt и
> libbullet). Но в конце пишет, что /opt/brlcad/... даёт FHS
> violations, и сразу где-то переполнение:

https://lists.altlinux.org/pipermail/devel-newbies/2016-November/001041.html

> hasher-priv: master: bytes written limit (65536 bytes) exceeded
> hsh-rebuild: pkg.tar: sisyphus_check failed.

Странно, а сами точно лимиты в /etc/hasher-priv/ не трогали?

> (как я понял, там надо пятое QT, и оно ставится, но cmake его
> не находит. Надо пятое QT, судя по этой странице:
> http://brlcad.org/wiki/Convert_MGED_from_Tk_to_Qt )

(тут надо внимательней смотреть, прошу прощения, уже не сегодня...)

-- 
 ---- WBR, Michael Shigorin / http://altlinux.org
  ------ http://opennet.ru / http://anna-news.info


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [newbies] Hasher brlcad FHS violation with bytes written exceeded
  2016-11-22 15:50 [newbies] Hasher brlcad FHS violation with bytes written exceeded Константин Яблочкин
  2016-11-22 15:59 ` Ruslan Hihin
  2016-11-22 16:00 ` Michael Shigorin
@ 2016-11-22 17:25 ` Константин Яблочкин
  2016-11-22 20:46 ` Константин Яблочкин
  3 siblings, 0 replies; 16+ messages in thread
From: Константин Яблочкин @ 2016-11-22 17:25 UTC (permalink / raw)
  To: devel-newbies

Michael Shigorin wrote:
> Странно, а сами точно лимиты в /etc/hasher-priv/ не трогали?

в ту папку не заходил


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [newbies] Hasher brlcad FHS violation with bytes written exceeded
  2016-11-22 16:00 ` Michael Shigorin
@ 2016-11-22 19:10   ` Dmitry V. Levin
  0 siblings, 0 replies; 16+ messages in thread
From: Dmitry V. Levin @ 2016-11-22 19:10 UTC (permalink / raw)
  To: devel-newbies

[-- Attachment #1: Type: text/plain, Size: 699 bytes --]

On Tue, Nov 22, 2016 at 07:00:16PM +0300, Michael Shigorin wrote:
> On Tue, Nov 22, 2016 at 06:50:40PM +0300, Константин Яблочкин wrote:
> > Почти собрался brlcad (пока не удаётся подключить qt и
> > libbullet). Но в конце пишет, что /opt/brlcad/... даёт FHS
> > violations, и сразу где-то переполнение:
> 
> https://lists.altlinux.org/pipermail/devel-newbies/2016-November/001041.html
> 
> > hasher-priv: master: bytes written limit (65536 bytes) exceeded
> > hsh-rebuild: pkg.tar: sisyphus_check failed.
> 
> Странно, а сами точно лимиты в /etc/hasher-priv/ не трогали?

Нет, это размер диагностического вывода, в данном случае
от sisyphus_check, достиг лимита в 64K.


-- 
ldv

[-- Attachment #2: Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [newbies] Hasher brlcad FHS violation with bytes written exceeded
  2016-11-22 15:50 [newbies] Hasher brlcad FHS violation with bytes written exceeded Константин Яблочкин
                   ` (2 preceding siblings ...)
  2016-11-22 17:25 ` Константин Яблочкин
@ 2016-11-22 20:46 ` Константин Яблочкин
  2016-11-22 21:02   ` Константин Яблочкин
                     ` (2 more replies)
  3 siblings, 3 replies; 16+ messages in thread
From: Константин Яблочкин @ 2016-11-22 20:46 UTC (permalink / raw)
  To: devel-newbies

Собралось, но не ставится, неудовлетворимые зависимости. Далее спек и apt-get
(ставится из локального репозитория, genbasedir --bloat --progress --topdir=. x86_64 hasher)

=====СПЕК=====
Name: brlcad
Version: 7.26.0
# patch 2 altrelease 1
Release: alt2.1

Summary: BRL-CAD is a powerful open source cross-platform solid modeling system that includes interactive geometry editing, high-performance ray-tracing for rendering and geometric analysis, a system performance analysis benchmark suite, geometry libraries for application developers, and more than 30 years of active development.

License: LGPL
Group: Engineering
Url: https://brlcad.org/

Packager: Konstantin Yablochkin <yakonstb@altlinux.org>
BuildPreReq: cmake, rpm-macros-cmake, gcc5-c++, tcl-devel, tk, tklib, tcl-incrtcl-devel, tcl-incrtk-devel, tcl-togl-devel, tcl-trf-devel, tcl-blt-devel, tcl-iwidgets, tcl-img, tcl-dom-devel, libGL-devel, libX11-devel, libuuid-devel, libsocket-devel, libGLES-devel, libGLU-devel, libGLUT-devel, libGLee-devel, libGLw-devel, libQGLViewer-qt5-devel, qt5-gstreamer1-devel, libqtermwidget-qt5-devel, qt5-3d-devel, qt5-base-devel, qt5-connectivity-devel, qt5-declarative-devel, qt5-location-devel, qt5-multimedia-devel, qt5-phonon-devel, qt5-quick1-devel, qt5-quickcontrols2-devel, qt5-script-devel, qt5-sensors-devel, qt5-serialbus-devel, qt5-serialport-devel, qt5-speech-devel, qt5-svg-devel, qt5-tools-devel, qt5-wayland-devel, qt5-webchannel-devel, qt5-webengine-devel, qt5-webkit-devel, qt5-websockets-devel, qt5-x11extras-devel, qt5-xmlpatterns-devel, zlib-devel, bzlib-devel, lzlib-devel, libpng-devel, libpnglite-devel, libpng++-devel, libpcre-devel, libpcre2-devel, libpcrecpp-devel, libexpat-devel, libbullet3-devel
#BuildPreReq: cmake, rpm-macros-cmake, gcc5-c++, tcl-devel, tk, tklib, tcl-incrtcl-devel, tcl-incrtk-devel, tcl-togl-devel, tcl-trf-devel, tcl-blt-devel, tcl-iwidgets, tcl-img, tcl-dom-devel, libbullet-devel, libGL-devel, libX11-devel, libqt4-devel, libuuid-devel, libsocket-devel, libGLES-devel, libGLU-devel, libGLUT-devel, libGLee-devel, libGLw-devel
Source: brlcad-7.26.0.tar
Patch0: %name-rel-7-26-0-2.patch

%description
BRL-CAD is a powerful cross-platform Open Source combinatorial
Constructive Solid Geometry (CSG) solid modeling system that
includes interactive 3D solid geometry editing, high-performance
ray-tracing support for rendering and geometric analysis,
network-distributed framebuffer support, image and signal-processing
tools, path-tracing and photon mapping support for realistic image
synthesis, a system performance analysis benchmark suite, an
embedded scripting interface, and libraries for robust
high-performance geometric representation and analysis.

%prep
%setup
%patch0 -p0

%build

# tcl scripts start with #!/bin/sh. Replacing with #!/usr/bin/tclsh
export excl_mark='!'
mkdir tcl-origin
for i in `find -iname "*.tcl"` src/tclscripts/rtwizard/rtwizard ; do
  if test "x${i}" = "x*" ; then
    break
  fi
  j=`basename "${i}"`
  cp $i tcl-origin/
  sed -e "s/^#${excl_mark}\/bin\/sh$/#${excl_mark}\/usr\/bin\/tclsh/g" tcl-origin/${j} > ${i}
done


# manually written configure script. Also can enable things one by one. Or manually call cmake.
# can't go to /usr, it uses it's own libraries which would go into /usr/lib and potentially cause conflict (read next)
./configure --prefix=/usr/libexec/brlcad --enable-all
########cmake . -DBRLCAD_BUNDLED_LIBS=ON -DBRLCAD_ROOT_OVERRIDE=1
#########(ok, we are doing this with /usr, giving cmake override flag ()
# if --prefix=/usr, cmake will tell this:
#
#  }}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}
#
#  It is STRONGLY recommended that you DO NOT install BRL-CAD into /usr as
#  BRL-CAD provides several libraries that may conflict with other libraries
#  (e.g.  librt, libbu, libbn) on certain system configurations.
#
#  Since our libraries predate all those that we're known to conflict with and
#  are at the very core of our geometry services and project heritage, we have
#  no plans to change the names of our libraries at this time.
#
#  INSTALLING INTO /usr CAN MAKE A SYSTEM COMPLETELY UNUSABLE.  If you choose
#  to continue installing into /usr, you do so entirely at your own risk.  You
#  have been warned.
#
#  }}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}
#Call Stack (most recent call first):
#  CMakeLists.txt:204 (message)
#
#
#Pausing 15 seconds...
#CMake Error at CMakeLists.txt:154 (_message):
#  If you wish to proceed using /usr as your prefix, define
#  BRLCAD_ROOT_OVERRIDE=1 for CMake
%make_build

%install
%makeinstall_std


# create wrappers for binaries. Wrappers go into /usr/bin
mkdir -p %buildroot/usr/bin
pushd %buildroot/usr/libexec/brlcad/bin
for i in * ; do
  if test "x${i}" = "x*" ; then
    break
  fi
  case "${i}" in
    *.py) cp "${i}" %buildroot/usr/bin/
      ;;
    *)
      excl_mark='!'
      echo -en "#${excl_mark}/bin/bash\n/usr/libexec/brlcad/bin/${i} \"\$@\"\n" > %buildroot/usr/bin/${i}
      chmod +x %buildroot/usr/bin/${i}
      ;;
  esac
done
popd
####### we are installing into /usr, so no wrappers are needed. the trick is to move libs into libs/brlcad. And point executables there, which is already done by patch1 which modifies cmake files
#####pushd %buildroot/usr
#####mkdir -p brlcadkj
#####mv lib brlcad/
#####mkdir libexec
#####mv brlcad libexec/
#####popd

# change "#!/bin/sh" to "#!/usr/bin/wish" in listed files
mkdir wish-origin
for i in %buildroot/usr/libexec/brlcad/lib/tk8.5/demos/browse %buildroot/usr/libexec/brlcad/lib/tk8.5/demos/hello %buildroot/usr/libexec/brlcad/lib/tk8.5/demos/ixset %buildroot/usr/libexec/brlcad/lib/tk8.5/demos/rmt %buildroot/usr/libexec/brlcad/lib/tk8.5/demos/rolodex %buildroot/usr/libexec/brlcad/lib/tk8.5/demos/square %buildroot/usr/libexec/brlcad/lib/tk8.5/demos/tcolor %buildroot/usr/libexec/brlcad/lib/tk8.5/demos/timer %buildroot/usr/libexec/brlcad/lib/tk8.5/demos/widget ; do
  j=`basename "${i}"`
  cp ${i} wish-origin/
  excl_mark='!'
  sed -e "s/^#${excl_mark}\/bin\/sh$/#${excl_mark}\/usr\/bin\/wish/g" wish-origin/${j} > ${i}
done


# binaries won't pass test with default mode. They have /usr/libexec/brlcad/lib in RPATH
RPM_VERIFY_ELF_METHOD="relaxed"



%find_lang %name


%files -f %name.lang
%doc AUTHORS ChangeLog NEWS BUGS CHANGES COPYING HACKING INSTALL README TODO
/usr/libexec/brlcad
/usr/bin/*

%changelog
* Sun Nov 20 2016 Konstantin Yabochkin <yakonstb@altlinux.org> 7.26.0-alt2.1
- initial build


====КОНЕЦ СПЕКА=====

==== ВЫВОД apt-get =====
[root@host-221 ~]# apt-get install brlcad
Reading Package Lists... Done
Building Dependency Tree... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  brlcad: Depends: tcl(ArcherCore) but it is not installable
          Depends: tcl(DbPage) but it is not installable
          Depends: tcl(ExamplePage) but it is not installable
          Depends: tcl(FbPage) but it is not installable
          Depends: tcl(FeedbackDialog) but it is not installable
          Depends: tcl(FullColorPage) but it is not installable
          Depends: tcl(GeometryBrowser) but it is not installable
          Depends: tcl(GhostPage) but it is not installable
          Depends: tcl(GraphEditor) but it is not installable
          Depends: tcl(HelpPage) but it is not installable
          Depends: tcl(HighlightedPage) but it is not installable
          Depends: tcl(LinePage) but it is not installable
          Depends: tcl(ManBrowser) but it is not installable
          Depends: tcl(PictureTypeA) but it is not installable
          Depends: tcl(PictureTypeB) but it is not installable
          Depends: tcl(PictureTypeC) but it is not installable
          Depends: tcl(PictureTypeD) but it is not installable
          Depends: tcl(PictureTypeE) but it is not installable
          Depends: tcl(PictureTypeF) but it is not installable
          Depends: tcl(Tkhtml) but it is not installable
          Depends: tcl(Wizard) but it is not installable
          Depends: tcl(hv3) but it is not installable
          Depends: tcl(ttk::theme::default) but it is not installable
E: Broken packages
[root@host-221 ~]# 
==== КОНЕЦ apt-get==================

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [newbies] Hasher brlcad FHS violation with bytes written exceeded
  2016-11-22 20:46 ` Константин Яблочкин
@ 2016-11-22 21:02   ` Константин Яблочкин
  2016-11-23  7:05   ` Hihin Ruslan
  2016-11-23  9:00   ` Lenar Shakirov
  2 siblings, 0 replies; 16+ messages in thread
From: Константин Яблочкин @ 2016-11-22 21:02 UTC (permalink / raw)
  To: devel@ where you _can_ ask

Основнов Sisyphus подключен:

[root@host-221 ~]# cat /etc/apt/sources.list
# Local package resource list for APT goes here.
# To inspect package defined part, see /etc/apt/sources.list.d/*.list

#rpm [alt] http://ftp.altlinux.org/pub/distributions ALTLinux/Sisyphus/x86_64 classic
#rpm [alt] http://ftp.altlinux.org/pub/distributions ALTLinux/Sisyphus/noarch classic
#rpm [alt] http://ftp.altlinux.org/pub/distributions ALTLinux/Sisyphus/x86_64-i586 classic
rpm [alt] http://192.168.0.89 Sisyphus/x86_64 classic
rpm [alt] http://192.168.0.89 Sisyphus/noarch classic
#rpm [alt] http://ftp.altlinux.org/pub/distributions ALTLinux/Sisyphus/x86_64-i586 classic



rpm  http://192.168.0.89 repo/x86_64 hasher
#rpm  http://192.168.0.89 repo/noarch hasher
[root@host-221 ~]# 


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [newbies] Hasher brlcad FHS violation with bytes written exceeded
  2016-11-22 20:46 ` Константин Яблочкин
  2016-11-22 21:02   ` Константин Яблочкин
@ 2016-11-23  7:05   ` Hihin Ruslan
  2016-11-23 14:14     ` Vladimir Didenko
  2016-11-23  9:00   ` Lenar Shakirov
  2 siblings, 1 reply; 16+ messages in thread
From: Hihin Ruslan @ 2016-11-23  7:05 UTC (permalink / raw)
  To: devel-newbies

[-- Attachment #1: Type: text/plain, Size: 1962 bytes --]

Здравствуйте Константин Яблочкин
  В сообщении от 22 ноября 2016 Константин Яблочкин написал(a):
> The following packages have unmet dependencies:
>   brlcad: Depends: tcl(ArcherCore) but it is not installable
>           Depends: tcl(DbPage) but it is not installable
>           Depends: tcl(ExamplePage) but it is not installable
>           Depends: tcl(FbPage) but it is not installable
>           Depends: tcl(FeedbackDialog) but it is not
> installable Depends: tcl(FullColorPage) but it is not
> installable Depends: tcl(GeometryBrowser) but it is not
> installable Depends: tcl(GhostPage) but it is not installable
> Depends: tcl(GraphEditor) but it is not installable Depends:
> tcl(HelpPage) but it is not installable Depends:
> tcl(HighlightedPage) but it is not installable Depends:
> tcl(LinePage) but it is not installable Depends:
> tcl(ManBrowser) but it is not installable Depends:
> tcl(PictureTypeA) but it is not installable Depends:
> tcl(PictureTypeB) but it is not installable Depends:
> tcl(PictureTypeC) but it is not installable Depends:
> tcl(PictureTypeD) but it is not installable Depends:
> tcl(PictureTypeE) but it is not installable Depends:
> tcl(PictureTypeF) but it is not installable Depends:
> tcl(Tkhtml) but it is not installable Depends: tcl(Wizard) but
> it is not installable Depends: tcl(hv3) but it is not
> installable Depends: tcl(ttk::theme::default) but it is not
> installable

Укажите эависимость вручную на чего-то из этого списка:
https://packages.altlinux.org/ru/search?utf8=✓&branch=Sisyphus&query=tcl

-- 
  А ещё говорят так  (fortune): 
 
Fascinating, a totally parochial attitude. -- 
Spock, "Metamorphosis", stardate 3219.8 
________________________________________________________________________
С уважением Хихин Руслан 

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 181 bytes --]

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [newbies] Hasher brlcad FHS violation with bytes written exceeded
  2016-11-22 20:46 ` Константин Яблочкин
  2016-11-22 21:02   ` Константин Яблочкин
  2016-11-23  7:05   ` Hihin Ruslan
@ 2016-11-23  9:00   ` Lenar Shakirov
  2016-11-23  9:28     ` Константин Яблочкин
  2 siblings, 1 reply; 16+ messages in thread
From: Lenar Shakirov @ 2016-11-23  9:00 UTC (permalink / raw)
  To: devel-newbies

22.11.2016 23:46, Константин Яблочкин пишет:
> Собралось, но не ставится, неудовлетворимые зависимости. Далее спек и apt-get
> (ставится из локального репозитория, genbasedir --bloat --progress --topdir=. x86_64 hasher)
> <skip>

Добрый день!

Сможете положить gear-репо или просто srpm куда нибудь на посмотреть?


-- 

WBR,
Lenar Shakirov



^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [newbies] Hasher brlcad FHS violation with bytes written exceeded
  2016-11-23  9:00   ` Lenar Shakirov
@ 2016-11-23  9:28     ` Константин Яблочкин
  2016-11-23 11:24       ` Константин Яблочкин
  0 siblings, 1 reply; 16+ messages in thread
From: Константин Яблочкин @ 2016-11-23  9:28 UTC (permalink / raw)
  To: devel@ where you _can_ ask

gear-repo не знаю как
SRPM https://yadi точка sk слэш d слэш 7UK74j3izHVD6

Или скачать upstream-tarball+patch и сделать .gear/rules="tar: brlcad", распаковав tarball и переименовав в brlcad (убрав версию), спек тут https://lists.altlinux.org/pipermail/devel-newbies/2016-November/001050.html

> 22.11.2016 23:46, Константин Яблочкин пишет:
> 
>> Собралось, но не ставится, неудовлетворимые зависимости. Далее спек и apt-get
>> (ставится из локального репозитория, genbasedir --bloat --progress --topdir=. x86_64 hasher)
>> <skip>
> 
> Добрый день!
> 
> Сможете положить gear-репо или просто srpm куда нибудь на посмотреть?
> 
> --
> 
> WBR,
> Lenar Shakirov
> 
> _______________________________________________
> devel-newbies mailing list
> devel-newbies@lists.altlinux.org
> https://lists.altlinux.org/mailman/listinfo/devel-newbies


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [newbies] Hasher brlcad FHS violation with bytes written exceeded
  2016-11-23  9:28     ` Константин Яблочкин
@ 2016-11-23 11:24       ` Константин Яблочкин
  2016-11-23 11:55         ` Константин Яблочкин
  0 siblings, 1 reply; 16+ messages in thread
From: Константин Яблочкин @ 2016-11-23 11:24 UTC (permalink / raw)
  To: devel@ where you _can_ ask

> сделать .gear/rules="tar: brlcad"

Точнее, надо:

tar: brlcad
copy: *.patch


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [newbies] Hasher brlcad FHS violation with bytes written exceeded
  2016-11-23 11:24       ` Константин Яблочкин
@ 2016-11-23 11:55         ` Константин Яблочкин
  0 siblings, 0 replies; 16+ messages in thread
From: Константин Яблочкин @ 2016-11-23 11:55 UTC (permalink / raw)
  To: devel@ where you _can_ ask

А, да, ещё надо к имени патча приписать "brlcad-" в начале (переименовать файл)

>> сделать .gear/rules="tar: brlcad"
> 
> Точнее, надо:
> 
> tar: brlcad
> copy: *.patch


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [newbies] Hasher brlcad FHS violation with bytes written exceeded
  2016-11-23  7:05   ` Hihin Ruslan
@ 2016-11-23 14:14     ` Vladimir Didenko
  2016-11-23 18:55       ` Константин Яблочкин
  0 siblings, 1 reply; 16+ messages in thread
From: Vladimir Didenko @ 2016-11-23 14:14 UTC (permalink / raw)
  To: devel@ where you _can_ ask

2016-11-23 10:05 GMT+03:00 Hihin Ruslan:
> Здравствуйте Константин Яблочкин
>   В сообщении от 22 ноября 2016 Константин Яблочкин написал(a):
>> The following packages have unmet dependencies:
>>   brlcad: Depends: tcl(ArcherCore) but it is not installable
>>           Depends: tcl(DbPage) but it is not installable
>>           Depends: tcl(ExamplePage) but it is not installable
>>           Depends: tcl(FbPage) but it is not installable
>>           Depends: tcl(FeedbackDialog) but it is not
>> installable Depends: tcl(FullColorPage) but it is not
>> installable Depends: tcl(GeometryBrowser) but it is not
>> installable Depends: tcl(GhostPage) but it is not installable
>> Depends: tcl(GraphEditor) but it is not installable Depends:
>> tcl(HelpPage) but it is not installable Depends:
>> tcl(HighlightedPage) but it is not installable Depends:
>> tcl(LinePage) but it is not installable Depends:
>> tcl(ManBrowser) but it is not installable Depends:
>> tcl(PictureTypeA) but it is not installable Depends:
>> tcl(PictureTypeB) but it is not installable Depends:
>> tcl(PictureTypeC) but it is not installable Depends:
>> tcl(PictureTypeD) but it is not installable Depends:
>> tcl(PictureTypeE) but it is not installable Depends:
>> tcl(PictureTypeF) but it is not installable Depends:
>> tcl(Tkhtml) but it is not installable Depends: tcl(Wizard) but
>> it is not installable Depends: tcl(hv3) but it is not
>> installable Depends: tcl(ttk::theme::default) but it is not
>> installable
>
> Укажите эависимость вручную на чего-то из этого списка:
> https://packages.altlinux.org/ru/search?utf8=✓&branch=Sisyphus&query=tcl
>

Зачем? Там автоматическая генерация зависимостей не до конца
сработала. Например, FullColorPage точно есть в составе пакета, но rpm
этого не понял. Тут либо Provides на эти зависимости ставить, либо
лучше эти зависимости оторвать, используя filter_from_requires

https://www.altlinux.org/SpecTips/ReqProvFilter

-- 
С уважением,
Владимир.

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [newbies] Hasher brlcad FHS violation with bytes written exceeded
  2016-11-23 14:14     ` Vladimir Didenko
@ 2016-11-23 18:55       ` Константин Яблочкин
  2016-11-23 18:59         ` Vladimir Didenko
  0 siblings, 1 reply; 16+ messages in thread
From: Константин Яблочкин @ 2016-11-23 18:55 UTC (permalink / raw)
  To: devel@ where you _can_ ask

Сделал, зависимости OK, но файлы /usr/bin/wish не ушли:
[root@host-221 ~]# apt-get install brlcad
Reading Package Lists... Done
Building Dependency Tree... Done
The following NEW packages will be installed:
  brlcad
0 upgraded, 1 newly installed, 0 removed and 0 not upgraded.
Need to get 43.8MB of archives.
After unpacking 127MB of additional disk space will be used.
Get:1 http://192.168.0.89 repo/x86_64/hasher brlcad 7.26.0-alt2.3 [43.8MB]
Fetched 43.8MB in 3s (11.1MB/s)   
Committing changes...
Preparing...                 ########################################### [100%]
file /usr/bin/tclsh from install of brlcad-7.26.0-alt2.3 conflicts with file from package tcl-8.5.9-alt2
file /usr/bin/wish from install of brlcad-7.26.0-alt2.3 conflicts with file from package tk-8.5.9-alt3
E: Error while running transaction
[root@host-221 ~]# 



> 2016-11-23 10:05 GMT+03:00 Hihin Ruslan:
> 
>> Здравствуйте Константин Яблочкин
>> В сообщении от 22 ноября 2016 Константин Яблочкин написал(a):
>>
>>> The following packages have unmet dependencies:
>>> brlcad: Depends: tcl(ArcherCore) but it is not installable
>>> Depends: tcl(DbPage) but it is not installable
>>> Depends: tcl(ExamplePage) but it is not installable
>>> Depends: tcl(FbPage) but it is not installable
>>> Depends: tcl(FeedbackDialog) but it is not
>>> installable Depends: tcl(FullColorPage) but it is not
>>> installable Depends: tcl(GeometryBrowser) but it is not
>>> installable Depends: tcl(GhostPage) but it is not installable
>>> Depends: tcl(GraphEditor) but it is not installable Depends:
>>> tcl(HelpPage) but it is not installable Depends:
>>> tcl(HighlightedPage) but it is not installable Depends:
>>> tcl(LinePage) but it is not installable Depends:
>>> tcl(ManBrowser) but it is not installable Depends:
>>> tcl(PictureTypeA) but it is not installable Depends:
>>> tcl(PictureTypeB) but it is not installable Depends:
>>> tcl(PictureTypeC) but it is not installable Depends:
>>> tcl(PictureTypeD) but it is not installable Depends:
>>> tcl(PictureTypeE) but it is not installable Depends:
>>> tcl(PictureTypeF) but it is not installable Depends:
>>> tcl(Tkhtml) but it is not installable Depends: tcl(Wizard) but
>>> it is not installable Depends: tcl(hv3) but it is not
>>> installable Depends: tcl(ttk::theme::default) but it is not
>>> installable
>>
>> Укажите эависимость вручную на чего-то из этого списка:
>> https://packages.altlinux.org/ru/search?utf8=✓&branch=Sisyphus&query=tcl
> 
> Зачем? Там автоматическая генерация зависимостей не до конца
> сработала. Например, FullColorPage точно есть в составе пакета, но rpm
> этого не понял. Тут либо Provides на эти зависимости ставить, либо
> лучше эти зависимости оторвать, используя filter_from_requires
> 
> https://www.altlinux.org/SpecTips/ReqProvFilter
> 
> --
> С уважением,
> Владимир.
> _______________________________________________
> devel-newbies mailing list
> devel-newbies@lists.altlinux.org
> https://lists.altlinux.org/mailman/listinfo/devel-newbies


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [newbies] Hasher brlcad FHS violation with bytes written exceeded
  2016-11-23 18:55       ` Константин Яблочкин
@ 2016-11-23 18:59         ` Vladimir Didenko
  2016-11-24 12:07           ` Константин Яблочкин
  0 siblings, 1 reply; 16+ messages in thread
From: Vladimir Didenko @ 2016-11-23 18:59 UTC (permalink / raw)
  To: devel@ where you _can_ ask

2016-11-23 21:55 GMT+03:00 Константин Яблочкин :
> Сделал, зависимости OK, но файлы /usr/bin/wish не ушли:

Ну так сделайте %exclude на них.

-- 
С уважением,
Владимир.

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [newbies] Hasher brlcad FHS violation with bytes written exceeded
  2016-11-23 18:59         ` Vladimir Didenko
@ 2016-11-24 12:07           ` Константин Яблочкин
  0 siblings, 0 replies; 16+ messages in thread
From: Константин Яблочкин @ 2016-11-24 12:07 UTC (permalink / raw)
  To: Vladimir Didenko; +Cc: devel@ where you _can_ ask

Помогите выложить в sisyphus для тестирования желающими.
Собирается, устанавливается. Вот здесь ссылка на SRPM:
https://bugzilla.altlinux.org/show_bug.cgi?id=32410


^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2016-11-24 12:07 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-22 15:50 [newbies] Hasher brlcad FHS violation with bytes written exceeded Константин Яблочкин
2016-11-22 15:59 ` Ruslan Hihin
2016-11-22 16:00 ` Michael Shigorin
2016-11-22 19:10   ` Dmitry V. Levin
2016-11-22 17:25 ` Константин Яблочкин
2016-11-22 20:46 ` Константин Яблочкин
2016-11-22 21:02   ` Константин Яблочкин
2016-11-23  7:05   ` Hihin Ruslan
2016-11-23 14:14     ` Vladimir Didenko
2016-11-23 18:55       ` Константин Яблочкин
2016-11-23 18:59         ` Vladimir Didenko
2016-11-24 12:07           ` Константин Яблочкин
2016-11-23  9:00   ` Lenar Shakirov
2016-11-23  9:28     ` Константин Яблочкин
2016-11-23 11:24       ` Константин Яблочкин
2016-11-23 11:55         ` Константин Яблочкин

devel@ where you _can_ ask

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/devel-newbies/0 devel-newbies/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 devel-newbies devel-newbies/ http://lore.altlinux.org/devel-newbies \
		devel-newbies@lists.altlinux.org devel-newbies@lists.altlinux.ru devel-newbies@lists.altlinux.com
	public-inbox-index devel-newbies

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.devel-newbies


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git