From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B427C138334 for ; Sat, 22 Jun 2019 11:03:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 10A64E0895; Sat, 22 Jun 2019 11:03:43 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E14E6E0895 for ; Sat, 22 Jun 2019 11:03:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E14273467EE for ; Sat, 22 Jun 2019 11:03:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 35826608 for ; Sat, 22 Jun 2019 11:03:39 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1561201373.fce36abed876c5892a7d9195048c3acbacdf4dea.johu@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/i3-gaps/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-wm/i3-gaps/i3-gaps-4.16.1-r1.ebuild X-VCS-Directories: x11-wm/i3-gaps/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: fce36abed876c5892a7d9195048c3acbacdf4dea X-VCS-Branch: master Date: Sat, 22 Jun 2019 11:03:39 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f5777bf1-8804-4393-9493-895cb33734b1 X-Archives-Hash: 28a68ee15887f551774894640fa371c4 commit: fce36abed876c5892a7d9195048c3acbacdf4dea Author: Johannes Huber gentoo org> AuthorDate: Sat Jun 22 10:52:57 2019 +0000 Commit: Johannes Huber gentoo org> CommitDate: Sat Jun 22 11:02:53 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fce36abe x11-wm/i3-gaps: Install man pages Closes: https://bugs.gentoo.org/687280 Package-Manager: Portage-2.3.67, Repoman-2.3.15 Signed-off-by: Johannes Huber gentoo.org> x11-wm/i3-gaps/i3-gaps-4.16.1-r1.ebuild | 87 +++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) diff --git a/x11-wm/i3-gaps/i3-gaps-4.16.1-r1.ebuild b/x11-wm/i3-gaps/i3-gaps-4.16.1-r1.ebuild new file mode 100644 index 00000000000..2d8654ca3aa --- /dev/null +++ b/x11-wm/i3-gaps/i3-gaps-4.16.1-r1.ebuild @@ -0,0 +1,87 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools out-of-source + +DESCRIPTION="i3 fork with gaps and some more features" +HOMEPAGE="https://github.com/Airblader/i3" +SRC_URI="https://github.com/Airblader/i3/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + dev-libs/glib:2 + dev-libs/libev + dev-libs/libpcre + dev-libs/yajl + x11-libs/cairo[X,xcb] + x11-libs/libxcb[xkb] + x11-libs/libxkbcommon[X] + x11-libs/pango[X] + x11-libs/startup-notification + x11-libs/xcb-util + x11-libs/xcb-util-cursor + x11-libs/xcb-util-keysyms + x11-libs/xcb-util-wm + x11-libs/xcb-util-xrm +" +BDEPEND=" + app-text/asciidoc + app-text/xmlto + dev-lang/perl + virtual/pkgconfig +" +RDEPEND="${DEPEND} + dev-lang/perl + dev-perl/AnyEvent-I3 + dev-perl/JSON-XS + !x11-wm/i3 +" + +S=${WORKDIR}/i3-${PV} + +DOCS=( RELEASE-NOTES-$(ver_cut 1-3) ) + +PATCHES=( "${FILESDIR}/${PN}-$(ver_cut 1-2)-musl.patch" ) + +src_prepare() { + default + eautoreconf + cat <<- EOF > "${T}"/i3wm + #!/bin/sh + exec /usr/bin/i3 + EOF +} + +my_src_configure() { + # disable sanitizer: otherwise injects -O0 -g + local myeconfargs=( + --enable-debug=no + --enable-mans + --disable-docs + --disable-sanitizers + ) + econf "${myeconfargs[@]}" +} + +my_src_install_all() { + doman "${BUILD_DIR}"/man/*.1 + einstalldocs + + exeinto /etc/X11/Sessions + doexe "${T}"/i3wm +} + +pkg_postinst() { + einfo "There are several packages that you may find useful with ${PN} and" + einfo "their usage is suggested by the upstream maintainers, namely:" + einfo " x11-misc/dmenu" + einfo " x11-misc/i3lock" + einfo " x11-misc/i3status" + einfo "Please refer to their description for additional info." +}