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

EAPI=5

DESCRIPTION="A simple tool to set the desktop layout in Openbox"
HOMEPAGE="http://openbox.org/wiki/Help:FAQ#How_do_I_put_my_desktops_into_a_grid_layout_instead_of_a_single_row.3F"
SRC_URI="http://openbox.org/dist/tools/setlayout.c"

LICENSE="all-rights-reserved"
SLOT="0"
KEYWORDS="~x86 ~amd64"

DEPEND="x11-libs/libX11"
RDEPEND="${DEPEND}"

S=${WORKDIR}

src_unpack() {
	cp "${DISTDIR}"/${A} "${S}"/ || die
}

src_compile() {
	gcc ${CFLAGS} -o setlayout setlayout.c -lX11 || die
}

src_install() {
	dobin setlayout
}