diff options
author | Krzysztof Pawlik <nelchael@gentoo.org> | 2007-04-10 09:29:32 +0000 |
---|---|---|
committer | Krzysztof Pawlik <nelchael@gentoo.org> | 2007-04-10 09:29:32 +0000 |
commit | b7992ea03bd6f73c74621c755ef234d2697ebf18 (patch) | |
tree | 48a81c7ab0f126af26d88a9d590f547fc6402699 /x11-misc | |
parent | stable x86, bug 173849 (diff) | |
download | gentoo-2-b7992ea03bd6f73c74621c755ef234d2697ebf18.tar.gz gentoo-2-b7992ea03bd6f73c74621c755ef234d2697ebf18.tar.bz2 gentoo-2-b7992ea03bd6f73c74621c755ef234d2697ebf18.zip |
Version bump, see bug #173786.
(Portage version: 2.1.2.3)
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/xvkbd/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/xvkbd/files/digest-xvkbd-2.8 | 3 | ||||
-rw-r--r-- | x11-misc/xvkbd/xvkbd-2.8.ebuild | 40 |
3 files changed, 49 insertions, 1 deletions
diff --git a/x11-misc/xvkbd/ChangeLog b/x11-misc/xvkbd/ChangeLog index 005c6c1c97bb..ecc598758bd9 100644 --- a/x11-misc/xvkbd/ChangeLog +++ b/x11-misc/xvkbd/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/xvkbd # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xvkbd/ChangeLog,v 1.16 2007/03/09 07:46:45 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xvkbd/ChangeLog,v 1.17 2007/04/10 09:29:32 nelchael Exp $ + +*xvkbd-2.8 (10 Apr 2007) + + 10 Apr 2007; Krzysiek Pawlik <nelchael@gentoo.org> +xvkbd-2.8.ebuild: + Version bump, see bug #173786. 09 Mar 2007; Samuli Suominen <drac@gentoo.org> xvkbd-2.6.ebuild: Stop using virtual/x11 and remove redudant checks for it. diff --git a/x11-misc/xvkbd/files/digest-xvkbd-2.8 b/x11-misc/xvkbd/files/digest-xvkbd-2.8 new file mode 100644 index 000000000000..a693cbb5b9a7 --- /dev/null +++ b/x11-misc/xvkbd/files/digest-xvkbd-2.8 @@ -0,0 +1,3 @@ +MD5 d00d367a8158ccd04ff21f2fc35dafe1 xvkbd-2.8.tar.gz 66216 +RMD160 53f76d2f6bf363d839831bc2507d9852e7a2e9ac xvkbd-2.8.tar.gz 66216 +SHA256 7b245a210a0ff3ee4b1285b02fe83eeed3420c7d62ba0db32e705e1a39ccbd93 xvkbd-2.8.tar.gz 66216 diff --git a/x11-misc/xvkbd/xvkbd-2.8.ebuild b/x11-misc/xvkbd/xvkbd-2.8.ebuild new file mode 100644 index 000000000000..79115273fbdb --- /dev/null +++ b/x11-misc/xvkbd/xvkbd-2.8.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xvkbd/xvkbd-2.8.ebuild,v 1.1 2007/04/10 09:29:32 nelchael Exp $ + +DESCRIPTION="virtual keyboard for X window system" +HOMEPAGE="http://homepage3.nifty.com/tsato/xvkbd/" +SRC_URI="http://homepage3.nifty.com/tsato/xvkbd/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND="x11-libs/libXtst + x11-libs/libXmu + x11-libs/Xaw3d" +DEPEND="${RDEPEND} + x11-misc/imake + x11-misc/gccmakedep + x11-proto/xproto + app-text/rman + x11-proto/xextproto" + +src_compile() { + xmkmf -a || die "xmkmf failed." + + emake \ + XAPPLOADDIR="/usr/share/X11/app-defaults" \ + LOCAL_LDFLAGS="${LDFLAGS}" \ + CDEBUGFLAGS="${CFLAGS}" || die "emake failed." +} + +src_install() { + emake XAPPLOADDIR="/usr/share/X11/app-defaults" DESTDIR="${D}" install \ + || die "emake install failed." + rm -rf "${D}/usr/lib/X11" + + dodoc README + newman ${PN}.man ${PN}.1 +} |