diff options
author | Joshua Baergen <joshuabaergen@gentoo.org> | 2006-04-29 16:35:10 +0000 |
---|---|---|
committer | Joshua Baergen <joshuabaergen@gentoo.org> | 2006-04-29 16:35:10 +0000 |
commit | 00877ca0fd50920ac3c8a2ba03c1b041d39e8a22 (patch) | |
tree | 4586f40816a5f993a1d2f3d889408cfa487a02f6 /x11-apps/xclock | |
parent | Version bump. Includes a build fix. (diff) | |
download | gentoo-2-00877ca0fd50920ac3c8a2ba03c1b041d39e8a22.tar.gz gentoo-2-00877ca0fd50920ac3c8a2ba03c1b041d39e8a22.tar.bz2 gentoo-2-00877ca0fd50920ac3c8a2ba03c1b041d39e8a22.zip |
Version bump. Includes a compile fix.
(Portage version: 2.1_pre10)
Diffstat (limited to 'x11-apps/xclock')
-rw-r--r-- | x11-apps/xclock/ChangeLog | 8 | ||||
-rw-r--r-- | x11-apps/xclock/files/digest-xclock-1.0.2 | 3 | ||||
-rw-r--r-- | x11-apps/xclock/xclock-1.0.2.ebuild | 26 |
3 files changed, 36 insertions, 1 deletions
diff --git a/x11-apps/xclock/ChangeLog b/x11-apps/xclock/ChangeLog index ff29e5067541..03bc3336d801 100644 --- a/x11-apps/xclock/ChangeLog +++ b/x11-apps/xclock/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-apps/xclock # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-apps/xclock/ChangeLog,v 1.17 2006/03/31 20:12:14 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-apps/xclock/ChangeLog,v 1.18 2006/04/29 16:35:10 joshuabaergen Exp $ + +*xclock-1.0.2 (29 Apr 2006) + + 29 Apr 2006; Joshua Baergen <joshuabaergen@gentoo.org> + +xclock-1.0.2.ebuild: + Version bump. Includes a compile fix. 31 Mar 2006; Diego Pettenò <flameeyes@gentoo.org> xclock-1.0.1.ebuild: Add ~x86-fbsd keyword. diff --git a/x11-apps/xclock/files/digest-xclock-1.0.2 b/x11-apps/xclock/files/digest-xclock-1.0.2 new file mode 100644 index 000000000000..582b041685ef --- /dev/null +++ b/x11-apps/xclock/files/digest-xclock-1.0.2 @@ -0,0 +1,3 @@ +MD5 6b930326f71993fb54b7203902b387cd xclock-1.0.2.tar.bz2 104335 +RMD160 f06b33dadeb3513bc59d2b676626052a526aefd1 xclock-1.0.2.tar.bz2 104335 +SHA256 ced648762382eab09e0ccb87371cb745646ede08ffcb068faa6025d20c4d1f3d xclock-1.0.2.tar.bz2 104335 diff --git a/x11-apps/xclock/xclock-1.0.2.ebuild b/x11-apps/xclock/xclock-1.0.2.ebuild new file mode 100644 index 000000000000..595f1a0bc5fe --- /dev/null +++ b/x11-apps/xclock/xclock-1.0.2.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-apps/xclock/xclock-1.0.2.ebuild,v 1.1 2006/04/29 16:35:10 joshuabaergen Exp $ + +# Must be before x-modular eclass is inherited +#SNAPSHOT="yes" + +inherit x-modular + +DESCRIPTION="X.Org xclock application" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="xprint" +RDEPEND="x11-libs/libX11 + x11-libs/libXrender + x11-libs/libXft + x11-libs/libxkbfile + x11-libs/libXaw" +DEPEND="${RDEPEND}" + +CONFIGURE_OPTIONS="$(use_enable xprint)" + +pkg_setup() { + if use xprint && ! built_with_use x11-libs/libXaw xprint; then + die "Build x11-libs/libXaw with USE=xprint." + fi +} |