You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
837 B
45 lines
837 B
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="farbfeld simple image format tools"
|
|
HOMEPAGE="https://tools.suckless.org/farbfeld/"
|
|
SRC_URI="https://dl.suckless.org/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="ISC"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="
|
|
media-libs/libjpeg-turbo
|
|
media-libs/libpng:*
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
"
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-3-as-needed.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
sed -i \
|
|
-e '/^CC/d' \
|
|
-e 's|/usr/local|/usr|g' \
|
|
-e 's|^CFLAGS.*|CFLAGS += -std=c99 -pedantic -Wall -Wextra $(INCS) $(CPPFLAGS)|g' \
|
|
-e 's|^LDFLAGS.*|LDFLAGS += $(LIBS)|g' \
|
|
-e 's|{|(|g;s|}|)|g' \
|
|
config.mk || die
|
|
}
|
|
|
|
src_compile() {
|
|
emake CC=$(tc-getCC)
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install MANPREFIX=/usr/share/man
|
|
}
|