Gentoo Archives: gentoo-commits

From: "Matti Bickel (mabi)" <mabi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-apps/b2evolution: b2evolution-4.1.4.ebuild ChangeLog
Date: Fri, 27 Jul 2012 21:52:21
Message-Id: 20120727215210.14E4C2004B@flycatcher.gentoo.org
1 mabi 12/07/27 21:52:10
2
3 Modified: ChangeLog
4 Added: b2evolution-4.1.4.ebuild
5 Log:
6 version bump (#417109, #282828); ebuild by jaervosz with update to EAPI4 by me
7
8 (Portage version: 2.2.0_alpha118/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.30 www-apps/b2evolution/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/b2evolution/ChangeLog?rev=1.30&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/b2evolution/ChangeLog?rev=1.30&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/b2evolution/ChangeLog?r1=1.29&r2=1.30
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/www-apps/b2evolution/ChangeLog,v
20 retrieving revision 1.29
21 retrieving revision 1.30
22 diff -u -r1.29 -r1.30
23 --- ChangeLog 22 Feb 2008 15:43:08 -0000 1.29
24 +++ ChangeLog 27 Jul 2012 21:52:09 -0000 1.30
25 @@ -1,6 +1,11 @@
26 # ChangeLog for www-apps/b2evolution
27 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/www-apps/b2evolution/ChangeLog,v 1.29 2008/02/22 15:43:08 hollow Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/www-apps/b2evolution/ChangeLog,v 1.30 2012/07/27 21:52:09 mabi Exp $
31 +
32 +*b2evolution-4.1.4 (27 Jul 2012)
33 +
34 + 27 Jul 2012; Matti Bickel <mabi@g.o> +b2evolution-4.1.4.ebuild:
35 + version bump (#417109, #282828); ebuild by jaervosz with update to EAPI4 by me
36
37 22 Feb 2008; Benedikt Böhm <hollow@g.o> b2evolution-1.10.2.ebuild,
38 b2evolution-1.10.3.ebuild, b2evolution-2.4.0_rc2.ebuild:
39 @@ -135,4 +140,3 @@
40 05 Feb 2005; Daniel Drake <dsd@g.o> +metadata.xml,
41 +files/postinstall-en.txt, +b2evolution-0.9.0.11.ebuild:
42 Initial commit. Includes security fix from http://secunia.com/advisories/13718/
43 -
44
45
46
47 1.1 www-apps/b2evolution/b2evolution-4.1.4.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/b2evolution/b2evolution-4.1.4.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/b2evolution/b2evolution-4.1.4.ebuild?rev=1.1&content-type=text/plain
51
52 Index: b2evolution-4.1.4.ebuild
53 ===================================================================
54 # Copyright 1999-2012 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/www-apps/b2evolution/b2evolution-4.1.4.ebuild,v 1.1 2012/07/27 21:52:09 mabi Exp $
57
58 EAPI=4
59
60 inherit webapp eutils
61
62 MY_EXT="stable-2012-04-03"
63 MY_PV=${PV/_/-}
64
65 DESCRIPTION="Multilingual multiuser multi-blog engine"
66 HOMEPAGE="http://www.b2evolution.net"
67 SRC_URI="mirror://sourceforge/evocms/${PN}-${MY_PV}-${MY_EXT}.zip"
68
69 LICENSE="GPL-2"
70 KEYWORDS="~alpha ~amd64 ~ppc ~x86"
71 IUSE=""
72
73 RDEPEND="virtual/httpd-php
74 dev-lang/php[ctype,curl,mysql,tokenizer,xml]"
75 DEPEND="${RDEPEND}
76 app-arch/unzip"
77
78 need_httpd_cgi
79
80 S="${WORKDIR}/${PN}"
81
82 src_install() {
83 webapp_src_preinst
84
85 insinto "${MY_HTDOCSDIR}"
86 doins -r blogs/*
87
88 rm doc/*.*-*.html doc/*.src.html
89 dohtml doc/*.html
90
91 webapp_serverowned "${MY_HTDOCSDIR}"/conf/_basic_config.template.php
92 webapp_serverowned "${MY_HTDOCSDIR}"/{cache,media}/
93 webapp_configfile
94 "${MY_HTDOCSDIR}"/conf/_{basic_config.template,advanced,locales,formatting,admin,stats,application,config,icons,upgrade}.php
95
96 webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
97 webapp_postupgrade_txt en "${FILESDIR}"/postupgrade-en.txt
98
99 webapp_src_install
100 }