Menu

Tree [138fa8] master /
 History

HTTPS access


File Date Author Commit
 build 2014-05-23 Vincent Launchbury Vincent Launchbury [d54e3d] Drop c++ compiler build dependency
 docs 2014-06-05 Vincent Launchbury Vincent Launchbury [138fa8] Update version numbers for 2.3.2 release
 src 2014-06-05 Vincent Launchbury Vincent Launchbury [9e7305] Xlib code to quit if the mouse is moved (in ful...
 winsrc 2010-11-26 Vincent Launchbury Vincent Launchbury [0c84d2] Updated versions in windows install script.
 .gitignore 2014-05-17 Vincent Launchbury Vincent Launchbury [b1ef38] Added new texinfo documentation.
 AUTHORS 2014-05-27 Vincent Launchbury Vincent Launchbury [5d84a1] Update copyright headers to include all relevan...
 COPYING 2009-06-01 Vincent Launchbury Vincent Launchbury [f7ebac] Initial commit
 ChangeLog 2014-06-05 Vincent Launchbury Vincent Launchbury [138fa8] Update version numbers for 2.3.2 release
 INSTALL 2014-05-17 Vincent Launchbury Vincent Launchbury [fba97a] Update INSTALL to the latest automake default
 Makefile.am 2014-05-28 Vincent Launchbury Vincent Launchbury [aa808c] Remove macsrc/ directory
 NEWS 2014-06-05 Vincent Launchbury Vincent Launchbury [138fa8] Update version numbers for 2.3.2 release
 README 2014-06-05 Vincent Launchbury Vincent Launchbury [138fa8] Update version numbers for 2.3.2 release
 TODO 2014-06-05 Vincent Launchbury Vincent Launchbury [836f23] Update TODO
 add-user-entry.sh 2014-05-28 Vincent Launchbury Vincent Launchbury [139c06] Fix unportable sed(1) code in add-user-entry.sh
 configure.ac 2014-06-05 Vincent Launchbury Vincent Launchbury [138fa8] Update version numbers for 2.3.2 release
 gen-bug-report.sh 2014-05-28 Vincent Launchbury Vincent Launchbury [fb6da0] Remove a check for root in gen-bug-report.sh

Read Me

matrixgl - 3D Matrix Screensaver
********************************
Matrixgl 2.3.2 is a 3D matrix screensaver based on the digital rain scenes from
The Matrix Reloaded. It features the green scrolling text (or digital rain)
that wraps around 3D representations of different characters from the series.

TABLE OF CONTENTS
=================
 1. Additonal Documentation
 2. Dependencies
 3. Compiling and Installing from Source
 4. Installing on Mac OSX
 5. Installing on Windows
 6. Reporting Bugs
 7. Supported Operating Systems


1. ADDITIONAL DOCUMENTATION
===========================
AUTHORS            - A list of authors and contributors
COPYING            - License for this software (GPL V2)
ChangeLog          - A complete changelog, for developers
INSTALL            - Detailed generic install instructions
NEWS               - A basic changelog, for users
docs/matrixgl.1    - manpage   (run `man matrixgl' after installation)
docs/matrixgl.texi - Info docs (run `info matrixgl' after installation)

Homepage: http://www.sourceforge.net/projects/matrixgl/


2. DEPENDENCIES
===============
The Mac OSX and Windows installers handle dependencies automatically. For
Unix-like platforms (e.g Linux, BSD, Solaris) the following dependencies are
required to build from source:

i) XLib + development files
      You need to have the X11 libraries and header files (which are sometimes
      split into two different packages.) Look through your package manager for
      names including 'xlib', 'libx11' and 'xorg', and read the descriptions.

         - Ubuntu packages: libx11-dev
         - Gentoo packages: x11-libs/libX11
         - FreeBSD ports:   /usr/ports/x11/libX11/

ii) OpenGL + development files
      You need to have the OpenGL library and header files (which are sometimes
      split into two different packages.) Look through your package manager for
      names including 'libgl', 'mesa', and 'opengl', and read the descriptions.

         - Ubuntu packages: mesa-common-dev, libgl1-mesa-dev
         - Gentoo packages: media-libs/mesa
         - FreeBSD ports:   /usr/ports/graphics/libGL/

iii) OpenGL Utility Library (GLU) + development files
      You need to have the GLU library and header files (which are sometimes
      split into two different packages.) Look through your package manager for
      names including 'glu', 'mesa' and 'libglu', and read the descriptions.

         - Ubuntu packages: libglu1-mesa-dev
         - Gentoo packages: media-libs/glu
         - FreeBSD ports:   /usr/ports/graphics/libGLU/

iv) XScreenSaver (OPTIONAL)
      XScreenSaver is an optional dependency that is enabled by default. Pass
      --without-xscreensaver to the configure script to compile without it.
      XScreenSaver is a decent screensaver manager/daemon, and it is
      recommended that you use it.

         - Ubuntu packages:  xscreensaver
         - Gentoo packages:  x11-misc/xscreensaver
         - FreeBSD ports:   /usr/ports/x11/xscreensaver/
   

3. COMPILING AND INSTALLING FROM SOURCE
=======================================
To compile and install from source on a Unix-like system, open a terminal and
cd(1) to your download directory. To extract the source code, run the following
commands:

   $ tar xzf matrixgl-2.3.2.tar.gz
   $ cd matrixgl-2.3.2

To compile and build, run the following commands:

   $ ./configure
   $ make

To install, run:

   $ sudo make install

   --OR--

   $ su
   # make install

If you have not disabled XScreenSaver support, there is one more step to get it
working. xscreensaver-demo(1) doesn't automatically detect new screensavers, so
you have to add an entry to your ~/.xscreensaver config. Our script can do this
for you:

   $ ./add-user-entry.sh

Note that every user has their own ~/.xscreensaver file, so this step must be
completed by anyone who wishes to add matrixgl to their xscreensaver-demo(1)
list. To run matrixgl as a screensaver, run 'xscreensaver-demo' and select
'matrixgl' from the list.

See the INSTALL file for more advanced instructions. If for any reason the
build process fails, please send a bug report (as described below), and we will
help you out.


4. INSTALLING ON MAC OSX
========================
Stephane Sudre ported matrixgl to Mac OSX, and it works with OSX 10.4 or later.
You can download the installer and source code from:
   http://s.sudre.free.fr/Software/matrixgl.html


5. INSTALLING ON WINDOWS
========================
To install on Windows, download and run the Windows installer from the project
homepage. Matrixgl can then be run and configured via the standard Windows
"Screen Saver" dialog.


6. REPORTING BUGS
==================
If you've found a bug, or are having any troubles compiling, installing or
running matrixgl, we have a script that will generate a bug report for you.
Open up a terminal in your download directory and run the following commands:

   $ cd matrixgl-2.3.2
   $ ./gen-bug-report.sh

This will generate a file named 'bug_report'. Please attach the file to an
email to vincent@doublecreations.com, along with a brief description of your
problem.


7. SUPPORTED OPERATING SYSTEMS
===============================
matrixgl has been tested and confirmed to fully work on the following platforms:
   . GNU/Linux: Gentoo
   . GNU/Linux: Ubuntu
   . GNU/Linux: Debian
   . BSD: OpenBSD
   . BSD: FreeBSD
   . Mac OSX 10.4, 10.5, 10.6, 10.8
   . Windows XP 32 bit
   . Windows Vista 32 bit
   . Windows 7 64 bit

If you have any problems compiling or building on your platform, please send a
bug report and we'll be glad to help you out.