blob: 1d343a85de62a7bb8f356e6ee153cc223366be38 (
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
44
45
46
47
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit autotools flag-o-matic
MY_P="${PN}-QPL-${PV}"
DESCRIPTION="Xlib base 2-D drawing facility under X11"
HOMEPAGE="http://bourbon.usc.edu/tgif/index.html"
SRC_URI="ftp://bourbon.usc.edu/pub/${PN}/${MY_P}.tar.gz"
LICENSE="QPL-1.0"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE=""
DEPEND="sys-libs/zlib
x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
x11-libs/libXext
x11-libs/libXmu
x11-libs/libXt
x11-proto/xproto"
RDEPEND="${DEPEND}
media-libs/netpbm"
PATCHES=(
"${FILESDIR}/${P}-wformat-security.patch"
)
S="${WORKDIR}/${MY_P}"
src_prepare() {
sed -i \
-e 's/^CFLAGS=/CFLAGS+=/' \
-e 's:^TGIFDIR.*:TGIFDIR = $(datadir)/tgif:' \
Makefile.am || die 'sed on Makefile.am failed'
append-cppflags -D_DONT_USE_MKTEMP -DHAS_STREAMS_SUPPORT
default
eautoreconf
}
|