Merge lp:~bilalakhtar/gnome-media-player/manpageadded into lp:gnome-media-player/0.1

Proposed by Bilal Akhtar
Status: Merged
Merged at revision: 45
Proposed branch: lp:~bilalakhtar/gnome-media-player/manpageadded
Merge into: lp:gnome-media-player/0.1
Diff against target: 130 lines (+42/-18)
5 files modified
Makefile.am (+2/-0)
gnome-media-player.1 (+31/-0)
ltmain.sh (+4/-4)
src/Makefile.am (+1/-4)
src/Makefile.in (+4/-10)
To merge this branch: bzr merge lp:~bilalakhtar/gnome-media-player/manpageadded
Reviewer Review Type Date Requested Status
Michael Lamothe Pending
Review via email: mp+21557@code.launchpad.net

Description of the change

I have done the following changes in this branch:-
1) Added a man page
2) Fixed a bug in the Makefile, which would raise an error if the command "sudo make uninstall" is run. The error was that it would try to delete the UI directory twice, and an error would be raised when it would try to cd into the non-existent directory.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'Makefile.am'
2--- Makefile.am 2010-03-08 13:28:21 +0000
3+++ Makefile.am 2010-03-17 13:50:34 +0000
4@@ -10,6 +10,8 @@
5 desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
6 @INTLTOOL_DESKTOP_RULE@
7
8+man1_MANS = gnome-media-player.1
9+
10 gnome_media_playerdocdir = ${prefix}/doc/gnome-media-player
11 gnome_media_playerdoc_DATA = \
12 README\
13
14=== added file 'gnome-media-player.1'
15--- gnome-media-player.1 1970-01-01 00:00:00 +0000
16+++ gnome-media-player.1 2010-03-17 13:50:34 +0000
17@@ -0,0 +1,31 @@
18+.TH GNOME\-MEDIA\-PLAYER 1 "MARCH 2010" GNOME
19+.SH NAME
20+gnome\-media\-player \- A simple media player for GNOME that supports libvlc and xine-lib
21+.SH SYNOPSIS
22+.B gnome-media-player [--help] [--engine-type=
23+.I engine
24+.B ] [
25+.I file
26+.B ] ...
27+.SH DESCRIPTION
28+.B gnome-media-player
29+is a simple media player for GNOME that supports using the VLC and Xine engines for playing audio and video files
30+.SH OPTIONS
31+.TP
32+.I file
33+Plays the file specified in
34+.I file
35+when the player starts.
36+.TP
37+.B \--help
38+Shows the available options
39+.TP
40+.B \-e <engine> , --engine-type=<engine>
41+Forces GNOME Media Player to use
42+.I <engine>
43+as its engine type. Valid options are
44+.B vlc, vlc_ffmpeg and xine.
45+The default option is Xine.
46+.SH AUTHOR
47+Bilal Akhtar <bilalakhtar96@yahoo.com>
48+
49
50=== modified file 'ltmain.sh'
51--- ltmain.sh 2010-03-08 13:28:21 +0000
52+++ ltmain.sh 2010-03-17 13:50:34 +0000
53@@ -1,6 +1,6 @@
54 # Generated from ltmain.m4sh.
55
56-# ltmain.sh (GNU libtool) 2.2.6b
57+# ltmain.sh (GNU libtool) 2.2.6
58 # Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
59
60 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007 2008 Free Software Foundation, Inc.
61@@ -65,7 +65,7 @@
62 # compiler: $LTCC
63 # compiler flags: $LTCFLAGS
64 # linker: $LD (gnu? $with_gnu_ld)
65-# $progname: (GNU libtool) 2.2.6b Debian-2.2.6b-2ubuntu1
66+# $progname: (GNU libtool) 2.2.6 Debian-2.2.6a-4
67 # automake: $automake_version
68 # autoconf: $autoconf_version
69 #
70@@ -73,9 +73,9 @@
71
72 PROGRAM=ltmain.sh
73 PACKAGE=libtool
74-VERSION="2.2.6b Debian-2.2.6b-2ubuntu1"
75+VERSION="2.2.6 Debian-2.2.6a-4"
76 TIMESTAMP=""
77-package_revision=1.3017
78+package_revision=1.3012
79
80 # Be Bourne compatible
81 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
82
83=== modified file 'src/Makefile.am'
84--- src/Makefile.am 2010-01-30 11:39:15 +0000
85+++ src/Makefile.am 2010-03-17 13:50:34 +0000
86@@ -37,7 +37,4 @@
87
88 EXTRA_DIST = $(ui_DATA)
89
90-# Remove ui directory on uninstall
91-uninstall-local:
92- -rm -r $(uidir)
93- -rm -r $(datadir)/gnome-media-player
94+
95
96=== modified file 'src/Makefile.in'
97--- src/Makefile.in 2010-03-08 13:28:21 +0000
98+++ src/Makefile.in 2010-03-17 13:50:34 +0000
99@@ -1,4 +1,4 @@
100-# Makefile.in generated by automake 1.11.1 from Makefile.am.
101+# Makefile.in generated by automake 1.11 from Makefile.am.
102 # @configure_input@
103
104 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
105@@ -601,7 +601,7 @@
106
107 ps-am:
108
109-uninstall-am: uninstall-binPROGRAMS uninstall-local uninstall-uiDATA
110+uninstall-am: uninstall-binPROGRAMS uninstall-uiDATA
111
112 .MAKE: install-am install-strip
113
114@@ -617,14 +617,8 @@
115 installdirs maintainer-clean maintainer-clean-generic \
116 mostlyclean mostlyclean-compile mostlyclean-generic \
117 mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \
118- uninstall-am uninstall-binPROGRAMS uninstall-local \
119- uninstall-uiDATA
120-
121-
122-# Remove ui directory on uninstall
123-uninstall-local:
124- -rm -r $(uidir)
125- -rm -r $(datadir)/gnome-media-player
126+ uninstall-am uninstall-binPROGRAMS uninstall-uiDATA
127+
128
129 # Tell versions [3.59,3.63) of GNU make to not export all variables.
130 # Otherwise a system limit (for SysV at least) may be exceeded.

Subscribers

People subscribed via source and target branches

to all changes: