mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
53 lines
1.5 KiB
Makefile
53 lines
1.5 KiB
Makefile
# New ports collection makefile for: inkscape
|
|
# Date created: 17 Nov 2003
|
|
# Whom: Alexander Nedotsukov <bland@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= inkscape
|
|
PORTVERSION= 0.37
|
|
CATEGORIES= graphics gnome
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= A program seeks to become a full featured open source SVG editor
|
|
|
|
LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt \
|
|
sigc-1.2.5:${PORTSDIR}/devel/libsigc++12
|
|
RUN_DEPENDS= ${SITE_PERL}/XML/XQL.pm:${PORTSDIR}/textproc/p5-XML-XQL
|
|
|
|
USE_GMAKE= yes
|
|
USE_X_PREFIX= yes
|
|
USE_GNOME= gnomeprefix gnomehack lthack intlhack libglade2 libartlgpl2 libgnomeprintui
|
|
USE_REINPLACE= yes
|
|
USE_LIBTOOL_VER=13
|
|
CONFIGURE_ARGS= --with-popt \
|
|
--with-gnome-print
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/freetype2 -I${X11BASE}/include -I${LOCALBASE}" \
|
|
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib -L${LOCALBASE}"
|
|
|
|
MAN1= inkscape.1
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|<malloc.h>|<stdlib.h>|g' \
|
|
${WRKSRC}/src/helper/action.cpp \
|
|
${WRKSRC}/src/libarikkei/arikkei-token.cpp
|
|
@${REINPLACE_CMD} -e 's|round|rint|g' \
|
|
${WRKSRC}/src/livarot/Shape.h \
|
|
${WRKSRC}/src/modules/gnome.cpp \
|
|
${WRKSRC}/src/object-edit.cpp \
|
|
${WRKSRC}/src/spiral-context.cpp \
|
|
${WRKSRC}/src/star-context.cpp
|
|
.if ${OSVERSION} < 500000
|
|
@${REINPLACE_CMD} -e 's|<stdint.h>|<sys/types.h>|g' \
|
|
${WRKSRC}/src/livarot/*.h
|
|
@${REINPLACE_CMD} -e 's|isfinite|!isinf|g' \
|
|
${WRKSRC}/src/helper/*.cpp
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|