blob: 8c542462cf4341292557d4ca6b5a58ff68344419 (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="4"
inherit epunt-cxx libtool
DESCRIPTION="a graphics library built on top of imlib2"
HOMEPAGE="http://freecode.com/projects/giblib http://www.linuxbrit.co.uk/giblib/"
SRC_URI="http://www.linuxbrit.co.uk/downloads/${P}.tar.gz"
LICENSE="feh"
SLOT="0"
KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~mips ppc ppc64 ~sh sparc x86"
IUSE="static-libs"
RDEPEND=">=media-libs/imlib2-1.0.3[X]
x11-libs/libX11
x11-libs/libXext
>=media-libs/freetype-2.0"
DEPEND="${RDEPEND}"
src_prepare() {
sed -i 's:@LDFLAGS@::' giblib-config.in giblib.pc.in || die #430724
sed -i "/^docsdir/s:=.*:= @datadir@/doc/${PF}:" Makefile.in || die
epunt_cxx
elibtoolize # otherwise it doesnt install the .so -> .so.x symlink on fbsd
}
src_configure() {
econf $(use_enable static-libs static)
}
|