diff options
author | 2009-08-28 13:58:44 +0200 | |
---|---|---|
committer | 2009-08-28 13:58:44 +0200 | |
commit | a2b84d57c37339f6cca665b71731f8b1cd6622b0 (patch) | |
tree | 95c9668122a930e6c45bf3e5e0e156741cdb3772 /games-util/rejoystick | |
parent | (games-action/valandrick) rm /files/digest-valandrick-0.1a (diff) | |
download | gamerlay-a2b84d57c37339f6cca665b71731f8b1cd6622b0.tar.gz gamerlay-a2b84d57c37339f6cca665b71731f8b1cd6622b0.tar.bz2 gamerlay-a2b84d57c37339f6cca665b71731f8b1cd6622b0.zip |
games-util/: new category
games-util/rejoystick: New ebuild, import from bug #214140
Diffstat (limited to 'games-util/rejoystick')
-rw-r--r-- | games-util/rejoystick/Manifest | 3 | ||||
-rw-r--r-- | games-util/rejoystick/metadata.xml | 5 | ||||
-rw-r--r-- | games-util/rejoystick/rejoystick-0.8.1.ebuild | 27 |
3 files changed, 35 insertions, 0 deletions
diff --git a/games-util/rejoystick/Manifest b/games-util/rejoystick/Manifest new file mode 100644 index 0000000..cb6aaee --- /dev/null +++ b/games-util/rejoystick/Manifest @@ -0,0 +1,3 @@ +DIST rejoystick-0.8.1.tar.gz 437792 RMD160 4baf6691efb5793ffef4024761fe08d2a0cacae1 SHA1 6f82410e83ae86fa3e1210b02d2138aea7c037f7 SHA256 f11d911770c5d30522c8158a6d0bd355329c975d19cefbcbcca645eb1b83e937 +EBUILD rejoystick-0.8.1.ebuild 623 RMD160 7e3a5cd05fa49d1c2ff94e19bb820b6e24ff5840 SHA1 553445afd0486bbf64076e2d58a18643f475c081 SHA256 85e21d79442a37998353f414a0183324bc6e04f83088de4b68635a64f3089896 +MISC metadata.xml 162 RMD160 e6fa1ee0cd1cb264b55f4902e9cb17e1c6867ce0 SHA1 630bb721f6725739e1ee056b35bd9e38118897df SHA256 c3944dd4d745bf91cbd4fe8644861a73e83ac02bd9c75fbd488520f69669b876 diff --git a/games-util/rejoystick/metadata.xml b/games-util/rejoystick/metadata.xml new file mode 100644 index 0000000..48d2e47 --- /dev/null +++ b/games-util/rejoystick/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>playboys</herd> +</pkgmetadata> diff --git a/games-util/rejoystick/rejoystick-0.8.1.ebuild b/games-util/rejoystick/rejoystick-0.8.1.ebuild new file mode 100644 index 0000000..3b592ab --- /dev/null +++ b/games-util/rejoystick/rejoystick-0.8.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="2" + +DESCRIPTION="Program which translates gamepad/joystick input into key strokes/mouse actions in X" +HOMEPAGE="http://rejoystick.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="x11-libs/gtk+:2 + x11-libs/libXtst + media-libs/libsdl[joystick]" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_configure() { + econf --disable-dependency-tracking +} +src_install() { + emake DESTDIR="${D}" install || die "emake failed" +} |