blob: 9c9f48067a95e5d92c3d0086d61f4a17554884dc (
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
41
42
43
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit flag-o-matic multilib toolchain-funcs
DESCRIPTION="A tool for differing and merging directories"
SRC_URI="https://www.samba.org/ftp/paulus/${P}.tar.gz"
HOMEPAGE="https://www.samba.org/ftp/paulus/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~mips ~ppc ~x86"
DEPEND="
dev-lang/tk:0=
dev-lang/tcl:0="
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}/${P}-include.patch"
"${FILESDIR}/${P}-build.patch"
"${FILESDIR}/${P}-vcs.patch"
"${FILESDIR}/${P}-tcl8.6.patch"
"${FILESDIR}/${P}-funky-chars.patch"
)
DOCS=( README )
src_prepare() {
default
tc-export CC
append-cppflags -I"${EPREFIX}"/usr/include/tcl
}
src_install() {
dobin "${PN}"
dolib.so libfilecmp.so.0.0
dosym libfilecmp.so.0.0 /usr/$(get_libdir)/libfilecmp.so.0
dosym libfilecmp.so.0.0 /usr/$(get_libdir)/libfilecmp.so
einstalldocs
}
|