diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2011-03-07 23:12:35 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2011-03-07 23:12:35 +0000 |
commit | ea5d7d604ab28c8960c95925dd4bf36b8eb61034 (patch) | |
tree | b40af8be200a383b238c88ddc4adced4ec08c27d | |
parent | Version bump. (diff) | |
download | historical-ea5d7d604ab28c8960c95925dd4bf36b8eb61034.tar.gz historical-ea5d7d604ab28c8960c95925dd4bf36b8eb61034.tar.bz2 historical-ea5d7d604ab28c8960c95925dd4bf36b8eb61034.zip |
Disable optional dependency on deprecated libs. Per bug #293118.
Package-Manager: portage-2.2.0_alpha26/cvs/Linux x86_64
-rw-r--r-- | x11-apps/xset/ChangeLog | 7 | ||||
-rw-r--r-- | x11-apps/xset/Manifest | 3 | ||||
-rw-r--r-- | x11-apps/xset/xset-1.2.1-r1.ebuild | 23 |
3 files changed, 31 insertions, 2 deletions
diff --git a/x11-apps/xset/ChangeLog b/x11-apps/xset/ChangeLog index 852fdb857f78..cc5591d744ba 100644 --- a/x11-apps/xset/ChangeLog +++ b/x11-apps/xset/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-apps/xset # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-apps/xset/ChangeLog,v 1.70 2011/02/14 23:40:59 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-apps/xset/ChangeLog,v 1.71 2011/03/07 23:12:35 scarabeus Exp $ + +*xset-1.2.1-r1 (07 Mar 2011) + + 07 Mar 2011; Tomáš Chvátal <scarabeus@gentoo.org> +xset-1.2.1-r1.ebuild: + Disable optional dependency on deprecated libs. Per bug #293118. 14 Feb 2011; Kacper Kowalik <xarthisius@gentoo.org> xset-1.2.1.ebuild: ppc stable wrt #344827, #354237 diff --git a/x11-apps/xset/Manifest b/x11-apps/xset/Manifest index 85eb558ed7cc..1d4a00aa7fb2 100644 --- a/x11-apps/xset/Manifest +++ b/x11-apps/xset/Manifest @@ -1,4 +1,5 @@ DIST xset-1.2.1.tar.bz2 124237 RMD160 3932533464cbfc77ae947140e8b9292fbb49d6f4 SHA1 9b1eb8835637dd70eea1a1365df5d909a306cc2c SHA256 ec995f7d23109cfa6420ae87c38158f29a2a6f9d0b7df0a1be34e69e165292a1 +EBUILD xset-1.2.1-r1.ebuild 647 RMD160 dbc43f0484637aa136e5e661e679929cf4aeaa82 SHA1 9a04cf4514dbcf6c4e3b216f2222edabe67f4f1e SHA256 f6d6f02c8bec802fad4d47ee9531ec87f43f28fa562fe8d78f22d2a3f0e3d2c7 EBUILD xset-1.2.1.ebuild 675 RMD160 157922d516f1939a559de1b4969ef5c81e10532d SHA1 3a594d17a9d13581ec8e61a17db24d7e3c434934 SHA256 4fd0aab08881c783dca2f4b3d0438e963a647a1ab16ce3588188b7044c584237 -MISC ChangeLog 7968 RMD160 43b739cced6c6a310733da63893871a8d709882b SHA1 cfd150509565bc2e2d9382033b8840ee0eccdde7 SHA256 f37c5298e5180053ecc40cd9285aaef95b0f9c8fea612fd76d568b814cd3646b +MISC ChangeLog 8143 RMD160 8fcd59f128fb6e03c29097ca05b2ee7643f6a8f5 SHA1 092237bec1d08c002451700f405a99ae5544dc73 SHA256 e5dfb125d77fc53dd7b40167a087255c8607df86a6a7677e9522d535022801fa MISC metadata.xml 156 RMD160 c1274bdccf57603d580de0075ba07a35b7509560 SHA1 6f78f604e3d079d39189b40aaaa1ddb06182ad91 SHA256 5101ab0d4cc8c7125eea733c44e86962769bd77acaf53b69223b9cadcdd29055 diff --git a/x11-apps/xset/xset-1.2.1-r1.ebuild b/x11-apps/xset/xset-1.2.1-r1.ebuild new file mode 100644 index 000000000000..2d7ad43439c2 --- /dev/null +++ b/x11-apps/xset/xset-1.2.1-r1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-apps/xset/xset-1.2.1-r1.ebuild,v 1.1 2011/03/07 23:12:35 scarabeus Exp $ + +EAPI=3 + +inherit xorg-2 + +DESCRIPTION="X.Org xset application" + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos ~x64-solaris ~x86-solaris" +IUSE="" + +RDEPEND=" + x11-libs/libX11 + x11-libs/libXmu + x11-libs/libXext" +DEPEND="${RDEPEND}" + +pkg_setup() { + CONFIGURE_OPTIONS="--without-xf86misc --without-fontcache" + xorg-2_pkg_setup +} |