diff options
author | Jimmy Olgeni <olgeni@FreeBSD.org> | 2010-01-08 12:50:34 +0000 |
---|---|---|
committer | Jimmy Olgeni <olgeni@FreeBSD.org> | 2010-01-08 12:50:34 +0000 |
commit | c8458b1479da3374528fb10c50be9d764b28bf0b (patch) | |
tree | 76e8006fc08612292c4a978ffee1d7ef35ce9132 /lang/ccl | |
parent | 6d182739b2ee20f89a42ba94816d7293bdbe53ca (diff) | |
download | ports-c8458b1479da3374528fb10c50be9d764b28bf0b.tar.gz ports-c8458b1479da3374528fb10c50be9d764b28bf0b.zip |
Notes
Diffstat (limited to 'lang/ccl')
-rw-r--r-- | lang/ccl/Makefile | 1 | ||||
-rw-r--r-- | lang/ccl/pkg-message | 13 |
2 files changed, 14 insertions, 0 deletions
diff --git a/lang/ccl/Makefile b/lang/ccl/Makefile index 42a3ea813950..84252a55950e 100644 --- a/lang/ccl/Makefile +++ b/lang/ccl/Makefile @@ -78,5 +78,6 @@ post-install: @${ECHO_CMD} "r ${CCL_PLIST}" >> ${WRKDIR}/ex.script @${ECHO_CMD} "x!" >> ${WRKDIR}/ex.script @cd ${WRKDIR} && ex < ex.script > /dev/null + @${CAT} ${PKGMESSAGE} .include <bsd.port.post.mk> diff --git a/lang/ccl/pkg-message b/lang/ccl/pkg-message new file mode 100644 index 000000000000..78a61faad908 --- /dev/null +++ b/lang/ccl/pkg-message @@ -0,0 +1,13 @@ + +You can permanently enable ASDF package management by using the +following commands in your .ccl-init.lisp file: + + (require 'asdf) + (push "ccl:tools;asdf-install;" asdf:*central-registry*) + (asdf:operate 'asdf:load-op 'asdf-install) + +If you wish to disable signature verification (not recommended) +add: + + (setq asdf-install:*verify-gpg-signatures* nil) + |