diff options
author | bjs <bjs@pkgsrc.org> | 2008-05-07 02:53:41 +0000 |
---|---|---|
committer | bjs <bjs@pkgsrc.org> | 2008-05-07 02:53:41 +0000 |
commit | 34487906a47a74410352dd7dc0ae4fb5738a7a1a (patch) | |
tree | 315d1d3bebb38c1a3e539e9814cc297d0f7d7097 /x11/nucleo/Makefile | |
parent | 638dab86b843fff2c5470f4e318691be45b6ecc5 (diff) | |
download | pkgsrc-34487906a47a74410352dd7dc0ae4fb5738a7a1a.tar.gz |
Update to nucleo-0.7.1. The list of changes is fairly verbose and I do
not have time to include it here (see ChangeLog).
Significant pkgsrc-related changes:
- ffmpeg plugin now builds (see new SUBST_* declarations). Use
ffmpeg-devel instead of ffmpeg.
- DESTDIR support
- GNU TLS option (enabled by default, evidently used by XML parser (?))
- Include graphics/gd, as its dependencies completely overlap and it
doesn't take too long to build.
- Add x11/libXi to get Xinput functionality.
- Yet another header patch (patch-am)
- TODO file (place reading it on your TODO list today!)
Next up: wm/metisse!
Diffstat (limited to 'x11/nucleo/Makefile')
-rw-r--r-- | x11/nucleo/Makefile | 37 |
1 files changed, 27 insertions, 10 deletions
diff --git a/x11/nucleo/Makefile b/x11/nucleo/Makefile index ae26272bad2..0020c4e698d 100644 --- a/x11/nucleo/Makefile +++ b/x11/nucleo/Makefile @@ -1,35 +1,52 @@ -# $NetBSD: Makefile,v 1.3 2007/08/12 14:26:41 joerg Exp $ +# $NetBSD: Makefile,v 1.4 2008/05/07 02:53:41 bjs Exp $ # -DISTNAME= nucleo-0.6 -PKGREVISION= 1 +DISTNAME= nucleo-0.7.1 CATEGORIES= x11 -MASTER_SITES= http://insitu.lri.fr/metisse/download/0.4.0-rc4/ +MASTER_SITES= http://www.lri.fr/~cardona/sources/nucleo/ EXTRACT_SUFX= .tar.bz2 MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://insitu.lri.fr/metisse/ COMMENT= Toolkit to explore new uses of video and HCI techniques -GNU_CONFIGURE= yes -USE_TOOLS+= pkg-config -USE_LANGUAGES+= c c++ -USE_LIBTOOL= yes +PKG_DESTDIR_SUPPORT= user-destdir + +GNU_CONFIGURE= yes +USE_TOOLS+= pkg-config gmake +USE_LANGUAGES+= c c++ +USE_LIBTOOL= yes REPLACE_PYTHON+= docs/MacOSX/nBundle.in +PTHREAD_OPTS+= require +### +### See options.mk for use of PLIST_VARS. +### +PLIST_VARS= gnutls + +SUBST_CLASSES+= mkfiles +SUBST_FILES.mkfiles= nucleo/plugins/*/Makefile.in +SUBST_MESSAGE.mkfiles= Fixing plugin-descr targets. +SUBST_SED.mkfiles= -e 's|@\.\ |&./|' +SUBST_STAGE.mkfiles= post-patch .include "../../lang/python/application.mk" .include "../../graphics/freetype2/buildlink3.mk" +.include "../../graphics/gd/buildlink3.mk" .include "../../graphics/glu/buildlink3.mk" -.include "../../graphics/jpeg/buildlink3.mk" .include "../../graphics/libexif/buildlink3.mk" .include "../../graphics/png/buildlink3.mk" -.include "../../multimedia/ffmpeg/buildlink3.mk" +.include "../../multimedia/ffmpeg-devel/buildlink3.mk" .include "../../net/mDNSResponder/buildlink3.mk" .include "../../x11/libICE/buildlink3.mk" +.include "../../x11/libXi/buildlink3.mk" BUILDLINK_DEPMETHOD.libXt?= build .include "../../x11/libXt/buildlink3.mk" +.include "options.mk" + +.include "../../mk/dlopen.buildlink3.mk" +.include "../../mk/pthread.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |