public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-input-virtualbox: xf86-input-virtualbox-4.0.0.ebuild ChangeLog
@ 2011-01-06 22:52 Lars Wendler (polynomial-c)
  0 siblings, 0 replies; 3+ messages in thread
From: Lars Wendler (polynomial-c) @ 2011-01-06 22:52 UTC (permalink / raw
  To: gentoo-commits

polynomial-c    11/01/06 22:52:24

  Modified:             ChangeLog
  Added:                xf86-input-virtualbox-4.0.0.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.0_alpha13/cvs/Linux x86_64)

Revision  Changes    Path
1.51                 x11-drivers/xf86-input-virtualbox/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-virtualbox/ChangeLog?rev=1.51&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-virtualbox/ChangeLog?rev=1.51&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-virtualbox/ChangeLog?r1=1.50&r2=1.51

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-virtualbox/ChangeLog,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- ChangeLog	1 Jan 2011 11:25:13 -0000	1.50
+++ ChangeLog	6 Jan 2011 22:52:24 -0000	1.51
@@ -1,6 +1,12 @@
 # ChangeLog for x11-drivers/xf86-input-virtualbox
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-virtualbox/ChangeLog,v 1.50 2011/01/01 11:25:13 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-virtualbox/ChangeLog,v 1.51 2011/01/06 22:52:24 polynomial-c Exp $
+
+*xf86-input-virtualbox-4.0.0 (06 Jan 2011)
+
+  06 Jan 2011; Lars Wendler <polynomial-c@gentoo.org>
+  +xf86-input-virtualbox-4.0.0.ebuild:
+  Version bump.
 
   01 Jan 2011; Lars Wendler <polynomial-c@gentoo.org>
   xf86-input-virtualbox-3.2.12.ebuild:



1.1                  x11-drivers/xf86-input-virtualbox/xf86-input-virtualbox-4.0.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-virtualbox/xf86-input-virtualbox-4.0.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-virtualbox/xf86-input-virtualbox-4.0.0.ebuild?rev=1.1&content-type=text/plain

Index: xf86-input-virtualbox-4.0.0.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-virtualbox/xf86-input-virtualbox-4.0.0.ebuild,v 1.1 2011/01/06 22:52:24 polynomial-c Exp $

EAPI=2

inherit eutils multilib linux-info

MY_P=VirtualBox-${PV}
DESCRIPTION="VirtualBox input driver"
HOMEPAGE="http://www.virtualbox.org/"
SRC_URI="http://download.virtualbox.org/virtualbox/${PV}/${MY_P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="hal"

RDEPEND="x11-base/xorg-server
	|| ( x11-drivers/xf86-input-mouse
	    x11-drivers/xf86-input-evdev )
	hal? ( sys-apps/hal )"
DEPEND="${RDEPEND}
	>=dev-util/kbuild-0.1.5-r1
	>=dev-lang/yasm-0.6.2
	sys-devel/dev86
	sys-power/iasl
	x11-proto/inputproto
	x11-proto/randrproto
	x11-proto/xproto"

S="${WORKDIR}/${MY_P}_OSE"

src_prepare() {
		if kernel_is -ge 2 6 33 ; then
			# evil patch for new kernels - header moved
			grep -lR linux/autoconf.h *  | xargs sed -i -e 's:<linux/autoconf.h>:<generated/autoconf.h>:' || die "Failed replacing"
		fi
		# Remove shipped binaries (kBuild,yasm), see bug #232775
		rm -rf kBuild/bin tools

		# Disable things unused or splitted into separate ebuilds
		cp "${FILESDIR}/${PN}-3-localconfig" LocalConfig.kmk
}

src_configure() {
		# build the user-space tools, warnings are harmless
		./configure --nofatal \
		--disable-xpcom \
		--disable-sdl-ttf \
		--disable-pulse \
		--disable-alsa \
		--build-headless || die "configure failed"
		source ./env.sh
}

src_compile() {
		for each in /src/VBox/{Runtime,Additions/common/VBoxGuestLib} \
		/src/VBox/Additions/x11/vboxmouse ; do
			cd "${S}"${each}
			MAKE="kmk" emake TOOL_YASM_AS=yasm \
			KBUILD_PATH="${S}/kBuild" \
			|| die "kmk failed"
		done
}

