| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gpointing-device-settings/gpointing-device-settings-1.5.1-r2.ebuild,v 1.6 2012/03/03 16:04:10 slyfox Exp $
|
| 4 |
|
| 5 |
EAPI="2"
|
| 6 |
GCONF_DEBUG="no"
|
| 7 |
inherit eutils gnome2 autotools
|
| 8 |
|
| 9 |
DESCRIPTION="A GTK+ based configuration utility for the synaptics driver"
|
| 10 |
HOMEPAGE="http://live.gnome.org/GPointingDeviceSettings"
|
| 11 |
SRC_URI="mirror://sourceforge.jp/gsynaptics/45812/${P}.tar.gz"
|
| 12 |
|
| 13 |
LICENSE="GPL-3"
|
| 14 |
SLOT="0"
|
| 15 |
KEYWORDS="amd64 x86"
|
| 16 |
IUSE=""
|
| 17 |
|
| 18 |
# recent enough x11-base/xorg-server required
|
| 19 |
RDEPEND=">=dev-libs/glib-2.10:2
|
| 20 |
>=x11-libs/gtk+-2.14.0:2
|
| 21 |
>=gnome-base/gconf-2.24:2
|
| 22 |
>=gnome-base/gnome-settings-daemon-2.28
|
| 23 |
>=x11-libs/libXi-1.2
|
| 24 |
>=x11-libs/libX11-1.2.0
|
| 25 |
!<=x11-base/xorg-server-1.6.0
|
| 26 |
!gnome-extra/gsynaptics"
|
| 27 |
DEPEND="${RDEPEND}
|
| 28 |
virtual/pkgconfig
|
| 29 |
>=dev-util/intltool-0.35.5"
|
| 30 |
|
| 31 |
DOCS="MAINTAINERS NEWS TODO"
|
| 32 |
|
| 33 |
src_prepare() {
|
| 34 |
epatch \
|
| 35 |
"${FILESDIR}/${P}-crash.patch" \
|
| 36 |
"${FILESDIR}/${P}-plugin.patch" \
|
| 37 |
"${FILESDIR}/${P}-reboot.patch" \
|
| 38 |
"${FILESDIR}/${P}-gtk22.patch" \
|
| 39 |
"${FILESDIR}/${P}-gsd-crash.patch" \
|
| 40 |
"${FILESDIR}/${P}-gsd-3.2-fix.patch"
|
| 41 |
sed 's|\(^GPDS_CFLAGS=.*-D[A-Z_]*_DISABLE_DEPRECATED.*\)|#\1|' \
|
| 42 |
-i configure.ac || die
|
| 43 |
eautoreconf
|
| 44 |
gnome2_src_prepare
|
| 45 |
}
|