openbsd-ports/sysutils/backuppc/Makefile
sthen 91faa22c52 Where a program with an rc script _requires_ a certain command line
parameter to daemonize, move the parameter from daemon to daemon_flags,
so that the user cannot inadvertently prevent it from daemonizing by
adjusting the flags.

Discussed with ajacoutot and schwarze, this method was suggested
by schwarze@ as a simpler alternative to my diff. ok aja@
2011-12-17 22:01:12 +00:00

60 lines
1.5 KiB
Makefile

# $OpenBSD: Makefile,v 1.4 2011/12/17 22:01:13 sthen Exp $
COMMENT = remote backup software system
DISTNAME = BackupPC-3.2.1
PKGNAME = ${DISTNAME:L}
REVISION = 1
CATEGORIES = sysutils
# GPLv2
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
HOMEPAGE = http://backuppc.sourceforge.net
#ftp: Too many redirections requested
#MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=BackupPC/}
MASTER_SITES= http://freefr.dl.sourceforge.net/project/backuppc/backuppc/3.2.1/
NO_BUILD = Yes
# XXX one of them needed as runtime dep... buildep to get them found by configure
BUILD_DEPENDS = archivers/gtar \
net/samba \
net/rsync \
devel/p5-File-RsyncP
RUN_DEPENDS = textproc/p5-XML-RSS \
devel/p5-File-RsyncP \
archivers/p5-Archive-Zip \
www/p5-libwww \
www/spawn-fcgi \
www/mod_fastcgi
do-install:
cd ${WRKSRC} && perl ./configure.pl \
--html-dir ${TRUEPREFIX}/share/backuppc \
--html-dir-url /backuppc \
--cgi-dir ${TRUEPREFIX}/bin \
--data-dir /var/db/backuppc \
--log-dir /var/log/backuppc \
--config-dir ${SYSCONFDIR}/backuppc \
--install-dir ${TRUEPREFIX} \
--dest-dir ${WRKINST} \
--hostname example.com \
--uid-ignore \
--no-set-perms \
--batch \
-backuppc-user=_backuppc
# needed since we use --no-set-perms
chmod 555 ${PREFIX}/bin/*
# add extension for the sake of clarity
cd ${PREFIX}/bin/ && ln -sf BackupPC_Admin{,.fcgi}
${INSTALL_DATA} ${FILESDIR}/httpd-backuppc.conf ${PREFIX}/share/examples/backuppc/
.include <bsd.port.mk>