diff mbox

[Branch,~glmark2-dev/glmark2/trunk] Rev 56: Add man pages for glmark2 and glmark2-es2

Message ID 20110721123634.17019.64068.launchpad@loganberry.canonical.com
State Accepted
Headers show

Commit Message

Alexandros Frantzis July 21, 2011, 12:36 p.m. UTC
------------------------------------------------------------
revno: 56
committer: Alexandros Frantzis <alf82@freemail.gr>
timestamp: Thu 2010-07-15 12:59:22 +0300
message:
  Add man pages for glmark2 and glmark2-es2
added:
  doc/
  doc/glmark2-es2.1
  doc/glmark2.1
  doc/wscript_build
modified:
  wscript


--
lp:glmark2
https://code.launchpad.net/~glmark2-dev/glmark2/trunk

You are subscribed to branch lp:glmark2.
To unsubscribe from this branch go to https://code.launchpad.net/~glmark2-dev/glmark2/trunk/+edit-subscription
diff mbox

Patch

=== added directory 'doc'
=== added file 'doc/glmark2-es2.1'
--- doc/glmark2-es2.1	1970-01-01 00:00:00 +0000
+++ doc/glmark2-es2.1	2010-07-15 09:59:22 +0000
@@ -0,0 +1,15 @@ 
+.TH GLMARK2-ES2 1 "2010-07-15"
+.SH NAME
+glmark2(-es2) \- OpenGL (ES) 2.0 benchmark
+.SH SYNOPSIS
+.B glmark2
+.br
+.B glmark2-es2
+.SH DESCRIPTION
+\fBglmark2(-es2)\fP is a benchmark for OpenGL (ES) 2.0. It only uses the subset of
+the OpenGL 2.0 API that is compatible with OpenGL ES 2.0.
+.SH AUTHOR
+glmark2 was written by Alexandros Frantzis based on the original glmark by Ben Smith.
+.PP
+This manual page was written by Alexandros Frantzis <alexandros.frantzis@linaro.org>,
+for the Debian project (and may be used by others).

=== added file 'doc/glmark2.1'
--- doc/glmark2.1	1970-01-01 00:00:00 +0000
+++ doc/glmark2.1	2010-07-15 09:59:22 +0000
@@ -0,0 +1,15 @@ 
+.TH GLMARK2 1 "2010-07-15"
+.SH NAME
+glmark2(-es2) \- OpenGL (ES) 2.0 benchmark
+.SH SYNOPSIS
+.B glmark2
+.br
+.B glmark2-es2
+.SH DESCRIPTION
+\fBglmark2(-es2)\fP is a benchmark for OpenGL (ES) 2.0. It only uses the subset of
+the OpenGL 2.0 API that is compatible with OpenGL ES 2.0.
+.SH AUTHOR
+glmark2 was written by Alexandros Frantzis based on the original glmark by Ben Smith.
+.PP
+This manual page was written by Alexandros Frantzis <alexandros.frantzis@linaro.org>,
+for the Debian project (and may be used by others).

=== added file 'doc/wscript_build'
--- doc/wscript_build	1970-01-01 00:00:00 +0000
+++ doc/wscript_build	2010-07-15 09:59:22 +0000
@@ -0,0 +1,7 @@ 
+if bld.env.USE_GL:
+	bld.install_files('${PREFIX}/share/man/man1',
+		bld.path.ant_glob('glmark2.1'))
+
+if bld.env.USE_GLESv2:
+	bld.install_files('${PREFIX}/share/man/man1',
+		bld.path.ant_glob('glmark2-es2.1'))

=== modified file 'wscript'
--- wscript	2010-07-15 09:05:21 +0000
+++ wscript	2010-07-15 09:59:22 +0000
@@ -88,3 +88,4 @@ 
 def build(bld):
 	bld.recurse('src')
 	bld.recurse('data')
+	bld.recurse('doc')