summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Weber <xmw@gentoo.org>2012-06-04 18:19:27 +0000
committerMichael Weber <xmw@gentoo.org>2012-06-04 18:19:27 +0000
commitb04eb410852767a46a9715e53c5eec87500bab32 (patch)
tree3729a23cf9e1cac4338a699dea23104097057ad0 /x11-misc/xvkbd
parentVersion bump (reported by df, bug 416011) (diff)
downloadgentoo-2-b04eb410852767a46a9715e53c5eec87500bab32.tar.gz
gentoo-2-b04eb410852767a46a9715e53c5eec87500bab32.tar.bz2
gentoo-2-b04eb410852767a46a9715e53c5eec87500bab32.zip
Version bump (reported by df, bug 415831)
(Portage version: 2.1.10.63/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/xvkbd')
-rw-r--r--x11-misc/xvkbd/ChangeLog9
-rw-r--r--x11-misc/xvkbd/xvkbd-3.3.ebuild44
2 files changed, 51 insertions, 2 deletions
diff --git a/x11-misc/xvkbd/ChangeLog b/x11-misc/xvkbd/ChangeLog
index 637b25ad905c..774b509a9579 100644
--- a/x11-misc/xvkbd/ChangeLog
+++ b/x11-misc/xvkbd/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for x11-misc/xvkbd
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xvkbd/ChangeLog,v 1.25 2011/08/02 05:50:13 mattst88 Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xvkbd/ChangeLog,v 1.26 2012/06/04 18:19:27 xmw Exp $
+
+*xvkbd-3.3 (04 Jun 2012)
+
+ 04 Jun 2012; Michael Weber <xmw@gentoo.org> +xvkbd-3.3.ebuild:
+ Version bump (reported by df, bug 415831)
02 Aug 2011; Matt Turner <mattst88@gentoo.org> xvkbd-3.2.ebuild:
Renamed x11-libs/Xaw3d to x11-libs/libXaw3d.
diff --git a/x11-misc/xvkbd/xvkbd-3.3.ebuild b/x11-misc/xvkbd/xvkbd-3.3.ebuild
new file mode 100644
index 000000000000..790ec4251838
--- /dev/null
+++ b/x11-misc/xvkbd/xvkbd-3.3.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xvkbd/xvkbd-3.3.ebuild,v 1.1 2012/06/04 18:19:27 xmw 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/libXaw
+ x11-libs/libXaw3d
+ x11-libs/libXt"
+DEPEND="${RDEPEND}
+ x11-misc/imake
+ x11-misc/gccmakedep
+ x11-proto/xproto
+ x11-proto/inputproto
+ app-text/rman
+ x11-proto/xextproto"
+
+src_compile() {
+ xmkmf -a || die
+
+ emake \
+ XAPPLOADDIR="/usr/share/X11/app-defaults" \
+ LOCAL_LDFLAGS="${LDFLAGS}" \
+ CDEBUGFLAGS="${CFLAGS}" || die
+}
+
+src_install() {
+ emake XAPPLOADDIR="/usr/share/X11/app-defaults" DESTDIR="${D}" \
+ install || die
+
+ rm -rf "${D}"/usr/lib "${D}"/etc
+
+ dodoc README
+ newman ${PN}.man ${PN}.1
+}