Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/sisctrl/
Date: Thu, 14 Mar 2019 10:18:11
Message-Id: 1552558680.550b51e97fdf516c4fe1a212f4ff3345993e1faf.jer@gentoo
1 commit: 550b51e97fdf516c4fe1a212f4ff3345993e1faf
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 14 10:17:28 2019 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 14 10:18:00 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=550b51e9
7
8 x11-misc/sisctrl: Configure for correct libdir
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Fixes: https://bugs.gentoo.org/680272
12 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
13
14 x11-misc/sisctrl/sisctrl-0.0.20051202-r1.ebuild | 36 +++++++++++++++++++++++++
15 1 file changed, 36 insertions(+)
16
17 diff --git a/x11-misc/sisctrl/sisctrl-0.0.20051202-r1.ebuild b/x11-misc/sisctrl/sisctrl-0.0.20051202-r1.ebuild
18 new file mode 100644
19 index 00000000000..53c9511c8cc
20 --- /dev/null
21 +++ b/x11-misc/sisctrl/sisctrl-0.0.20051202-r1.ebuild
22 @@ -0,0 +1,36 @@
23 +# Copyright 1999-2019 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +inherit flag-o-matic
28 +
29 +DESCRIPTION="tool that allows you to tune SiS drivers from X"
30 +HOMEPAGE="http://www.winischhofer.net/linuxsispart1.shtml#sisctrl"
31 +SRC_URI="http://www.winischhofer.net/sis/${P}.tar.gz"
32 +
33 +LICENSE="GPL-2"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~x86"
36 +
37 +RDEPEND="
38 + dev-libs/glib:2
39 + x11-libs/gtk+:2
40 + x11-libs/libXrender
41 + x11-libs/libXv
42 + x11-libs/libXxf86vm
43 +"
44 +DEPEND="
45 + ${RDEPEND}
46 + virtual/pkgconfig
47 + x11-base/xorg-proto
48 +"
49 +DOCS="AUTHORS ChangeLog NEWS README"
50 +PATCHES=(
51 + "${FILESDIR}"/${P}-no-xv.patch
52 +)
53 +
54 +src_configure() {
55 + append-libs -lm
56 + econf \
57 + --with-xv-path="${EROOT}/usr/$(get_libdir)"
58 +}