diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2010-01-04 15:38:14 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2010-01-04 15:38:14 +0000 |
commit | b9bacd46856ada0d9246109e7d1c4488f7240238 (patch) | |
tree | 9d3c143838b5e4c92659726fabaea4c48cc095a3 /x11-wm | |
parent | Version bump to new branch. Rundir patch no longer required, upstream now fol... (diff) | |
download | gentoo-2-b9bacd46856ada0d9246109e7d1c4488f7240238.tar.gz gentoo-2-b9bacd46856ada0d9246109e7d1c4488f7240238.tar.bz2 gentoo-2-b9bacd46856ada0d9246109e7d1c4488f7240238.zip |
Version bumped.
(Portage version: 2.1.7.16/cvs/Linux x86_64)
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/awesome/ChangeLog | 9 | ||||
-rw-r--r-- | x11-wm/awesome/awesome-3.4.3.ebuild | 89 |
2 files changed, 96 insertions, 2 deletions
diff --git a/x11-wm/awesome/ChangeLog b/x11-wm/awesome/ChangeLog index fdca951bf607..d149b18677cf 100644 --- a/x11-wm/awesome/ChangeLog +++ b/x11-wm/awesome/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-wm/awesome -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/awesome/ChangeLog,v 1.90 2009/12/31 17:43:32 ranger Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/awesome/ChangeLog,v 1.91 2010/01/04 15:38:14 matsuu Exp $ + +*awesome-3.4.3 (04 Jan 2010) + + 04 Jan 2010; MATSUU Takuto <matsuu@gentoo.org> +awesome-3.4.3.ebuild: + Version bumped. 31 Dec 2009; Brent Baude <ranger@gentoo.org> awesome-3.3.4.ebuild: Marking awesome-3.3.4 ppc64 for bug 287208 diff --git a/x11-wm/awesome/awesome-3.4.3.ebuild b/x11-wm/awesome/awesome-3.4.3.ebuild new file mode 100644 index 000000000000..2bb2cc7455cb --- /dev/null +++ b/x11-wm/awesome/awesome-3.4.3.ebuild @@ -0,0 +1,89 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/awesome/awesome-3.4.3.ebuild,v 1.1 2010/01/04 15:38:14 matsuu Exp $ + +EAPI="2" +inherit cmake-utils eutils + +DESCRIPTION="A dynamic floating and tiling window manager" +HOMEPAGE="http://awesome.naquadah.org/" +SRC_URI="http://awesome.naquadah.org/download/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd" +#IUSE="dbus doc elibc_FreeBSD bash-completion" +IUSE="dbus doc elibc_FreeBSD" + +RDEPEND=">=dev-lang/lua-5.1[deprecated] + dev-libs/libev + >=dev-libs/libxdg-basedir-1 + media-libs/imlib2[png] + x11-libs/cairo[xcb] + x11-libs/libX11[xcb] + >=x11-libs/libxcb-1.4 + >=x11-libs/pango-1.19.3 + >=x11-libs/startup-notification-0.10 + >=x11-libs/xcb-util-0.3.6 + dbus? ( >=sys-apps/dbus-1 ) + elibc_FreeBSD? ( dev-libs/libexecinfo )" + +DEPEND="${RDEPEND} + app-text/asciidoc + app-text/xmlto + >=dev-util/cmake-2.6 + dev-util/gperf + dev-util/pkgconfig + media-gfx/imagemagick[png] + >=x11-proto/xcb-proto-1.5 + >=x11-proto/xproto-7.0.15 + doc? ( + app-doc/doxygen + dev-util/luadoc + media-gfx/graphviz + )" + +RDEPEND="${RDEPEND} + app-shells/bash + || ( + x11-misc/gxmessage + x11-apps/xmessage + )" +# bash-completion? ( app-shells/bash-completion ) + +DOCS="AUTHORS BUGS PATCHES README STYLE" + +mycmakeargs="-DPREFIX=/usr + -DSYSCONFDIR=/etc + $(cmake-utils_use_with dbus DBUS) + $(cmake-utils_use doc GENERATE_LUADOC)" + +src_prepare() { + epatch "${FILESDIR}/${PN}-3.4.2-backtrace.patch" +} + +src_compile() { + local myargs="all" + + if use doc ; then + myargs="${myargs} doc" + fi + cmake-utils_src_make ${myargs} +} + +src_install() { + cmake-utils_src_install + + if use doc ; then + ( + cd "${CMAKE_BUILD_DIR}"/doc + mv html doxygen + dohtml -r doxygen || die + ) + mv "${D}"/usr/share/doc/${PN}/luadoc "${D}"/usr/share/doc/${PF}/html/luadoc || die + fi + rm -rf "${D}"/usr/share/doc/${PN} || die + + exeinto /etc/X11/Sessions + newexe "${FILESDIR}"/${PN}-session ${PN} || die +} |