Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-misc/bookmarksync/
Date: Thu, 26 Jul 2018 16:46:10
Message-Id: 1532623558.9e5e08cd100240c73885b6659a6065f507d1f3f3.zlogene@gentoo
1 commit: 9e5e08cd100240c73885b6659a6065f507d1f3f3
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 26 16:45:32 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 26 16:45:58 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e5e08cd
7
8 www-misc/bookmarksync: Drop old
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 www-misc/bookmarksync/bookmarksync-0.3.4-r2.ebuild | 42 ----------------------
13 1 file changed, 42 deletions(-)
14
15 diff --git a/www-misc/bookmarksync/bookmarksync-0.3.4-r2.ebuild b/www-misc/bookmarksync/bookmarksync-0.3.4-r2.ebuild
16 deleted file mode 100644
17 index ade6c8153bb..00000000000
18 --- a/www-misc/bookmarksync/bookmarksync-0.3.4-r2.ebuild
19 +++ /dev/null
20 @@ -1,42 +0,0 @@
21 -# Copyright 1999-2012 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="2"
25 -
26 -inherit toolchain-funcs
27 -
28 -DESCRIPTION="bookmarksync synchronizes various browser bookmark files"
29 -HOMEPAGE="https://sourceforge.net/projects/booksync/"
30 -SRC_URI="mirror://sourceforge/booksync/${P}.tar.gz"
31 -
32 -LICENSE="GPL-2"
33 -KEYWORDS="~amd64 ppc x86"
34 -SLOT="0"
35 -
36 -IUSE="perl"
37 -RESTRICT="mirror"
38 -
39 -DEPEND=""
40 -RDEPEND="${DEPEND}
41 - perl? ( dev-lang/perl )"
42 -
43 -src_prepare() {
44 - sed -i Makefile \
45 - -e 's|g++|$(CXX) $(CFLAGS)|g' \
46 - -e 's| -o | $(LDFLAGS)&|g' \
47 - || die "sed Makefile"
48 - tc-export CXX
49 -}
50 -
51 -src_install () {
52 - dobin bookmarksync
53 - if use perl ; then
54 - dobin tools/bookmarksync.pl
55 - dodoc tools/README.tools
56 - fi
57 - dodoc README TODO DEVELOPERS
58 -}
59 -
60 -pkg_postinst () {
61 - use perl && ewarn "You will need to modify bookmarksync.pl before use"
62 -}