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

(-)Makefile (-3 / +6 lines)
Lines 15-20 Link Here
15
MAINTAINER=		ports@FreeBSD.org
15
MAINTAINER=		ports@FreeBSD.org
16
COMMENT=		A system definition facility for Common Lisp
16
COMMENT=		A system definition facility for Common Lisp
17
17
18
SUB_FILES+=		pkg-message
18
WRKSRC=			${WRKDIR}/${PORTNAME}
19
WRKSRC=			${WRKDIR}/${PORTNAME}
19
NO_BUILD=		yes # Sources only, see cl-asdf-[cmucl|sbcl|clisp]
20
NO_BUILD=		yes # Sources only, see cl-asdf-[cmucl|sbcl|clisp]
20
CL_LIBDIR=		${PREFIX}/lib/common-lisp
21
CL_LIBDIR=		${PREFIX}/lib/common-lisp
Lines 37-51 Link Here
37
		${CP} ${PREFIX}/etc/asdf-init.lisp.default \
38
		${CP} ${PREFIX}/etc/asdf-init.lisp.default \
38
		${PREFIX}/etc/asdf-init.lisp
39
		${PREFIX}/etc/asdf-init.lisp
39
.if !defined(NOPORTDOCS)
40
.if !defined(NOPORTDOCS)
40
	${MKDIR} ${PREFIX}/share/doc/cl-asdf/
41
	${INSTALL} -o ${DOCOWN} -g ${DOCGRP} -m 555 -d ${DOCSDIR}
41
	${MKDIR} ${PREFIX}/share/examples/cl-asdf/
42
	${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/
42
	${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/
43
	${INSTALL_DATA} ${WRKSRC}/LICENSE ${DOCSDIR}/
43
	${INSTALL_DATA} ${WRKSRC}/LICENSE ${DOCSDIR}/
44
	${INSTALL_DATA} ${FILESDIR}/README.FreeBSD ${DOCSDIR}/
44
	${INSTALL_DATA} ${FILESDIR}/README.FreeBSD ${DOCSDIR}/
45
.endif
46
.if !defined(NOPORTEXAMPLES)
47
	${INSTALL} -o ${SHAREOWN} -g ${SHAREGRP} -m 555 -d ${EXAMPLESDIR}
45
	${INSTALL_DATA} ${WRKSRC}/test/* ${EXAMPLESDIR}/
48
	${INSTALL_DATA} ${WRKSRC}/test/* ${EXAMPLESDIR}/
46
.endif
49
.endif
47
50
48
post-install:
51
post-install:
49
	@${CAT} ${MASTERDIR}/pkg-message
52
	@${CAT} ${PKGMESSAGE}
50
53
51
.include <bsd.port.mk>
54
.include <bsd.port.mk>
(-)pkg-message (-12 lines)
Removed Link Here
1
==========================================================================
2
To use asdf and depending ports, you will have to configure your
3
Lisp systems so they know where to find asdf itself and the system
4
definition files.
5
6
A default configuration is installed in
7
8
  ${PREFIX}/etc/asdf-init.lisp
9
10
Review this file for further information, or simply load it from your
11
Lisp initialization file.
12
==========================================================================
(-)pkg-plist (-19 / +19 lines)
Lines 9-32 Link Here
9
%%PORTDOCS%%%%DOCSDIR%%/README
9
%%PORTDOCS%%%%DOCSDIR%%/README
10
%%PORTDOCS%%%%DOCSDIR%%/README.FreeBSD
10
%%PORTDOCS%%%%DOCSDIR%%/README.FreeBSD
11
%%PORTDOCS%%%%DOCSDIR%%/LICENSE
11
%%PORTDOCS%%%%DOCSDIR%%/LICENSE
12
%%PORTDOCS%%%%EXAMPLESDIR%%/file1.lisp
12
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/file1.lisp
13
%%PORTDOCS%%%%EXAMPLESDIR%%/file2.lisp
13
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/file2.lisp
14
%%PORTDOCS%%%%EXAMPLESDIR%%/file3.lisp
14
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/file3.lisp
15
%%PORTDOCS%%%%EXAMPLESDIR%%/file4.lisp
15
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/file4.lisp
16
%%PORTDOCS%%%%EXAMPLESDIR%%/run-tests.sh
16
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/run-tests.sh
17
%%PORTDOCS%%%%EXAMPLESDIR%%/test1.asd
17
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test1.asd
18
%%PORTDOCS%%%%EXAMPLESDIR%%/test1.script
18
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test1.script
19
%%PORTDOCS%%%%EXAMPLESDIR%%/test2.asd
19
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test2.asd
20
%%PORTDOCS%%%%EXAMPLESDIR%%/test2.script
20
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test2.script
21
%%PORTDOCS%%%%EXAMPLESDIR%%/test2a.asd
21
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test2a.asd
22
%%PORTDOCS%%%%EXAMPLESDIR%%/test2b1.asd
22
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test2b1.asd
23
%%PORTDOCS%%%%EXAMPLESDIR%%/test2b2.asd
23
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test2b2.asd
24
%%PORTDOCS%%%%EXAMPLESDIR%%/test2b3.asd
24
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test2b3.asd
25
%%PORTDOCS%%%%EXAMPLESDIR%%/test3.asd
25
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test3.asd
26
%%PORTDOCS%%%%EXAMPLESDIR%%/test3.script
26
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test3.script
27
%%PORTDOCS%%%%EXAMPLESDIR%%/test4.script
27
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test4.script
28
%%PORTDOCS%%%%EXAMPLESDIR%%/wild-module.asd
28
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wild-module.asd
29
%%PORTDOCS%%%%EXAMPLESDIR%%/wild-module.script
29
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wild-module.script
30
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%
30
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
31
%%PORTDOCS%%@dirrm %%DOCSDIR%%
31
%%PORTDOCS%%@dirrm %%DOCSDIR%%
32
@exec mkdir -p %D/lib/common-lisp/system-registry
32
@exec mkdir -p %D/lib/common-lisp/system-registry
(-)files/pkg-message.in (+12 lines)
Added Link Here
1
==========================================================================
2
To use asdf and depending ports, you will have to configure your
3
Lisp systems so they know where to find asdf itself and the system
4
definition files.
5
6
A default configuration is installed in
7
8
  %%PREFIX%%/etc/asdf-init.lisp
9
10
Review this file for further information, or simply load it from your
11
Lisp initialization file.
12
==========================================================================

Return to bug 136772