src_install() {
		cd "${S}/out/linux.${ARCH}/release/bin/additions"
		insinto /usr/$(get_libdir)/xorg/modules/input

		# xorg-server-1.9
		if has_version ">=x11-base/xorg-server-1.9" ; then
				newins vboxmouse_drv_19.so vboxmouse_drv.so
		# xorg-server-1.8
		elif has_version ">=x11-base/xorg-server-1.8" ; then
				newins vboxmouse_drv_18.so vboxmouse_drv.so
		# xorg-server-1.7
		else
				newins vboxmouse_drv_17.so vboxmouse_drv.so
		fi

		# install hal information file about the mouse driver
		if use hal; then
			cd "${S}/src/VBox/Additions/linux/installer"
			insinto /etc/hal/fdi/policy
			doins 90-vboxguest.fdi
		fi
}

pkg_postinst() {
		elog "You need to edit the file /etc/X11/xorg.conf and set:"
		elog ""
		elog "	Driver  \"vboxmouse\""
		elog ""
		elog "in the Core Pointer's InputDevice section (Section \"InputDevice\")"
		elog ""
		elog "Starting with 1.5 version, X.Org Server can do mouse auto-detection."
		elog "This ebuild provides a working default which has been installed into:"
		elog "    /etc/hal/fdi/policy/90-vboxguest.fdi"
}






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-input-virtualbox: xf86-input-virtualbox-4.0.0.ebuild ChangeLog
@ 2011-01-07 18:54 Lars Wendler (polynomial-c)
  0 siblings, 0 replies; 3+ messages in thread
