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

(-)lang/nickle/Makefile (-1 / +17 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	nickle
8
PORTNAME=	nickle
9
PORTVERSION=	2.72
9
PORTVERSION=	2.73
10
CATEGORIES=	lang
10
CATEGORIES=	lang
11
MASTER_SITES=	http://www.nickle.org/release/
11
MASTER_SITES=	http://www.nickle.org/release/
12
12
Lines 17-22 Link Here
17
17
18
USE_GMAKE=	yes
18
USE_GMAKE=	yes
19
GNU_CONFIGURE=	yes
19
GNU_CONFIGURE=	yes
20
MAKE_JOBS_SAFE=	yes
20
21
21
# Nickle now has bindings which are likely to pull in libraries that need
22
# Nickle now has bindings which are likely to pull in libraries that need
22
# libpthread.  Link to it now explicitly, or it wouldn't work at runtime.
23
# libpthread.  Link to it now explicitly, or it wouldn't work at runtime.
Lines 24-27 Link Here
24
25
25
MAN1=		nickle.1
26
MAN1=		nickle.1
26
27
28
post-patch:
29
	@${REINPLACE_CMD} -e \
30
		'/^SUBDIRS/s|examples|| ; \
31
		 s| -O2||' ${WRKSRC}/Makefile.in
32
33
post-install:
34
.if !defined(NIPORTEXAMPLES)
35
	@${MKDIR} ${EXAMPLESDIR}
36
	@(cd ${WRKSRC}/examples && ${FIND} . ! \( -name "*Makefile*" -or \
37
		-name "*.sgml" \) | ${CPIO} -pdm -L -R ${SHAREOWN}:${SHAREGRP} \
38
		${EXAMPLESDIR})
39
	@${FIND} ${EXAMPLESDIR} -type d | ${XARGS} ${CHMOD} a+rx
40
	@${FIND} ${EXAMPLESDIR} -type f | ${XARGS} ${CHMOD} ${SHAREMODE}
41
.endif
42
27
.include <bsd.port.mk>
43
.include <bsd.port.mk>
(-)lang/nickle/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (nickle-2.72.tar.gz) = 23e94ac20743006e3d11319e0a3f239a4a868274455010b217854b28f523e98a
1
SHA256 (nickle-2.73.tar.gz) = 0844d563edd27c7a461c2966cbaeacc56e12c4b2a0c3077a78a2a3c907672e37
2
SIZE (nickle-2.72.tar.gz) = 485042
2
SIZE (nickle-2.73.tar.gz) = 511708
(-)lang/nickle/pkg-plist (-36 / +38 lines)
Lines 10-15 Link Here
10
include/nickle/ref.h
10
include/nickle/ref.h
11
include/nickle/stack.h
11
include/nickle/stack.h
12
include/nickle/value.h
12
include/nickle/value.h
13
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/COPYING
14
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comb.5c
15
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cribbage.5c
16
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/erat.5c
17
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fourfours.5c
18
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/initializer.5c
19
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/is-prime.5c
20
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kaiser.5c
21
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/menace2.5c
22
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/miller-rabin.5c
23
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mutextest.5c
24
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/numbers.5c
25
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/polynomial.5c
26
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/prime.5c
27
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/qbrating.5c
28
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/randtest.5c
29
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/restart.5c
30
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roman.5c
31
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rsa-demo.5c
32
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rsa.5c
33
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/skiplisttest.5c
34
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/smlng/COPYING
35
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/smlng/context.5c
36
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/smlng/generate.5c
37
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/smlng/parse.5c
38
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/smlng/test.5c
39
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/COPYING
40
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/snowflake.5c
41
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/snowflake.tex
42
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/turtle/turtle.5c
13
%%DATADIR%%/COPYING
43
%%DATADIR%%/COPYING
14
%%DATADIR%%/abort.5c
44
%%DATADIR%%/abort.5c
15
%%DATADIR%%/arc4.5c
45
%%DATADIR%%/arc4.5c
Lines 17-69 Link Here
17
%%DATADIR%%/command.5c
47
%%DATADIR%%/command.5c
18
%%DATADIR%%/ctype.5c
48
%%DATADIR%%/ctype.5c
19
%%DATADIR%%/factorial.5c
49
%%DATADIR%%/factorial.5c
20
%%DATADIR%%/prime_sieve.5c
21
%%DATADIR%%/examples/COPYING
22
%%DATADIR%%/examples/comb.5c
23
%%DATADIR%%/examples/cribbage.5c
24
%%DATADIR%%/examples/erat.5c
25
%%DATADIR%%/examples/initializer.5c
26
%%DATADIR%%/examples/is-prime.5c
27
%%DATADIR%%/examples/kaiser.5c
28
%%DATADIR%%/examples/menace2.5c
29
%%DATADIR%%/examples/miller-rabin.5c
30
%%DATADIR%%/examples/mutextest.5c
31
%%DATADIR%%/examples/numbers.5c
32
%%DATADIR%%/examples/polynomial.5c
33
%%DATADIR%%/examples/prime.5c
34
%%DATADIR%%/examples/qbrating.5c
35
%%DATADIR%%/examples/randtest.5c
36
%%DATADIR%%/examples/restart.5c
37
%%DATADIR%%/examples/roman.5c
38
%%DATADIR%%/examples/rsa-demo.5c
39
%%DATADIR%%/examples/rsa.5c
40
%%DATADIR%%/examples/skiplist.5c
41
%%DATADIR%%/examples/skiplisttest.5c
42
%%DATADIR%%/examples/smlng/COPYING
43
%%DATADIR%%/examples/smlng/context.5c
44
%%DATADIR%%/examples/smlng/generate.5c
45
%%DATADIR%%/examples/smlng/parse.5c
46
%%DATADIR%%/examples/smlng/test.5c
47
%%DATADIR%%/examples/sort.5c
48
%%DATADIR%%/examples/turtle/COPYING
49
%%DATADIR%%/examples/turtle/snowflake.5c
50
%%DATADIR%%/examples/turtle/snowflake.tex
51
%%DATADIR%%/examples/turtle/turtle.5c
52
%%DATADIR%%/examples/fourfours.5c
53
%%DATADIR%%/file.5c
50
%%DATADIR%%/file.5c
51
%%DATADIR%%/gamma.5c
54
%%DATADIR%%/history.5c
52
%%DATADIR%%/history.5c
53
%%DATADIR%%/list.5c
55
%%DATADIR%%/math.5c
54
%%DATADIR%%/math.5c
56
%%DATADIR%%/mutex.5c
55
%%DATADIR%%/mutex.5c
57
%%DATADIR%%/parse-args.5c
56
%%DATADIR%%/parse-args.5c
57
%%DATADIR%%/prime_sieve.5c
58
%%DATADIR%%/printf.5c
58
%%DATADIR%%/printf.5c
59
%%DATADIR%%/prng.5c
59
%%DATADIR%%/prng.5c
60
%%DATADIR%%/process.5c
60
%%DATADIR%%/process.5c
61
%%DATADIR%%/scanf.5c
61
%%DATADIR%%/scanf.5c
62
%%DATADIR%%/skiplist.5c
62
%%DATADIR%%/socket.5c
63
%%DATADIR%%/socket.5c
64
%%DATADIR%%/sort.5c
63
%%DATADIR%%/string.5c
65
%%DATADIR%%/string.5c
64
%%DATADIR%%/svg.5c
66
%%DATADIR%%/svg.5c
65
@dirrm %%DATADIR%%/examples/turtle
66
@dirrm %%DATADIR%%/examples/smlng
67
@dirrm %%DATADIR%%/examples
68
@dirrm %%DATADIR%%
67
@dirrm %%DATADIR%%
68
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/turtle
69
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/smlng
70
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
69
@dirrm include/nickle
71
@dirrm include/nickle

Return to bug 166040