2014-11-24 17:31:57 +00:00
|
|
|
|
# Copyright 2011-2013 Quentin "Sardem FF7" Glidic <sardemff7@exherbo.org>
|
2016-02-15 13:55:42 +00:00
|
|
|
|
# Copyright 2016 Julian Ospald <hasufell@posteo.de>
|
2014-11-24 17:31:57 +00:00
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
2016-02-15 13:55:42 +00:00
|
|
|
|
SCM_REPOSITORY="https://github.com/hasufell/i3wm.git"
|
|
|
|
|
: ${SCM_BRANCH:=next}
|
|
|
|
|
|
|
|
|
|
require i3 scm-git
|
2014-11-24 17:31:57 +00:00
|
|
|
|
|
|
|
|
|
UPSTREAM_CHANGELOG="http://code.stapelberg.de/git/i3/log/"
|
|
|
|
|
UPSTREAM_DOCUMENTATION="
|
|
|
|
|
(
|
|
|
|
|
http://build.i3wm.org/docs/ [[ description = [ Development version documentation list ] ]]
|
|
|
|
|
http://build.i3wm.org/docs/userguide.html [[ description = [ Development version user’s guide ] ]]
|
|
|
|
|
) [[ *lang = en ]]
|
|
|
|
|
"
|
|
|
|
|
|
|
|
|
|
PLATFORMS="~amd64"
|
|
|
|
|
|
2016-02-15 13:55:42 +00:00
|
|
|
|
MYOPTIONS="icons"
|
|
|
|
|
|
2014-11-24 17:31:57 +00:00
|
|
|
|
DEPENDENCIES="
|
|
|
|
|
build:
|
|
|
|
|
app-doc/asciidoc[>=8.3.0]
|
|
|
|
|
app-text/xmlto
|
|
|
|
|
build+run:
|
|
|
|
|
x11-utils/xcb-util-cursor
|
2016-02-15 13:55:42 +00:00
|
|
|
|
icons? ( x11-utils/xcb-util-image )
|
2014-11-24 17:31:57 +00:00
|
|
|
|
"
|
|
|
|
|
|
|
|
|
|
DEFAULT_SRC_COMPILE_PARAMS+=(
|
|
|
|
|
all mans
|
|
|
|
|
)
|
|
|
|
|
|
2016-02-15 13:55:42 +00:00
|
|
|
|
src_compile() {
|
|
|
|
|
emake "${DEFAULT_SRC_COMPILE_PARAMS[@]}" \
|
|
|
|
|
USE_ICONS="$(option icons 1 0)"
|
|
|
|
|
}
|