[gentoo-commits] repo/gentoo:master commit in: x11-libs/libfakekey/

2024-05-03 Thread Maciej Mrozowski
commit: cf2dece87db9e105f13475f922bbaf496f4771a2
Author: Maciej Mrozowski  gentoo  org>
AuthorDate: Fri May  3 19:08:58 2024 +
Commit: Maciej Mrozowski  gentoo  org>
CommitDate: Fri May  3 19:09:33 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf2dece8

x11-libs/libfakekey: Add xorg-proto as build dep

Signed-off-by: Maciej Mrozowski  gentoo.org>

 x11-libs/libfakekey/libfakekey-0.3-r1.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/x11-libs/libfakekey/libfakekey-0.3-r1.ebuild 
b/x11-libs/libfakekey/libfakekey-0.3-r1.ebuild
index 5deadfa36d5f..958e50604274 100644
--- a/x11-libs/libfakekey/libfakekey-0.3-r1.ebuild
+++ b/x11-libs/libfakekey/libfakekey-0.3-r1.ebuild
@@ -14,7 +14,10 @@ SLOT="0"
 KEYWORDS="amd64 ~arm arm64 ~hppa ~loong ppc ppc64 ~riscv x86"
 IUSE="debug doc"
 
-BDEPEND="doc? ( app-text/doxygen )"
+BDEPEND="
+   x11-base/xorg-proto
+   doc? ( app-text/doxygen )
+"
 DEPEND="x11-libs/libXtst"
 RDEPEND="${DEPEND}"
 



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libfakekey/

2020-06-09 Thread Agostino Sarubbo
commit: adeb72d2b6fc3b987d1f9582461906ab3efd2d86
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  9 13:50:42 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  9 13:50:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adeb72d2

x11-libs/libfakekey: ppc64 stable wrt bug #727570

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 x11-libs/libfakekey/libfakekey-0.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libfakekey/libfakekey-0.3-r1.ebuild 
b/x11-libs/libfakekey/libfakekey-0.3-r1.ebuild
index ba84cd53b00..cf643888657 100644
--- a/x11-libs/libfakekey/libfakekey-0.3-r1.ebuild
+++ b/x11-libs/libfakekey/libfakekey-0.3-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://git.yoctoproject.org/cgit/cgit.cgi/${PN}/snapshot/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ppc64 x86"
 IUSE="debug doc"
 
 BDEPEND="doc? ( app-doc/doxygen )"



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libfakekey/

2020-05-30 Thread Andreas Sturmlechner
commit: 4368f569fecbb031d5094913b2dcf642baae4b85
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat May 30 08:36:38 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat May 30 08:37:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4368f569

x11-libs/libfakekey: Drop 0.3 (r0)

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 x11-libs/libfakekey/libfakekey-0.3.ebuild | 46 ---
 1 file changed, 46 deletions(-)

diff --git a/x11-libs/libfakekey/libfakekey-0.3.ebuild 
b/x11-libs/libfakekey/libfakekey-0.3.ebuild
deleted file mode 100644
index 02a258f0146..000
--- a/x11-libs/libfakekey/libfakekey-0.3.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="Helper library for the x11-misc/matchbox-keyboard package"
-HOMEPAGE="https://www.yoctoproject.org/tools-resources/projects/matchbox;
-SRC_URI="https://git.yoctoproject.org/cgit/cgit.cgi/${PN}/snapshot/${P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ~ppc64 x86"
-IUSE="debug doc"
-
-BDEPEND="doc? ( app-doc/doxygen )"
-DEPEND="x11-libs/libXtst"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${P}-ac.patch" ) # Allow configure to use libtool-2
-
-src_prepare() {
-   default
-
-   # Fix underlinking bug #367595
-   sed -i -e 's/^fakekey_test_LDADD=/fakekey_test_LDADD=-lX11 /' \
-   tests/Makefile.am || die 'Cannot sed Makefile.am'
-   sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.ac || die
-   eautoreconf
-}
-
-src_configure() {
-   local myeconfargs=(
-   # --with/without-x is ignored by configure script and X is used.
-   --with-x
-   $(use_enable debug)
-   $(use_enable doc doxygen-docs)
-   )
-   econf "${myeconfargs[@]}"
-}
-
-src_install() {
-   use doc && local HTML_DOCS=( doc/html/. )
-   default
-}



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libfakekey/

2020-05-30 Thread Andreas Sturmlechner
commit: fec1848c871caea335f7651f5898ce476b81ca90
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat May 30 08:36:17 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat May 30 08:37:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fec1848c

x11-libs/libfakekey: --disable-static

Closes: https://bugs.gentoo.org/726146
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 x11-libs/libfakekey/libfakekey-0.3-r1.ebuild | 48 
 1 file changed, 48 insertions(+)

diff --git a/x11-libs/libfakekey/libfakekey-0.3-r1.ebuild 
b/x11-libs/libfakekey/libfakekey-0.3-r1.ebuild
new file mode 100644
index 000..ba84cd53b00
--- /dev/null
+++ b/x11-libs/libfakekey/libfakekey-0.3-r1.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="Helper library for the x11-misc/matchbox-keyboard package"
+HOMEPAGE="https://www.yoctoproject.org/tools-resources/projects/matchbox;
+SRC_URI="https://git.yoctoproject.org/cgit/cgit.cgi/${PN}/snapshot/${P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ~ppc64 x86"
+IUSE="debug doc"
+
+BDEPEND="doc? ( app-doc/doxygen )"
+DEPEND="x11-libs/libXtst"
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/${P}-ac.patch" ) # Allow configure to use libtool-2
+
+src_prepare() {
+   default
+
+   # Fix underlinking bug #367595
+   sed -i -e 's/^fakekey_test_LDADD=/fakekey_test_LDADD=-lX11 /' \
+   tests/Makefile.am || die 'Cannot sed Makefile.am'
+   sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.ac || die
+   eautoreconf
+}
+
+src_configure() {
+   local myeconfargs=(
+   # --with/without-x is ignored by configure script and X is used.
+   --with-x
+   --disable-static
+   $(use_enable debug)
+   $(use_enable doc doxygen-docs)
+   )
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   use doc && local HTML_DOCS=( doc/html/. )
+   default
+   find "${D}" -name '*.la' -type f -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libfakekey/files/, x11-libs/libfakekey/

2019-12-25 Thread Andreas Sturmlechner
commit: 720fef2317aad8aba79c16922c56e2d25c1b9c8d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Dec 25 21:09:14 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Dec 25 21:20:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=720fef23

x11-libs/libfakekey: Drop 0.1-r3

Package-Manager: Portage-2.3.83, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 x11-libs/libfakekey/Manifest  |  1 -
 x11-libs/libfakekey/files/libfakekey-0.1-ac.patch | 24 
 x11-libs/libfakekey/libfakekey-0.1-r3.ebuild  | 48 ---
 3 files changed, 73 deletions(-)

diff --git a/x11-libs/libfakekey/Manifest b/x11-libs/libfakekey/Manifest
index 54307fe81ee..97afebdd321 100644
--- a/x11-libs/libfakekey/Manifest
+++ b/x11-libs/libfakekey/Manifest
@@ -1,2 +1 @@
-DIST libfakekey-0.1.tar.bz2 203504 BLAKE2B 
f3e51a1ff38dd95238a1035617045f728177c9dca96d760dfe3c4485511b500944e6f64aeb5acb3e65db3badc4c189ae25ea50f42f58a927f3ec1899c4778751
 SHA512 
1fda0548cf14657083a6602f8d6c08efae8cae2236de7ed17fc4058765156c6bb923956e3c7fd75f2db586399f1d8a3320ab5bbed71cc5a8b0d146590a14a808
 DIST libfakekey-0.3.tar.bz2 9672 BLAKE2B 
1cd86581148e218879b14ff52fb085fd20248a475ccf00a08918d64db811b21bbba3632e799d798077a197298da4d976be3180c060a6016c396428519d1aaef2
 SHA512 
b0502dbb01839009de7120f8ca939c839850e7c3c88678b52d6df9f4205cbec20769cedd61c9307e8307f6bf789eee25b20d4fe20c25e7285318f5ea1334555a

diff --git a/x11-libs/libfakekey/files/libfakekey-0.1-ac.patch 
b/x11-libs/libfakekey/files/libfakekey-0.1-ac.patch
deleted file mode 100644
index 7158ad220ef..000
--- a/x11-libs/libfakekey/files/libfakekey-0.1-ac.patch
+++ /dev/null
@@ -1,24 +0,0 @@
 a/configure.ac 2011-05-22 14:59:45.801746472 +0100
-+++ b/configure.ac 2011-05-22 15:02:59.437159981 +0100
-@@ -14,16 +14,14 @@ AC_HEADER_STDC
- 
- dnl -- libtool versioning ---
- 
--LT_CURRENT=0
--LT_REVISION=1
--AC_SUBST(LT_CURRENT)
--AC_SUBST(LT_REVISION)
--LT_AGE=0
-+m4_define(LT_CURRENT, 0)
-+m4_define(LT_REVISION, 1)
-+m4_define(LT_AGE, 0)
- 
--LT_VERSION_INFO="$LT_CURRENT:$LT_REVISION:$LT_AGE"
-+LT_VERSION_INFO="LT_CURRENT():LT_REVISION():LT_AGE()"
- AC_SUBST(LT_VERSION_INFO)
- 
--LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
-+LT_CURRENT_MINUS_AGE="m4_eval(LT_CURRENT() - LT_AGE())"
- AC_SUBST(LT_CURRENT_MINUS_AGE)
- 
- dnl -- Check for X Stuff 

diff --git a/x11-libs/libfakekey/libfakekey-0.1-r3.ebuild 
b/x11-libs/libfakekey/libfakekey-0.1-r3.ebuild
deleted file mode 100644
index d423f654cc1..000
--- a/x11-libs/libfakekey/libfakekey-0.1-r3.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="Helper library for the x11-misc/matchbox-keyboard package"
-HOMEPAGE="https://www.yoctoproject.org/tools-resources/projects/matchbox;
-SRC_URI="http://downloads.yoctoproject.org/releases/matchbox/${PN}/${PV}/${P}.tar.bz2;
-LICENSE="GPL-2"
-SLOT="0"
-
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ~ppc64 x86"
-IUSE="debug doc"
-
-RDEPEND="x11-libs/libXtst"
-
-DEPEND="${RDEPEND}
-   doc? ( app-doc/doxygen )"
-
-PATCHES=(
-   # Allow configure to use libtool-2
-   "${FILESDIR}/${P}-ac.patch"
-)
-
-src_prepare() {
-   default
-
-   # Fix underlinking bug #367595
-   sed -i -e 's/^fakekey_test_LDADD=/fakekey_test_LDADD=-lX11 /' \
-   tests/Makefile.am || die 'Cannot sed Makefile.am'
-   sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.ac || die
-   eautoreconf
-}
-
-src_configure() {
-   # --with/without-x is ignored by configure script and X is used.
-   econf --with-x \
-   $(use_enable debug) \
-   $(use_enable doc doxygen-docs)
-}
-
-src_install() {
-   emake DESTDIR="${D}" install
-   use doc && local HTML_DOCS=( doc/html/. )
-   einstalldocs
-}



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libfakekey/

2019-12-25 Thread Sergei Trofimovich
commit: 16b90aab72c81615160321694b296f50cc8f6236
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Dec 25 20:37:49 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Dec 25 20:39:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16b90aab

x11-libs/libfakekey: stable 0.3 for ppc, bug #703578

Package-Manager: Portage-2.3.83, Repoman-2.3.20
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 x11-libs/libfakekey/libfakekey-0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libfakekey/libfakekey-0.3.ebuild 
b/x11-libs/libfakekey/libfakekey-0.3.ebuild
index 831804fde94..02a258f0146 100644
--- a/x11-libs/libfakekey/libfakekey-0.3.ebuild
+++ b/x11-libs/libfakekey/libfakekey-0.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://git.yoctoproject.org/cgit/cgit.cgi/${PN}/snapshot/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ~ppc64 x86"
 IUSE="debug doc"
 
 BDEPEND="doc? ( app-doc/doxygen )"



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libfakekey/

2019-12-24 Thread Agostino Sarubbo
commit: 8cc49b2e7955f9d05e718168804e8d939078cdda
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Dec 24 08:08:04 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Dec 24 08:08:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cc49b2e

x11-libs/libfakekey: x86 stable wrt bug #703578

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 x11-libs/libfakekey/libfakekey-0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libfakekey/libfakekey-0.3.ebuild 
b/x11-libs/libfakekey/libfakekey-0.3.ebuild
index 03ecb79948d..831804fde94 100644
--- a/x11-libs/libfakekey/libfakekey-0.3.ebuild
+++ b/x11-libs/libfakekey/libfakekey-0.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://git.yoctoproject.org/cgit/cgit.cgi/${PN}/snapshot/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86"
 IUSE="debug doc"
 
 BDEPEND="doc? ( app-doc/doxygen )"



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libfakekey/

2019-12-23 Thread Agostino Sarubbo
commit: 0375505e5643d3f199daccf1d392a610585db579
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Dec 23 14:03:21 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Dec 23 14:03:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0375505e

x11-libs/libfakekey: amd64 stable wrt bug #703578

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 x11-libs/libfakekey/libfakekey-0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libfakekey/libfakekey-0.3.ebuild 
b/x11-libs/libfakekey/libfakekey-0.3.ebuild
index 4cee737959b..03ecb79948d 100644
--- a/x11-libs/libfakekey/libfakekey-0.3.ebuild
+++ b/x11-libs/libfakekey/libfakekey-0.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://git.yoctoproject.org/cgit/cgit.cgi/${PN}/snapshot/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
 IUSE="debug doc"
 
 BDEPEND="doc? ( app-doc/doxygen )"



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libfakekey/, x11-libs/libfakekey/files/

2019-11-20 Thread Andreas Sturmlechner
commit: e55d492db8b3d16e2b344d3a559eb3d3edce5b4f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 20 14:33:26 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 20 15:37:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e55d492d

x11-libs/libfakekey: 0.3 version bump, EAPI-7 bump

Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 x11-libs/libfakekey/Manifest  |  1 +
 x11-libs/libfakekey/files/libfakekey-0.3-ac.patch | 25 
 x11-libs/libfakekey/libfakekey-0.3.ebuild | 46 +++
 3 files changed, 72 insertions(+)

diff --git a/x11-libs/libfakekey/Manifest b/x11-libs/libfakekey/Manifest
index c6aa1a5e833..54307fe81ee 100644
--- a/x11-libs/libfakekey/Manifest
+++ b/x11-libs/libfakekey/Manifest
@@ -1 +1,2 @@
 DIST libfakekey-0.1.tar.bz2 203504 BLAKE2B 
f3e51a1ff38dd95238a1035617045f728177c9dca96d760dfe3c4485511b500944e6f64aeb5acb3e65db3badc4c189ae25ea50f42f58a927f3ec1899c4778751
 SHA512 
1fda0548cf14657083a6602f8d6c08efae8cae2236de7ed17fc4058765156c6bb923956e3c7fd75f2db586399f1d8a3320ab5bbed71cc5a8b0d146590a14a808
+DIST libfakekey-0.3.tar.bz2 9672 BLAKE2B 
1cd86581148e218879b14ff52fb085fd20248a475ccf00a08918d64db811b21bbba3632e799d798077a197298da4d976be3180c060a6016c396428519d1aaef2
 SHA512 
b0502dbb01839009de7120f8ca939c839850e7c3c88678b52d6df9f4205cbec20769cedd61c9307e8307f6bf789eee25b20d4fe20c25e7285318f5ea1334555a

diff --git a/x11-libs/libfakekey/files/libfakekey-0.3-ac.patch 
b/x11-libs/libfakekey/files/libfakekey-0.3-ac.patch
new file mode 100644
index 000..3e0e14d7996
--- /dev/null
+++ b/x11-libs/libfakekey/files/libfakekey-0.3-ac.patch
@@ -0,0 +1,25 @@
+--- a/configure.ac 2011-05-22 14:59:45.801746472 +0100
 b/configure.ac 2011-05-22 15:02:59.437159981 +0100
+@@ -14,17 +14,14 @@ AC_HEADER_STDC
+ 
+ dnl -- libtool versioning ---
+ 
+-LT_CURRENT=0
+-LT_REVISION=1
+-LT_AGE=0
+-AC_SUBST(LT_CURRENT)
+-AC_SUBST(LT_REVISION)
+-AC_SUBST(LT_AGE)
++m4_define(LT_CURRENT, 0)
++m4_define(LT_REVISION, 1)
++m4_define(LT_AGE, 0)
+ 
+-LT_VERSION_INFO="$LT_CURRENT:$LT_REVISION:$LT_AGE"
++LT_VERSION_INFO="LT_CURRENT():LT_REVISION():LT_AGE()"
+ AC_SUBST(LT_VERSION_INFO)
+ 
+-LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
++LT_CURRENT_MINUS_AGE="m4_eval(LT_CURRENT() - LT_AGE())"
+ AC_SUBST(LT_CURRENT_MINUS_AGE)
+ 
+ dnl -- Check for X Stuff 

diff --git a/x11-libs/libfakekey/libfakekey-0.3.ebuild 
b/x11-libs/libfakekey/libfakekey-0.3.ebuild
new file mode 100644
index 000..4cee737959b
--- /dev/null
+++ b/x11-libs/libfakekey/libfakekey-0.3.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="Helper library for the x11-misc/matchbox-keyboard package"
+HOMEPAGE="https://www.yoctoproject.org/tools-resources/projects/matchbox;
+SRC_URI="https://git.yoctoproject.org/cgit/cgit.cgi/${PN}/snapshot/${P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+IUSE="debug doc"
+
+BDEPEND="doc? ( app-doc/doxygen )"
+DEPEND="x11-libs/libXtst"
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/${P}-ac.patch" ) # Allow configure to use libtool-2
+
+src_prepare() {
+   default
+
+   # Fix underlinking bug #367595
+   sed -i -e 's/^fakekey_test_LDADD=/fakekey_test_LDADD=-lX11 /' \
+   tests/Makefile.am || die 'Cannot sed Makefile.am'
+   sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.ac || die
+   eautoreconf
+}
+
+src_configure() {
+   local myeconfargs=(
+   # --with/without-x is ignored by configure script and X is used.
+   --with-x
+   $(use_enable debug)
+   $(use_enable doc doxygen-docs)
+   )
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   use doc && local HTML_DOCS=( doc/html/. )
+   default
+}



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libfakekey/

2018-05-01 Thread Johannes Huber
commit: 44238443f05719e1cc7bc52836edcf631e8326dd
Author: Johannes Huber  gentoo  org>
AuthorDate: Tue May  1 18:17:05 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Tue May  1 18:19:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44238443

x11-libs/libfakekey: 0.1-r3 ppc stable

Based on testing by ernsteiswuerfel.

Thanks-to: ernsteiswuerfel  mailbox.org>
Bug: https://bugs.gentoo.org/648872
Package-Manager: Portage-2.3.31, Repoman-2.3.9

 x11-libs/libfakekey/libfakekey-0.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libfakekey/libfakekey-0.1-r3.ebuild 
b/x11-libs/libfakekey/libfakekey-0.1-r3.ebuild
index b865dc4827d..d423f654cc1 100644
--- a/x11-libs/libfakekey/libfakekey-0.1-r3.ebuild
+++ b/x11-libs/libfakekey/libfakekey-0.1-r3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://downloads.yoctoproject.org/releases/matchbox/${PN}/${PV}/${P}.ta
 LICENSE="GPL-2"
 SLOT="0"
 
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ~ppc64 x86"
 IUSE="debug doc"
 
 RDEPEND="x11-libs/libXtst"



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libfakekey/

2018-05-01 Thread Johannes Huber
commit: 7a0d4b655ed24a0b23f3b711a2510c2f1d23c924
Author: Johannes Huber  gentoo  org>
AuthorDate: Tue May  1 18:19:01 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Tue May  1 18:19:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a0d4b65

x11-libs/libfakekey: Remove 0.1-r1

Deprecated EAPI 2 and overshadowed by 0.1-r3.

Closes: https://bugs.gentoo.org/648872
Package-Manager: Portage-2.3.31, Repoman-2.3.9

 x11-libs/libfakekey/libfakekey-0.1-r1.ebuild | 46 
 1 file changed, 46 deletions(-)

diff --git a/x11-libs/libfakekey/libfakekey-0.1-r1.ebuild 
b/x11-libs/libfakekey/libfakekey-0.1-r1.ebuild
deleted file mode 100644
index eff9f11885f..000
--- a/x11-libs/libfakekey/libfakekey-0.1-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=2
-
-inherit eutils autotools
-
-DESCRIPTION="Helper library for the x11-misc/matchbox-keyboard package"
-HOMEPAGE="http://matchbox-project.org/;
-SRC_URI="http://matchbox-project.org/sources/${PN}/${PV}/${P}.tar.bz2;
-LICENSE="GPL-2"
-SLOT="0"
-
-KEYWORDS="amd64 ~arm ~hppa ppc ~ppc64 x86"
-IUSE="debug doc"
-
-RDEPEND="x11-libs/libXtst"
-
-DEPEND="${RDEPEND}
-   doc? ( app-doc/doxygen )"
-
-src_prepare() {
-   # Allow configure to use libtool-2
-   epatch "${FILESDIR}/${P}-ac.patch"
-
-   # Fix underlinking bug #367595
-   sed -i -e 's/^fakekey_test_LDADD=/fakekey_test_LDADD=-lX11 /' \
-   tests/Makefile.am || die 'Cannot sed Makefile.am'
-   sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.ac || die
-   eautoreconf
-}
-
-src_configure() {
-   # --with/without-x is ignored by configure script and X is used.
-   econf   --with-x \
-   $(use_enable debug) \
-   $(use_enable doc doxygen-docs) \
-   || die "Configuration failed"
-}
-
-src_install() {
-   make DESTDIR="${D}" install || die "Installation failed"
-
-   dodoc AUTHORS ChangeLog INSTALL NEWS README
-   use doc && dohtml doc/html/*
-}



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libfakekey/

2018-03-03 Thread Thomas Deutschmann
commit: 34be122989aa852160e88a747ad67a0e1a4f2bb0
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Mar  4 06:04:10 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Mar  4 06:45:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34be1229

x11-libs/libfakekey: x86 stable (bug #648872)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-libs/libfakekey/libfakekey-0.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libfakekey/libfakekey-0.1-r3.ebuild 
b/x11-libs/libfakekey/libfakekey-0.1-r3.ebuild
index 112b8cab370..b865dc4827d 100644
--- a/x11-libs/libfakekey/libfakekey-0.1-r3.ebuild
+++ b/x11-libs/libfakekey/libfakekey-0.1-r3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://downloads.yoctoproject.org/releases/matchbox/${PN}/${PV}/${P}.ta
 LICENSE="GPL-2"
 SLOT="0"
 
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86"
 IUSE="debug doc"
 
 RDEPEND="x11-libs/libXtst"



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libfakekey/

2018-02-27 Thread Jason Zaman
commit: a18ed2b1e0e8ff2c95fa48dcca825e8035af65a1
Author: Jason Zaman  gentoo  org>
AuthorDate: Tue Feb 27 13:38:06 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Tue Feb 27 13:42:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a18ed2b1

x11-libs/libfakekey: amd64 stable

Gentoo-bug: 648872
Package-Manager: Portage-2.3.19, Repoman-2.3.6

 x11-libs/libfakekey/libfakekey-0.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libfakekey/libfakekey-0.1-r3.ebuild 
b/x11-libs/libfakekey/libfakekey-0.1-r3.ebuild
index ac34a6d782c..112b8cab370 100644
--- a/x11-libs/libfakekey/libfakekey-0.1-r3.ebuild
+++ b/x11-libs/libfakekey/libfakekey-0.1-r3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://downloads.yoctoproject.org/releases/matchbox/${PN}/${PV}/${P}.ta
 LICENSE="GPL-2"
 SLOT="0"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
 IUSE="debug doc"
 
 RDEPEND="x11-libs/libXtst"



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libfakekey/files/, x11-libs/libfakekey/

2018-02-26 Thread Andreas Sturmlechner
commit: 5e170dd844a9d4eb1726cf05ed41b70c61afd696
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Feb 26 22:41:08 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Feb 26 22:46:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e170dd8

x11-libs/libfakekey: EAPI 6, homepage, src_uri, drop eutils

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-libs/libfakekey/files/libfakekey-0.1-ac.patch |  4 +-
 x11-libs/libfakekey/libfakekey-0.1-r3.ebuild  | 48 +++
 2 files changed, 50 insertions(+), 2 deletions(-)

diff --git a/x11-libs/libfakekey/files/libfakekey-0.1-ac.patch 
b/x11-libs/libfakekey/files/libfakekey-0.1-ac.patch
index 65c0b083aa7..7158ad220ef 100644
--- a/x11-libs/libfakekey/files/libfakekey-0.1-ac.patch
+++ b/x11-libs/libfakekey/files/libfakekey-0.1-ac.patch
@@ -1,5 +1,5 @@
 configure.ac.old   2011-05-22 14:59:45.801746472 +0100
-+++ configure.ac   2011-05-22 15:02:59.437159981 +0100
+--- a/configure.ac 2011-05-22 14:59:45.801746472 +0100
 b/configure.ac 2011-05-22 15:02:59.437159981 +0100
 @@ -14,16 +14,14 @@ AC_HEADER_STDC
  
  dnl -- libtool versioning ---

diff --git a/x11-libs/libfakekey/libfakekey-0.1-r3.ebuild 
b/x11-libs/libfakekey/libfakekey-0.1-r3.ebuild
new file mode 100644
index 000..ac34a6d782c
--- /dev/null
+++ b/x11-libs/libfakekey/libfakekey-0.1-r3.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools
+
+DESCRIPTION="Helper library for the x11-misc/matchbox-keyboard package"
+HOMEPAGE="https://www.yoctoproject.org/tools-resources/projects/matchbox;
+SRC_URI="http://downloads.yoctoproject.org/releases/matchbox/${PN}/${PV}/${P}.tar.bz2;
+LICENSE="GPL-2"
+SLOT="0"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+IUSE="debug doc"
+
+RDEPEND="x11-libs/libXtst"
+
+DEPEND="${RDEPEND}
+   doc? ( app-doc/doxygen )"
+
+PATCHES=(
+   # Allow configure to use libtool-2
+   "${FILESDIR}/${P}-ac.patch"
+)
+
+src_prepare() {
+   default
+
+   # Fix underlinking bug #367595
+   sed -i -e 's/^fakekey_test_LDADD=/fakekey_test_LDADD=-lX11 /' \
+   tests/Makefile.am || die 'Cannot sed Makefile.am'
+   sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.ac || die
+   eautoreconf
+}
+
+src_configure() {
+   # --with/without-x is ignored by configure script and X is used.
+   econf --with-x \
+   $(use_enable debug) \
+   $(use_enable doc doxygen-docs)
+}
+
+src_install() {
+   emake DESTDIR="${D}" install
+   use doc && local HTML_DOCS=( doc/html/. )
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libfakekey/

2018-02-26 Thread Andreas Sturmlechner
commit: edff81ca8f46be88e7688874dc5c2cbdb4d95e28
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Feb 26 22:45:13 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Feb 26 22:46:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edff81ca

x11-libs/libfakekey: Drop old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-libs/libfakekey/libfakekey-0.1-r2.ebuild | 45 
 1 file changed, 45 deletions(-)

diff --git a/x11-libs/libfakekey/libfakekey-0.1-r2.ebuild 
b/x11-libs/libfakekey/libfakekey-0.1-r2.ebuild
deleted file mode 100644
index cfbc9fdf891..000
--- a/x11-libs/libfakekey/libfakekey-0.1-r2.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils autotools
-
-DESCRIPTION="Helper library for the x11-misc/matchbox-keyboard package"
-HOMEPAGE="http://matchbox-project.org/;
-SRC_URI="http://matchbox-project.org/sources/${PN}/${PV}/${P}.tar.bz2;
-LICENSE="GPL-2"
-SLOT="0"
-
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
-IUSE="debug doc"
-
-RDEPEND="x11-libs/libXtst"
-
-DEPEND="${RDEPEND}
-   doc? ( app-doc/doxygen )"
-
-src_prepare() {
-   # Allow configure to use libtool-2
-   epatch "${FILESDIR}/${P}-ac.patch"
-
-   # Fix underlinking bug #367595
-   sed -i -e 's/^fakekey_test_LDADD=/fakekey_test_LDADD=-lX11 /' \
-   tests/Makefile.am || die 'Cannot sed Makefile.am'
-   sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.ac || die
-   eautoreconf
-}
-
-src_configure() {
-   # --with/without-x is ignored by configure script and X is used.
-   econf   --with-x \
-   $(use_enable debug) \
-   $(use_enable doc doxygen-docs)
-}
-
-src_install() {
-   emake DESTDIR="${D}" install
-
-   dodoc AUTHORS ChangeLog INSTALL NEWS README
-   use doc && dohtml doc/html/*
-}



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libfakekey/

2017-12-21 Thread Patrice Clement
commit: 72cb2d8c1c64af2d35503ea6cd41cc9ff6db8f11
Author: Roy Bamford  gentoo  org>
AuthorDate: Tue Oct 17 16:51:27 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Dec 21 21:15:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72cb2d8c

x11-libs/libfakekey: added ~arm64 keyword.

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 x11-libs/libfakekey/libfakekey-0.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libfakekey/libfakekey-0.1-r2.ebuild 
b/x11-libs/libfakekey/libfakekey-0.1-r2.ebuild
index 962212c640f..cfbc9fdf891 100644
--- a/x11-libs/libfakekey/libfakekey-0.1-r2.ebuild
+++ b/x11-libs/libfakekey/libfakekey-0.1-r2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://matchbox-project.org/sources/${PN}/${PV}/${P}.tar.bz2;
 LICENSE="GPL-2"
 SLOT="0"
 
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
 IUSE="debug doc"
 
 RDEPEND="x11-libs/libXtst"



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libfakekey/

2017-10-09 Thread Sergei Trofimovich
commit: 8a29cd17374098bd3c4488fc9a925480c0f7b3e5
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Oct  9 14:43:48 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Oct  9 14:44:39 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a29cd17

x11-libs/libfakekey: keyworded 0.1-r2 for ppc64, bug #633320 (thanks to 
ernsteiswuerfel)

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc64"

 x11-libs/libfakekey/libfakekey-0.1-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-libs/libfakekey/libfakekey-0.1-r2.ebuild 
b/x11-libs/libfakekey/libfakekey-0.1-r2.ebuild
index e8ce00ae5f6..962212c640f 100644
--- a/x11-libs/libfakekey/libfakekey-0.1-r2.ebuild
+++ b/x11-libs/libfakekey/libfakekey-0.1-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -11,7 +11,7 @@ 
SRC_URI="http://matchbox-project.org/sources/${PN}/${PV}/${P}.tar.bz2;
 LICENSE="GPL-2"
 SLOT="0"
 
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
 IUSE="debug doc"
 
 RDEPEND="x11-libs/libXtst"



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libfakekey/

2017-10-09 Thread Sergei Trofimovich
commit: 4a69ca1a7047d994228c87cfa6e9b4962f27dfeb
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Oct  9 14:43:44 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Oct  9 14:44:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a69ca1a

x11-libs/libfakekey: keyworded 0.1-r1 for ppc64, bug #633320 (thanks to 
ernsteiswuerfel)

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc64"

 x11-libs/libfakekey/libfakekey-0.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-libs/libfakekey/libfakekey-0.1-r1.ebuild 
b/x11-libs/libfakekey/libfakekey-0.1-r1.ebuild
index fdce40065a2..eff9f11885f 100644
--- a/x11-libs/libfakekey/libfakekey-0.1-r1.ebuild
+++ b/x11-libs/libfakekey/libfakekey-0.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=2
@@ -11,7 +11,7 @@ 
SRC_URI="http://matchbox-project.org/sources/${PN}/${PV}/${P}.tar.bz2;
 LICENSE="GPL-2"
 SLOT="0"
 
-KEYWORDS="amd64 ~arm ~hppa ppc x86"
+KEYWORDS="amd64 ~arm ~hppa ppc ~ppc64 x86"
 IUSE="debug doc"
 
 RDEPEND="x11-libs/libXtst"



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libfakekey/

2016-11-28 Thread Johannes Huber
commit: 725d5fd492146167fd0b22ff3912909efa90396a
Author: Johannes Huber  gentoo  org>
AuthorDate: Mon Nov 28 18:29:20 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon Nov 28 18:29:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=725d5fd4

x11-libs/libfakekey: Drop invalid file

Regression in commit 0978999c9e9f59141c39b037946556fcd2429754.

Thanks-to: robbat2

Package-Manager: portage-2.3.2

 x11-libs/libfakekey/@ | 46 --
 1 file changed, 46 deletions(-)

diff --git a/x11-libs/libfakekey/@ b/x11-libs/libfakekey/@
deleted file mode 100644
index 90a07a3..
--- a/x11-libs/libfakekey/@
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils autotools
-
-DESCRIPTION="Helper library for the x11-misc/matchbox-keyboard package"
-HOMEPAGE="http://matchbox-project.org/;
-SRC_URI="http://matchbox-project.org/sources/${PN}/${PV}/${P}.tar.bz2;
-LICENSE="GPL-2"
-SLOT="0"
-
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86"
-IUSE="debug doc"
-
-RDEPEND="x11-libs/libXtst"
-
-DEPEND="${RDEPEND}
-   doc? ( app-doc/doxygen )"
-
-src_prepare() {
-   # Allow configure to use libtool-2
-   epatch "${FILESDIR}/${P}-ac.patch"
-
-   # Fix underlinking bug #367595
-   sed -i -e 's/^fakekey_test_LDADD=/fakekey_test_LDADD=-lX11 /' \
-   tests/Makefile.am || die 'Cannot sed Makefile.am'
-   sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.ac || die
-   eautoreconf
-}
-
-src_configure() {
-   # --with/without-x is ignored by configure script and X is used.
-   econf   --with-x \
-   $(use_enable debug) \
-   $(use_enable doc doxygen-docs)
-}
-
-src_install() {
-   emake DESTDIR="${D}" install
-
-   dodoc AUTHORS ChangeLog INSTALL NEWS README
-   use doc && dohtml doc/html/*
-}