Index: devel/Makefile =================================================================== --- devel/Makefile +++ devel/Makefile @@ -413,6 +413,7 @@ SUBDIR += cl-alexandria SUBDIR += cl-alexandria-sbcl SUBDIR += cl-asdf + SUBDIR += cl-asdf-sbcl SUBDIR += cl-cffi SUBDIR += cl-infix SUBDIR += cl-infix-sbcl Index: devel/cl-asdf-sbcl/Makefile =================================================================== --- /dev/null +++ devel/cl-asdf-sbcl/Makefile @@ -0,0 +1,19 @@ +PORTNAME= asdf +PORTVERSION= 3.3.7 +CATEGORIES= devel lisp +PKGNAMEPREFIX= cl- +PKGNAMESUFFIX= -sbcl +DISTFILES= # none + +LICENSE= PD + +MAINTAINER= olgeni@FreeBSD.org +COMMENT= System definition facility for Common Lisp +WWW= https://common-lisp.net/project/asdf/ + +USE_ASDF= yes +FASL_TARGET= sbcl +FASL_BUILD= yes + +.include "${.CURDIR}/../../devel/cl-asdf/bsd.cl-asdf.mk" +.include Index: devel/cl-asdf-sbcl/pkg-descr =================================================================== --- /dev/null +++ devel/cl-asdf-sbcl/pkg-descr @@ -0,0 +1,7 @@ +asdf is Another System Definition Facility for Common Lisp. It intends +to solve the same class of problems as mk-defsystem - compiling and +installing Lisp libraries -, but internally it takes advantage of +modern CL features like pathname support etc., and uses CLOS for +extensibility. + +This package is compiled with SBCL.