diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2003-08-24 15:19:18 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2003-08-24 15:19:18 +0000 |
commit | 6ece3dd131de951bdff29cb9457ee4721ea3f20e (patch) | |
tree | fae32b39418a06036109d79bcf9bb761741ee030 /x11-misc/xvkbd/xvkbd-2.5a.ebuild | |
parent | initial import (diff) | |
download | gentoo-2-6ece3dd131de951bdff29cb9457ee4721ea3f20e.tar.gz gentoo-2-6ece3dd131de951bdff29cb9457ee4721ea3f20e.tar.bz2 gentoo-2-6ece3dd131de951bdff29cb9457ee4721ea3f20e.zip |
initial import
Diffstat (limited to 'x11-misc/xvkbd/xvkbd-2.5a.ebuild')
-rw-r--r-- | x11-misc/xvkbd/xvkbd-2.5a.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/x11-misc/xvkbd/xvkbd-2.5a.ebuild b/x11-misc/xvkbd/xvkbd-2.5a.ebuild new file mode 100644 index 000000000000..d9a2c097f8da --- /dev/null +++ b/x11-misc/xvkbd/xvkbd-2.5a.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xvkbd/xvkbd-2.5a.ebuild,v 1.1 2003/08/24 15:19:11 matsuu Exp $ + +DESCRIPTION="virtual keyboard for X window system" +HOMEPAGE="http://member.nifty.ne.jp/tsato/xvkbd/" +SRC_URI="http://member.nifty.ne.jp/tsato/xvkbd/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="virtual/x11 + x11-libs/xaw" + +S=${WORKDIR}/${P} + +src_compile() { + xmkmf -a || die + emake CDEBUGFLAGS="${CFLAGS}" || die +} + +src_install() { + make DESTDIR=${D} install || die + + dodoc README + newman ${PN}.man ${PN}.1 +} |