summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2022-04-02 17:29:40 +0200
committerUlrich Müller <ulm@gentoo.org>2022-04-02 17:29:40 +0200
commitc41235f1fd2356d2d97591eee50f5b3323de0e8b (patch)
tree34f40a2acb5d8caf72cdd259c30433319fb91836
parentdev-lisp/restas: Drop ~sparc because of unkeyworded dependencies (diff)
downloadlisp-c41235f1fd2356d2d97591eee50f5b3323de0e8b.tar.gz
lisp-c41235f1fd2356d2d97591eee50f5b3323de0e8b.tar.bz2
lisp-c41235f1fd2356d2d97591eee50f5b3323de0e8b.zip
dev-lisp/cl-webdav: Drop ~sparc because of unkeyworded dependencies
Update HOMEPAGE. Use dodoc instead of dohtml. Signed-off-by: Ulrich Müller <ulm@gentoo.org>
-rw-r--r--dev-lisp/cl-webdav/cl-webdav-0.2.1.ebuild13
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
}