forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
iwidgets-4.0.1-r3.ebuild
64 lines (49 loc) · 1.39 KB
/
iwidgets-4.0.1-r3.ebuild
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
inherit eutils multilib
MY_P="${PN}${PV}"
ITCL_MY_P="itcl3.2.1"
DESCRIPTION="Widget collection for incrTcl/incrTk"
HOMEPAGE="http://incrtcl.sourceforge.net/itcl/"
SRC_URI="
mirror://sourceforge/incrtcl/${MY_P}.tar.gz
mirror://sourceforge/incrtcl/${ITCL_MY_P}_src.tgz"
LICENSE="HPND Old-MIT tcltk"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE=""
DEPEND="
>=dev-tcltk/itcl-3.2.1
>=dev-tcltk/itk-3.2.1"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
src_prepare() {
epatch "${FILESDIR}"/${PV}-path.patch
sed \
-e "/^\(LIB\|SCRIPT\)_INSTALL_DIR =/s|lib|$(get_libdir)|" \
-i Makefile.in || die
# Bug 115470
rm doc/panedwindow.n
}
src_configure() {
econf \
--with-itcl="${WORKDIR}/${ITCL_MY_P}" \
--with-tcl="${EPREFIX}"/usr/$(get_libdir) \
--with-tk="${EPREFIX}"/usr/$(get_libdir)
}
src_compile() {
:
}
src_install() {
# parallel borks #177088
emake -j1 INSTALL_ROOT="${D}" install
dodoc CHANGES ChangeLog README
# bug 247184 - iwidget installs man pages in /usr/man
# mkdir -p "${ED}"/usr/share/man/mann
# mv "${ED}"/usr/man/mann/* "${ED}"/usr/share/man/mann/
# rm -rf "${ED}"/usr/man
# demos are in the wrong place:
# mkdir -p "${ED}/usr/share/doc/${PF}"
# mv "${ED}/usr/$(get_libdir)/${MY_P}/demos" "${ED}/usr/share/doc/${PF}/"
}