Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-misc/bookmarksync: bookmarksync-0.3.4-r2.ebuild ChangeLog
Date: Tue, 28 Sep 2010 17:43:36
Message-Id: 20100928174332.8C4A220051@flycatcher.gentoo.org
1 jer 10/09/28 17:43:32
2
3 Modified: ChangeLog
4 Added: bookmarksync-0.3.4-r2.ebuild
5 Log:
6 Respect LDFLAGS (bug #335049), CC, CFLAGS. Fix dodoc path.
7
8 (Portage version: 2.2_rc86/cvs/Linux i686)
9
10 Revision Changes Path
11 1.12 www-misc/bookmarksync/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/bookmarksync/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/bookmarksync/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/bookmarksync/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/www-misc/bookmarksync/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 20 Jul 2010 18:13:34 -0000 1.11
24 +++ ChangeLog 28 Sep 2010 17:43:32 -0000 1.12
25 @@ -1,6 +1,12 @@
26 # ChangeLog for www-misc/bookmarksync
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/www-misc/bookmarksync/ChangeLog,v 1.11 2010/07/20 18:13:34 mr_bones_ Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/www-misc/bookmarksync/ChangeLog,v 1.12 2010/09/28 17:43:32 jer Exp $
30 +
31 +*bookmarksync-0.3.4-r2 (28 Sep 2010)
32 +
33 + 28 Sep 2010; Jeroen Roovers <jer@g.o>
34 + +bookmarksync-0.3.4-r2.ebuild:
35 + Respect LDFLAGS (bug #335049), CC, CFLAGS. Fix dodoc path.
36
37 20 Jul 2010; Michael Sterrett <mr_bones_@g.o>
38 -bookmarksync-0.3.1.ebuild, -bookmarksync-0.3.2.ebuild,
39
40
41
42 1.1 www-misc/bookmarksync/bookmarksync-0.3.4-r2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/bookmarksync/bookmarksync-0.3.4-r2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/bookmarksync/bookmarksync-0.3.4-r2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: bookmarksync-0.3.4-r2.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/www-misc/bookmarksync/bookmarksync-0.3.4-r2.ebuild,v 1.1 2010/09/28 17:43:32 jer Exp $
52
53 EAPI="2"
54
55 inherit toolchain-funcs
56
57 DESCRIPTION="bookmarksync synchronizes various browser bookmark files"
58 HOMEPAGE="http://sourceforge.net/projects/booksync/"
59 SRC_URI="mirror://sourceforge/booksync/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 KEYWORDS="~ppc ~x86"
63 SLOT="0"
64
65 IUSE="perl"
66 RESTRICT="mirror"
67
68 DEPEND=""
69 RDEPEND="${DEPEND}
70 perl? ( dev-lang/perl )"
71
72 src_prepare() {
73 sed -i Makefile \
74 -e 's|g++|$(CXX) $(CFLAGS)|g' \
75 -e 's| -o | $(LDFLAGS)&|g' \
76 || die "sed Makefile"
77 tc-export CXX
78 }
79
80 src_install () {
81 dobin bookmarksync
82 if use perl ; then
83 dobin tools/bookmarksync.pl
84 dodoc tools/README.tools
85 fi
86 dodoc README TODO DEVELOPERS
87 }
88
89 pkg_postinst () {
90 use perl && ewarn "You will need to modify bookmarksync.pl before use"
91 }