blob: 5b084bd72808cd660920f13275e239704581b48f (
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-2018 Gentoo Foundation
# 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 ~hppa ~mips ~ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd"
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)
}
|