Gentoo Archives: gentoo-commits

From: "Vlastimil Babka (caster)" <caster@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-p2p/vuze-coreplugins: ChangeLog vuze-coreplugins-4.3.1.2.ebuild vuze-coreplugins-4.3.0.4.ebuild vuze-coreplugins-4.2.0.8.ebuild
Date: Wed, 03 Feb 2010 23:02:19
Message-Id: E1NcoEi-0005Qk-KW@stork.gentoo.org
1 caster 10/02/03 23:02:16
2
3 Modified: ChangeLog
4 Added: vuze-coreplugins-4.3.1.2.ebuild
5 Removed: vuze-coreplugins-4.3.0.4.ebuild
6 vuze-coreplugins-4.2.0.8.ebuild
7 Log:
8 Version bump.
9 (Portage version: 2.2_rc62/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.19 net-p2p/vuze-coreplugins/ChangeLog
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/vuze-coreplugins/ChangeLog?rev=1.19&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/vuze-coreplugins/ChangeLog?rev=1.19&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/vuze-coreplugins/ChangeLog?r1=1.18&r2=1.19
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-p2p/vuze-coreplugins/ChangeLog,v
21 retrieving revision 1.18
22 retrieving revision 1.19
23 diff -u -r1.18 -r1.19
24 --- ChangeLog 30 Jan 2010 23:50:29 -0000 1.18
25 +++ ChangeLog 3 Feb 2010 23:02:15 -0000 1.19
26 @@ -1,6 +1,13 @@
27 # ChangeLog for net-p2p/vuze-coreplugins
28 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/vuze-coreplugins/ChangeLog,v 1.18 2010/01/30 23:50:29 caster Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/vuze-coreplugins/ChangeLog,v 1.19 2010/02/03 23:02:15 caster Exp $
31 +
32 +*vuze-coreplugins-4.3.1.2 (03 Feb 2010)
33 +
34 + 03 Feb 2010; Vlastimil Babka <caster@g.o>
35 + -vuze-coreplugins-4.2.0.8.ebuild, -vuze-coreplugins-4.3.0.4.ebuild,
36 + +vuze-coreplugins-4.3.1.2.ebuild:
37 + Version bump.
38
39 *vuze-coreplugins-4.3.1.0 (30 Jan 2010)
40
41
42
43
44 1.1 net-p2p/vuze-coreplugins/vuze-coreplugins-4.3.1.2.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/vuze-coreplugins/vuze-coreplugins-4.3.1.2.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/vuze-coreplugins/vuze-coreplugins-4.3.1.2.ebuild?rev=1.1&content-type=text/plain
48
49 Index: vuze-coreplugins-4.3.1.2.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-p2p/vuze-coreplugins/vuze-coreplugins-4.3.1.2.ebuild,v 1.1 2010/02/03 23:02:15 caster Exp $
54
55 # eventually this should be built from source...
56
57 EAPI=2
58
59 inherit eutils
60
61 PLUGINS_N=azplugins
62 RATING_N=azrating
63 UPDATER_N=azupdater
64 UPNPAV_N=azupnpav
65 PLUGINS_V=2.1.6
66 RATING_V=1.3.1
67 UPDATER_V=1.8.15
68 UPNPAV_V=0.2.23
69 PLUGINS_DIST=${PLUGINS_N}_${PLUGINS_V}.jar
70 RATING_DIST=${RATING_N}_${RATING_V}.jar
71 UPDATER_DIST=${UPDATER_N}_${UPDATER_V}.zip
72 UPNPAV_DIST=${UPNPAV_N}_${UPNPAV_V}.zip
73
74 ALLPLUGINS_URL="http://azureus.sourceforge.net/plugins"
75
76 DESCRIPTION="Core plugins for Vuze that are included in upstream distribution"
77 HOMEPAGE="http://www.vuze.com/"
78 SRC_URI="
79 ${ALLPLUGINS_URL}/${PLUGINS_DIST}
80 ${ALLPLUGINS_URL}/${RATING_DIST}
81 ${ALLPLUGINS_URL}/${UPDATER_DIST}
82 ${ALLPLUGINS_URL}/${UPNPAV_DIST}"
83 LICENSE="GPL-2 BSD"
84
85 SLOT="0"
86 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
87 IUSE=""
88
89 RDEPEND="~net-p2p/vuze-${PV}"
90 DEPEND="${RDEPEND}
91 app-arch/unzip"
92
93 S="${WORKDIR}"
94
95 src_unpack() {
96 mkdir -p plugins/{${PLUGINS_N},${RATING_N},${UPDATER_N},${UPNPAV_N}} || die
97 cp "${DISTDIR}/${PLUGINS_DIST}" plugins/${PLUGINS_N} || die
98 cp "${DISTDIR}/${RATING_DIST}" plugins/${RATING_N} || die
99 cd "${WORKDIR}/plugins/${UPDATER_N}" && unpack ${UPDATER_DIST} || die
100 cd "${WORKDIR}/plugins/${UPNPAV_N}" && unpack ${UPNPAV_DIST} || die
101 }
102
103 src_compile() { :; }
104
105 src_install() {
106 insinto /usr/share/vuze/
107 doins -r "${WORKDIR}/plugins"
108 }
109
110 pkg_postinst() {
111 elog "Since version 4.0.0.2, plugins that are normally bundled by upstream"
112 elog "(and auto-installed in each user's ~/.azureus if not bundled)"
113 elog "are now installed into shared plugin directory by the ebuild."
114 elog "Users are recommended to delete the following plugin copies:"
115 elog "~/.azureus/plugins/{${PLUGINS_N},${RATING_N},${UPDATER_N},${UPNPAV_N}}"
116 }