View | Details | Raw Unified | Return to bug 167642
Collapse All | Expand All

(-)Makefile (-1 / +4 lines)
Lines 8-14 Link Here
8
8
9
PORTNAME=	augeas
9
PORTNAME=	augeas
10
PORTVERSION=	0.10.0
10
PORTVERSION=	0.10.0
11
PORTREVISION=	3
11
PORTREVISION=	4
12
CATEGORIES=	textproc
12
CATEGORIES=	textproc
13
MASTER_SITES=	http://augeas.net/download/
13
MASTER_SITES=	http://augeas.net/download/
14
14
Lines 35-39 Link Here
35
	@${REINPLACE_CMD} -e 's:$$(libdir)/pkgconfig:${PREFIX}/libdata/pkgconfig:' ${WRKSRC}/Makefile.am
35
	@${REINPLACE_CMD} -e 's:$$(libdir)/pkgconfig:${PREFIX}/libdata/pkgconfig:' ${WRKSRC}/Makefile.am
36
	@${REINPLACE_CMD} -e 's:/bin/bash:/usr/bin/env bash:' ${WRKSRC}/tests/*.sh
36
	@${REINPLACE_CMD} -e 's:/bin/bash:/usr/bin/env bash:' ${WRKSRC}/tests/*.sh
37
	@${REINPLACE_CMD} -e 's:sed:gsed:' ${WRKSRC}/tests/test-augtool.sh
37
	@${REINPLACE_CMD} -e 's:sed:gsed:' ${WRKSRC}/tests/test-augtool.sh
38
	@${REINPLACE_CMD} -e 's:%%LOCALBASE%%:${LOCALBASE}:' \
39
		${WRKSRC}/lenses/puppet.aug \
40
		${WRKSRC}/lenses/puppetfileserver.aug
38
41
39
.include <bsd.port.mk>
42
.include <bsd.port.mk>
(-)files/patch-lenses__puppet.aug (+11 lines)
Added Link Here
1
--- ./lenses/puppet.aug.orig	2012-05-06 13:14:13.000000000 +0100
2
+++ ./lenses/puppet.aug	2012-05-06 13:14:45.000000000 +0100
3
@@ -38,6 +38,7 @@
4
  *************************************************************************)
5
 let lns     = IniFile.lns record comment
6
 
7
-let filter = (incl "/etc/puppet/puppet.conf")
8
+let filter = (incl "/etc/puppet/puppet.conf"
9
+             .incl "%%LOCALBASE%%/etc/puppet/puppet.conf")
10
 
11
 let xfm = transform lns filter
(-)files/patch-lenses__puppetfileserver.aug (+11 lines)
Added Link Here
1
--- ./lenses/puppetfileserver.aug.orig	2012-05-06 13:14:17.000000000 +0100
2
+++ ./lenses/puppetfileserver.aug	2012-05-06 13:15:08.000000000 +0100
3
@@ -105,6 +105,7 @@
4
 let lns = IniFile.lns record comment
5
 
6
 (* Variable: filter *)
7
-let filter = (incl "/etc/puppet/fileserver.conf")
8
+let filter = (incl "/etc/puppet/fileserver.conf"
9
+             .incl "%%LOCALBASE%%/etc/puppet/fileserver.conf")
10
 
11
 let xfm = transform lns filter

Return to bug 167642