Changeset d50ef4c5
- Timestamp:
- 09/04/2003 10:39:32 PM (21 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gimp3, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/for-12.3, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/spidermonkey128, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 035b717
- Parents:
- d9d389b5
- Files:
-
- 1 added
- 30 edited
Legend:
- Unmodified
- Added
- Removed
-
basicnet/netlibs/gnet/gnet.ent
rd9d389b5 rd50ef4c5 5 5 <!ENTITY gnet-desc SYSTEM "gnet-desc.xml"> 6 6 <!ENTITY gnet-config SYSTEM "gnet-config.xml"> 7 <!ENTITY gnet-buildsize " 3.1MB">8 <!ENTITY gnet-version " 1.1.9">7 <!ENTITY gnet-buildsize "9.6 MB"> 8 <!ENTITY gnet-version "2.0.4"> 9 9 <!ENTITY gnet-download-http "http://gnetlibrary.org/src/gnet-&gnet-version;.tar.gz"> 10 10 <!ENTITY gnet-download-ftp ""> 11 <!ENTITY gnet-size " 348 KB">12 <!ENTITY gnet-time "0. 21SBU">11 <!ENTITY gnet-size "448 KB"> 12 <!ENTITY gnet-time "0.18 SBU"> -
basicnet/netprogs/ncpfs/ncpfs-config.xml
rd9d389b5 rd50ef4c5 9 9 10 10 <para>A config file <filename>~/.nwclient</filename> should be placed 11 in each user's home directorythat intends to use ncpfs.11 in the home directory of each user that intends to use ncpfs. 12 12 The permissions on this file should be set to 600, for obvious security 13 reasons. The configuration file should contain a sin lge line13 reasons. The configuration file should contain a single line 14 14 per server that the user will use. Each line should contain 15 the se ver name, the user name, and optionally the password. Below is a15 the server name, the user name, and optionally the password. Below is a 16 16 sample <filename>.nwclient</filename> file.</para> 17 17 … … 39 39 connection to the Novell server. Mounting each individual volume 40 40 separately would be unwise, as mounting all volumes on a server 41 under one mount point ,uses only one client connection.</para>41 under one mount point uses only one client connection.</para> 42 42 43 43 <para>If you need to set up the IPX protocol at boot, you can create the … … 54 54 55 55 echo "Setting up the IPX protocol on eth0..." 56 / sbin/ipx_interface add eth0 802.2 &&57 / sbin/ipx_configure --auto_interface=on --auto_primary=on56 /bin/ipx_interface add eth0 802.2 && 57 /bin/ipx_configure --auto_interface=on --auto_primary=on 58 58 evaluate_retval 59 59 … … 68 68 69 69 echo "Stoping IPX on the eth0 interface..." 70 / usr/bin/ipx_configure --auto_interface=off --auto_primary=off &&71 / usr/bin/ipx_interface del eth0 802.270 /bin/ipx_configure --auto_interface=off --auto_primary=off && 71 /bin/ipx_interface del eth0 802.2 72 72 evaluate_retval 73 73 -
basicnet/netprogs/ncpfs/ncpfs-exp.xml
rd9d389b5 rd50ef4c5 2 2 <title>Command explanations</title> 3 3 4 <para> 5 <userinput>./configure --prefix=/usr --mandir=/usr/share/man</userinput>: 6 installs the binaries and libs to the <filename>/usr</filename> directory 7 and places the man files in <filename>/usr/share/man</filename>.</para> 8 <para><userinput>make install-dev</userinput>: Installs the header files 9 to <filename>/usr/include</filename>.</para> 10 <para>If you do not need to use the IPX protocol, or you use a different 11 IPX package, you can optionally pass <userinput> --disable-ipx </userinput> 4 <para><userinput>--prefix=""</userinput>: 5 installs binaries on the root partition so that they are availible at 6 boot time. This may not be ideal for all systems. If 7 <filename>/usr</filename> is mounted locally, 8 <userinput>--prefix=/usr</userinput> may be a better option.</para> 9 10 <para><userinput>--includedir=/usr/include</userinput>: Tells configure 11 to look in <filename>/usr/include</filename> for header files. It also 12 tells make to install ncpfs's headers here.</para> 13 14 <para><userinput>--mandir=/usr/share/man</userinput>: installs the man 15 pages in the correct location.</para> 16 17 <para><userinput>--datadir=/usr/share</userinput>: correctly installs the 18 locale files to <filename>/usr/share/</filename>.</para> 19 20 <para>Note: If you do not need to use the IPX protocol, or you use a different 21 IPX package, you can optionally pass <userinput> --disable-ipx </userinput> 12 22 and/or <userinput> --disable-ipx-tools </userinput> to the configure 13 23 script to disable these options.</para> -
basicnet/netprogs/ncpfs/ncpfs-inst.xml
rd9d389b5 rd50ef4c5 4 4 <para>Install ncpfs by running the following commands:</para> 5 5 6 <para><screen><userinput>./configure --prefix=/usr --mandir=/usr/share/man && 7 make && 8 make install && 6 <para><screen><userinput>./configure --prefix=/usr --inxludedir=/usr/include \ 7 --mandir=/usr/share/man --datadir=/usr/share && 8 make && 9 make install && 9 10 make install-dev</userinput></screen></para> 10 11 -
basicnet/netprogs/ncpfs/ncpfs.ent
rd9d389b5 rd50ef4c5 5 5 <!ENTITY ncpfs-desc SYSTEM "ncpfs-desc.xml"> 6 6 <!ENTITY ncpfs-config SYSTEM "ncpfs-config.xml"> 7 <!ENTITY ncpfs-buildsize " 18MB">7 <!ENTITY ncpfs-buildsize "40 MB"> 8 8 <!ENTITY ncpfs-version "2.2.3"> 9 9 <!ENTITY ncpfs-download-http -
gnome/core/session/gnome-session-desc.xml
rd9d389b5 rd50ef4c5 2 2 <title>Contents</title> 3 3 4 <para>The gnome-session package contains 5 <userinput>gnome-session</userinput>, <userinput>session 6 utilities</userinput> and <userinput>manager proxy</userinput>.</para> 4 <para>The <application>gnome-session</application> package contains 5 <command>gnome-session</command>, session utilities and <command>manager proxy</command>.</para> 7 6 8 7 </sect2> … … 11 10 12 11 <sect3><title>gnome-session</title> 13 <para> gnome-sessionstarts up the GNOME desktop.</para></sect3>12 <para><command>gnome-session</command> starts up the GNOME desktop.</para></sect3> 14 13 15 14 <sect3><title>session utilities</title> … … 18 17 19 18 <sect3><title>manager proxy</title> 20 <para> manager proxyhandles basic session management for applications21 that do not support XSM.</para></sect3>19 <para><command>manager proxy</command> handles basic session management for applications 20 that do not support <acronym>XSM</acronym>.</para></sect3> 22 21 23 22 </sect2> -
gnome/core/session/gnome-session-exp.xml
rd9d389b5 rd50ef4c5 2 2 <title>Command explanations</title> 3 3 4 <para>< userinput>--localstatedir=/var/lib</userinput> : This switch4 <para><command>--localstatedir=/var/lib</command> : This switch 5 5 puts scrollkeeper files in <filename>/var/lib/scrollkeeper</filename> 6 6 instead of <filename>$GNOME_PREFIX/var/scrollkeeper</filename>.</para> 7 7 8 <para>< userinput>--sysconfdir=/etc/gnome</userinput> : This switch8 <para><command>--sysconfdir=/etc/gnome</command> : This switch 9 9 puts configuration files in <filename>/etc/gnome</filename> instead of 10 10 <filename>$GNOME_PREFIX/etc</filename>.</para> -
gnome/core/session/gnome-session-inst.xml
rd9d389b5 rd50ef4c5 1 1 <sect2> 2 <title>Installation of gnome-session</title>2 <title>Installation of <application>gnome-session</application></title> 3 3 4 <para>Install gnome-sessionby running the following commands:</para>4 <para>Install <application>gnome-session</application> by running the following commands:</para> 5 5 6 < para><screen><userinput>export PATH=$PATH:$GNOME_PREFIX/sbin:/sbin &&6 <screen><userinput><command>export PATH=$PATH:$GNOME_PREFIX/sbin:/sbin && 7 7 ./configure --prefix=$GNOME_PREFIX --localstatedir=/var/lib \ 8 8 --sysconfdir=/etc/gnome && 9 9 make && 10 make install</ userinput></screen></para>10 make install</command></userinput></screen> 11 11 12 12 </sect2> -
gnome/core/session/gnome-session-intro.xml
rd9d389b5 rd50ef4c5 1 1 <sect2> 2 <title>Introduction to gnome-session</title>2 <title>Introduction to <application>gnome-session</application></title> 3 3 4 <screen>Download location (HTTP): <ulink url="&gnome-session-download-http;"/> 5 Download location (FTP): <ulink url="&gnome-session-download-ftp;"/> 6 Version used: &gnome-session-version; 7 Package size: &gnome-session-size; 8 Estimated Disk space required: &gnome-session-buildsize; 9 Estimated build time: &gnome-session-time;</screen> 4 <para>The <application>gnome-session</application> package contains the GNOME 5 session manager.</para> 10 6 11 <para>The gnome-session package contains the GNOME session manager.</para> 7 <sect3><title>Package information</title> 8 <itemizedlist spacing='compact'> 9 <listitem><para>Download (HTTP): <ulink 10 url="&gnome-session-download-http;"/></para></listitem> 11 <listitem><para>Download (FTP): <ulink 12 url="&gnome-session-download-ftp;"/></para></listitem> 13 <listitem><para>Download size: &gnome-session-size;</para></listitem> 14 <listitem><para>Estimated Disk space required: 15 &gnome-session-buildsize;</para></listitem> 16 <listitem><para>Estimated build time: 17 &gnome-session-time;</para></listitem></itemizedlist> 18 </sect3> 12 19 13 <screen>gnome-session depends on: 14 <xref linkend="libgnomeui"/></screen> 20 <sect3><title><application>gnome-session</application> dependencies</title> 21 <sect4><title>Required</title> 22 <para><xref linkend="libgnomeui"/></para></sect4> 23 </sect3> 15 24 16 25 </sect2> -
gnome/core/session/gnome-session.ent
rd9d389b5 rd50ef4c5 5 5 <!ENTITY gnome-session-desc SYSTEM "gnome-session-desc.xml"> 6 6 <!ENTITY gnome-session-config SYSTEM "gnome-session-config.xml"> 7 <!ENTITY gnome-session-buildsize " 6.6MB">8 <!ENTITY gnome-session-version "2.2. 1">9 <!ENTITY gnome-session-download-http "http://ftp.gnome.org/pub/GNOME/sources/gnome-session/2.2/gnome-session-2.2. 1.tar.bz2">10 <!ENTITY gnome-session-download-ftp "ftp://ftp.gnome.org/pub/GNOME/sources/gnome-session/2.2/gnome-session-2.2. 1.tar.bz2">11 <!ENTITY gnome-session-size "70 9KB">12 <!ENTITY gnome-session-time "0. 88SBU">7 <!ENTITY gnome-session-buildsize "15 MB"> 8 <!ENTITY gnome-session-version "2.2.2"> 9 <!ENTITY gnome-session-download-http "http://ftp.gnome.org/pub/GNOME/sources/gnome-session/2.2/gnome-session-2.2.2.tar.bz2"> 10 <!ENTITY gnome-session-download-ftp "ftp://ftp.gnome.org/pub/GNOME/sources/gnome-session/2.2/gnome-session-2.2.2.tar.bz2"> 11 <!ENTITY gnome-session-size "704 KB"> 12 <!ENTITY gnome-session-time "0.22 SBU"> -
index.xml
rd9d389b5 rd50ef4c5 3 3 "/usr/share/docbook/docbookx.dtd" [ 4 4 5 <!ENTITY version "2003090 3">6 <!ENTITY releasedate "September 3rd, 2003">5 <!ENTITY version "20030904"> 6 <!ENTITY releasedate "September 4th, 2003"> 7 7 8 8 <!ENTITY % book SYSTEM "book/book.ent"> -
introduction/welcome/changelog.xml
rd9d389b5 rd50ef4c5 10 10 11 11 <itemizedlist> 12 13 <listitem><para>September 4th, 2003 [larry]: multimedia: updated 14 avifile and mplayer submitted by Igor.</para></listitem> 15 16 <listitem><para>September 4th, 2003 [larry]: basicnet: applied DJ's 17 correction patch to ncpfs.</para></listitem> 18 19 <listitem><para>September 4th, 2003 [larry]: x: updated to 20 metacity-2.4.55.</para></listitem> 21 22 <listitem><para>September 4th, 2003 [larry]: xsoft: updated to 23 pan-0.14.2 and gnet-2.0.4.</para></listitem> 12 24 13 25 <listitem><para>September 3rd, 2003 [larry]: xsoft: updated to -
multimedia/libdriv/sdl/sdl.ent
rd9d389b5 rd50ef4c5 5 5 <!ENTITY SDL-desc SYSTEM "sdl-desc.xml"> 6 6 <!ENTITY SDL-config SYSTEM "sdl-config.xml"> 7 <!ENTITY SDL-buildsize " 49.2MB">8 <!ENTITY SDL-version "1.2. 5">7 <!ENTITY SDL-buildsize "50.3 MB"> 8 <!ENTITY SDL-version "1.2.6"> 9 9 <!ENTITY SDL-download-http "http://www.libsdl.org/release/SDL-&SDL-version;.tar.gz"> 10 10 <!ENTITY SDL-download-ftp ""> 11 <!ENTITY SDL-size "1. 8MB">12 <!ENTITY SDL-time "0.7 0SBU">11 <!ENTITY SDL-size "1.9 MB"> 12 <!ENTITY SDL-time "0.72 SBU"> -
multimedia/videoutils/avifile.xml
rd9d389b5 rd50ef4c5 5 5 &avifile-intro; 6 6 &avifile-inst; 7 &avifile-exp; 7 8 &avifile-desc; 8 9 -
multimedia/videoutils/avifile/avifile-desc.xml
rd9d389b5 rd50ef4c5 2 2 <title>Contents</title> 3 3 4 <para>The avifile package contains < userinput>aviplay</userinput>,5 < userinput>avibench</userinput>, <userinput>avifile-config</userinput>,6 < userinput>mmxnow-config</userinput>, <userinput>avirecompress</userinput>, <userinput>avicap</userinput>,7 < userinput>avirec</userinput>, <userinput>kv4lsetup</userinput>, <userinput>avicat</userinput>,8 < userinput>avitype</userinput> and <userinput>avimake</userinput>.</para>4 <para>The avifile package contains <command>aviplay</command>, 5 <command>avibench</command>, <command>avifile-config</command>, 6 <command>mmxnow-config</command>, <command>avirecompress</command>, <command>avicap</command>, 7 <command>avirec</command>, <command>kv4lsetup</command>, <command>avicat</command>, 8 <command>avitype</command> and <command>avimake</command>.</para> 9 9 10 10 </sect2> … … 13 13 14 14 <sect3><title>aviplay</title> 15 <para> aviplaymanages the input formats, the codecs and the output16 formats to display AVIvideo files on your screen.</para></sect3>15 <para><command>aviplay</command> manages the input formats, the codecs and the output 16 formats to display <acronym>AVI</acronym> video files on your screen.</para></sect3> 17 17 18 18 <sect3><title>avibench</title> 19 <para> avibenchperforms a measurement of the avifile library's19 <para><command>avibench</command> performs a measurement of the avifile library's 20 20 performance for a file.</para></sect3> 21 21 22 22 <sect3><title>avifile-config</title> 23 <para> avifile-configis run by configure for programs wishing to link to23 <para><command>avifile-config</command> is run by configure for programs wishing to link to 24 24 the avifile library.</para></sect3> 25 25 26 26 <sect3><title>mmxnow-config</title> 27 <para> mmxnow-configis run by configure for programs wishing to link to27 <para><command>mmxnow-config</command> is run by configure for programs wishing to link to 28 28 the mmxnow library.</para></sect3> 29 29 30 30 <sect3><title>avirecompress</title> 31 <para> avirecompressis a widget that takes an input file of one codec31 <para><command>avirecompress</command> is a widget that takes an input file of one codec 32 32 type and converts it into a video file of another codec.</para></sect3> 33 33 34 34 <sect3><title>avicap</title> 35 <para> avicapis a widget that displays acquired video fro a Video For35 <para><command>avicap</command> is a widget that displays acquired video fro a Video For 36 36 Windows (vfw) compatible device, like a webcam or a 37 37 TV-tuner.</para></sect3> 38 38 39 39 <sect3><title>avirec</title> 40 <para> avirecis a command line video recording tool.</para></sect3>40 <para><command>avirec</command> is a command line video recording tool.</para></sect3> 41 41 42 42 <sect3><title>kv4lsetup</title> 43 <para> kv4lsetupis a small tool which tells video4linux about the43 <para><command>kv4lsetup</command> is a small tool which tells video4linux about the 44 44 current video mode</para></sect3> 45 45 46 46 <sect3><title>avicat</title> 47 <para> avicat takes a set of AVI files and combines them into a single48 file.</para></sect3>47 <para><command>avicat</command> takes a set of <acronym>AVI</acronym> files and combines 48 them into a single file.</para></sect3> 49 49 50 50 <sect3><title>avitype</title> 51 <para>avitype will read and display AVI file header information.</para></sect3> 51 <para><command>avitype</command> will read and display 52 <acronym>AVI</acronym> file header information.</para></sect3> 52 53 53 54 <sect3><title>avimake</title> 54 <para> avimake takes a set of JPGimages and creates a55 <para><command>avimake</command> takes a set of <acronym>JPG</acronym> images and creates a 55 56 movie.</para></sect3> 56 57 -
multimedia/videoutils/avifile/avifile-inst.xml
rd9d389b5 rd50ef4c5 1 1 <sect2> 2 <title>Installation of avifile</title>2 <title>Installation of <application>avifile</application></title> 3 3 4 <para>Install avifile by running the following commands:</para> 5 6 <para><screen><userinput>install -d /usr/lib/win32 && 7 tar -xzvf ../binaries-011002.tgz -C /usr/lib && 8 ./configure --prefix=/usr && 4 <para>Install <application>avifile</application> by running the following commands:</para> 5 <screen><userinput><command>install -d /usr/lib/avifile-0.7/win32 && 6 tar xzvf ../binaries-011002.tgz -C /usr/lib/avifile-0.7 && 7 ./autogen.sh && 8 ./configure && 9 make maintainer-clean && 10 ./autogen.sh && 11 ./configure --prefix=/usr --with-qt-prefix=/opt/qt \ 12 --with-win32-path=/usr/lib/avifile-0.7/win32 && 9 13 make && 10 make install</ userinput></screen></para>14 make install</command></userinput></screen> 11 15 12 16 </sect2> -
multimedia/videoutils/avifile/avifile-intro.xml
rd9d389b5 rd50ef4c5 1 1 <sect2> 2 <title>Introduction to avifile</title>2 <title>Introduction to <application>avifile</application></title> 3 3 4 <screen>Download location (HTTP): <ulink url="&avifile-download-http;"/> 5 Download location (FTP): <ulink url="&avifile-download-ftp;"/> 6 Version used: &avifile-version; 7 Package size: &avifile-size; 8 Estimated Disk space required: &avifile-buildsize;</screen> 4 <para>The <application>avifile</application> package contains an 5 <acronym>AVI</acronym> video file player, tools and 6 support libraries. This is useful for viewing and editing 7 <acronym>AVI</acronym> files.</para> 9 8 10 <screen>Additional downloads: 11 <ulink url="http://avifile.sourceforge.net/binaries-011002.tgz"/></screen> 9 <sect3><title>Package information</title> 10 <itemizedlist spacing='compact'> 11 <listitem><para>Download (HTTP): <ulink url="&avifile-download-http;"/></para></listitem> 12 <listitem><para>Download (FTP): <ulink url="&avifile-download-ftp;"/></para></listitem> 13 <listitem><para>Download size: &avifile-size;</para></listitem> 14 <listitem><para>Estimated Disk space required: &avifile-buildsize;</para></listitem> 15 <listitem><para>Estimated build time: &avifile-time;</para></listitem></itemizedlist> 16 </sect3> 12 17 13 <para>The avifile package contains an AVI video file player, tools and 14 support libraries. This is useful for viewing and editing AVI files.</para> 18 <sect3><title>Additional downloads</title> 19 <itemizedlist spacing='compact'> 20 <listitem><para>Required codecs: <ulink 21 url="http://flow.dl.sourceforge.net/sourceforge/avifile/binaries-011002.tgz"/></para></listitem> 22 </itemizedlist></sect3> 15 23 16 <screen>avifile depends on: 17 x86 processor, <xref linkend="xfree86"/>, <xref linkend="libjpeg"/> and <xref linkend="SDL"/> 18 avifile will utilize: 19 qt (< 3.1.0), oss, <xref linkend="ffmpeg"/><!--, <xref 20 linkend="opendivx"/> --> and <xref linkend="xvid"/></screen> 24 <sect3><title><application>avifile</application> dependencies</title> 25 <sect4><title>Required</title> 26 <para><xref linkend="qt"/> and <xref linkend="SDL"/></para></sect4> 27 <sect4><title>Optional</title> 28 <para><xref linkend="ffmpeg"/>, <xref linkend="xvid"/>, <ulink 29 url="http://www.underbit.com/products/mad">MAD</ulink>, <xref 30 linkend="libvorbis"/> and <xref 31 linkend="lame"/></para></sect4> 32 </sect3> 21 33 22 34 </sect2> -
multimedia/videoutils/avifile/avifile.ent
rd9d389b5 rd50ef4c5 5 5 <!ENTITY avifile-desc SYSTEM "avifile-desc.xml"> 6 6 <!ENTITY avifile-config SYSTEM "avifile-config.xml"> 7 <!ENTITY avifile-buildsize " 26.6MB">8 <!ENTITY avifile-version "0.7.3 4">7 <!ENTITY avifile-buildsize "46.0 MB"> 8 <!ENTITY avifile-version "0.7.38"> 9 9 <!ENTITY avifile-download-http 10 "http:// avifile.sourceforge.net/avifile-0.7.34-20030319.tgz">10 "http://heanet.dl.sourceforge.net/sourceforge/avifile/avifile-0.7-0.7.38.tar.gz"> 11 11 <!ENTITY avifile-download-ftp ""> 12 <!ENTITY avifile-size "2. 7MB">13 <!ENTITY avifile-time "4. 11SBU">12 <!ENTITY avifile-size "2.8 MB"> 13 <!ENTITY avifile-time "4.28 SBU"> -
multimedia/videoutils/mplayer/mplayer-config.xml
rd9d389b5 rd50ef4c5 1 1 <sect2> 2 <title>Configuring mplayer</title>2 <title>Configuring MPlayer</title> 3 3 4 4 <sect3><title>Config files</title> 5 <para><filename> ~/.mplayer/config</filename>, <filename>~/.mplayer/codec.conf</filename></para>5 <para><filename>/etc/mplayer/*</filename>, <filename>~/.mplayer/*</filename></para> 6 6 </sect3> 7 7 … … 10 10 <para>If you wish to utilize a freetype font, you need to link a TTF 11 11 file to your <filename>~/.mplayer</filename> directory. For example: 12 <screen>ln -sf /usr/X11R6/lib/X11/fonts/TTF/luxisri.ttf ~/.mplayer/subfont.ttf</screen>otherwise 13 <screen>ln -sf /usr/share/mplayer/font/iso-8859-1/arial-14 ~/.mplayer/font</screen> 14 where 14 is the font size. You can chose your font size of 14, 18, 24 or 28.</para> 12 <screen><userinput><command>ln -sf /usr/X11R6/lib/X11/fonts/TTF/luxisri.ttf /etc/mplayer/subfont.ttf 13 </command></userinput></screen> 14 otherwise 15 <screen><userinput><command>ln -sf /usr/share/mplayer/font/font-arial-*-iso-8859-1 /etc/mplayer/font 16 </command></userinput></screen> 17 where * is the font size. You can chose your font size of 14, 18, 24 or 28. 18 </para> 15 19 16 <para>Set up the GUI with the following commands executed from your source directory:</para> 20 <para>Set up the <acronym>GUI</acronym> with the following commands executed 21 from your source directory:</para> 17 22 18 < para><screen><userinput>cat > ~/.mplayer/config << "EOF"</userinput>23 <screen><userinput><command>cat > /etc/mplayer/config << "EOF" 19 24 gui = yes 20 25 skin = default 21 <userinput>EOF 22 mkdir ~/.mplayer/Skin && 23 tar -xvf ../default.tar -C ~/.mplayer/Skin</userinput></screen> 24 </para> 26 EOF 27 </command></userinput></screen> 25 28 26 29 <para>The first line, <userinput>gui = yes</userinput>, will make 27 MPlayer start in gui mode automatically. If you want to decide whether to start 28 in gui mode or not, leave that line out and start mplayer with 29 <userinput>-gui</userinput> or as <userinput>gmplayer</userinput> (e.g. 30 MPlayer start in <acronym>GUI</acronym> mode automatically. If you want to decide whether to start 31 in <acronym>GUI</acronym> mode or not, leave that line out and start 32 <command>mplayer</command> with 33 <command>-gui</command> or as <command>gmplayer</command> (e.g. 30 34 when starting from a Window Manager menu or command prompt).</para> 31 35 -
multimedia/videoutils/mplayer/mplayer-desc.xml
rd9d389b5 rd50ef4c5 2 2 <title>Contents</title> 3 3 4 <para>The mplayer package contains <userinput>mplayer</userinput>,5 < userinput>gmplayer</userinput> and <userinput>mencoder</userinput>.</para>4 <para>The MPlayer package contains <command>mplayer</command>, 5 <command>gmplayer</command> and <command>mencoder</command>.</para> 6 6 7 7 </sect2> … … 10 10 11 11 <sect3><title>mplayer</title> 12 <para> mplayermanages the input formats, the codecs and the output13 formats to play video files, DVDs, (S)VCDs or network streams containing12 <para><command>mplayer</command> manages the input formats, the codecs and the output 13 formats to play video files, <acronym>DVD</acronym>s, (S)VCDs or network streams containing 14 14 audio and/or video informations on your system.</para> 15 <para><userinput>Examples:</userinput></para> 16 <para><screen><userinput>mplayer -fs blfs.avi 15 <para>Examples:</para> 16 17 <screen><userinput><command>mplayer -fs blfs.avi 17 18 mplayer -vo fbdev -fb /dev/fb0 -dvd 1 -aid 128 -sub en -framedrop 18 19 mplayer -fs -vcd 1; # works both for VCDs and SVCDs 19 mplayer http://www.students.uni-marburg.de/~Klossa/hapkidofight_lo.mpg</userinput></screen></para> 20 mplayer http://www.students.uni-marburg.de/~Klossa/hapkidofight_lo.mpg</command></userinput></screen> 21 20 22 <para>For further information, have a look at the very good 21 documentation 22 included in the package in the subdirectory <filename>DOCS/</filename>.23 documentation included in the package in the subdirectory <filename 24 class="directory">DOCS/</filename>. 23 25 </para></sect3> 24 26 25 27 <sect3><title>gmplayer</title> 26 <para> gmplayeris MPlayer with a graphical user interface.</para></sect3>28 <para><command>gmplayer</command> is MPlayer with a graphical user interface.</para></sect3> 27 29 28 30 <sect3><title>mencoder</title> 29 <para>mencoder is used to encode any MPlayer-playable movie to DivX4, 30 XviD or any codec in libavcodec with PCM/MP3/VBRMP3 31 audio.</para> 31 <para><command>mencoder</command> is used to encode any MPlayer-playable movie to DivX4, 32 XviD or any codec in libavcodec with PCM/MP3/VBRMP3 audio.</para> 32 33 33 <para><userinput>Example:</userinput></para> 34 <para><screen><userinput>rm frameno.avi 34 <para>Example:</para> 35 36 <screen><userinput><command>rm frameno.avi 35 37 mencoder -dvd 1 -aid 128 -ovc frameno -oac mp3lame \ 36 38 -lameopts vbr=3 -o frameno.avi … … 45 47 mencoder -dvd 1 -aid 128 -oac copy -ovc lavc \ 46 48 -lavcopts vcodec=mpeg4:vpass=2:vhq:vbitrate=<bitrate> -o <name.avi> 47 mencoder -forceidx <name.avi></userinput></screen></para> 48 49 mencoder -forceidx <name.avi></command></userinput></screen> 49 50 </sect3> 50 51 -
multimedia/videoutils/mplayer/mplayer-exp.xml
rd9d389b5 rd50ef4c5 2 2 <title>Command explanations</title> 3 3 4 <!-- 5 <para><userinput>unset CFLAGS</userinput> : This command clears the 6 compile flags. This command is optional, but the indications are that 7 the majority of installs will need it.</para> 8 --> 4 <para><command>--enable-gui</command> : This switch tells MPlayer to compile the gui code.</para> 9 5 10 <para><userinput>--enable-freetype</userinput> : This switch tells 11 MPlayer to utilize freetype fonts instead of the fonts provided by mplayer.</para> 12 13 <para><userinput>--enable-gui</userinput> : This switch tells MPlayer to compile the gui code.</para> 14 15 <para><userinput>--enable-menu --enable-new-conf</userinput> : These 6 <para><command>--enable-menu</command> : These 16 7 switches enable the new menu support. It's like an OSD, but you can 17 8 also run a shell with it.</para> 18 9 19 <para><userinput>--enable-shared-pp</userinput> : This enables the 20 building of a shared libpostproc (library for post processing, featuring 10 <para><command>--enable-shared-pp</command> : This enables the 11 building of a shared <filename 12 class="libraryfile">libpostproc</filename> (library for post processing, featuring 21 13 filters like sharpen).</para> 22 14 23 <para><userinput>cp etc/codecs.conf ~/.mplayer</userinput> : This 24 command copies the standard codecs.conf file to the user. MPlayer 25 expects this file at startup.</para> 26 27 <para><userinput>cp etc/example.conf ~/.mplayer</userinput> : This 28 command copies the self documented configuration file to the user. We 29 will create an new config file if you installed the gui or you can copy 30 this file to <filename>config</filename> and edit it for your 31 situation.</para> 32 15 <para><command>cp etc/codecs.conf /etc/mplayer</command> : This 16 command copies the standard codecs.conf file to the system-wide configuration directory. 17 MPlayer expects this file at startup.</para> 33 18 34 19 </sect2> 35 36 -
multimedia/videoutils/mplayer/mplayer-inst.xml
rd9d389b5 rd50ef4c5 1 1 <sect2> 2 <title>Installation of MPlayer</title> 3 4 <para>The extra downloads should be located in your source directory with 5 the bzip2 files decompressed.</para> 2 <title>Installation of <application>MPlayer</application></title> 6 3 7 4 <note><para>The package maintainers recommend building without any optimization</para></note> 8 <para>Install MPlayer by running the following commands:</para>9 5 10 <para><screen><userinput>install -d /usr/lib/win32 && 11 tar -xvf ../win32codecs.tar -C /usr/lib/win32 && 12 tar -xvf ../qt5dlls.tar -C /usr/lib/win32 && 13 tar -xvf ../qt6dlls.tar -C /usr/lib/win32 && 14 tar -xvf ../qtextras.tar -C /usr/lib/win32 && 15 tar -xvf ../rp9codecs.tar -C /usr/lib/win32 && 6 <para>Install <application>MPlayer</application> by running the following commands:</para> 7 8 <screen><userinput><command>install -d /usr/lib/mplayer/extralite && 9 tar xjvf ../extralite.tar.bz2 -C /usr/lib/mplayer && 16 10 ./configure --prefix=/usr --confdir=/etc/mplayer --enable-largefiles \ 17 --enable-gui --enable-menu --enable-new-conf --enable-qtx-codecs \ 18 --enable-vorbis --with-reallibdir=/usr/lib/win32/rp9codecs \ 19 --enable-freetype --enable-shared-pp && 11 --enable-gui --enable-menu --enable-shared-pp \ 12 --with-codecsdir=/usr/lib/mplayer/extralite && 20 13 make && 21 make install</userinput></screen></para> 22 23 <para> Each user of MPlayer should complete the install by running the 24 following commands: 25 <screen><userinput>mkdir ~/.mplayer && 26 cp etc/codecs.conf ~/.mplayer && 27 cp etc/example.conf ~/.mplayer/example.conf</userinput></screen></para> 28 29 <sect3> 30 <title>Installing the prerendered Fonts</title> 14 make install && 15 cp etc/codecs.conf /etc/mplayer && 16 tar xjvf ../default-1.7.tar.bz2 -C /usr/share/mplayer/Skin 17 </command></userinput></screen> 31 18 32 19 <para>If freetype is in use, the only advantage of prerendered fonts is 33 20 that they are faster. Install them like this:</para> 34 21 35 <para><screen><userinput>install -d /usr/share/mplayer/font && 36 tar -xvf ../font-arial-iso-8859-1.tar -C /usr/share/mplayer/font && 37 for i in /usr/share/mplayer/font/font-arial-<size>* 38 do ln -s $i /usr/share/mplayer/font; done</userinput></screen></para> 22 <screen><userinput><command>tar xjvf ../font-arial-iso-8859-1.tar.bz2 -C /usr/share/mplayer/font 23 </command></userinput></screen> 39 24 40 <para>Replace <userinput><size></userinput> with either 14, 18, 24 41 or 28.</para> 25 <sect3> 26 <title>Installation for <acronym>DVD</acronym> playback</title> 27 28 <para>If you want <acronym>DVD</acronym> playback with 29 <application>MPlayer</application>, you need to make a link 30 from your <acronym>DVD</acronym> drive to <filename>/dev/dvd</filename>:</para> 31 32 <screen><userinput><command>ln -s /dev/<dvd drive> /dev/dvd</command></userinput></screen> 33 34 <para>Replace <userinput><dvd drive></userinput> with whatever 35 device is appropriate, for example <filename>/dev/hdc</filename>. if 36 you don't know which device to choose, type:</para> 37 38 <screen><userinput><command>dmesg | grep DVD</command></userinput></screen> 39 40 <para>It should result in an output like:</para> 41 42 <screen><userinput><command>hdc: Pioneer DVD-ROM ATAPIModel DVD-114 0110, 43 ATAPI CD/DVD-ROM drive</command></userinput></screen> 44 45 <para>If you have SCSI-Emulation activated for the drives, you'll need 46 to get the right SCSI-device. Every CD/DVD-ROM drive is mapped in the 47 same order as in <acronym>IDE</acronym> to the devices named 48 <filename>/dev/scd0</filename>, 49 <filename>/dev/scd1</filename> and so on.</para> 42 50 43 51 </sect3> 44 52 45 <sect3>46 <title>Installation for DVD playback</title>47 <para>If you want DVD playback with MPlayer, you need to make a link48 from your DVD drive to <filename>/dev/dvd</filename>:</para>49 <para><screen><userinput>ln -s /dev/<dvd drive> /dev/dvd</userinput></screen></para>50 <para>replace <userinput><dvd drive></userinput> with whatever51 device is appropriate, for example <filename>/dev/hdc</filename>. if52 you don't know which device to choose, type:</para>53 <para><screen><userinput>dmesg | grep DVD</userinput></screen></para>54 <para>It should result in an output like:</para>55 <para><screen><userinput>hdc: Pioneer DVD-ROM ATAPIModel DVD-114 0110,56 ATAPI CD/DVD-ROM drive</userinput></screen></para>57 <para>If you have SCSI-Emulation activated for the drives, you'll need58 to get the right SCSI-device. Every CD/DVD-ROM drive is mapped in the59 same order as in IDE to the devices named60 <filename>/dev/scd0</filename>,61 <filename>/dev/scd1</filename> and so on.</para>62 </sect3>63 64 53 </sect2> 65 -
multimedia/videoutils/mplayer/mplayer-intro.xml
rd9d389b5 rd50ef4c5 1 1 <sect2> 2 <title>Introduction to MPlayer</title>2 <title>Introduction to <application>MPlayer</application></title> 3 3 4 <screen>Download location (HTTP): <ulink url="&mplayer-download-http;"/> 5 Download location (FTP): <ulink url="&mplayer-download-ftp;"/> 6 Version used: &mplayer-version; 7 Package size: &mplayer-size; 8 Estimated Disk space required: &mplayer-buildsize; 9 Estimated build time: &mplayer-time;</screen> 4 <para>The <application>MPlayer</application> package contains an audio/video player that is able to 5 play almost every audio and video codec and can be controlled by command 6 line or <acronym>GUI</acronym>.</para> 10 7 11 <screen>Additional downloads: 12 <ulink url="http://ftp.lug.udel.edu/MPlayer/releases/codecs/win32codecs.tar.bz2">Win32 codecs</ulink> 13 <ulink url="http://ftp.lug.udel.edu/MPlayer/releases/fonts/font-arial-iso-8859-1.tar.bz2">Fonts for OSD</ulink> 14 <ulink url="http://ftp.lug.udel.edu/MPlayer/Skin/default-1.7.tar.bz2">Default Skin</ulink> 15 <ulink url="http://ftp.lug.udel.edu/MPlayer/releases/codecs/qt5dlls.tar.bz2">QuickTime 5 codecs</ulink> 16 <ulink url="http://ftp.lug.udel.edu/MPlayer/releases/codecs/qt6dlls.tar.bz2">QuickTime 6 codecs</ulink> 17 <ulink url="http://ftp.lug.udel.edu/MPlayer/releases/codecs/qtextras.tar.bz2">QuickTime extra codecs</ulink> 18 <ulink url="http://ftp.lug.udel.edu/MPlayer/releases/codecs/rp9codecs.tar.bz2">RealPlayer 9 codecs</ulink> 19 </screen> 8 <sect3><title>Package information</title> 9 <itemizedlist spacing='compact'> 10 <listitem><para>Download (HTTP): <ulink url="&mplayer-download-http;"/></para></listitem> 11 <listitem><para>Download (FTP): <ulink url="&mplayer-download-ftp;"/></para></listitem> 12 <listitem><para>Download size: &mplayer-size;</para></listitem> 13 <listitem><para>Estimated Disk space required: &mplayer-buildsize;</para></listitem> 14 <listitem><para>Estimated build time: &mplayer-time;</para></listitem></itemizedlist> 15 </sect3> 20 16 21 <para>The MPlayer package contains an audio/video player that is able to 22 play almost every audio and video codec and can be controlled by command 23 line or GUI.</para> 17 <sect3><title>Additional downloads</title> 18 <itemizedlist spacing='compact'> 19 <listitem><para>Required codecs: <ulink 20 url="http://www1.mplayerhq.hu/MPlayer/releases/codecs/extralite.tar.bz2"/></para></listitem> 21 <listitem><para>Required skin: <ulink 22 url="http://www1.mplayerhq.hu/MPlayer/Skin/default-1.7.tar.bz2"/></para></listitem> 23 <listitem><para>Optional fonts: <ulink 24 url="http://www1.mplayerhq.hu/MPlayer/releases/fonts/font-arial-iso-8859-1.tar.bz2"/></para> 25 </listitem> 26 </itemizedlist> 24 27 25 <screen>MPlayer depends on: 26 <xref linkend="xfree86"/> or <ulink url="http://www.directfb.org">DirectFB</ulink>, <xref linkend="GTK"/> and <xref linkend="libvorbis"/> 27 MPlayer will utilize: 28 <xref linkend="freetype2"/>, <xref linkend="libpng"/>, <xref linkend="libjpeg"/>, <xref linkend="libungif"/>, 29 <xref linkend="aalib"/>, <xref linkend="SDL"/>, <xref linkend="ffmpeg"/>, <xref linkend="xvid"/><!--, <xref linkend="opendivx"/>-->, 30 oss, <xref linkend="arts"/>, <xref linkend="alsa"/>, <ulink url="http://www.oberhumer.com/opensource/lzo">LZO</ulink>, 31 <ulink url="http://dvd.sourceforge.net">libdvdnav</ulink>, <ulink url="http://www.underbit.com/products/mad">MAD</ulink>, and <xref linkend="CDParanoia"/></screen> 28 <note><para>These are the minimum to install working 29 <application>MPlayer</application>. For more 30 codecs, skins and fonts visit <application>MPlayer</application>'s homepage.</para></note> 31 32 </sect3> 33 34 <sect3><title><application>MPlayer</application> dependencies</title> 35 <sect4><title>Required</title> 36 <para> 37 <xref linkend="GTK"/> 38 </para></sect4> 39 40 <sect4><title>Optional</title> 41 <para> 42 <xref linkend="DirectFB"/>, <xref linkend="SVGAlib"/>, <xref 43 linkend="freetype2"/>, <xref linkend="libungif"/>, <xref 44 linkend="libvorbis"/>, <xref linkend="aalib"/>, <xref linkend="SDL"/>, 45 <xref linkend="ffmpeg"/>, <xref linkend="xvid"/>, <xref 46 linkend="arts"/>, <xref linkend="alsa"/>, <ulink 47 url="http://www.oberhumer.com/opensource/lzo">LZO</ulink>, <ulink 48 url="http://dvd.sourceforge.net">libdvdnav</ulink>, <ulink 49 url="http://www.underbit.com/products/mad">MAD</ulink>, <xref 50 linkend="CDParanoia"/>, <xref linkend="lame"/> and <xref 51 linkend="xmms"/> 52 </para></sect4> 53 </sect3> 32 54 33 55 </sect2> -
multimedia/videoutils/mplayer/mplayer.ent
rd9d389b5 rd50ef4c5 5 5 <!ENTITY mplayer-desc SYSTEM "mplayer-desc.xml"> 6 6 <!ENTITY mplayer-config SYSTEM "mplayer-config.xml"> 7 <!ENTITY mplayer-buildsize "44 MB"> 8 <!ENTITY mplayer-version "0.90"> 9 <!ENTITY mplayer-download-http "http://ftp.lug.udel.edu/MPlayer/releases/MPlayer-0.90.tar.bz2"> 10 <!ENTITY mplayer-download-ftp "ftp://ftp.lug.udel.edu/MPlayer/releases/MPlayer-0.90.tar.bz2"> 11 <!ENTITY mplayer-size "3.3 MB"> 12 <!ENTITY mplayer-time "6.91 SBU"> 7 <!ENTITY mplayer-buildsize "67.2 MB"> 8 <!ENTITY mplayer-version "1.0pre1"> 9 <!ENTITY mplayer-download-http 10 "http://www1.mplayerhq.hu/MPlayer/releases/MPlayer-&mplayer-version;.tar.bz2"> 11 <!ENTITY mplayer-download-ftp 12 "ftp://ftp1.mplayerhq.hu/MPlayer/releases/MPlayer-&mplayer-version;.tar.bz2"> 13 <!ENTITY mplayer-size "4.0 MB"> 14 <!ENTITY mplayer-time "3.16 SBU"> -
x/wm/metacity/metacity-config.xml
rd9d389b5 rd50ef4c5 1 1 <sect2> 2 <title>Configuring metacity</title>2 <title>Configuring <application>metacity</application></title> 3 3 4 4 <sect3><title>Configuration Information</title> … … 7 7 before proceeding.</para> 8 8 9 < para><screen><userinput>cat >> ~/.xinitrc << "EOF"</userinput>9 <screen><userinput><command>cat >> ~/.xinitrc << "EOF"</command> 10 10 xterm & 11 11 exec metacity 12 < userinput>EOF</userinput></screen></para>12 <command>EOF</command></userinput></screen> 13 13 </sect3> 14 14 -
x/wm/metacity/metacity-desc.xml
rd9d389b5 rd50ef4c5 2 2 <title>Contents</title> 3 3 4 <para>The metacity package contains <userinput>metacity</userinput>.</para> 4 <para>The <application>metacity</application> package contains 5 <command>metacity</command>.</para> 5 6 6 7 </sect2> … … 9 10 10 11 <sect3><title>metacity</title> 11 <para> metacityis a window manager used mainly by Gnome.</para></sect3>12 <para><command>metacity</command> is a window manager used mainly by Gnome.</para></sect3> 12 13 13 14 </sect2> -
x/wm/metacity/metacity-inst.xml
rd9d389b5 rd50ef4c5 1 1 <sect2> 2 <title>Installation of metacity</title>2 <title>Installation of <application>metacity</application></title> 3 3 4 <para>Install metacityby running the following commands:</para>4 <para>Install <application>metacity</application> by running the following commands:</para> 5 5 6 < para><screen><userinput>./configure --prefix=/usr --libexec=/usr/sbin --sysconfdir=/etc &&6 <screen><userinput><command>./configure --prefix=/usr --libexec=/usr/sbin --sysconfdir=/etc && 7 7 make && 8 make install</ userinput></screen></para>8 make install</command></userinput></screen> 9 9 10 10 -
x/wm/metacity/metacity-intro.xml
rd9d389b5 rd50ef4c5 1 1 <sect2> 2 <title>Introduction to metacity</title>2 <title>Introduction to <application>metacity</application></title> 3 3 4 <screen>Download location (HTTP): <ulink url="&metacity-download-http;"/> 5 Download location (FTP): <ulink url="&metacity-download-ftp;"/> 6 Version used: &metacity-version; 7 Package size: &metacity-size; 8 Estimated Disk space required: &metacity-buildsize; 9 Estimated build time: &metacity-time;</screen> 10 11 <para>The metacity package contains a window manager. This is useful for 4 <para>The <application>metacity</application> package contains a window manager. This is useful for 12 5 organizing and displaying windows.</para> 13 6 14 <screen>metacity depends on: 15 <xref linkend="xfree86"/>, <xref linkend="intltool"/> and <xref linkend="GTK2"/> 16 metacity will utilize: 17 <xref linkend="startup-notification"/> and <xref linkend="GConf"/></screen> 7 <sect3><title>Package information</title> 8 <itemizedlist spacing='compact'> 9 <listitem><para>Download (HTTP): <ulink 10 url="&metacity-download-http;"/></para></listitem> 11 <listitem><para>Download (FTP): <ulink 12 url="&metacity-download-ftp;"/></para></listitem> 13 <listitem><para>Download size: &metacity-size;</para></listitem> 14 <listitem><para>Estimated Disk space required: 15 &metacity-buildsize;</para></listitem> 16 <listitem><para>Estimated build time: 17 &metacity-time;</para></listitem></itemizedlist> 18 </sect3> 19 20 <sect3><title><application>template</application> dependencies</title> 21 <sect4><title>Required</title> 22 <para><xref linkend="xfree86"/>, <xref linkend="intltool"/> and <xref 23 linkend="GTK2"/> 24 </para></sect4> 25 <sect4><title>Optional</title> 26 <para><xref linkend="startup-notification"/> and <xref linkend="GConf"/></para></sect4> 27 </sect3> 28 18 29 19 30 </sect2> -
x/wm/metacity/metacity.ent
rd9d389b5 rd50ef4c5 5 5 <!ENTITY metacity-desc SYSTEM "metacity-desc.xml"> 6 6 <!ENTITY metacity-config SYSTEM "metacity-config.xml"> 7 <!ENTITY metacity-buildsize " 15.8MB">8 <!ENTITY metacity-version "2.4. 34">9 <!ENTITY metacity-download-http "http://ftp.gnome.org/pub/GNOME/sources/metacity/2.4/metacity-2.4. 34.tar.bz2">10 <!ENTITY metacity-download-ftp "ftp://ftp.gnome.org/pub/GNOME/sources/metacity/2.4/metacity-2.4. 34.tar.bz2">11 <!ENTITY metacity-size "1. 2MB">12 <!ENTITY metacity-time " 1.33SBU">7 <!ENTITY metacity-buildsize "31.5 MB"> 8 <!ENTITY metacity-version "2.4.55"> 9 <!ENTITY metacity-download-http "http://ftp.gnome.org/pub/GNOME/sources/metacity/2.4/metacity-2.4.55.tar.bz2"> 10 <!ENTITY metacity-download-ftp "ftp://ftp.gnome.org/pub/GNOME/sources/metacity/2.4/metacity-2.4.55.tar.bz2"> 11 <!ENTITY metacity-size "1.3 MB"> 12 <!ENTITY metacity-time "0.49 SBU"> -
xsoft/other/pan/pan.ent
rd9d389b5 rd50ef4c5 5 5 <!ENTITY pan-desc SYSTEM "pan-desc.xml"> 6 6 <!ENTITY pan-config SYSTEM "pan-config.xml"> 7 <!ENTITY pan-buildsize " 20.1MB">8 <!ENTITY pan-version "0.14. 0">7 <!ENTITY pan-buildsize "67.8 MB"> 8 <!ENTITY pan-version "0.14.2"> 9 9 <!ENTITY pan-download-http "http://pan.rebelbase.com/download/releases/&pan-version;/SOURCE/pan-&pan-version;.tar.bz2"> 10 10 <!ENTITY pan-download-ftp ""> 11 <!ENTITY pan-size "1. 7MB">12 <!ENTITY pan-time " 1.32 SBU">11 <!ENTITY pan-size "1.8 MB"> 12 <!ENTITY pan-time "0.72 SBU">
Note:
See TracChangeset
for help on using the changeset viewer.