46a28eba4c
This is mostly a bug fix release. Change log:
283c34deaf/CHANGELOG.md
Thankfully the port now has a CMake-based build system, so we can drop a lot
of hand-made build and installation code from the Makefile.
26 lines
512 B
Makefile
26 lines
512 B
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pngwriter
|
|
PORTVERSION= 0.5.5
|
|
CATEGORIES= graphics devel
|
|
|
|
MAINTAINER= rakuco@FreeBSD.org
|
|
COMMENT= C++ library for creating PNG images
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/doc/LICENSE
|
|
|
|
LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png \
|
|
libfreetype.so:${PORTSDIR}/print/freetype2
|
|
|
|
USES= cmake:outsource
|
|
USE_GITHUB= yes
|
|
USE_LDCONFIG= yes
|
|
GH_ACCOUNT= ${PORTNAME}
|
|
|
|
PLIST_FILES= include/pngwriter.h \
|
|
lib/libpngwriter.a \
|
|
lib/libpngwriter.so
|
|
|
|
.include <bsd.port.mk>
|