From: Lars Wendler (polynomial-c) @ 2011-01-07 18:54 UTC (permalink / raw
  To: gentoo-commits

polynomial-c    11/01/07 18:54:54

  Modified:             xf86-input-virtualbox-4.0.0.ebuild ChangeLog
  Log:
  Respect LDFLAGS properly
  
  (Portage version: 2.2.0_alpha14/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  x11-drivers/xf86-input-virtualbox/xf86-input-virtualbox-4.0.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-virtualbox/xf86-input-virtualbox-4.0.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-virtualbox/xf86-input-virtualbox-4.0.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-virtualbox/xf86-input-virtualbox-4.0.0.ebuild?r1=1.1&r2=1.2

Index: xf86-input-virtualbox-4.0.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-virtualbox/xf86-input-virtualbox-4.0.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xf86-input-virtualbox-4.0.0.ebuild	6 Jan 2011 22:52:24 -0000	1.1
+++ xf86-input-virtualbox-4.0.0.ebuild	7 Jan 2011 18:54:54 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-virtualbox/xf86-input-virtualbox-4.0.0.ebuild,v 1.1 2011/01/06 22:52:24 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-virtualbox/xf86-input-virtualbox-4.0.0.ebuild,v 1.2 2011/01/07 18:54:54 polynomial-c Exp $
 
 EAPI=2
 
@@ -32,15 +32,19 @@
 S="${WORKDIR}/${MY_P}_OSE"
 
 src_prepare() {
-		if kernel_is -ge 2 6 33 ; then
-			# evil patch for new kernels - header moved
-			grep -lR linux/autoconf.h *  | xargs sed -i -e 's:<linux/autoconf.h>:<generated/autoconf.h>:' || die "Failed replacing"
-		fi
-		# Remove shipped binaries (kBuild,yasm), see bug #232775
-		rm -rf kBuild/bin tools
-
-		# Disable things unused or splitted into separate ebuilds
-		cp "${FILESDIR}/${PN}-3-localconfig" LocalConfig.kmk
+	if kernel_is -ge 2 6 33 ; then
+		# evil patch for new kernels - header moved
+		grep -lR linux/autoconf.h *  | xargs sed -i -e 's:<linux/autoconf.h>:<generated/autoconf.h>:' || die "Failed replacing"
+	fi
+	# Remove shipped binaries (kBuild,yasm), see bug #232775
+	rm -rf kBuild/bin tools
+
+	# Disable things unused or splitted into separate ebuilds
+	cp "${FILESDIR}/${PN}-3-localconfig" LocalConfig.kmk
+
+	#Respect LDFLAGS
+	sed -e "s/_LDFLAGS\.${ARCH}*.*=/& ${LDFLAGS}/g" \
+		-i Config.kmk src/libs/xpcom18a4/Config.kmk || die
 }
 
 src_configure() {
@@ -94,7 +98,9 @@
 		elog ""
 		elog "in the Core Pointer's InputDevice section (Section \"InputDevice\")"
 		elog ""
-		elog "Starting with 1.5 version, X.Org Server can do mouse auto-detection."
+		elog "Up to version 1.8, X.Org Server can do mouse auto-detection."
 		elog "This ebuild provides a working default which has been installed into:"
 		elog "    /etc/hal/fdi/policy/90-vboxguest.fdi"
+		elog "This is no longer necessary for X.Org Server 1.9 or higher. Use"
+		elog "the server's udev autodetection with such versions."
 }



1.52                 x11-drivers/xf86-input-virtualbox/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-virtualbox/ChangeLog?rev=1.52&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-virtualbox/ChangeLog?rev=1.52&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-virtualbox/ChangeLog?r1=1.51&r2=1.52

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-virtualbox/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog	6 Jan 2011 22:52:24 -0000	1.51
+++ ChangeLog	7 Jan 2011 18:54:54 -0000	1.52
@@ -1,6 +1,10 @@
 # ChangeLog for x11-drivers/xf86-input-virtualbox
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-virtualbox/ChangeLog,v 1.51 2011/01/06 22:52:24 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-virtualbox/ChangeLog,v 1.52 2011/01/07 18:54:54 polynomial-c Exp $
+
+  07 Jan 2011; Lars Wendler <polynomial-c@gentoo.org>
+  xf86-input-virtualbox-4.0.0.ebuild:
+  Respect LDFLAGS properly. Thanks to xarthisius for providing a feasible fix.
 
 *xf86-input-virtualbox-4.0.0 (06 Jan 2011)
 






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-input-virtualbox: xf86-input-virtualbox-4.0.0.ebuild ChangeLog
@ 2011-01-08 17:21 Lars Wendler (polynomial-c)
  0 siblings, 0 replies; 3+ messages in thread
From: Lars Wendler (polynomial-c) @ 2011-01-08 17:21 UTC (permalink / raw
  To: gentoo-commits

polynomial-c    11/01/08 17:21:31

  Modified:             xf86-input-virtualbox-4.0.0.ebuild ChangeLog
  Log:
  Removed LDFLAGS fix as it breaks compilation
  
  (Portage version: 2.2.0_alpha14/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  x11-drivers/xf86-input-virtualbox/xf86-input-virtualbox-4.0.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-virtualbox/xf86-input-virtualbox-4.0.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-virtualbox/xf86-input-virtualbox-4.0.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-virtualbox/xf86-input-virtualbox-4.0.0.ebuild?r1=1.2&r2=1.3

Index: xf86-input-virtualbox-4.0.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-virtualbox/xf86-input-virtualbox-4.0.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- xf86-input-virtualbox-4.0.0.ebuild	7 Jan 2011 18:54:54 -0000	1.2
+++ xf86-input-virtualbox-4.0.0.ebuild	8 Jan 2011 17:21:31 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-virtualbox/xf86-input-virtualbox-4.0.0.ebuild,v 1.2 2011/01/07 18:54:54 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-virtualbox/xf86-input-virtualbox-4.0.0.ebuild,v 1.3 2011/01/08 17:21:31 polynomial-c Exp $
 
 EAPI=2
 
@@ -41,10 +41,6 @@
 
 	# Disable things unused or splitted into separate ebuilds
 	cp "${FILESDIR}/${PN}-3-localconfig" LocalConfig.kmk
-
-	#Respect LDFLAGS
-	sed -e "s/_LDFLAGS\.${ARCH}*.*=/& ${LDFLAGS}/g" \
-		-i Config.kmk src/libs/xpcom18a4/Config.kmk || die
 }
 
 src_configure() {



1.53                 x11-drivers/xf86-input-virtualbox/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-virtualbox/ChangeLog?rev=1.53&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-virtualbox/ChangeLog?rev=1.53&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-virtualbox/ChangeLog?r1=1.52&r2=1.53

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-virtualbox/ChangeLog,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- ChangeLog	7 Jan 2011 18:54:54 -0000	1.52
+++ ChangeLog	8 Jan 2011 17:21:31 -0000	1.53
@@ -1,6 +1,10 @@
 # ChangeLog for x11-drivers/xf86-input-virtualbox
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-virtualbox/ChangeLog,v 1.52 2011/01/07 18:54:54 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-virtualbox/ChangeLog,v 1.53 2011/01/08 17:21:31 polynomial-c Exp $
+
+  08 Jan 2011; Lars Wendler <polynomial-c@gentoo.org>
+  xf86-input-virtualbox-4.0.0.ebuild:
+  Removed LDFLAGS fix as it breaks compilation.
 
   07 Jan 2011; Lars Wendler <polynomial-c@gentoo.org>
   xf86-input-virtualbox-4.0.0.ebuild:






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-01-08 17:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-07 18:54 [gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-input-virtualbox: xf86-input-virtualbox-4.0.0.ebuild ChangeLog Lars Wendler (polynomial-c)
  -- strict thread matches above, loose matches on Subject: below --
2011-01-08 17:21 Lars Wendler (polynomial-c)
2011-01-06 22:52 Lars Wendler (polynomial-c)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox