blob: 3b3be3e988a62e00a03a5ed2def8ca4358afe1b8 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils git-r3
DESCRIPTION="KDE 1 base applications, adapted to compile on modern systems (circa. 2016)"
HOMEPAGE="https://quickgit.kde.org/?p=kde1-kdebase.git"
EGIT_REPO_URI="https://invent.kde.org/historical/kde1-kdebase.git"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND="
dev-qt/qt1
kde-base/kde1-kdelibs
x11-libs/libX11
"
RDEPEND="${DEPEND}"
src_compile() {
pushd "${BUILD_DIR}"
# don't ask
nonfatal emake
emake
}
|