diff options
author | dsainty <dsainty@pkgsrc.org> | 2009-12-22 06:54:28 +0000 |
---|---|---|
committer | dsainty <dsainty@pkgsrc.org> | 2009-12-22 06:54:28 +0000 |
commit | f534c4b5bc9eb6fc31805ca7ed8a88ea30a4e8d2 (patch) | |
tree | cd0b1d42410828faf8f3ef57a1c5cc796d5a10d2 /chat/pidgin | |
parent | abe9318e9d51522452df360d2bc17655379338e2 (diff) | |
download | pkgsrc-f534c4b5bc9eb6fc31805ca7ed8a88ea30a4e8d2.tar.gz |
With the gstreamer option enabled, pidgin looks for GSTINTERFACES, provided
by multimedia/gst-plugins0.10-base. Even if it doesn't find what it's
looking for, it still has a tendency to attempt to link in gstinterfaces-0.10,
which fails. Fix this by buildlinking in multimedia/gst-plugins0.10-base.
Bump PKGREVISION, since gstreamer is a default option and there is possibly
something not quite right about versions of this package where the build
was successful without the apparently required buildlinking.
Diffstat (limited to 'chat/pidgin')
-rw-r--r-- | chat/pidgin/Makefile | 3 | ||||
-rw-r--r-- | chat/pidgin/options.mk | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/chat/pidgin/Makefile b/chat/pidgin/Makefile index 330bea83050..014e0b23e0d 100644 --- a/chat/pidgin/Makefile +++ b/chat/pidgin/Makefile @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.19 2009/09/06 21:06:45 abs Exp $ +# $NetBSD: Makefile,v 1.20 2009/12/22 06:54:28 dsainty Exp $ # # XXX appease pkglint #PKGNAME= pidgin-${PIDGIN_VERSION} COMMENT= Multi-protocol Instant Messaging client GTK frontend +PKGREVISION= 1 PKG_DESTDIR_SUPPORT= user-destdir diff --git a/chat/pidgin/options.mk b/chat/pidgin/options.mk index 1ae5581bc5c..58aa0110f3f 100644 --- a/chat/pidgin/options.mk +++ b/chat/pidgin/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.8 2009/12/08 12:45:42 wiz Exp $ +# $NetBSD: options.mk,v 1.9 2009/12/22 06:54:28 dsainty Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.pidgin PKG_SUPPORTED_OPTIONS+= dbus debug farsight gstreamer gtkspell @@ -36,6 +36,7 @@ CONFIGURE_ARGS+= --disable-gtkspell .if !empty(PKG_OPTIONS:Mgstreamer) CONFIGURE_ARGS+= --enable-gstreamer . include "../../multimedia/gstreamer0.10/buildlink3.mk" +. include "../../multimedia/gst-plugins0.10-base/buildlink3.mk" .endif .if !empty(PKG_OPTIONS:Mdebug) |