commit: b691a89404fdb276f7cc99461a0c61f10bd37ebb
Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 17 11:58:40 2018 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Sat Mar 17 11:58:40 2018 +0000
URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=b691a894
dev-lisp/cl-gd: Drops old version 0.6.1
dev-lisp/cl-gd/cl-gd-0.6.1.ebuild | 47 ---------------------------------------
1 file changed, 47 deletions(-)
diff --git a/dev-lisp/cl-gd/cl-gd-0.6.1.ebuild
b/dev-lisp/cl-gd/cl-gd-0.6.1.ebuild
deleted file mode 100644
index 02cd036b..00000000
--- a/dev-lisp/cl-gd/cl-gd-0.6.1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit common-lisp-3 toolchain-funcs
-
-MY_P="v${PV}"
-
-DESCRIPTION="CL-GD is a library for Common Lisp which interfaces to the GD
Graphics Library"
-HOMEPAGE="http://weitz.de/cl-gd/
- http://www.cliki.net/cl-gd/"
-SRC_URI="https://github.com/edicl/${PN}/archive/${MY_P}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE=""
-
-DEPEND=">=media-libs/gd-2.0.28[jpeg,png,xpm]"
-RDEPEND="${DEPEND}
- >=dev-lisp/uffi-1.3.4
- dev-lisp/cffi"
-
-CLSYSTEMS="${PN} ${PN}-test"
-
-src_prepare() {
- default
- # Cleanup uneeded file
- rm "${S}"/test/.gitignore || die
-}
-
-src_compile() {
- # I have no idea why it doesn't work with as-needed
- echo $(tc-getCC) ${CFLAGS} ${LDFLAGS} -Wl,--no-as-needed -shared -fPIC
-lgd ${PN}-glue.c -o ${PN}-glue.so
- $(tc-getCC) ${CFLAGS} ${LDFLAGS} -Wl,--no-as-needed -shared -fPIC -lgd
${PN}-glue.c -o ${PN}-glue.so
-}
-
-src_install() {
- dolib.so ${PN}-glue.so
-
- common-lisp-install-sources -t all *.lisp test
- common-lisp-install-asdf
-
- dodoc CHANGELOG README
- dodoc doc/*
-}