diff options
author | Tavis Ormandy <taviso@gentoo.org> | 2005-09-25 16:41:50 +0000 |
---|---|---|
committer | Tavis Ormandy <taviso@gentoo.org> | 2005-09-25 16:41:50 +0000 |
commit | a2ca7134397b4c90dd026b1cfbc0d0bdb3f6137d (patch) | |
tree | a91722d8973d7dca06395e1b9f37595f4a1a3af7 /x11-misc/xse | |
parent | remove stale patches, files, ebuilds, etc. (diff) | |
download | historical-a2ca7134397b4c90dd026b1cfbc0d0bdb3f6137d.tar.gz historical-a2ca7134397b4c90dd026b1cfbc0d0bdb3f6137d.tar.bz2 historical-a2ca7134397b4c90dd026b1cfbc0d0bdb3f6137d.zip |
New version available
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'x11-misc/xse')
-rw-r--r-- | x11-misc/xse/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/xse/Manifest | 6 | ||||
-rw-r--r-- | x11-misc/xse/files/digest-xse-2.1 | 1 | ||||
-rw-r--r-- | x11-misc/xse/xse-2.1.ebuild | 30 |
4 files changed, 41 insertions, 3 deletions
diff --git a/x11-misc/xse/ChangeLog b/x11-misc/xse/ChangeLog index 310349035db7..41c3a15b9912 100644 --- a/x11-misc/xse/ChangeLog +++ b/x11-misc/xse/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/xse # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xse/ChangeLog,v 1.3 2005/04/28 06:25:02 wormo Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xse/ChangeLog,v 1.4 2005/09/25 16:41:50 taviso Exp $ + +*xse-2.1 (25 Sep 2005) + + 25 Sep 2005; Tavis Ormandy <taviso@gentoo.org> +xse-2.1.ebuild: + New version available, thanks to Mat Martineau for the tip. 27 Apr 2005; Stephanie Lockwood-Childs <wormo@gentoo.org> xse-2.0.ebuild: mark ~ppc diff --git a/x11-misc/xse/Manifest b/x11-misc/xse/Manifest index 6cc994e38fd2..33713eada423 100644 --- a/x11-misc/xse/Manifest +++ b/x11-misc/xse/Manifest @@ -1,4 +1,6 @@ -MD5 dfbc51aa11315022cbf8742535cf4191 ChangeLog 468 -MD5 ba0084d55ab27da41548c4be387c2a04 metadata.xml 822 +MD5 2fb58388f682b030a059684e8ed946ab xse-2.1.ebuild 733 MD5 2242abf7c83c0bd21328e2c29b27fae5 xse-2.0.ebuild 1521 +MD5 f40c22fe635679a3998213818723f3df ChangeLog 622 +MD5 ba0084d55ab27da41548c4be387c2a04 metadata.xml 822 MD5 58bc865d9dd6348beee0b46fc948339a files/digest-xse-2.0 58 +MD5 9a606d9a59f2c374666f362b7e6caf70 files/digest-xse-2.1 64 diff --git a/x11-misc/xse/files/digest-xse-2.1 b/x11-misc/xse/files/digest-xse-2.1 new file mode 100644 index 000000000000..76a441ecfe44 --- /dev/null +++ b/x11-misc/xse/files/digest-xse-2.1 @@ -0,0 +1 @@ +MD5 a3f564332ab1e079a2f3d01809f4bd0b xsendevent-2.1.tar.Z 76225 diff --git a/x11-misc/xse/xse-2.1.ebuild b/x11-misc/xse/xse-2.1.ebuild new file mode 100644 index 000000000000..91ebc4975ad1 --- /dev/null +++ b/x11-misc/xse/xse-2.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xse/xse-2.1.ebuild,v 1.1 2005/09/25 16:41:50 taviso Exp $ + +inherit eutils + +DESCRIPTION="Command Line Interface to XSendEvent()" +HOMEPAGE="ftp://ftp.x.org/R5contrib/" +SRC_URI="ftp://ftp.x.org/R5contrib/xsendevent-${PV}.tar.Z" +LICENSE="X11" +SLOT="0" +KEYWORDS="~x86 ~ppc" +IUSE="" +DEPEND="virtual/x11" + +src_compile() { + xmkmf -a &> /dev/null || die + econf; emake CCOPTIONS="${CFLAGS}" LOCAL_LDFLAGS=${LDFLAGS} || die +} + +src_install() { + dobin xse + + newman xse.man xse.1 + dodoc README + + dodir /usr/X11R6/lib/X11/app-defaults + insinto /usr/X11R6/lib/X11/app-defaults + newins Xse.ad Xse +} |