diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-12-08 04:33:58 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-12-08 04:33:58 +0000 |
commit | d500de2f2dea0927d80d6f02d44f2b8921965c9e (patch) | |
tree | f6e5d11e3a12f3ff1ce6a0b7497e63fe0ab73463 /games-puzzle | |
parent | NOT removing older version (diff) | |
download | historical-d500de2f2dea0927d80d6f02d44f2b8921965c9e.tar.gz historical-d500de2f2dea0927d80d6f02d44f2b8921965c9e.tar.bz2 historical-d500de2f2dea0927d80d6f02d44f2b8921965c9e.zip |
initial import
Diffstat (limited to 'games-puzzle')
-rw-r--r-- | games-puzzle/triptych-demo/ChangeLog | 8 | ||||
-rw-r--r-- | games-puzzle/triptych-demo/Manifest | 14 | ||||
-rw-r--r-- | games-puzzle/triptych-demo/files/digest-triptych-demo-0 | 1 | ||||
-rw-r--r-- | games-puzzle/triptych-demo/metadata.xml | 5 | ||||
-rw-r--r-- | games-puzzle/triptych-demo/triptych-demo-0.ebuild | 31 |
5 files changed, 59 insertions, 0 deletions
diff --git a/games-puzzle/triptych-demo/ChangeLog b/games-puzzle/triptych-demo/ChangeLog new file mode 100644 index 000000000000..3fcd7ff5b4a5 --- /dev/null +++ b/games-puzzle/triptych-demo/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for games-puzzle/triptych-demo +# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/triptych-demo/ChangeLog,v 1.1 2004/12/08 04:33:58 vapier Exp $ + +*triptych-demo-0 (07 Dec 2004) + + 07 Dec 2004; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by me. diff --git a/games-puzzle/triptych-demo/Manifest b/games-puzzle/triptych-demo/Manifest new file mode 100644 index 000000000000..fbb905578b1a --- /dev/null +++ b/games-puzzle/triptych-demo/Manifest @@ -0,0 +1,14 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +MD5 76a96ad7c96357655e1ea98f58065c18 ChangeLog 352 +MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 +MD5 1ca1b53c796e45b6b69270099679cbff triptych-demo-0.ebuild 731 +MD5 5593d94dac71b0477981be9ef76204fc files/digest-triptych-demo-0 61 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.9.10 (GNU/Linux) + +iD8DBQFBtoRGroRuSHgZdywRAjTgAJ9JUGyP0S3/2Ka36FDjTpUEmEFCxwCfUk6I +KYfNw/08hvzr9Ou79zj/9aY= +=kYHs +-----END PGP SIGNATURE----- diff --git a/games-puzzle/triptych-demo/files/digest-triptych-demo-0 b/games-puzzle/triptych-demo/files/digest-triptych-demo-0 new file mode 100644 index 000000000000..1511b9e1e14a --- /dev/null +++ b/games-puzzle/triptych-demo/files/digest-triptych-demo-0 @@ -0,0 +1 @@ +MD5 dfd8b505f6dbbd1f28f35399f7b55e34 triptych.tar.gz 1748316 diff --git a/games-puzzle/triptych-demo/metadata.xml b/games-puzzle/triptych-demo/metadata.xml new file mode 100644 index 000000000000..d3c2cc926f0b --- /dev/null +++ b/games-puzzle/triptych-demo/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>games</herd> +</pkgmetadata> diff --git a/games-puzzle/triptych-demo/triptych-demo-0.ebuild b/games-puzzle/triptych-demo/triptych-demo-0.ebuild new file mode 100644 index 000000000000..0e7704c68143 --- /dev/null +++ b/games-puzzle/triptych-demo/triptych-demo-0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/triptych-demo/triptych-demo-0.ebuild,v 1.1 2004/12/08 04:33:58 vapier Exp $ + +inherit games eutils + +DESCRIPTION="fast-paced tetris-like puzzler" +HOMEPAGE="http://www.chroniclogic.com/triptych.htm" +SRC_URI="http://www.chroniclogic.com/demo/triptych.tar.gz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="-* x86" +IUSE="" + +RDEPEND="virtual/libc + media-libs/libsdl + virtual/x11 + virtual/opengl" + +S=${WORKDIR}/triptych + +src_install() { + local dir=${GAMES_PREFIX_OPT}/${PN} + dodir ${dir} ${GAMES_BINDIR} + + cp -a * "${D}"/${dir}/ + games_make_wrapper triptych ./triptych ${dir} + + prepgamesdirs +} |