2018-02-21 23:02:07 +03:00
|
|
|
# Copyright 1999-2018 Gentoo Foundation
|
2017-08-07 08:53:04 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=6
|
|
|
|
|
|
|
|
inherit autotools
|
|
|
|
|
|
|
|
DESCRIPTION="tool for rendering arbitrary text as graphics, using ttfs and styles"
|
|
|
|
HOMEPAGE="http://www.linuxbrit.co.uk/gozer/"
|
|
|
|
SRC_URI="http://www.linuxbrit.co.uk/downloads/${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="feh LGPL-2+"
|
|
|
|
SLOT="0"
|
2018-04-19 18:38:09 +03:00
|
|
|
KEYWORDS="amd64 ppc x86"
|
2017-08-07 08:53:04 +03:00
|
|
|
IUSE=""
|
|
|
|
|
2018-04-19 18:38:09 +03:00
|
|
|
RDEPEND="
|
|
|
|
media-libs/giblib
|
2017-08-07 08:53:04 +03:00
|
|
|
media-libs/imlib2"
|
2018-04-19 18:38:09 +03:00
|
|
|
DEPEND="
|
|
|
|
${RDEPEND}
|
|
|
|
x11-libs/libXext"
|
|
|
|
|
|
|
|
PATCHES=( "${FILESDIR}"/${P}-fix-build-system.patch )
|
2017-08-07 08:53:04 +03:00
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
default
|
2018-04-19 18:38:09 +03:00
|
|
|
mv configure.{in,ac} || die
|
2017-08-07 08:53:04 +03:00
|
|
|
eautoreconf
|
|
|
|
}
|