diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-07 19:09:56 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-07 19:09:56 +0000 |
commit | 81e08110609353193f5fd2db93a1d0819d05b3b4 (patch) | |
tree | f580688c12d103e5d9db41ca80c3a6cc364f975c | |
parent | version bump, removed outdated ebuild (Manifest recommit) (diff) | |
download | gentoo-2-81e08110609353193f5fd2db93a1d0819d05b3b4.tar.gz gentoo-2-81e08110609353193f5fd2db93a1d0819d05b3b4.tar.bz2 gentoo-2-81e08110609353193f5fd2db93a1d0819d05b3b4.zip |
initial commit
-rw-r--r-- | games-board/mahjongg3d/ChangeLog | 10 | ||||
-rw-r--r-- | games-board/mahjongg3d/Manifest | 2 | ||||
-rw-r--r-- | games-board/mahjongg3d/files/digest-mahjongg3d-0.95 | 1 | ||||
-rw-r--r-- | games-board/mahjongg3d/mahjongg3d-0.95.ebuild | 45 | ||||
-rw-r--r-- | games-board/mahjongg3d/metadata.xml | 5 |
5 files changed, 63 insertions, 0 deletions
diff --git a/games-board/mahjongg3d/ChangeLog b/games-board/mahjongg3d/ChangeLog new file mode 100644 index 000000000000..dd7025469818 --- /dev/null +++ b/games-board/mahjongg3d/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for games-board/mahjongg3d +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/mahjongg3d/ChangeLog,v 1.1 2004/06/07 19:09:56 mr_bones_ Exp $ + +*mahjongg3d-0.95 (07 Jun 2004) + + 07 Jun 2004; Michael Sterrett <mr_bones_@gentoo.org> mahjongg3d-0.95.ebuild, + metadata.xml: + initial commit - ebuild supplied by Jonas Bahr via bug #52825 + diff --git a/games-board/mahjongg3d/Manifest b/games-board/mahjongg3d/Manifest new file mode 100644 index 000000000000..032bd3a8b1d9 --- /dev/null +++ b/games-board/mahjongg3d/Manifest @@ -0,0 +1,2 @@ +MD5 59ae9a5abb3ec20b5352e835ec2d551e mahjongg3d-0.95.ebuild 1236 +MD5 25238a925f8e2204bb9c3e05e3ad3c3f files/digest-mahjongg3d-0.95 69 diff --git a/games-board/mahjongg3d/files/digest-mahjongg3d-0.95 b/games-board/mahjongg3d/files/digest-mahjongg3d-0.95 new file mode 100644 index 000000000000..397f208a53a9 --- /dev/null +++ b/games-board/mahjongg3d/files/digest-mahjongg3d-0.95 @@ -0,0 +1 @@ +MD5 2c8b0793b6a2f74a0ce5915b8e71e9b4 mahjongg3d-0.95.tar.bz2 3674725 diff --git a/games-board/mahjongg3d/mahjongg3d-0.95.ebuild b/games-board/mahjongg3d/mahjongg3d-0.95.ebuild new file mode 100644 index 000000000000..41a9b0604c6c --- /dev/null +++ b/games-board/mahjongg3d/mahjongg3d-0.95.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/mahjongg3d/mahjongg3d-0.95.ebuild,v 1.1 2004/06/07 19:09:56 mr_bones_ Exp $ + +inherit kde games + +DESCRIPTION="An implementation of the classical chinese game Mah Jongg with 3D OpenGL graphics" +HOMEPAGE="http://www.reto-schoelly.de/mahjongg3d/" +# No version upstream +#SRC_URI="http://www.reto-schoelly.de/${PN}/${PN}.tar.bz2" +SRC_URI="mirror:/gentoo/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" +IUSE="" + +RDEPEND=">=qt-3.2.0 + virtual/opengl" +DEPEND="${RDEPEND} + >=sys-apps/sed-4" + +S="${WORKDIR}/${PN}.release" + +src_unpack() { + unpack ${A} + cd ${S} + sed -i \ + -e "/GAMEDATA_BASE_PATH/ s:\.:${GAMES_DATADIR}/${PN}:" \ + src/gamedata_path.h || die "sed src/gamedata_path.h failed" +} + +src_compile() { + qmake -o Makefile mahjongg3d.pro + kde_src_compile none + emake || die "emake failed" +} + +src_install () { + dogamesbin bin/{mahjongg3d,mahjongg3d-install-*} || die "dogamesbin failed" + dodir "${GAMES_DATADIR}/${PN}" + cp -r bin/{[a-l]*,t*} "${D}${GAMES_DATADIR}/${PN}" || die "cp failed" + dodoc README Changelog + prepgamesdirs +} diff --git a/games-board/mahjongg3d/metadata.xml b/games-board/mahjongg3d/metadata.xml new file mode 100644 index 000000000000..d3c2cc926f0b --- /dev/null +++ b/games-board/mahjongg3d/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> |