summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorseb <seb>2005-08-02 09:26:06 +0000
committerseb <seb>2005-08-02 09:26:06 +0000
commitdb32d654c9dabf76e87e2efe4ab4ab6f16430afc (patch)
treee7867060928f0f72d23cadb8d3d5554e7546c1e1 /sysutils
parent34a39f7e3a69ff4ac8431432b1f6073c188f0942 (diff)
downloadpkgsrc-db32d654c9dabf76e87e2efe4ab4ab6f16430afc.tar.gz
Prevent paths of the build directories from being included in all amanda
packages. Set runtime dependencies on GNU tar and gzip for all amanda packages. Bump PKGREVISIONs to 1 for amanda-client and amanda-plot, to 2 for amanda-common and amanda-server.
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/amanda-client/Makefile8
-rw-r--r--sysutils/amanda-common/Makefile7
-rw-r--r--sysutils/amanda-common/Makefile.common7
-rw-r--r--sysutils/amanda-common/buildlink3.mk6
-rw-r--r--sysutils/amanda-plot/Makefile3
-rw-r--r--sysutils/amanda-server/Makefile7
6 files changed, 18 insertions, 20 deletions
diff --git a/sysutils/amanda-client/Makefile b/sysutils/amanda-client/Makefile
index 0e8e6751dd0..8d2e46c17af 100644
--- a/sysutils/amanda-client/Makefile
+++ b/sysutils/amanda-client/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.38 2005/04/11 21:47:22 tv Exp $
+# $NetBSD: Makefile,v 1.39 2005/08/02 09:26:06 seb Exp $
#
PKGNAME= amanda-client-${VERS}
-# PKGREVISION= 1
+PKGREVISION= 1
SVR4_PKGNAME= amacl
COMMENT= Client part of Amanda, a network backup system
@@ -14,10 +14,6 @@ GNU_CONFIGURE= yes
.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
diff --git a/sysutils/amanda-common/Makefile b/sysutils/amanda-common/Makefile
index 0cf2b10aaa4..9e703761bc6 100644
--- a/sysutils/amanda-common/Makefile
+++ b/sysutils/amanda-common/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.34 2005/07/15 22:19:11 kristerw Exp $
+# $NetBSD: Makefile,v 1.35 2005/08/02 09:26:06 seb Exp $
PKGNAME= amanda-common-${VERS}
-PKGREVISION= 1
+PKGREVISION= 2
SVR4_PKGNAME= amaco
COMMENT= Common libraries and binaries for Amanda
@@ -27,9 +27,6 @@ CONFIGURE_ENV+= ac_cv_lib_curses_tgetent=no
CONFIGURE_ENV+= ac_cv_lib_ncurses_tgetent=no
CONFIGURE_ENV+= ac_cv_lib_readline_readline=no
-CONFIGURE_ENV+= GNUTAR=${TOOLS_TAR}
-USE_TOOLS+= tar
-
PKG_GROUPS= ${AMANDA_GROUP}
PKG_USERS= ${AMANDA_USER}:${AMANDA_GROUP}::Amanda\\ user::${SH}
diff --git a/sysutils/amanda-common/Makefile.common b/sysutils/amanda-common/Makefile.common
index 4a2a594a298..b67aa632eaf 100644
--- a/sysutils/amanda-common/Makefile.common
+++ b/sysutils/amanda-common/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.16 2004/12/28 09:10:50 minskim Exp $
+# $NetBSD: Makefile.common,v 1.17 2005/08/02 09:26:06 seb Exp $
#
# common make file fragment shared by all amanda-* pkgs.
#
@@ -28,6 +28,11 @@ BUILD_DEFS+= AMANDA_TMP AMANDA_VAR
USE_LIBTOOL= yes
LTCONFIG_OVERRIDE= ${WRKSRC}/config/ltconfig
+USE_TOOLS+= gzip:run gtar:run
+CONFIGURE_ENV+= ac_cv_path_GZIP=${TOOLS_GZIP_CMD}
+CONFIGURE_ENV+= GNUTAR=${TOOLS_GTAR}
+TOOLS_DEPENDS.gtar= {gtar,gtar-base}>=1.12:../../archivers/gtar-base
+
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-user=${AMANDA_USER}
CONFIGURE_ARGS+= --with-group=${AMANDA_GROUP}
diff --git a/sysutils/amanda-common/buildlink3.mk b/sysutils/amanda-common/buildlink3.mk
index 9f61dab898e..bc9f5170eb8 100644
--- a/sysutils/amanda-common/buildlink3.mk
+++ b/sysutils/amanda-common/buildlink3.mk
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.4 2004/11/12 12:13:45 mjl Exp $
+# $NetBSD: buildlink3.mk,v 1.5 2005/08/02 09:26:06 seb Exp $
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
AMANDA_COMMON_BUILDLINK3_MK:= ${AMANDA_COMMON_BUILDLINK3_MK}+
@@ -11,8 +11,8 @@ BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Namanda-common}
BUILDLINK_PACKAGES+= amanda-common
.if !empty(AMANDA_COMMON_BUILDLINK3_MK:M+)
-BUILDLINK_DEPENDS.amanda-common+= amanda-common>=2.4.4p4
-BUILDLINK_RECOMMENDED.amanda-common+= amanda-common>=2.4.4p4
+BUILDLINK_DEPENDS.amanda-common+= amanda-common>=2.4.4p4nb2
+BUILDLINK_RECOMMENDED.amanda-common+= amanda-common>=2.4.4p4nb2
BUILDLINK_PKGSRCDIR.amanda-common?= ../../sysutils/amanda-common
.endif # AMANDA_COMMON_BUILDLINK3_MK
diff --git a/sysutils/amanda-plot/Makefile b/sysutils/amanda-plot/Makefile
index 0d2fb0c4665..c1f66265e88 100644
--- a/sysutils/amanda-plot/Makefile
+++ b/sysutils/amanda-plot/Makefile
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.19 2005/04/11 21:47:22 tv Exp $
+# $NetBSD: Makefile,v 1.20 2005/08/02 09:26:06 seb Exp $
#
PKGNAME= amanda-plot-${VERS}
+PKGREVISION= 1
SVR4_PKGNAME= amapl
COMMENT= Visualizes the behavior of Amanda, a network backup system
diff --git a/sysutils/amanda-server/Makefile b/sysutils/amanda-server/Makefile
index d0b3663b9d4..9d3383f28ff 100644
--- a/sysutils/amanda-server/Makefile
+++ b/sysutils/amanda-server/Makefile
@@ -1,18 +1,17 @@
-# $NetBSD: Makefile,v 1.35 2005/07/24 18:06:44 kristerw Exp $
+# $NetBSD: Makefile,v 1.36 2005/08/02 09:26:06 seb Exp $
PKGNAME= amanda-server-${VERS}
-PKGREVISION= 1
+PKGREVISION= 2
SVR4_PKGNAME= amase
COMMENT= Server part of Amanda, a network backup system
-USE_TOOLS+= gmake perl:run tar
+USE_TOOLS+= gmake perl:run
.include "../../mk/bsd.prefs.mk"
.include "../../sysutils/amanda-common/Makefile.common"
CONFIGURE_ARGS+= --without-client
-CONFIGURE_ARGS+= --with-gnutar=${TOOLS_TAR}
# Prevent configure script from finding unnecessary libraries.
#