blob: f4cc7ffdad6b1bffe1a28a45892ced3f9e4ab5fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit common-lisp-2
MY_PV=${PV:0:4}-${PV:4:2}-${PV:6:2}
DESCRIPTION="A library of macros and functions by Fare Rideau."
HOMEPAGE="http://www.cliki.net/fare-matcher
http://www.cliki.net/fare-matcher-docs"
SRC_URI="http://fare.tunes.org/asdf-packages/${PN}-${MY_PV}.tar.gz"
LICENSE="No-Problem-Bugroff"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND="!dev-lisp/cl-${PN}
dev-lisp/fare-utils"
S="${WORKDIR}"/${PN}
pkg_postinst() {
while read line; do einfo ${line}; done <<EOF
The comments within the source for fare-matcher provide documentation.
You can find summarized documentation at the CLiki.
http://www.cliki.net/fare-matcher-docs
EOF
}
|