diff options
author | ryoon <ryoon@pkgsrc.org> | 2013-10-14 09:55:52 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2013-10-14 09:55:52 +0000 |
commit | 0c8b9397de5b2a044405cd184138c2d243315b4c (patch) | |
tree | 27bb804496f72d9010d754ae72728ed4985d56d4 /security/heimdal | |
parent | d70b73568c15f5b2c542bd29aa5655b043dc7797 (diff) | |
download | pkgsrc-0c8b9397de5b2a044405cd184138c2d243315b4c.tar.gz |
Fix pakaging on Linux.
vis.h and glob.h are installed on Linux
(Debian GNU/Linux 7.1 and CentOS 6.4 at least)
* Makefile of Rev 1.100 removes vis.h and glob.h hack. My two Linux
environments require vis.h and glob.h entries for PLIST.
Set PLIST.vis and PLIST.glob for Linux.
Diffstat (limited to 'security/heimdal')
-rw-r--r-- | security/heimdal/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/security/heimdal/Makefile b/security/heimdal/Makefile index ee1a6528763..09d6ee0b294 100644 --- a/security/heimdal/Makefile +++ b/security/heimdal/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.104 2013/10/11 16:21:40 roy Exp $ +# $NetBSD: Makefile,v 1.105 2013/10/14 09:55:52 ryoon Exp $ DISTNAME= heimdal-1.5.3 PKGREVISION= 2 @@ -70,6 +70,12 @@ PLIST.vis= yes PLIST.glob= yes .endif +# Linux does not have include/vis.h and expected include/glob.h. +.if ${OPSYS} == "Linux" +PLIST.vis= yes +PLIST.glob= yes +.endif + PLIST_VARS+= afskauth hcrypto .if ${OPSYS} == "IRIX" PLIST.afskauth= yes |