diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-12-31 23:02:06 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-12-31 23:02:06 +0000 |
commit | 6b2ebad9b60a8a6818b9a4c7b569975db59097f6 (patch) | |
tree | 430fce31cc77f2259aeba205631395dbad890a67 /games-board/peg-e | |
parent | QA_DT_HASH is no longer needed. (diff) | |
download | gentoo-2-6b2ebad9b60a8a6818b9a4c7b569975db59097f6.tar.gz gentoo-2-6b2ebad9b60a8a6818b9a4c7b569975db59097f6.tar.bz2 gentoo-2-6b2ebad9b60a8a6818b9a4c7b569975db59097f6.zip |
Initial commit.
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'games-board/peg-e')
-rw-r--r-- | games-board/peg-e/ChangeLog | 9 | ||||
-rw-r--r-- | games-board/peg-e/metadata.xml | 5 | ||||
-rw-r--r-- | games-board/peg-e/peg-e-1.1.0.ebuild | 29 |
3 files changed, 43 insertions, 0 deletions
diff --git a/games-board/peg-e/ChangeLog b/games-board/peg-e/ChangeLog new file mode 100644 index 000000000000..a16f492d0991 --- /dev/null +++ b/games-board/peg-e/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for games-board/peg-e +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/peg-e/ChangeLog,v 1.1 2009/12/31 23:02:06 ssuominen Exp $ + +*peg-e-1.1.0 (31 Dec 2009) + + 31 Dec 2009; Samuli Suominen <ssuominen@gentoo.org> +peg-e-1.1.0.ebuild: + Initial commit. + diff --git a/games-board/peg-e/metadata.xml b/games-board/peg-e/metadata.xml new file mode 100644 index 000000000000..d3c2cc926f0b --- /dev/null +++ b/games-board/peg-e/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-board/peg-e/peg-e-1.1.0.ebuild b/games-board/peg-e/peg-e-1.1.0.ebuild new file mode 100644 index 000000000000..3f08faac10bb --- /dev/null +++ b/games-board/peg-e/peg-e-1.1.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/peg-e/peg-e-1.1.0.ebuild,v 1.1 2009/12/31 23:02:06 ssuominen Exp $ + +EAPI=2 +inherit eutils qt4 games + +DESCRIPTION="A peg solitaire game" +HOMEPAGE="http://gottcode.org/peg-e/" +SRC_URI="http://gottcode.org/${PN}/${P}-src.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="x11-libs/qt-gui:4" + +src_configure() { + eqmake4 +} + +src_install() { + dogamesbin ${PN} || die + doicon icons/${PN}.png + domenu icons/${PN}.desktop + dodoc README + prepgamesdirs +} |