834bb01177
Bug fix release and minor improvements: new chg-iomega changer script. amanda will not use a tape if it's label is not in the tapelist file. amflush.c: Don't start a driver if nothing to flush. amadmin.c: Call check_dumpuser() as soon as posible. amadmin.c: Don't core dump if DUMPCYLE is too big. dumper.c: Parse warning message.
39 lines
1.2 KiB
Makefile
39 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.37 2004/11/12 12:13:44 mjl Exp $
|
|
#
|
|
|
|
PKGNAME= amanda-client-${VERS}
|
|
# PKGREVISION= 1
|
|
SVR4_PKGNAME= amacl
|
|
|
|
COMMENT= Client part of Amanda, a network backup system
|
|
|
|
USE_BUILDLINK3= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
.include "../../sysutils/amanda-common/Makefile.common"
|
|
.include "../../sysutils/amanda-common/buildlink3.mk"
|
|
#.include "../../devel/readline/buildlink3.mk"
|
|
|
|
.if ${OPSYS} != "Linux"
|
|
DEPENDS+= {gtar,gtar-base}>=1.12:../../archivers/gtar-base
|
|
.endif
|
|
|
|
CONFIGURE_ARGS+= --without-server --without-restore
|
|
|
|
# Prevent configure script from finding unnecessary libraries. We'll patch
|
|
# the amrecover Makefile to add the readline libraries as it's the only
|
|
# program that uses readline. (XXX: incorrect, does not happen)
|
|
#
|
|
CONFIGURE_ENV+= ac_cv_lib_intl_main=no
|
|
CONFIGURE_ENV+= ac_cv_lib_termcap_tgetent=no
|
|
CONFIGURE_ENV+= ac_cv_lib_curses_tgetent=no
|
|
CONFIGURE_ENV+= ac_cv_lib_ncurses_tgetent=no
|
|
CONFIGURE_ENV+= ac_cv_lib_readline_readline=no
|
|
|
|
.if defined(AMANDA_SMB)
|
|
CONFIGURE_ARGS+= --with-smbclient
|
|
DEPENDS+= {samba>=2.0,ja-samba>=2.0}:../../net/samba
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|