forked from tastytea/overlay
tastytea
9ae5a2a271
Package-Manager: Portage-2.3.51, Repoman-2.3.11 Manifest-Sign-Key: 3555266864CA6D7FF45AA6E7CFC39497F1B26E07
77 lines
1.9 KiB
Bash
77 lines
1.9 KiB
Bash
# 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 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 systemd; 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
|
|
}
|
|
|
|
src_install() {
|
|
local pleromadir="${EPREFIX}/var/lib/pleroma/pleroma"
|
|
diropts -o pleroma -g pleroma
|
|
exeopts -o pleroma -g pleroma
|
|
|
|
dodir "${pleromadir}"
|
|
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
|
|
}
|