Skip to content

Commit

Permalink
app-backup/backuppc: fix wrong config path from /etc to /etc/BackupPc
Browse files Browse the repository at this point in the history
Closes: https://bugs.gentoo.org/866209
Signed-off-by: Dennis Eisele <[email protected]>
Closes: gentoo#27001
Signed-off-by: Joonas Niilola <[email protected]>
  • Loading branch information
kernlpanic authored and juippis committed Sep 9, 2022
1 parent bec68d7 commit 9f91bed
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions app-backup/backuppc/backuppc-4.4.0.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
EAPI=7

MY_P="BackupPC-${PV}"
MY_PN="BackupPC"

inherit depend.apache systemd

Expand Down Expand Up @@ -54,11 +55,11 @@ RDEPEND="
rss? ( dev-perl/XML-RSS )
samba? ( net-fs/samba )"

CGIDIR="/usr/lib/backuppc/htdocs"
CONFDIR="${EROOT}/etc/${EPREFIX}"
DATADIR="/var/lib/backuppc"
DOCDIR="/usr/share/doc/${PF}"
LOGDIR="/var/log/BackupPC"
CGIDIR="${EROOT}/usr/lib/backuppc/htdocs"
CONFDIR="${EROOT}/etc/${MY_PN}"
DATADIR="${EROOT}/var/lib/backuppc"
DOCDIR="${EROOT}/usr/share/doc/${PF}"
LOGDIR="${EROOT}/var/log/BackupPC"
need_apache2_4

src_prepare() {
Expand Down

0 comments on commit 9f91bed

Please sign in to comment.