Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/lndir/
Date: Sat, 28 Jul 2018 00:38:51
Message-Id: 1532738306.c42abbf89bb3b4031fe0bb20bb0215ba055451ea.mattst88@gentoo
1 commit: c42abbf89bb3b4031fe0bb20bb0215ba055451ea
2 Author: Marty E. Plummer <hanetzer <AT> startmail <DOT> com>
3 AuthorDate: Fri Jul 27 23:38:24 2018 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 28 00:38:26 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c42abbf8
7
8 x11-misc/lndir: port to EAPI 7
9
10 Package-Manager: Portage-2.3.41, Repoman-2.3.9
11
12 x11-misc/lndir/lndir-1.0.3-r2.ebuild | 44 ++++++++++++++++++++++++++++++++++++
13 1 file changed, 44 insertions(+)
14
15 diff --git a/x11-misc/lndir/lndir-1.0.3-r2.ebuild b/x11-misc/lndir/lndir-1.0.3-r2.ebuild
16 new file mode 100644
17 index 00000000000..3009d675272
18 --- /dev/null
19 +++ b/x11-misc/lndir/lndir-1.0.3-r2.ebuild
20 @@ -0,0 +1,44 @@
21 +# Copyright 1999-2018 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=7
25 +
26 +DESCRIPTION="create a shadow directory of symbolic links to another directory tree"
27 +HOMEPAGE="https://www.x.org/wiki/ https://cgit.freedesktop.org/"
28 +
29 +if [[ ${PV} == 9999 ]]; then
30 + EGIT_REPO_URI="https://anongit.freedesktop.org/git/xorg/util/lndir.git"
31 + inherit autotools git-r3
32 + # x11-misc-util/macros only required on live ebuilds
33 + LIVE_DEPEND=">=x11-misc/util-macros-1.18"
34 +else
35 + SRC_URI="mirror://xorg/util/${P}.tar.bz2"
36 + KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
37 +fi
38 +
39 +LICENSE="MIT"
40 +SLOT="0"
41 +IUSE=""
42 +
43 +BDEPEND="
44 + virtual/pkgconfig
45 +"
46 +RDEPEND=""
47 +DEPEND="
48 + ${LIVE_DEPEND}
49 + ${RDEPEND}
50 + x11-base/xorg-proto
51 +"
52 +
53 +src_prepare() {
54 + default
55 + [[ ${PV} == 9999 ]] && eautoreconf
56 +}
57 +
58 +src_configure() {
59 + local econfargs=(
60 + --disable-selective-werror
61 + )
62 +
63 + econf "${econfargs[@]}"
64 +}