From: Milosz D. <mde...@us...> - 2005-09-13 00:59:52
|
Update of /cvsroot/beepmp/bmpx In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4003 Modified Files: Makefile.am configure.ac Added Files: bmpx.1.in Log Message: Added man page, changes in the DBus interface, updated translations --- NEW FILE: bmpx.1.in --- .TH BMPx "13 September 2005" "Version @VERSION@" "BMPx Manual Page" .SH NAME BMPx \- Audio Player .SH SYNOPSIS .B bmpx [\-\-no\-log] [\-\-no\-ui] [\-\-no\-remote] [\-\-daemon] .SH DESCRIPTION \fIBMPx\fP is an audio player that can be either used with a built-in frontend which currently utilizes Winamp 2.x compatible skins, or as a daemon for other frontends to connect via a DBus interface. .SH OPTIONS .TP .B \-\-no\-log Disables writing of log messages to the logfile (default location of the log file is $HOME/.bmpx/log), and writes messages to standard output instead. .TP .B \-\-no\-ui Starts with the UI disabled. The UI can be started afterwards using the DBus interface, or a different frontend can connect trough DBus to take control over BMPx (although this is also possible while the main UI is running as well). .TP .B \-\-no\-remote Disables the DBus remote interface. BMPx can then be only controlled trough it's main, built-in GUI. Note that while it is possible to specify both \-\-no\-remote and \-\-no\-ui, it is obviously not very useful, since the player will run as a daemon, but will at the same time be not controllable by any means. .TP .B \-\-daemon Run BMPx as a daemon. This implies \-\-no\-ui, means the UI is not being initialized as well (Though it can be started at a later point using the DBus interface) .SH SKINS BMPx supports Winamp 2.x compatible skins. Skins may be stored in either archived (\fI.zip\fP, \fI.wsz\fP, \fI.tgz\fP, \fI.tar.gz\fP, or \fI.tar.bz2\fP) or unarchived format (as a decompressed directory). BMP looks for skins in @datadir@/bmpx/skins, $HOME/.bmpx/skins. .SH FILES/PATHS .TP ~/.bmp/config.xml Users' BMPx XML configuration. .TP ~/.bmp/playlists Default directory for playlists storage. .TP ~/.bmp/skins, @datadir@/bmp/Skins Default locations where BMPx will look for skins. .SH OTHER INFO The webpage for BMPx is at http://bmpx.berlios.de. There you can find information about BMPx, download the latest version, skins, and get help. Index: configure.ac =================================================================== RCS file: /cvsroot/beepmp/bmpx/configure.ac,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** configure.ac 10 Sep 2005 05:16:05 -0000 1.3 --- configure.ac 13 Sep 2005 00:59:41 -0000 1.4 *************** *** 125,128 **** --- 125,129 ---- localedir=$datadir/locale AC_SUBST(localedir) + AC_SUBST(datadir) dnl FIXME: Don't hardcode the package name here *************** *** 134,137 **** --- 135,139 ---- AC_CONFIG_FILES([ Makefile + bmpx.1 data/Makefile dbus-examples/Makefile Index: Makefile.am =================================================================== RCS file: /cvsroot/beepmp/bmpx/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Makefile.am 10 Sep 2005 05:16:05 -0000 1.3 --- Makefile.am 13 Sep 2005 00:59:41 -0000 1.4 *************** *** 3,5 **** --- 3,7 ---- SUBDIRS = src skin icons ui images data glade dbus-examples docs po intl + man_MANS = bmpx.1 + EXTRA_DIST = autogen.sh |