also include the buildverison into the version string

Package-Manager: portage-2.2.0_alpha166
RepoMan-Options: --force
This commit is contained in:
Mario Fetka
2013-04-16 00:03:57 +02:00
parent b812bf732e
commit c15217bd84
3 changed files with 13 additions and 7 deletions

View File

@@ -0,0 +1,45 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=2
inherit webapp eutils depend.php versionator
MY_PV=$(replace_version_separator 3 '-' )
DESCRIPTION="Z-Push - open source push technology"
HOMEPAGE="http://z-push.sourceforge.net"
ZPUSH_RELEASE="final"
SRC_URI="http://zarafa-deutschland.de/z-push-download/${ZPUSH_RELEASE}/2.0/${PN}-${MY_PV}.tar.gz"
S="${WORKDIR}/${P}${ZPUSH_BUILD}"
LICENSE="AGPL-3"
KEYWORDS="~x86"
RESTRICT="mirror"
IUSE=""
need_php_httpd
pkg_setup () {
webapp_pkg_setup
require_php_with_use iconv session xml
}
src_install() {
webapp_src_preinst
dodir "/var/log/z-push"
dodir "/var/lib/z-push"
insinto "${MY_HTDOCSDIR}"
doins -r "${S}"/*
webapp_serverowned -R "/var/log/z-push"
webapp_serverowned -R "/var/lib/z-push"
webapp_configfile "${MY_HTDOCSDIR}"/config.php
webapp_serverowned "${MY_HTDOCSDIR}"/config.php
webapp_src_install
}