r2660 - packages/trunk/renpy/debian

Miriam Ruiz baby-guest at alioth.debian.org
Fri May 11 21:39:07 UTC 2007


Author: baby-guest
Date: 2007-05-11 21:39:07 +0000 (Fri, 11 May 2007)
New Revision: 2660

Added:
   packages/trunk/renpy/debian/renpy-demo.6
   packages/trunk/renpy/debian/renpy-demo.sh
   packages/trunk/renpy/debian/renpy.6
Modified:
   packages/trunk/renpy/debian/copyright
   packages/trunk/renpy/debian/renpy-demo.desktop
   packages/trunk/renpy/debian/renpy-demo.menu
   packages/trunk/renpy/debian/rules
Log:
Added man pages
Set up renpy-demo as a different program



Modified: packages/trunk/renpy/debian/copyright
===================================================================
--- packages/trunk/renpy/debian/copyright	2007-05-11 21:26:01 UTC (rev 2659)
+++ packages/trunk/renpy/debian/copyright	2007-05-11 21:39:07 UTC (rev 2660)
@@ -3,7 +3,7 @@
 
 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 @@
 
 ----------------------------------------------------------------------
 
-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)
 

Added: packages/trunk/renpy/debian/renpy-demo.6
===================================================================
--- packages/trunk/renpy/debian/renpy-demo.6	2007-05-11 21:26:01 UTC (rev 2659)
+++ packages/trunk/renpy/debian/renpy-demo.6	2007-05-11 21:39:07 UTC (rev 2660)
@@ -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/

Modified: packages/trunk/renpy/debian/renpy-demo.desktop
===================================================================
--- packages/trunk/renpy/debian/renpy-demo.desktop	2007-05-11 21:26:01 UTC (rev 2659)
+++ packages/trunk/renpy/debian/renpy-demo.desktop	2007-05-11 21:39:07 UTC (rev 2660)
@@ -6,6 +6,6 @@
 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;

Modified: packages/trunk/renpy/debian/renpy-demo.menu
===================================================================
--- packages/trunk/renpy/debian/renpy-demo.menu	2007-05-11 21:26:01 UTC (rev 2659)
+++ packages/trunk/renpy/debian/renpy-demo.menu	2007-05-11 21:39:07 UTC (rev 2660)
@@ -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"

Added: packages/trunk/renpy/debian/renpy-demo.sh
===================================================================
--- packages/trunk/renpy/debian/renpy-demo.sh	2007-05-11 21:26:01 UTC (rev 2659)
+++ packages/trunk/renpy/debian/renpy-demo.sh	2007-05-11 21:39:07 UTC (rev 2660)
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+/usr/games/renpy /usr/share/games/renpy/demo


Property changes on: packages/trunk/renpy/debian/renpy-demo.sh
___________________________________________________________________
Name: svn:executable
   + *

Added: packages/trunk/renpy/debian/renpy.6
===================================================================
--- packages/trunk/renpy/debian/renpy.6	2007-05-11 21:26:01 UTC (rev 2659)
+++ packages/trunk/renpy/debian/renpy.6	2007-05-11 21:39:07 UTC (rev 2660)
@@ -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/

Modified: packages/trunk/renpy/debian/rules
===================================================================
--- packages/trunk/renpy/debian/rules	2007-05-11 21:26:01 UTC (rev 2659)
+++ packages/trunk/renpy/debian/rules	2007-05-11 21:39:07 UTC (rev 2660)
@@ -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 @@
 	# 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 @@
 	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




More information about the Pkg-games-commits mailing list