Install this version:
emerge -a =dev-lisp/cl-pdf-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-lisp/cl-pdf-9999
Or alternatively:
emerge --autounmask-write -a =dev-lisp/cl-pdf-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | 0 |
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit common-lisp-3 git-r3
DESCRIPTION="Cross-platform Common Lisp library for generating PDF files"
HOMEPAGE="https://github.com/mbattyani/cl-pdf"
EGIT_REPO_URI="https://github.com/mbattyani/${PN}.git"
LICENSE="BSD-2"
SLOT="0"
RDEPEND="dev-lisp/iterate
dev-lisp/salza2
dev-lisp/uiop
dev-lisp/zpb-ttf"
BDEPEND="dev-lisp/asdf"
PATCHES=( "${FILESDIR}/${PN}"-20230620-no-bundled-libs.patch )
src_prepare() {
default
# remove non supported implementation
rm -rf C{CL,MUCL} || die "rm failed"
}
src_install() {
common-lisp-3_src_install
insinto /usr/share/fonts/afm
doins -r afm/*.afm
}
dev-lisp/iterate dev-lisp/salza2 dev-lisp/uiop dev-lisp/zpb-ttf
dev-lisp/asdf