diff options
author | Michael Weber <xmw@gentoo.org> | 2012-02-16 21:35:37 +0000 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2012-02-16 21:35:37 +0000 |
commit | 9fcdb8067d6d31a8706d77906215bc869c1eb11e (patch) | |
tree | 39b9af5a0c4b856d46bea0a4333cc7c0248680e9 /x11-wm | |
parent | Marked ~sparc-solaris (diff) | |
download | gentoo-2-9fcdb8067d6d31a8706d77906215bc869c1eb11e.tar.gz gentoo-2-9fcdb8067d6d31a8706d77906215bc869c1eb11e.tar.bz2 gentoo-2-9fcdb8067d6d31a8706d77906215bc869c1eb11e.zip |
Version bump, thanks Timothy Messier (bug 403497)
(Portage version: 2.1.10.44/cvs/Linux x86_64)
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/scrotwm/ChangeLog | 8 | ||||
-rw-r--r-- | x11-wm/scrotwm/scrotwm-0.10.0-r1.ebuild | 4 | ||||
-rw-r--r-- | x11-wm/scrotwm/scrotwm-0.11.0.ebuild | 42 |
3 files changed, 51 insertions, 3 deletions
diff --git a/x11-wm/scrotwm/ChangeLog b/x11-wm/scrotwm/ChangeLog index 61e5e9795280..669671ec1d18 100644 --- a/x11-wm/scrotwm/ChangeLog +++ b/x11-wm/scrotwm/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-wm/scrotwm # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/scrotwm/ChangeLog,v 1.5 2012/02/14 23:15:34 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/scrotwm/ChangeLog,v 1.6 2012/02/16 21:35:37 xmw Exp $ + +*scrotwm-0.11.0 (14 Feb 2012) + + 14 Feb 2012; Michael Weber <xmw@gentoo.org> scrotwm-0.10.0-r1.ebuild, + +scrotwm-0.11.0.ebuild: + Version bump, thanks Timothy Messier (bug 403497) *scrotwm-0.10.0-r1 (14 Feb 2012) diff --git a/x11-wm/scrotwm/scrotwm-0.10.0-r1.ebuild b/x11-wm/scrotwm/scrotwm-0.10.0-r1.ebuild index d493c178c219..cedad00b089c 100644 --- a/x11-wm/scrotwm/scrotwm-0.10.0-r1.ebuild +++ b/x11-wm/scrotwm/scrotwm-0.10.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/scrotwm/scrotwm-0.10.0-r1.ebuild,v 1.1 2012/02/14 23:15:34 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/scrotwm/scrotwm-0.10.0-r1.ebuild,v 1.2 2012/02/16 21:35:37 xmw Exp $ EAPI=4 @@ -31,7 +31,7 @@ src_prepare() { src_install() { emake PREFIX="${D}"usr LIBDIR="${D}usr/$(get_libdir)" install - cd ${WORKDIR}/${P} + cd ${WORKDIR}/${P} || die insinto /etc doins ${PN}.conf diff --git a/x11-wm/scrotwm/scrotwm-0.11.0.ebuild b/x11-wm/scrotwm/scrotwm-0.11.0.ebuild new file mode 100644 index 000000000000..d77b77d58042 --- /dev/null +++ b/x11-wm/scrotwm/scrotwm-0.11.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/scrotwm/scrotwm-0.11.0.ebuild,v 1.1 2012/02/16 21:35:37 xmw Exp $ + +EAPI=4 + +inherit eutils multilib toolchain-funcs + +DESCRIPTION="Small dynamic tiling window manager for X11" +HOMEPAGE="http://www.scrotwm.org" +SRC_URI="http://opensource.conformal.com/snapshots/${PN}/${P}.tgz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="x11-misc/dmenu" +DEPEND="${DEPEND} + x11-libs/libX11 + x11-libs/libXrandr + x11-libs/libXtst" + +S=${WORKDIR}/${P}/linux + +src_prepare() { + epatch "${FILESDIR}"/${PN}-0.10.0-makefile.patch + tc-export CC +} + +src_install() { + emake PREFIX="${D}"usr LIBDIR="${D}usr/$(get_libdir)" install + + cd ${WORKDIR}/${P} || die + + insinto /etc + doins ${PN}.conf + dodoc ${PN}_*.conf {initscreen,screenshot}.sh + + elog "Example keyboard config and helpful scripts can be found" + elog "in ${ROOT}usr/share/doc/${PF}" +} |