blob: f7b93a5dc7264d3702629833a404298552d9660c (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit toolchain-funcs
DESCRIPTION="A collection of simple routines to call some of those X11 functions"
HOMEPAGE="https://tracker.debian.org/pkg/xwit"
SRC_URI="
mirror://debian/pool/main/x/${PN}/${PN}_${PV/_p*/}.orig.tar.gz
mirror://debian/pool/main/x/${PN}/${PN}_${PV/_p/-}.debian.tar.gz
"
LICENSE="public-domain HPND"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND="x11-libs/libX11"
DEPEND="${RDEPEND}
x11-proto/xproto"
S=${WORKDIR}/${P/_p*/}.orig
PATCHES=( "${WORKDIR}"/debian/patches )
src_prepare() {
default
sed -i \
-e 's|gcc|${CC}|g' \
Makefile || die
tc-export CC
}
src_install() {
dobin xwit
newman xwit.man xwit.1
einstalldocs
}
|