Gentoo Archives: gentoo-commits

From: "Santiago M. Mola (coldwind)" <coldwind@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-p2p/lince: ChangeLog lince-1.0_rc1-r1.ebuild lince-1.0_rc1.ebuild lince-0.99.4.ebuild
Date: Mon, 25 Aug 2008 10:47:28
Message-Id: E1KXZbG-0006UC-3q@stork.gentoo.org
1 coldwind 08/08/25 10:47:06
2
3 Modified: ChangeLog
4 Added: lince-1.0_rc1-r1.ebuild
5 Removed: lince-1.0_rc1.ebuild lince-0.99.4.ebuild
6 Log:
7 Fix dependencies (#235646) and add missing use flags (#235144).
8 (Portage version: 2.2_rc8/cvs/Linux 2.6.26-gentoo-r1 x86_64)
9
10 Revision Changes Path
11 1.13 net-p2p/lince/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/lince/ChangeLog?rev=1.13&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/lince/ChangeLog?rev=1.13&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/lince/ChangeLog?r1=1.12&r2=1.13
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-p2p/lince/ChangeLog,v
20 retrieving revision 1.12
21 retrieving revision 1.13
22 diff -u -r1.12 -r1.13
23 --- ChangeLog 17 Aug 2008 16:18:15 -0000 1.12
24 +++ ChangeLog 25 Aug 2008 10:47:05 -0000 1.13
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-p2p/lince
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/lince/ChangeLog,v 1.12 2008/08/17 16:18:15 coldwind Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/lince/ChangeLog,v 1.13 2008/08/25 10:47:05 coldwind Exp $
30 +
31 +*lince-1.0_rc1-r1 (25 Aug 2008)
32 +
33 + 25 Aug 2008; Santiago M. Mola <coldwind@g.o> metadata.xml,
34 + -lince-0.99.4.ebuild, -lince-1.0_rc1.ebuild, +lince-1.0_rc1-r1.ebuild:
35 + Fix dependencies (#235646) and add missing use flags (#235144).
36
37 *lince-1.0_rc1 (17 Aug 2008)
38
39
40
41
42 1.1 net-p2p/lince/lince-1.0_rc1-r1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/lince/lince-1.0_rc1-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/lince/lince-1.0_rc1-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: lince-1.0_rc1-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-p2p/lince/lince-1.0_rc1-r1.ebuild,v 1.1 2008/08/25 10:47:05 coldwind Exp $
52
53 EAPI="1"
54
55 MY_PV="${PV/_/-}"
56 MY_P="Lince-${MY_PV}"
57
58 DESCRIPTION="a light, powerfull and full feature gtkmm bittorrent client"
59 SRC_URI="mirror://sourceforge/lincetorrent/${MY_P}.tar.gz"
60 HOMEPAGE="http://lincetorrent.sourceforge.net"
61
62 LICENSE="GPL-3"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
65 IUSE="dbus libnotify"
66
67 RDEPEND="dev-cpp/gtkmm:2.4
68 dev-cpp/cairomm
69 >=dev-cpp/glibmm-2.16
70 >=net-libs/rb_libtorrent-0.13
71 dev-libs/libxml2
72 sys-devel/gettext
73 dbus? ( dev-libs/dbus-glib )
74 libnotify? ( x11-libs/libnotify )"
75 DEPEND="${RDEPEND}
76 dev-util/intltool"
77
78 S=${WORKDIR}/${MY_P}
79
80 src_compile() {
81 econf \
82 $(use_with dbus) \
83 $(use_with libnotify) || die "econf failed"
84 emake || die "emake failed"
85 }
86
87 src_install () {
88 emake DESTDIR="${D}" install || die "emake install failed"
89 }