mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
42 lines
949 B
Makefile
42 lines
949 B
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= agg
|
|
PORTVERSION= 2.5
|
|
PORTREVISION= 7
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://www.antigrain.com/ \
|
|
http://freebsd.unixfreunde.de/sources/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A High Quality Rendering Engine for C++
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= freetype:${PORTSDIR}/print/freetype2
|
|
|
|
USE_XORG= x11
|
|
USES= pathfix pkgconfig
|
|
USE_SDL= sdl
|
|
USE_GMAKE= yes
|
|
USE_AUTOTOOLS= aclocal autoheader autoconf libtoolize automake
|
|
ACLOCAL_ARGS= -I ${LOCALBASE}/share/aclocal
|
|
AUTOMAKE_ARGS= --foreign --add-missing --ignore-deps
|
|
MAKE_ENV= C="${CC}" AGGCXXFLAGS="${CXXFLAGS}"
|
|
USE_LDCONFIG= yes
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
CXXFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib -I../include -L./
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "sparc64"
|
|
BROKEN= Does not compile
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|[(]libdir[)]/pkgconfig|(prefix)/libdata/pkgconfig|g' \
|
|
${WRKSRC}/Makefile.am
|
|
|
|
.include <bsd.port.post.mk>
|