[renpy] 19/146: Added man pages Set up renpy-demo as a different program

Markus Koschany apo-guest at moszumanska.debian.org
Tue Jan 12 19:40:01 UTC 2016


This is an automated email from the git hooks/post-receive script.

apo-guest pushed a commit to branch experimental
in repository renpy.

commit 6ef0bb69b28e8fe827e706b67d8cbfb623fc0cf3
Author: Miriam Ruiz <little_miry at yahoo.es>
Date:   Fri May 11 21:39:07 2007 +0000

    Added man pages
    Set up renpy-demo as a different program
---
 debian/copyright          | 10 +---------
 debian/renpy-demo.6       | 14 ++++++++++++++
 debian/renpy-demo.desktop |  2 +-
 debian/renpy-demo.menu    |  2 +-
 debian/renpy-demo.sh      |  3 +++
 debian/renpy.6            | 27 +++++++++++++++++++++++++++
 debian/rules              |  8 +++++---
 7 files changed, 52 insertions(+), 14 deletions(-)

diff --git a/debian/copyright b/debian/copyright
index 240b5d3..cd7a205 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -3,7 +3,7 @@ Fri, 17 Mar 2006 16:57:21 +0100.
 
 It was downloaded from http://www.bishoujo.us/renpy/
 
-Copyright 2004-2006 PyTom <pytom at bishoujo.us>
+Copyright 2004-2007 PyTom <pytom at bishoujo.us>
 
 Permission is hereby granted, free of charge, to any person
 obtaining a copy of this software and associated documentation files
@@ -26,14 +26,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
 ----------------------------------------------------------------------
 
-Demo:
-
-This script and the artwork associated with it, is in the
-public domain. Feel free to use it as the basis for your own
-game.
-
-----------------------------------------------------------------------
-
 Fonts are (c) Bitstream (see below). DejaVu changes are in public domain.
 Glyphs imported from Arev fonts are (c) Tavmjung Bah (see below)
 
diff --git a/debian/renpy-demo.6 b/debian/renpy-demo.6
new file mode 100644
index 0000000..c2e089e
--- /dev/null
+++ b/debian/renpy-demo.6
@@ -0,0 +1,14 @@
+.\" 
+.TH "renpy-demo" "6" "May 2007" "" "Games"
+.SH "NAME"
+renpy\-demo \- demo script for the Ren'Py engine
+.SH "SYNOPSIS"
+.B renpy\-demo
+.SH "DESCRIPTION"
+The purpose of this demo is to demonstrate some of the features of the Ren'Py visual novel engine.
+
+Eileen, the virtual guide to the demo, will show you how to move inside the user interface, as well as the different features of the system.
+.SH "SEE ALSO"
+The source code for the demo script is at /usr/share/games/renpy/demo/ . Zou should have a look at it to find out how different effects are achieved.
+
+You can find more information at http://www.renpy.org/
diff --git a/debian/renpy-demo.desktop b/debian/renpy-demo.desktop
index e9be0ed..9d67f71 100644
--- a/debian/renpy-demo.desktop
+++ b/debian/renpy-demo.desktop
@@ -6,6 +6,6 @@ GenericName=renpy-demo
 Comment=visual-novel game demo with Ren'Py
 Comment[es]=demo de juego de novela grafica con Ren'Py
 Icon=renpy-demo
-Exec=renpy /usr/share/games/renpy/demo
+Exec=renpy-demo
 Terminal=false
 Categories=Game;
diff --git a/debian/renpy-demo.menu b/debian/renpy-demo.menu
index 135a797..e8d58a5 100644
--- a/debian/renpy-demo.menu
+++ b/debian/renpy-demo.menu
@@ -1,3 +1,3 @@
 ?package(renpy-demo):needs="x11" section="Games/Adventure" \
-	title="Ren'Py Demo" command="/usr/games/renpy /usr/share/games/renpy/demo" \
+	title="Ren'Py Demo" command="/usr/games/renpy-demo" \
 	icon="/usr/share/pixmaps/renpy-demo.xpm"
