diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-06-14 20:49:55 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-06-14 20:49:55 +0000 |
commit | 4de1acf290ed50f211c22b16ce8969a745f8e04e (patch) | |
tree | 0b5fc1e22412ed300684bbf8290cdc8a41547a11 /x11-misc | |
parent | new revision (diff) | |
download | gentoo-2-4de1acf290ed50f211c22b16ce8969a745f8e04e.tar.gz gentoo-2-4de1acf290ed50f211c22b16ce8969a745f8e04e.tar.bz2 gentoo-2-4de1acf290ed50f211c22b16ce8969a745f8e04e.zip |
New package. Fixes #3346
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/x2x/ChangeLog | 13 | ||||
-rw-r--r-- | x11-misc/x2x/files/digest-x2x-1.27 | 1 | ||||
-rw-r--r-- | x11-misc/x2x/files/x2x-1.27.diff.gz | bin | 0 -> 1008 bytes | |||
-rw-r--r-- | x11-misc/x2x/x2x-1.27.ebuild | 29 |
4 files changed, 43 insertions, 0 deletions
diff --git a/x11-misc/x2x/ChangeLog b/x11-misc/x2x/ChangeLog new file mode 100644 index 000000000000..036563590e68 --- /dev/null +++ b/x11-misc/x2x/ChangeLog @@ -0,0 +1,13 @@ +# ChangeLog for x11-misc/x2x +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/x11-misc/x2x/ChangeLog,v 1.1 2002/06/14 20:49:55 rphillips Exp $ + +*x2x-1.27 (14 Jun 2002) + + 14 Jun 2002; Ryan Phillips <rphillips@gentoo.org> ChangeLog : + + Added initial ChangeLog which should be updated whenever the package is + updated in any way. This changelog is targetted to users. This means that the + comments should well explained and written in clean English. The details about + writing correct changelogs are explained in the skel.ChangeLog file which you + can find in the root directory of the portage repository. diff --git a/x11-misc/x2x/files/digest-x2x-1.27 b/x11-misc/x2x/files/digest-x2x-1.27 new file mode 100644 index 000000000000..c09fe86c1c10 --- /dev/null +++ b/x11-misc/x2x/files/digest-x2x-1.27 @@ -0,0 +1 @@ +MD5 3d1bc863f3209ec37caf7f57bde7e8f0 x2x-1.27.tar.gz 16776 diff --git a/x11-misc/x2x/files/x2x-1.27.diff.gz b/x11-misc/x2x/files/x2x-1.27.diff.gz Binary files differnew file mode 100644 index 000000000000..1e06c9771654 --- /dev/null +++ b/x11-misc/x2x/files/x2x-1.27.diff.gz diff --git a/x11-misc/x2x/x2x-1.27.ebuild b/x11-misc/x2x/x2x-1.27.ebuild new file mode 100644 index 000000000000..fa21bfcddb11 --- /dev/null +++ b/x11-misc/x2x/x2x-1.27.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/x2x/x2x-1.27.ebuild,v 1.1 2002/06/14 20:49:55 rphillips Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="An utility to connect the Mouse and KeyBoard to another X" +HOMEPAGE="http://www.the-labs.com/X11/#x2x" +LICENSE="as-is" +DEPEND="virtual/x11" +RDEPEND="virtual/x11" +SRC_URI="http://ftp.digital.com/pub/Digital/SRC/x2x/${P}.tar.gz" + +src_unpack() { + unpack ${A} + cd ${S} + gunzip < ${FILESDIR}/${P}.diff.gz | patch || die "patch failed" +} + +src_compile() { + xmkmf + cp x2x.1 x2x.man + emake || die +} + +src_install () { + make DESTDIR=${D} install || die + doman x2x.1 + dodoc ${S}/LICENSE +} |