libtool: compile: c++ -DHAVE_CONFIG_H -I. -I../.. -I../../src -I../../libltdl -I/usr/local/include -I/usr/local/include/synfig-0.0 -I/usr/local/include/libxml++-2.6 -I/usr/local/include/libxml++-2.6/include -I/usr/local/include/libxml2 -I/usr/local/include/glibmm-2.4 -I/usr/local/lib/glibmm-2.4/include -I/usr/local/include/glib-2.0 -I/usr/local/include -I/usr/local/include/sigc++-2.0 -I/usr/local/lib/sigc++-2.0/include -DLOCALEDIR=\"/usr/local/share/locale\" -O2 -pipe -fno-strict-aliasing -DNDEBUG -W -Wall -MT libsynfigapp_la-layerparamdisconnect.lo -MD -MP -MF .deps/libsynfigapp_la-layerparamdisconnect.Tpo -c actions/layerparamdisconnect.cpp -fPIC -DPIC -o .libs/libsynfigapp_la-layerparamdisconnect.o actions/layerparamdisconnect.cpp: In member function 'virtual void synfigapp::Action::LayerParamDisconnect::perform()': actions/layerparamdisconnect.cpp:143: error: 'class etl::handle<synfig::ValueNode>' has no member named 'clone' gmake[3]: *** [libsynfigapp_la-layerparamdisconnect.lo] Error 1 Reported by: pkg-fallout since january 2014
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
# Created by: Yinghong.Liu <relaxbsd@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= synfigstudio
|
|
DISTVERSION= 0.63.05
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics multimedia
|
|
MASTER_SITES= SF/synfig/${PORTNAME}/${PORTVERSION}
|
|
|
|
MAINTAINER= dhn@FreeBSD.org
|
|
COMMENT= Vector-based 2D animation software package
|
|
|
|
BROKEN= Fails to compile
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/ETL.pc:${PORTSDIR}/devel/etl
|
|
LIB_DEPENDS= synfig.0:${PORTSDIR}/devel/synfig \
|
|
gtkmm-2.4.1:${PORTSDIR}/x11-toolkits/gtkmm24
|
|
|
|
USE_GNOME= gnomehack gtk20
|
|
USES= gettext
|
|
USE_GMAKE= yes
|
|
INSTALLS_ICONS= yes
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
USE_LDCONFIG= yes
|
|
|
|
NO_STAGE= yes
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/optimization_flags/s|CXXFLAGS=|#CXXFLAGS=| ; \
|
|
/optimization_flags/s|CFLAGS=|#CFLAGS=|' -e \
|
|
's|sk_SK|sk|g' ${WRKSRC}/configure
|
|
|
|
# FIX LC_MESSAGES
|
|
${MV} ${WRKSRC}/po/sk_SK.gmo ${WRKSRC}/po/sk.gmo
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for doc in AUTHORS ChangeLog INSTALL NEWS README TODO
|
|
@${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|