diff options
author | Krzysztof Pawlik <nelchael@gentoo.org> | 2006-01-13 12:53:21 +0000 |
---|---|---|
committer | Krzysztof Pawlik <nelchael@gentoo.org> | 2006-01-13 12:53:21 +0000 |
commit | d10ec4cc7a661401cb2ae314d83d93cb246f583b (patch) | |
tree | 33fd4513ed0408a638fd242529f3ccfffcc8f6ef /x11-misc/xkbd | |
parent | Due to the requirement of private headers, QtTestlib is unusable without this... (diff) | |
download | historical-d10ec4cc7a661401cb2ae314d83d93cb246f583b.tar.gz historical-d10ec4cc7a661401cb2ae314d83d93cb246f583b.tar.bz2 historical-d10ec4cc7a661401cb2ae314d83d93cb246f583b.zip |
Fixed DEPEND for modular X, bug #118300.
Package-Manager: portage-2.1_pre3-r1
Diffstat (limited to 'x11-misc/xkbd')
-rw-r--r-- | x11-misc/xkbd/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/xkbd/Manifest | 4 | ||||
-rw-r--r-- | x11-misc/xkbd/xkbd-0.8.12.ebuild | 23 |
3 files changed, 25 insertions, 9 deletions
diff --git a/x11-misc/xkbd/ChangeLog b/x11-misc/xkbd/ChangeLog index be316d2927c6..2a1c2975b9c9 100644 --- a/x11-misc/xkbd/ChangeLog +++ b/x11-misc/xkbd/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-misc/xkbd -# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xkbd/ChangeLog,v 1.8 2005/11/03 12:17:55 nelchael Exp $ +# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xkbd/ChangeLog,v 1.9 2006/01/13 12:53:21 nelchael Exp $ + + 13 Jan 2006; Krzysiek Pawlik <nelchael@gentoo.org> xkbd-0.8.12.ebuild: + Fixed DEPEND for modular X, bug #118300. 03 Nov 2005; Krzysiek Pawlik <nelchael@gentoo.org> xkbd-0.8.12.ebuild: Fixed dodoc not to install COPYING and/or INSTALL. diff --git a/x11-misc/xkbd/Manifest b/x11-misc/xkbd/Manifest index b80fedba33ce..a8423acc63a1 100644 --- a/x11-misc/xkbd/Manifest +++ b/x11-misc/xkbd/Manifest @@ -1,4 +1,4 @@ -MD5 44e456ddcfadc15027013f93bb19bacf ChangeLog 986 +MD5 ad5a0c0d07e671dfe7a65098654c7052 ChangeLog 1103 MD5 e6e96176b8bde356f7f4596effc96e48 files/digest-xkbd-0.8.12 63 MD5 9ba3ceca3ae81ec759fbb9a277c0e45c metadata.xml 165 -MD5 d2b8251d69694fc9fdbb4fb9e94db3b2 xkbd-0.8.12.ebuild 853 +MD5 106260e29c7d3e930d439973eeff43e7 xkbd-0.8.12.ebuild 1041 diff --git a/x11-misc/xkbd/xkbd-0.8.12.ebuild b/x11-misc/xkbd/xkbd-0.8.12.ebuild index bbb96b5484db..dbb1934e84b3 100644 --- a/x11-misc/xkbd/xkbd-0.8.12.ebuild +++ b/x11-misc/xkbd/xkbd-0.8.12.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xkbd/xkbd-0.8.12.ebuild,v 1.9 2005/11/03 12:17:55 nelchael Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xkbd/xkbd-0.8.12.ebuild,v 1.10 2006/01/13 12:53:21 nelchael Exp $ DESCRIPTION="Xkbd - onscreen soft keyboard for X11" HOMEPAGE="http://handhelds.org/~mallum/xkbd/" @@ -13,14 +13,27 @@ KEYWORDS="~amd64 ~ppc x86" IUSE="doc debug" -DEPEND="sys-devel/libtool - virtual/x11 +RDEPEND="|| ( ( x11-libs/libXrender + x11-libs/libX11 + virtual/xft + x11-libs/libXtst + x11-libs/libXpm + ) + virtual/x11 + ) + sys-devel/libtool media-libs/freetype - virtual/xft dev-libs/expat sys-libs/zlib doc? ( app-text/docbook-sgml-utils )" +DEPEND="${RDEPEND} + || ( ( x11-proto/xproto + x11-proto/xextproto + ) + virtual/x11 + )" + src_compile() { econf\ `use_enable debug` || die "econf failed" |