2021-07-07 18:20:27 +02:00
|
|
|
# Copyright 1999-2021 Gentoo Authors
|
2020-10-17 23:07:06 +02:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
|
|
|
|
inherit cmake
|
|
|
|
|
|
|
|
DESCRIPTION="LOLCODE interpreter written in C"
|
|
|
|
HOMEPAGE="http://www.lolcode.org/"
|
2020-10-17 23:36:55 +02:00
|
|
|
SRC_URI="https://github.com/justinmeza/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
2020-10-17 23:07:06 +02:00
|
|
|
|
|
|
|
LICENSE="GPL-3"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64"
|
|
|
|
IUSE="doc"
|
|
|
|
|
2020-10-17 23:36:55 +02:00
|
|
|
DEPEND="doc? (
|
|
|
|
app-doc/doxygen
|
|
|
|
)
|
|
|
|
"
|
2020-10-17 23:07:06 +02:00
|
|
|
|
|
|
|
src_compile() {
|
|
|
|
cmake_src_compile
|
|
|
|
use doc && cmake_src_compile docs
|
|
|
|
}
|