diff options
-rw-r--r-- | dev-lisp/cl-webdav/cl-webdav-0.2.1.ebuild | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/dev-lisp/cl-webdav/cl-webdav-0.2.1.ebuild b/dev-lisp/cl-webdav/cl-webdav-0.2.1.ebuild index 167671ac..c0889ab1 100644 --- a/dev-lisp/cl-webdav/cl-webdav-0.2.1.ebuild +++ b/dev-lisp/cl-webdav/cl-webdav-0.2.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -7,13 +7,13 @@ inherit common-lisp-3 MY_P="v${PV}" -DESCRIPTION="A WebDAV server written in Common Lisp." -HOMEPAGE="http://weitz.de/cl-webdav" +DESCRIPTION="A WebDAV server written in Common Lisp" +HOMEPAGE="https://edicl.github.io/cl-webdav/" SRC_URI="https://github.com/edicl/cl-webdav/archive/${MY_P}.tar.gz -> ${P}.tar.gz" LICENSE="BSD-2" SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86" +KEYWORDS="~amd64 ~ppc ~x86" IUSE="doc" RDEPEND="dev-lisp/cl-fad @@ -23,5 +23,8 @@ RDEPEND="dev-lisp/cl-fad src_install() { common-lisp-install-sources *.lisp common-lisp-install-asdf - use doc && dohtml doc/{index.html,dav.png} + if use doc; then + docinto html + dodoc doc/{index.html,dav.png} + fi } |