diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2009-06-19 15:35:52 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2009-06-19 15:35:52 +0000 |
commit | 72ef8132ca66ccde4b009a63dc5d476444e7d945 (patch) | |
tree | 59068d323cdd246c3edd9fe40aa03bc082610af7 /x11-wm | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-72ef8132ca66ccde4b009a63dc5d476444e7d945.tar.gz gentoo-2-72ef8132ca66ccde4b009a63dc5d476444e7d945.tar.bz2 gentoo-2-72ef8132ca66ccde4b009a63dc5d476444e7d945.zip |
Version bumped.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/awesome/ChangeLog | 7 | ||||
-rw-r--r-- | x11-wm/awesome/awesome-3.3.1.ebuild | 98 |
2 files changed, 104 insertions, 1 deletions
diff --git a/x11-wm/awesome/ChangeLog b/x11-wm/awesome/ChangeLog index fcfa3562929a..89e2dd9258a0 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.73 2009/06/04 17:11:54 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/awesome/ChangeLog,v 1.74 2009/06/19 15:35:52 matsuu Exp $ + +*awesome-3.3.1 (19 Jun 2009) + + 19 Jun 2009; MATSUU Takuto <matsuu@gentoo.org> +awesome-3.3.1.ebuild: + Version bumped. *awesome-3.3 (04 Jun 2009) diff --git a/x11-wm/awesome/awesome-3.3.1.ebuild b/x11-wm/awesome/awesome-3.3.1.ebuild new file mode 100644 index 000000000000..41e462dc59a1 --- /dev/null +++ b/x11-wm/awesome/awesome-3.3.1.ebuild @@ -0,0 +1,98 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/awesome/awesome-3.3.1.ebuild,v 1.1 2009/06/19 15:35:52 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 ~ppc64 ~x86 ~x86-fbsd" +#IUSE="dbus doc bash-completion" +IUSE="dbus doc" + +RDEPEND=">=dev-lang/lua-5.1[deprecated] + dev-libs/libev + >=dev-libs/libxdg-basedir-1 + dev-util/gperf + media-libs/imlib2[png] + x11-libs/cairo[xcb] + x11-libs/libX11[xcb] + >=x11-libs/libxcb-1.1 + >=x11-libs/pango-1.19.3 + >=x11-libs/startup-notification-0.10 + >=x11-libs/xcb-util-0.3.4 + dbus? ( >=sys-apps/dbus-1 )" + +DEPEND="${RDEPEND} + app-text/asciidoc + app-text/xmlto + >=dev-util/cmake-2.6 + dev-util/pkgconfig + media-gfx/imagemagick + x11-proto/xcb-proto + >=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 + ) + || ( + x11-terms/eterm + x11-misc/habak + x11-wm/windowmaker + media-gfx/feh + x11-misc/hsetroot + ( media-gfx/imagemagick x11-apps/xwininfo ) + media-gfx/xv + x11-misc/xsri + media-gfx/xli + x11-apps/xsetroot + )" +# media-gfx/qiv (media-gfx/pqiv doesn't work) +# x11-misc/chbg #68116 +# 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_compile() { + local myargs="all" + + if use doc ; then + myargs="${myargs} doc" + fi + cmake-utils_src_compile ${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 +} |