diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-03-16 19:43:53 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-03-16 19:43:53 +0000 |
commit | 650fd2a88eed8d1d404aa3fef4aa24edaff0ef01 (patch) | |
tree | 2bb15637bd05b0dc3b446f8009ac22faf5f56925 /x11-misc | |
parent | vaio brightness plugin for gkrellm (diff) | |
download | gentoo-2-650fd2a88eed8d1d404aa3fef4aa24edaff0ef01.tar.gz gentoo-2-650fd2a88eed8d1d404aa3fef4aa24edaff0ef01.tar.bz2 gentoo-2-650fd2a88eed8d1d404aa3fef4aa24edaff0ef01.zip |
new package
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/unclutter/ChangeLog | 10 | ||||
-rw-r--r-- | x11-misc/unclutter/files/digest-unclutter-8 | 1 | ||||
-rw-r--r-- | x11-misc/unclutter/unclutter-8.ebuild | 28 |
3 files changed, 39 insertions, 0 deletions
diff --git a/x11-misc/unclutter/ChangeLog b/x11-misc/unclutter/ChangeLog new file mode 100644 index 000000000000..e7d36b9548f8 --- /dev/null +++ b/x11-misc/unclutter/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for x11-misc/unclutter +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/unclutter/ChangeLog,v 1.1 2003/03/16 19:43:53 seemant Exp $ + +*unclutter-8 (16 Mar 2003) + + 16 Mar 2003; Seemant Kulleen <seemant@gentoo.org> unclutter-8.ebuild: + new package which hides the mouse pointer after a certain period of idleness. + Thanks to: Kai Grossjohann <kai.grossjohann@uni-duisburg.de> in bug #13026 + diff --git a/x11-misc/unclutter/files/digest-unclutter-8 b/x11-misc/unclutter/files/digest-unclutter-8 new file mode 100644 index 000000000000..133e24a88c18 --- /dev/null +++ b/x11-misc/unclutter/files/digest-unclutter-8 @@ -0,0 +1 @@ +MD5 83d7a6498b69078f869378f801b6a84b unclutter-8.tar.Z 12344 diff --git a/x11-misc/unclutter/unclutter-8.ebuild b/x11-misc/unclutter/unclutter-8.ebuild new file mode 100644 index 000000000000..b10e2e9929d8 --- /dev/null +++ b/x11-misc/unclutter/unclutter-8.ebuild @@ -0,0 +1,28 @@ +# Copyright 2002 Kai Grossjohann <kai.grossjohann@uni-duisburg.de> +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/unclutter/unclutter-8.ebuild,v 1.1 2003/03/16 19:43:53 seemant Exp $ + +S=${WORKDIR}/${PN} +DESCRIPTION="Hides mouse pointer while not in use." +HOMEPAGE="http://gopher.std.com/homepages/jimf/xloadimage.html" +SRC_URI="ftp://ftp.x.org/contrib/utilities/${P}.tar.Z" + +SLOT="0" +LICENSE="public-domain" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~mips ~hppa" + +DEPEND="x11-base/xfree" + + +src_compile() { + xmkmf -a || die "Couldn't run xmkmf" + make || die +} + +src_install () { + make DESTDIR=${D} install || die + + newman unclutter.man unclutter.1x + + dodoc README +} |