diff --git a/debian/renpy-demo.sh b/debian/renpy-demo.sh
new file mode 100755
index 0000000..fc2816c
--- /dev/null
+++ b/debian/renpy-demo.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+/usr/games/renpy /usr/share/games/renpy/demo
diff --git a/debian/renpy.6 b/debian/renpy.6
new file mode 100644
index 0000000..7a1e2ab
--- /dev/null
+++ b/debian/renpy.6
@@ -0,0 +1,27 @@
+.\" 
+.TH "renpy" "6" "May 2007" "" "Games"
+.SH "NAME"
+renpy \- engine for creating visual novels
+.SH "SYNOPSIS"
+.B renpy \fB[path to the script directory]\fR
+.SH "DESCRIPTION"
+Ren'Py is a programming language and runtime, intended to ease the creation of visual\-novel type games. It contains features that make it easy to display thoughts, dialogue, and menus; to display images to the user; to write game logic; and to support the saving and loading of games.
+
+Ren'Py tries to be like an executable script, allowing you to get a working game without much more effort than is required to type the game script into the computer.
+
+Ren'Py is implemented on top of python, and that python heritage shows through in many places. Many Ren'Py statements allow python expressions to be used, and there are also Ren'Py statements that allow for the execution of arbitrary python code. Many of the less\-used features of Ren'Py are exposed to the user by way of python. By only requiring use of the simplest features of python, it's hoped that Ren'Py will be usable by all game authors.
+.SH "USAGE"
+If you run the program without any arguments, zou will get an interactive launcher from where you can select, run and work different projects.
+
+For running a script, you need to give the full path to the directory that contains the game you want to play.
+
+For example:
+renpy /usr/share/games/renpy/demo/
+
+To learn how to use the game interface, you should install and play renpy\-demo.
+.SH "FILES"
+The game data for each user is stored at ~/.renpy/ directory.
+
+The scripts can be installed in the system bz placing them under /usr/share/games/renpy/ , but you can run any script in an arbitrarz directory just by telling the path as the parameter to the game.
+.SH "SEE ALSO"
+You can find more information at http://www.renpy.org/
diff --git a/debian/rules b/debian/rules
index 4090c07..8e31fc7 100755
--- a/debian/rules
+++ b/debian/rules
@@ -3,7 +3,6 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
-
 CFLAGS = -Wall -g
 
 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
@@ -55,11 +54,13 @@ install-indep:
 	# Scripts that give additional features.
 	dh_install -prenpy  dse/* usr/share/games/renpy/dse/
 	dh_install -prenpy  template/* usr/share/games/renpy/template/
-	
+
 	dh_install -prenpy-demo demo/* usr/share/games/renpy/demo/
+	dh_install -prenpy-demo debian/renpy-demo.sh usr/share/games/renpy/
 
 	dh_install -prenpy  renpy.py usr/share/games/renpy/
 	dh_link -prenpy  usr/share/games/renpy/renpy.py usr/games/renpy
+	dh_link -prenpy-demo  usr/share/games/renpy/renpy-demo.sh usr/games/renpy-demo
 
 	dh_install -prenpy debian/renpy.xpm usr/share/pixmaps
 	dh_install -prenpy debian/renpy.desktop usr/share/applications
@@ -81,7 +82,8 @@ binary-indep: install-indep
 	dh_installdocs -i
 	dh_installexamples -i
 	dh_installmenu -i
-	#dh_installman -prenpy debian/renpy.6
+	dh_installman -prenpy debian/renpy.6
+	dh_installman -prenpy-demo debian/renpy-demo.6
 	#dh_installdirs -prenpy usr/share/lintian/overrides/
 	#dh_install -prenpy debian/overrides/renpy usr/share/lintian/overrides/
 	dh_compress -i

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/renpy.git



More information about the Pkg-games-commits mailing list