diff options
author | jschauma <jschauma@pkgsrc.org> | 2002-09-05 18:07:52 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2002-09-05 18:07:52 +0000 |
commit | 8411c736b95b81abf88cfb7b123c8f3742657102 (patch) | |
tree | 628713ebd652f40d8726b72fd341c3a281a3d3d8 /sysutils/amanda-dev-common | |
parent | d0133b219839b669a0db1cc6fa047b6d4c7c3a28 (diff) | |
download | pkgsrc-8411c736b95b81abf88cfb7b123c8f3742657102.tar.gz |
Changes to make amanda* work nicely on Linux:
- do not depend on gtar; GNU/Linux tar is gtar, obviously
- set AMANDA_GROUP as on NetBSD and Darwin
Diffstat (limited to 'sysutils/amanda-dev-common')
-rw-r--r-- | sysutils/amanda-dev-common/Makefile.common | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sysutils/amanda-dev-common/Makefile.common b/sysutils/amanda-dev-common/Makefile.common index b6147f2470e..1223b14f006 100644 --- a/sysutils/amanda-dev-common/Makefile.common +++ b/sysutils/amanda-dev-common/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.1.1.1 2002/05/02 13:28:15 bouyer Exp $ +# $NetBSD: Makefile.common,v 1.2 2002/09/05 18:07:54 jschauma Exp $ # # common make file fragment shared by all amanda-* pkgs. # @@ -11,10 +11,11 @@ MASTER_SITES?= http://download.sourceforge.net/amanda/ MAINTAINER= packages@netbsd.org HOMEPAGE= http://www.amanda.org/ -.if ${OPSYS} == "NetBSD" -AMANDA_GROUP?= operator -.elif ${OPSYS} == "SunOS" +.if ${OPSYS} == "SunOS" AMANDA_GROUP?= sysadmin +.else +# NetBSD, Linux and Darwin +AMANDA_GROUP?= operator .endif AMANDA_USER?= backup |