diff options
author | sevan <sevan@pkgsrc.org> | 2015-03-02 23:27:03 +0000 |
---|---|---|
committer | sevan <sevan@pkgsrc.org> | 2015-03-02 23:27:03 +0000 |
commit | 602592c8dc16597ee91e21a0d9a541d9dbb1f691 (patch) | |
tree | 5ad6c4ad0633434efbc0af6455a4bd660269463c /net | |
parent | a1fa94fff0b2c3444ab6bb4f7d2cf143e162c173 (diff) | |
download | pkgsrc-602592c8dc16597ee91e21a0d9a541d9dbb1f691.tar.gz |
Include FreeBSD in the if statements to account for the additional files added via PLIST_VARS
Reviewed by wiz@
Diffstat (limited to 'net')
-rw-r--r-- | net/netatalk22/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/net/netatalk22/Makefile b/net/netatalk22/Makefile index cab768cb402..2ef86def496 100644 --- a/net/netatalk22/Makefile +++ b/net/netatalk22/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2014/06/18 09:28:16 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2015/03/02 23:27:03 sevan Exp $ DISTNAME= netatalk-2.2.5 PKGNAME= ${DISTNAME:C/-/22-/} @@ -72,13 +72,14 @@ PLIST.rcd= yes PLIST_VARS+= ea .if ${OPSYS} == "SunOS" || ${OPSYS} == "DragonFly" || ${OPSYS} == "Linux" || \ - (${OPSYS} == "NetBSD" && empty(OS_VERSION:M[0-6].[0-8]*)) + (${OPSYS} == "NetBSD" && empty(OS_VERSION:M[0-6].[0-8]*)) || \ + ${OPSYS} == "FreeBSD" PLIST.ea= yes .endif PLIST_VARS+= acl .if ${OPSYS} == "SunOS" || ${OPSYS} == "HPUX" || ${OPSYS} == "IRIX" || \ - ${OPSYS} == "AIX" || ${OPSYS} == "OSF1" + ${OPSYS} == "AIX" || ${OPSYS} == "OSF1" || ${OPSYS} == "FreeBSD" PLIST.acl= yes CONF_FILES+= ${EGDIR}/afp_ldap.conf ${PKG_SYSCONFDIR}/afp_ldap.conf .endif |