# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 inherit git-r3 user systemd DESCRIPTION="Microblogging server software that can federate with other servers." HOMEPAGE="https://pleroma.social/ https://git.pleroma.social/pleroma/pleroma/" EGIT_REPO_URI="https://git.pleroma.social/pleroma/pleroma.git" LICENSE="AGPL-3" SLOT="0" KEYWORDS="" IUSE="apache +nginx syslog systemd" RDEPEND=" >=dev-lang/elixir-1.6.6 >=dev-db/postgresql-9.6.11[uuid] app-admin/sudo apache? ( www-servers/apache ) nginx? ( www-servers/nginx[nginx_modules_http_slice] ) " DEPEND="" pkg_setup() { enewgroup pleroma enewuser pleroma -1 /bin/bash /var/lib/pleroma pleroma } src_prepare() { default if use syslog; then # Log to syslog sed -i 's/command_background=1/command_background=1\nerror_logger="logger"\noutput_logger="logger"/' \ installation/init.d/pleroma || die fi if use systemd; then sed -i 's|/etc/init.d/pleroma stop|systemctl stop pleroma|' "${FILESDIR}/upgrade_pleroma.sh" || die sed -i 's|/etc/init.d/pleroma restart|systemctl restart pleroma|' "${FILESDIR}/upgrade_pleroma.sh" || die fi } src_install() { local pleromadir="${EPREFIX}/opt/pleroma" diropts -o pleroma -g pleroma exeopts -o pleroma -g pleroma dodir "${pleromadir}" dosym "${EPREFIX}/opt/pleroma" "${EPREFIX}/var/lib/pleroma/pleroma" exeinto "${pleromadir}" doexe "${FILESDIR}/install_pleroma.sh" doexe "${FILESDIR}/upgrade_pleroma.sh" if use nginx; then dodoc installation/pleroma.nginx fi if use apache; then dodoc installation/pleroma-apache.conf fi dodoc docs/* if use systemd; then systemd_dounit installation/pleroma.service else doinitd installation/init.d/pleroma fi } pkg_postinst() { elog 'For the initial installation, become the user pleroma, cd to ${HOME}/pleroma and run ./install_pleroma.sh.' elog "To upgrade, run ./upgrade_pleroma.sh." elog "Make sure the user pleroma can use sudo and has a strong password." if use nginx; then einfo "An example config for nginx has been installed in the doc directory." fi if use apache; then einfo "An example config for apache has been installed in the doc directory." fi ewarn "Beginning with 2019-02-10, the Pleroma init scripts expect the installation in ${EPREFIX}/opt/pleroma." ewarn "If they are in ${EPREFIX}/var/lib/pleroma, move them now." }