openbsd-ports/misc/amanda/Makefile

114 lines
3.3 KiB
Makefile
Raw Normal View History

2006-11-21 17:19:01 -05:00
# $OpenBSD: Makefile,v 1.33 2006/11/21 22:19:01 espie Exp $
2006-11-21 17:19:01 -05:00
COMMENT-main= "network-capable tape backup (client and tape server)"
COMMENT-client= "network-capable tape backup (client only)"
COMMENT-doc= "network-capable tape backup (documentation)"
DISTVERSION= 2.4.5p1
# PKGVERSION= ${DISTVERSION}p1
# Minor patched releases are usually named with a "pX" suffix.
# These names can not be used with the OpenBSD ports framework.
PKGVERSION= ${DISTVERSION:S/p/./}
DISTNAME= amanda-${DISTVERSION}
2006-11-21 17:19:01 -05:00
PKGNAME-main= amanda-${PKGVERSION}p0
PKGNAME-client= amanda-client-${PKGVERSION}
PKGNAME-doc= amanda-doc-${PKGVERSION}
1997-12-09 01:23:36 -05:00
CATEGORIES= misc
HOMEPAGE= http://www.amanda.org/
MAINTAINER= Olivier Cherrier <oc@symacx.com>
# BSD
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
2000-02-12 01:29:49 -05:00
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=amanda/}
# AMANDA configure looks for gtar and smbclient so that it can hard-code
# the pathnames.
# Configure looks for gnuplot to see if it should build amplot.
BUILD_DEPENDS+= :gtar-*:archivers/gtar \
2005-04-05 20:19:10 -04:00
:samba-*:net/samba \
:gnuplot-*:math/gnuplot
# There is no need to set RUN_DEPENDS, because AMANDA will run fine
# without gtar, smbclient, and gnuplot. They will only be required
# if the user creates a configuration that needs them, and then
# AMANDA will gracefully tell them what is required.
2006-11-21 17:19:01 -05:00
WANTLIB= c m readline termcap
PKG_ARCH-doc= *
WANTLIB-doc=
MULTI_PACKAGES= -main -client -doc
FLAVORS= db gpg
FLAVOR?=
CONFIGURE_STYLE= gnu
2004-08-02 12:08:23 -04:00
MODGNU_CONFIG_GUESS_DIRS= ${WRKSRC}/config
# Because AMANDA does not conform to shared library naming standards,
# and knowing that no software outside of AMANDA attempts to use the
# shared libraries, we disable the generation of shared libraries.
CONFIGURE_ARGS= --disable-shared \
--libexecdir=${PREFIX}/libexec/amanda \
--localstatedir=/var \
--with-configdir=${SYSCONFDIR}/amanda \
--with-user=operator \
--with-group=operator
1997-12-09 01:23:36 -05:00
# Use this flavor to speed things up if you have large AMANDA
# databases.
.if ${FLAVOR:L:Mdb}
BUILD_DEPENDS+= :db-4.*:databases/db/v4
CONFIGURE_ARGS+= --with-db=db
CFLAGS+= -L${LOCALBASE}/lib
.endif
.if ${FLAVOR:L:Mgpg}
BUILD_DEPENDS+= :gnupg-*:security/gnupg
CONFIGURE_ENV+= GZIP=${LOCALBASE}/bin/gpgzip
.endif
USE_LIBTOOL= Yes
LIBTOOL_FLAGS= --tag=disable-shared
OLD_DOC_DIR= ${PREFIX}/share/amanda
DOC_DIR= ${PREFIX}/share/doc/amanda
EXAMPLE_DIR= ${PREFIX}/share/examples/amanda
1997-12-09 01:23:36 -05:00
post-install:
@cd ${WRKSRC}; \
${INSTALL_DATA_DIR} ${DOC_DIR}; \
${INSTALL_DATA} AUTHORS ${DOC_DIR}; \
${INSTALL_DATA} NEWS ${DOC_DIR}; \
${INSTALL_DATA} README ${DOC_DIR}; \
${INSTALL_DATA} ChangeLog ${DOC_DIR}; \
mv ${OLD_DOC_DIR}/* ${DOC_DIR}; \
rmdir ${OLD_DOC_DIR}; \
${INSTALL_DATA_DIR} ${EXAMPLE_DIR}; \
${INSTALL_DATA} example/*.ps ${EXAMPLE_DIR}; \
${INSTALL_DATA} example/disklist ${EXAMPLE_DIR}; \
cd example; \
for f in *.conf *.conf.chg-scsi; do \
sed -e 's,usr/adm,var,' \
-e 's,/usr/local/etc,${SYSCONFDIR},' $$f \
> ${EXAMPLE_DIR}/$$f; \
done
@sed -e 's,@LOCALBASE@,${LOCALBASE},' \
${FILESDIR}/crontab.sample > ${EXAMPLE_DIR}/crontab.sample
@${INSTALL_DATA} /dev/null ${EXAMPLE_DIR}/amandates
@sed -e 's,@LOCALBASE@,${LOCALBASE},' \
-e 's,@SYSCONFDIR@,${SYSCONFDIR},' \
${FILESDIR}/gpgzip > ${PREFIX}/bin/gpgzip;
1997-12-09 01:23:36 -05:00
.include <bsd.port.mk>