Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/phpvirtualbox: phpvirtualbox-4.2.4.ebuild ChangeLog phpvirtualbox-4.2.1.ebuild
Date: Fri, 02 Nov 2012 17:17:36
Message-Id: 20121102171719.9ADD521600@flycatcher.gentoo.org
1 hwoarang 12/11/02 17:17:19
2
3 Modified: ChangeLog
4 Added: phpvirtualbox-4.2.4.ebuild
5 Removed: phpvirtualbox-4.2.1.ebuild
6 Log:
7 Version bump
8
9 (Portage version: 2.1.11.30/cvs/Linux x86_64, signed Manifest commit with key B4AFF2C2)
10
11 Revision Changes Path
12 1.8 app-emulation/phpvirtualbox/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/phpvirtualbox/ChangeLog?rev=1.8&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/phpvirtualbox/ChangeLog?rev=1.8&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/phpvirtualbox/ChangeLog?r1=1.7&r2=1.8
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-emulation/phpvirtualbox/ChangeLog,v
21 retrieving revision 1.7
22 retrieving revision 1.8
23 diff -u -r1.7 -r1.8
24 --- ChangeLog 23 Oct 2012 19:17:16 -0000 1.7
25 +++ ChangeLog 2 Nov 2012 17:17:19 -0000 1.8
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-emulation/phpvirtualbox
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/phpvirtualbox/ChangeLog,v 1.7 2012/10/23 19:17:16 hwoarang Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/phpvirtualbox/ChangeLog,v 1.8 2012/11/02 17:17:19 hwoarang Exp $
31 +
32 +*phpvirtualbox-4.2.4 (02 Nov 2012)
33 +
34 + 02 Nov 2012; Markos Chandras <hwoarang@g.o>
35 + +phpvirtualbox-4.2.4.ebuild, -phpvirtualbox-4.2.1.ebuild:
36 + Version bump
37
38 *phpvirtualbox-4.2.3b (23 Oct 2012)
39
40
41
42
43 1.1 app-emulation/phpvirtualbox/phpvirtualbox-4.2.4.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/phpvirtualbox/phpvirtualbox-4.2.4.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/phpvirtualbox/phpvirtualbox-4.2.4.ebuild?rev=1.1&content-type=text/plain
47
48 Index: phpvirtualbox-4.2.4.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-emulation/phpvirtualbox/phpvirtualbox-4.2.4.ebuild,v 1.1 2012/11/02 17:17:19 hwoarang Exp $
53
54 EAPI="2"
55
56 inherit versionator eutils webapp depend.php
57
58 MY_PV="$(replace_version_separator 2 '-')"
59 MY_P="${PN}-${MY_PV}"
60
61 DESCRIPTION="Web-based administration for VirtualBox in PHP"
62 HOMEPAGE="http://phpvirtualbox.googlecode.com"
63 SRC_URI="http://${PN}.googlecode.com/files/${MY_P}.zip"
64
65 LICENSE="GPL-2"
66 KEYWORDS="~amd64 ~x86"
67 IUSE=""
68
69 RDEPEND="
70 dev-lang/php[session,unicode,soap,gd]
71 "
72 DEPEND="app-arch/unzip"
73
74 need_php_httpd
75
76 src_install() {
77 webapp_src_preinst
78
79 cd ${MY_P}
80
81 dodoc CHANGELOG.txt LICENSE.txt README.txt || die
82 rm -f CHANGELOG.txt LICENSE.txt README.txt
83
84 insinto "${MY_HTDOCSDIR}"
85 doins -r .
86
87 webapp_configfile "${MY_HTDOCSDIR}"/config.php-example
88 webapp_serverowned "${MY_HTDOCSDIR}"/config.php-example
89
90 webapp_src_install
91 if has_version app-emulation/virtualbox[vboxwebsrv] || \
92 has_version app-emulation/virtualbox-bin[vboxwebsrv]
93 then
94 newinitd "${FILESDIR}"/vboxinit-initd vboxinit
95 fi
96 }
97
98 pkg_postinst() {
99 webapp_pkg_postinst
100 elog "Local or remote virtualbox hosts must be compiled with"
101 elog "'vboxwebsrv' useflag and the respective init script"
102 elog "must be running to use this interface"
103 elog " /etc/init.d/vboxwebsrv start"
104 elog
105 elog "To enable the automatic startup mode feature uncomment the"
106 elog "following line in the config.php file:"
107 elog " var \$startStopConfig = true;"
108 elog
109 elog "You should also add the /etc/init.d/vboxinit script to the"
110 elog "default runlevel on the virtualbox host:"
111 elog "\`rc-update add vboxinit default\`"
112 elog "If the server is on a remote host, than the script must be"
113 elog "copied manually from"
114 elog "${FILESDIR}/vboxinit-initd to /etc/init.d/vboxinit"
115 elog "on the remote host."
116 }