www-apps/bareos-webui: add 23.0.2

Signed-off-by: Marc Schiffbauer <mschiff@gentoo.org>
This commit is contained in:
Marc Schiffbauer
2024-03-08 13:13:13 +01:00
parent 93f4d67868
commit 1f78909487
2 changed files with 111 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST bareos-22.1.2.tar.gz 14746158 BLAKE2B 5d8c9c098f61bd35b11f907a3e215a7c08b504c3e529c67a4c8c5cbbf24775158966800e63efca260b4cc513417332cdf43a158d21684f09be3d89dd93258880 SHA512 76d53425b2a28f4f7887b323a70bf9b37df44302e0e25aff7156c1b3ee26ffa60bbfb45ed29a0f2fe763d5c38b8f7135ac2a3e405d8e2b10717f4893baf9c327
DIST bareos-23.0.1.tar.gz 14728566 BLAKE2B e5fe93f0e412fcc4b4cb31f3e7d7dbcd44b3c0f76c387f17685d97880af88949998faae502531e937201c1622350d226c2cc9f432b0dfda7893a3fb03e905b5f SHA512 5e3902c33c08dedbdd8dc7c74c5a1258da22288a728ada283b541316a7bff2f7773d1875b11f8fe12368afda3fd1bb2780242ff57441ef8fd596f71ea1af1e75
DIST bareos-23.0.2.tar.gz 14724410 BLAKE2B 0fe86c10d62ad322dfbcd5ac972aec27d6f0ad31e156d359398739b2bfd784a02ce89b26b6bdfcf279265114a4e6e13efe21edab8b87cff15f1f9f3ad055c64b SHA512 a8d8270c8060480fe87da9252de86a75eea1cc427db63536f848d19a2c23c499ca294a9656d9a6aac73a756f84c96a2d72f13d1cede7948e18bf93efc2ecfc29

View File

@@ -0,0 +1,110 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
CMAKE_WARN_UNUSED_CLI=no
CMAKE_MAKEFILE_GENERATOR="emake"
inherit cmake webapp
MY_PV=${PV/_/-}
MY_PN="bareos"
MY_P="${MY_PN}-${MY_PV}"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
S=${WORKDIR}/${PF}/webui
SRC_URI=""
EGIT_REPO_URI="https://github.com/${MY_PN}/${MY_PN}.git"
else
S=${WORKDIR}/${MY_PN}-Release-${PV}/webui
SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/Release/${MY_PV}.tar.gz -> ${MY_P}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
DESCRIPTION="Featureful client/server network backup suite"
HOMEPAGE="https://www.bareos.org/"
RESTRICT="mirror"
LICENSE="AGPL-3"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}
dev-lang/php[bzip2,ctype,curl,fileinfo,filter,fpm,gd,iconv,intl,mhash,nls,pdo,postgres,session,simplexml,ssl,xml,xmlreader,xmlwriter,zip]
virtual/httpd-php
"
need_httpd
pkg_setup() {
webapp_pkg_setup
}
src_prepare() {
# fix missing VERSION
sed -i "s/@BAREOS_FULL_VERSION@/${PV}/g" version.php.in || die
cmake_src_prepare
default
}
src_configure() {
if [[ ${PV} == 9999 ]]; then
pushd "${WORKDIR}/${PF}"
else
pushd "${S}"/..
fi
CURRENT_VERSION=$(echo $(cmake -P get_version.cmake) | sed 's/[- ]//g')
popd
local mycmakeargs=(
-DVERSION_STRING=${CURRENT_VERSION}
-Wno-dev
)
cmake_src_configure
}
src_install() {
webapp_src_preinst
dodoc README.md doc/README-TRANSLATION.md
dodir /etc/bareos/bareos-dir.d
cp -r install/bareos/bareos-dir.d/* "${D}"/etc/bareos/bareos-dir.d
webapp_server_configfile nginx "${FILESDIR}"/nginx.include
webapp_server_configfile apache "${FILESDIR}"/apache.conf
insinto /etc/"${PN}"
doins install/{configuration,directors}.ini
insinto "${MY_HTDOCSDIR#${EPREFIX}}"
doins -r .
webapp_configfile "${MY_HTDOCSDIR#${EPREFIX}}"/config/application.config.php
webapp_configfile "${MY_HTDOCSDIR#${EPREFIX}}"/config/autoload/global.php
keepdir "${MY_HTDOCSDIR#${EPREFIX}}"/data
webapp_serverowned "${MY_HTDOCSDIR#${EPREFIX}}"/data
# cleanup
find "${D}/${MY_HTDOCSDIR#${EPREFIX}}" -name "*.in" -delete
rm -rf "${D}/${MY_HTDOCSDIR#${EPREFIX}}"/{CMakeLists.txt,install,cmake,phpunit.xml,scripts,doc,tests}
webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
webapp_src_install
}
pkg_postinst() {
einfo ""
einfo "The webui uses 'webapp-config' to be installed to the webservers docroot"
einfo "E.g. to install webapp-config may be called like so:"
einfo ""
einfo " ~# webapp-config -h localhost -d bareos-webui -I bareos-webui ${PV}"
einfo ""
einfo "See 'man webapp-config' for details."
einfo ""
}