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

(-)/usr/home/pi/myp/security/revealrk/Makefile (-5 / +3 lines)
Lines 11-28 Link Here
11
11
12
LICENSE=	GPLv3
12
LICENSE=	GPLv3
13
13
14
PLIST_FILES=	bin/revealrk
14
PLIST_FILES=	bin/revealrk man/man1/revealrk.1.gz
15
MAN1=		revealrk.1
16
15
17
MANCOMPRESSED=	yes
16
MANCOMPRESSED=	yes
18
NO_MANCOMPRESS=	yes
17
NO_MANCOMPRESS=	yes
19
18
20
USE_SCONS=	yes
19
USE_SCONS=	yes
21
.if !empty(PREFIX)
20
.if !empty(PREFIX)
22
SCONS_ARGS=	--prefix=${PREFIX}
21
SCONS_ARGS=	--prefix=${STAGEDIR}${PREFIX}
23
.else
22
.else
24
SCONS_ARGS=	--prefix=${LOCALBASE}
23
SCONS_ARGS=	--prefix=${STAGEDIR}${LOCALBASE}
25
.endif
24
.endif
26
25
27
NO_STAGE=	yes
28
.include <bsd.port.mk>
26
.include <bsd.port.mk>
(-)/usr/home/pi/myp/security/revealrk/files/patch-SConstruct (-2 / +11 lines)
Lines 1-5 Link Here
1
--- SConstruct.orig	2013-01-04 23:07:07.000000000 +0100
1
--- SConstruct.orig	2013-01-03 09:06:35.000000000 +0100
2
+++ SConstruct	2013-01-04 23:08:37.000000000 +0100
2
+++ SConstruct	2013-11-14 20:18:29.000000000 +0100
3
@@ -13,7 +13,7 @@
3
@@ -13,7 +13,7 @@
4
 pkg_files = prog_files + Split('revealrk.1 SConstruct changelog license.txt README INSTALL cron.example Makefile config.h')
4
 pkg_files = prog_files + Split('revealrk.1 SConstruct changelog license.txt README INSTALL cron.example Makefile config.h')
5
 
5
 
Lines 9-14 Link Here
9
 clean_all = not GetOption('clean_all') is None
9
 clean_all = not GetOption('clean_all') is None
10
 static    = not GetOption('static') is None
10
 static    = not GetOption('static') is None
11
 build_tgz = not GetOption('tgz') is None
11
 build_tgz = not GetOption('tgz') is None
12
@@ -97,7 +97,7 @@
13
 
14
 ########## Environment ##########
15
 
16
-env = Environment(CC = 'gcc', CCFLAGS = '-std=c99 -Wall -pedantic')
17
+env = Environment(CC = 'clang', CCFLAGS = '-std=c99 -Wall -pedantic')
18
 if not env.GetOption('clean'):
19
     if not verbose:
20
         env['CCCOMSTR'] = 'Compiling $TARGET'
12
@@ -147,8 +147,8 @@
21
@@ -147,8 +147,8 @@
13
         conf.env.Append(LINKFLAGS = ' -static')
22
         conf.env.Append(LINKFLAGS = ' -static')
14
     env = conf.Finish()
23
     env = conf.Finish()

Return to bug 183968