diff options
author | 2004-06-02 12:25:40 +0000 | |
---|---|---|
committer | 2004-06-02 12:25:40 +0000 | |
commit | 1bdcec48a423ac63480a302cd8fdc0a94e12769c (patch) | |
tree | 5afc35d2187eb9047996f5a3d9fa8a7b1dce377e /x11-misc/skippy/skippy-0.5.0.ebuild | |
parent | Version bumped (Manifest recommit) (diff) | |
download | gentoo-2-1bdcec48a423ac63480a302cd8fdc0a94e12769c.tar.gz gentoo-2-1bdcec48a423ac63480a302cd8fdc0a94e12769c.tar.bz2 gentoo-2-1bdcec48a423ac63480a302cd8fdc0a94e12769c.zip |
Initial commit, #51595
Diffstat (limited to 'x11-misc/skippy/skippy-0.5.0.ebuild')
-rw-r--r-- | x11-misc/skippy/skippy-0.5.0.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/x11-misc/skippy/skippy-0.5.0.ebuild b/x11-misc/skippy/skippy-0.5.0.ebuild new file mode 100644 index 000000000000..006f33e6e951 --- /dev/null +++ b/x11-misc/skippy/skippy-0.5.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: + +IUSE="" + +DESCRIPTION="A full-screen task-switcher providing Apple Expose-like functionality with various WMs" +HOMEPAGE="http://thegraveyard.org/skippy.php" +SRC_URI="http://thegraveyard.org/files/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +RDEPEND="virtual/x11 + virtual/xft" + +DEPEND="${RDEPEND} + >=media-libs/imlib2-1.1.0" + +src_compile() { + emake || die "emake failed" +} + +src_install() { + make DESTDIR=${D} BINDIR=/usr/bin install || die + + insinto /usr/share/${P} + doins skippyrc-default + + dodoc CHANGELOG +} + + +pkg_postinst() { + einfo + einfo "You should copy /usr/share/${P}/skippyrc-default to ~/.skippyrc" + einfo "and edit the keysym used to invoke skippy" + einfo "(Find out the keysym name using 'xev')" + einfo + echo +} + |