Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 502180 - x11-misc/cb-wmhacks-0.06 - tiling and hotcorner scripts for openbox (CrunchBang Window Manager Hacks)
Summary: x11-misc/cb-wmhacks-0.06 - tiling and hotcorner scripts for openbox (CrunchBa...
Status: UNCONFIRMED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: Normal enhancement (vote)
Assignee: Default Assignee for New Packages
URL: https://github.com/corenominal/cb-wmh...
Whiteboard:
Keywords: EBUILD
Depends on:
Blocks:
 
Reported: 2014-02-22 23:38 UTC by Janis Petersons
Modified: 2014-02-23 13:21 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
cb-wmhacks-0.06.ebuild (cb-wmhacks-0.06.ebuild,562 bytes, text/plain)
2014-02-22 23:38 UTC, Janis Petersons
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Janis Petersons 2014-02-22 23:38:47 UTC
Created attachment 371100 [details]
cb-wmhacks-0.06.ebuild

Hello!

Attached you will find the ebuild for cb-wmhacks - a set of 2 python scripts for the openbox window manager. They provide easy keybind tiling and hotcorner functionality. Originally written for the Crunchbang distribution. 

Janis
Comment 1 Jeroen Roovers (RETIRED) gentoo-dev 2014-02-23 13:20:52 UTC
Comment on attachment 371100 [details]
cb-wmhacks-0.06.ebuild

># Copyright 1999-2014 Gentoo Foundation
># Distributed under the terms of the GNU General Public License v2
># $Header: $
>
>EAPI=4

Why not 5?

>DESCRIPTION="Tiling and hotcorner scripts for openbox"
>HOMEPAGE="https://github.com/corenominal/cb-wmhacks"
>SRC_URI="http://packages.crunchbang.org/waldorf/pool/main/${PN}_${PV}.tar.gz"
>
>LIENSE="WTFPL-2"
>SLOT="0"
>KEYWORDS="~amd64 ~x86"
>
>RDEPEND="dev-lang/python:2.7
>dev-python/python-xlib
>x11-misc/wmctrl
>>=x11-misc/xdotool-2.20110530"
>
>src_install() {
>	dobin cb-aerosnap || die
>	dobin cb-hotcorners || die
>	dodoc README.md || die
>}

No need to || die for EAPI=4. dobin/dodoc will die on their own.