pkgsrc/graphics/png/Makefile
jperkin 41322915e0 png: Fix libpng-config --libs and --ldflags output.
They should include the full list of libraries and linker flags, similar
to pkg-config and other *-config scripts.  Bump PKGREVISION.
2021-05-18 10:05:18 +00:00

42 lines
1.3 KiB
Makefile

# $NetBSD: Makefile,v 1.200 2021/05/18 10:05:18 jperkin Exp $
DISTNAME= libpng-1.6.37
PKGNAME= ${DISTNAME:S/lib//}
PKGREVISION= 1
CATEGORIES= graphics
MASTER_SITES= https://ftp-osl.osuosl.org/pub/libpng/src/archive/xz/libpng16/
MASTER_SITES+= ${MASTER_SITE_SOURCEFORGE:=libpng/}
MASTER_SITES+= ftp://ftp.fu-berlin.de/unix/graphics/png/src/libpng16/
EXTRACT_SUFX= .tar.xz
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.libpng.org/pub/png/libpng.html
COMMENT= Library for manipulating PNG images
LICENSE= zlib
USE_LIBTOOL= yes
GNU_CONFIGURE= yes
# do not create libpng.la
CONFIGURE_ARGS+= --disable-unversioned-links
# but do install png.h outside include/libpng$VERSION for now
# until pkgsrc is fixed to use libpng-config or the pc file everywhere
INSTALL_TARGET= install install-header-links
PKGCONFIG_OVERRIDE= scripts/libpng.pc.in libpng.pc.in
TEST_TARGET= check
CPPFLAGS+= -DPNG_USER_CHUNK_CACHE_MAX=128 -DPNG_USER_CHUNK_MALLOC_MAX=8000000
.include "../../mk/bsd.prefs.mk"
# keep this in sync with the same code in buildlink3.mk
.if ${MACHINE_ARCH} != "i386" && ${MACHINE_ARCH} != "x86_64"
CPPFLAGS+= -DPNG_NO_ASSEMBLER_CODE
.endif
SUBST_CLASSES+= rpathfix
SUBST_FILES.rpathfix= libpng-config.in
SUBST_VARS.rpathfix= COMPILER_RPATH_FLAG
SUBST_STAGE.rpathfix= post-build
.include "../../devel/zlib/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"