blob: 7bd3fda708bd98be48ae04e00b99b355ea11b590 (
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
34
35
36
37
38
39
40
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit common-lisp-2 eutils
MY_P=${PN}_${PV}
DESCRIPTION="A portable library for handling program localization."
HOMEPAGE="http://common-lisp.net/project/cl-l10n/"
SRC_URI="http://common-lisp.net/project/${PN}/files/${MY_P}.tgz"
LICENSE="MIT LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND="dev-lisp/iterate
dev-lisp/cl-ppcre
dev-lisp/cl-fad
dev-lisp/flexi-streams
sys-apps/texinfo"
S="${WORKDIR}"/${MY_P}
src_unpack() {
unpack ${A}
rm -rf "${S}"/{,locales}/CVS
}
src_compile() {
makeinfo doc/${PN}.texi -o ${PN}.info
}
src_install() {
common-lisp-install *.{lisp,asd} languages locales resources
common-lisp-symlink-asdf
dodoc ChangeLog README
doinfo *.info*
}
|