diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-01-08 21:26:05 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-01-08 21:26:05 +0000 |
commit | 524f19007abd39b6639d8236d3ab5813f7922433 (patch) | |
tree | 4abc88098a1b5335afbf1f4bb833f0f957e6d8ee /x11-misc/xautomation | |
parent | new ebuild for xautomation (bug 35085) (diff) | |
download | gentoo-2-524f19007abd39b6639d8236d3ab5813f7922433.tar.gz gentoo-2-524f19007abd39b6639d8236d3ab5813f7922433.tar.bz2 gentoo-2-524f19007abd39b6639d8236d3ab5813f7922433.zip |
new ebuild for xautomation (bug 35085)
Diffstat (limited to 'x11-misc/xautomation')
-rw-r--r-- | x11-misc/xautomation/ChangeLog | 9 | ||||
-rw-r--r-- | x11-misc/xautomation/Manifest | 4 | ||||
-rw-r--r-- | x11-misc/xautomation/files/digest-xautomation-0.93 | 1 | ||||
-rw-r--r-- | x11-misc/xautomation/metadata.xml | 9 | ||||
-rw-r--r-- | x11-misc/xautomation/xautomation-0.93.ebuild | 23 |
5 files changed, 45 insertions, 1 deletions
diff --git a/x11-misc/xautomation/ChangeLog b/x11-misc/xautomation/ChangeLog new file mode 100644 index 000000000000..d26851057283 --- /dev/null +++ b/x11-misc/xautomation/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for x11-misc/xautomation +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xautomation/ChangeLog,v 1.1 2004/01/08 21:25:53 agriffis Exp $ + +*xautomation-0.93 (08 Jan 2004) + + 08 Jan 2004; Aron Griffis <agriffis@gentoo.org> xautomation-0.93.ebuild: + New ebuild for xautomation, thanks to Joel Martin in bug 35085 + diff --git a/x11-misc/xautomation/Manifest b/x11-misc/xautomation/Manifest index cf12f28e3dc8..ff13c884c934 100644 --- a/x11-misc/xautomation/Manifest +++ b/x11-misc/xautomation/Manifest @@ -1,2 +1,4 @@ -MD5 86d919ccc59b81572a804d776c67de39 xautomation-0.93.ebuild 562 +MD5 377e3446a7b50216fdbc004ebc3b4b41 xautomation-0.93.ebuild 671 +MD5 deef1e30c6c6581806e65c44185a30c0 metadata.xml 259 +MD5 22e13d11983747b093b4b8c0f7918d6b ChangeLog 398 MD5 7d0dc71923411c116548352a7a12bd55 files/digest-xautomation-0.93 67 diff --git a/x11-misc/xautomation/files/digest-xautomation-0.93 b/x11-misc/xautomation/files/digest-xautomation-0.93 new file mode 100644 index 000000000000..2ead36453a4b --- /dev/null +++ b/x11-misc/xautomation/files/digest-xautomation-0.93 @@ -0,0 +1 @@ +MD5 c3d00203ac6ba0dabced6619fc75ad40 xautomation-0.93.tar.gz 72800 diff --git a/x11-misc/xautomation/metadata.xml b/x11-misc/xautomation/metadata.xml new file mode 100644 index 000000000000..d206f3a92c52 --- /dev/null +++ b/x11-misc/xautomation/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>desktop-misc</herd> +<maintainer> + <email>agriffis@gentoo.org</email> + <name>Aron Griffis</name> +</maintainer> +</pkgmetadata> diff --git a/x11-misc/xautomation/xautomation-0.93.ebuild b/x11-misc/xautomation/xautomation-0.93.ebuild new file mode 100644 index 000000000000..3216214bcea0 --- /dev/null +++ b/x11-misc/xautomation/xautomation-0.93.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xautomation/xautomation-0.93.ebuild,v 1.1 2004/01/08 21:25:53 agriffis Exp $ + +DESCRIPTION="Control X from command line and find things on screen" +HOMEPAGE="http://hoopajoo.net/projects/xautomation.html" +SRC_URI="http://hoopajoo.net/static/projects/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~ia64 ~x86" +IUSE="" +DEPEND="" + +src_compile() { + econf || die 'econf failed' + emake || die 'emake failed' +} + +src_install() { + make DESTDIR=${D} install || die 'make install failed' + dodoc AUTHORS ChangeLog +} |