diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2002-07-11 17:47:16 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2002-07-11 17:47:16 +0000 |
commit | 072875d61b916f54d4fd901fc376241f994f95cd (patch) | |
tree | dd5e7959d32274eb9a4a8b2390cfff1fec30a7b7 /net/gaim | |
parent | 7ac304371df28dd60dc338b00d497870e9f713d4 (diff) | |
download | ports-072875d61b916f54d4fd901fc376241f994f95cd.tar.gz ports-072875d61b916f54d4fd901fc376241f994f95cd.zip |
Notes
Diffstat (limited to 'net/gaim')
-rw-r--r-- | net/gaim/Makefile | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/net/gaim/Makefile b/net/gaim/Makefile index e0c3ea6dc5f4..20afa41953dc 100644 --- a/net/gaim/Makefile +++ b/net/gaim/Makefile @@ -18,8 +18,8 @@ USE_BZIP2= yes USE_X_PREFIX= yes USE_GMAKE= yes USE_REINPLACE= yes -USE_GTK= yes -WANT_ESOUND= yes +USE_GNOMENG= yes +USE_GNOME= gnomeprefix gnomehack gtk12 esound WANT_GNOME= yes USE_PERL5= yes USE_LIBTOOL= yes @@ -33,26 +33,19 @@ MAN1= gaim.1 .if !defined(WITHOUT_GDK_PIXBUF) # Note, gdk-pixbuf is needed for buddy icon support. -LIB_DEPENDS= gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf +USE_GNOME+= gdkpixbuf .endif -.if defined(HAVE_GNOME) -USE_GNOME= yes +.if ${HAVE_GNOME:Mlibpanel} != "" +USE_GNOME+= libpanel RUN_DEPENDS= ispell:${PORTSDIR}/textproc/ispell CONFIGURE_ARGS+= --enable-panel +PKGNAMESUFFIX= -gnome .else CONFIGURE_ARGS+= --disable-gnome .endif -.if defined(HAVE_ESOUND) -USE_ESOUND= yes -.else -CONFIGURE_ARGS+= --disable-esd -.endif -pre-patch: +post-patch: @${REINPLACE_CMD} -e 's|-lpthreads|${PTHREAD_LIBS:S/"//g}|g; \ s|-lpthread|${PTHREAD_LIBS:S/"//g}|g' ${WRKSRC}/configure - @find ${WRKSRC} -name "Makefile.in*" | xargs ${REINPLACE_CMD} -e \ - 's|[(]datadir[)]/gnome/|(datadir)/|g ; \ - s|[(]datadir[)]/locale|(prefix)/share/locale|g' .include <bsd.port.post.mk> |