Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/syncdir/
Date: Thu, 13 Sep 2018 11:14:35
Message-Id: 1536837256.48761021bca7af30bdf0d8fc54856d491af1dc43.zlogene@gentoo
1 commit: 48761021bca7af30bdf0d8fc54856d491af1dc43
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 13 11:14:16 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 13 11:14:16 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48761021
7
8 dev-libs/syncdir: Drop old
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 dev-libs/syncdir/syncdir-1.0-r1.ebuild | 39 ----------------------------------
13 1 file changed, 39 deletions(-)
14
15 diff --git a/dev-libs/syncdir/syncdir-1.0-r1.ebuild b/dev-libs/syncdir/syncdir-1.0-r1.ebuild
16 deleted file mode 100644
17 index 7627f5ebe41..00000000000
18 --- a/dev-libs/syncdir/syncdir-1.0-r1.ebuild
19 +++ /dev/null
20 @@ -1,39 +0,0 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=4
25 -
26 -inherit multilib toolchain-funcs
27 -
28 -DESCRIPTION="Provides an alternate implementation for open, link, rename, and unlink"
29 -HOMEPAGE="https://untroubled.org/syncdir"
30 -SRC_URI="https://untroubled.org/syncdir/${P}.tar.gz"
31 -
32 -SLOT="0"
33 -LICENSE="GPL-2"
34 -KEYWORDS="~amd64 x86"
35 -IUSE="static-libs"
36 -
37 -src_prepare() {
38 - if ! use static-libs; then
39 - sed -i Makefile \
40 - -e '/^all:/s|libsyncdir.a||' \
41 - -e '/install -m 644 libsyncdir.a/d' \
42 - || die "sed Makefile"
43 - fi
44 -}
45 -
46 -src_compile() {
47 - emake \
48 - CC="$(tc-getCC)" \
49 - CFLAGS="${CFLAGS}" \
50 - LDFLAGS="${LDFLAGS}" \
51 - libsyncdir.so \
52 - $(use static-libs && echo libsyncdir.a)
53 -}
54 -
55 -src_install() {
56 - dodir /usr/$(get_libdir)
57 - emake libdir="${D}/usr/$(get_libdir)" install
58 - dodoc testsync.c
59 -}