diff options
author | mezz <mezz@FreeBSD.org> | 2008-03-28 09:50:20 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2008-03-28 09:50:20 +0800 |
commit | e0d22c473b9ab74f8ce18fa0d8a6df08b94d9057 (patch) | |
tree | 21cc745dff1460c8e5f4f15009065e1accbd7f41 /graphics/synfigstudio | |
parent | 4c09027fe62f992958ead2c844c97a0b3279b924 (diff) | |
download | freebsd-ports-gnome-e0d22c473b9ab74f8ce18fa0d8a6df08b94d9057.tar.gz freebsd-ports-gnome-e0d22c473b9ab74f8ce18fa0d8a6df08b94d9057.tar.zst freebsd-ports-gnome-e0d22c473b9ab74f8ce18fa0d8a6df08b94d9057.zip |
Fix the build with new libsigc++20 2.2.2. I have tested these ports in runtime
and these seem work fine in normal use. I don't test every functions, so let
me know if you have any problem with it.
Reported by: pointyhat via pav
Diffstat (limited to 'graphics/synfigstudio')
-rw-r--r-- | graphics/synfigstudio/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/graphics/synfigstudio/Makefile b/graphics/synfigstudio/Makefile index 777eb5e63ecf..46838e121218 100644 --- a/graphics/synfigstudio/Makefile +++ b/graphics/synfigstudio/Makefile @@ -30,6 +30,11 @@ PORTDOCS= AUTHORS COPYING ChangeLog INSTALL NEWS README TODO post-patch: @${REINPLACE_CMD} 's|TARGET_MNG="no"|TARGET_MNG="yes"|' \ ${WRKSRC}/configure + @${REINPLACE_CMD} 's|#include <sigc++\/compatibility\.h>||g ; \ + s|SigC::Connection|sigc::connection|g ; \ + s|SigC::slot|sigc::ptr_fun|g ; \ + s|namespace SigC|namespace sigc|g' \ + ${WRKSRC}/src/gtkmm/*.* post-install: .if !defined(NOPORTDOCS) |