diff options
author | Jeremy Lea <reg@FreeBSD.org> | 2000-10-05 07:22:56 +0000 |
---|---|---|
committer | Jeremy Lea <reg@FreeBSD.org> | 2000-10-05 07:22:56 +0000 |
commit | 7b4c77811e89d7fc1131ca6e63df3e719bc86b1d (patch) | |
tree | 9695733a1620c4c290c86f161a4f1b73160ed39a /irc/xchat2 | |
parent | c76cf46929051f9dd322487d888c82f104026e6d (diff) | |
download | ports-7b4c77811e89d7fc1131ca6e63df3e719bc86b1d.tar.gz ports-7b4c77811e89d7fc1131ca6e63df3e719bc86b1d.zip |
Notes
Diffstat (limited to 'irc/xchat2')
-rw-r--r-- | irc/xchat2/Makefile | 54 |
1 files changed, 19 insertions, 35 deletions
diff --git a/irc/xchat2/Makefile b/irc/xchat2/Makefile index 4c0318ade4a9..9bc401a1ed4d 100644 --- a/irc/xchat2/Makefile +++ b/irc/xchat2/Makefile @@ -13,61 +13,45 @@ MASTER_SITES= http://xchat.org/files/source/1.4/ \ MAINTAINER= jim@FreeBSD.org -.if defined(WITH_SOCKS) -BUILD_DEPENDS+= ${LOCALBASE}/lib/libsocks5.a:${PORTSDIR}/net/socks5 -.endif -LIB_DEPENDS+= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \ - Imlib.5:${PORTSDIR}/graphics/imlib -.if defined(WITH_GNOME) -LIB_DEPENDS+= gnome.4:${PORTSDIR}/x11/gnomelibs -.endif - -.if exists(${X11BASE}/bin/panel) && defined(WITH_GNOME) -WITH_GDK_PIXBUF=yes -WITH_PANEL= yes -LIB_DEPENDS+= panel_applet.4:${PORTSDIR}/x11/gnomecore -.endif - -GTK_CONFIG?= ${X11BASE}/bin/gtk12-config -GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config - USE_X_PREFIX= yes USE_BZIP2= yes USE_GMAKE= yes USE_PERL5= yes +USE_IMLIB= yes +WANT_GNOME= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-python +.include <bsd.port.pre.mk> + .if defined(WITH_SOCKS) +BUILD_DEPENDS+= ${LOCALBASE}/lib/libsocks5.a:${PORTSDIR}/net/socks5 CONFIGURE_ARGS+=--enable-socks .endif -.if defined(WITH_GNOME) -CONFIGURE_ARGS+=--enable-gnome -PLIST_SUB+= GNOME:="" -.if defined(WITH_PANEL) -CONFIGURE_ARGS+=--enable-panel -.else -CONFIGURE_ARGS+=--disable-panel -.endif +.if defined(HAVE_GNOME) +USE_GNOME= yes +CONFIGURE_ARGS+=--enable-gnome --enable-panel --enable-gdk-pixbuf .else -CONFIGURE_ARGS+=--disable-gnome -PLIST_SUB+= GNOME:="@comment " +CONFIGURE_ARGS+=--disable-gnome --disable-gdk-pixbuf .endif -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - GTK_CONFIG="${GTK_CONFIG}" \ - GLIB_CONFIG="${GLIB_CONFIG}" \ - LIBS="-L${LOCALBASE}/lib" +pre-patch: + @${PERL} -pi -e 's|-lpthread|-pthread|g ; \ + s|DATADIRNAME=lib|DATADIRNAME=share|g ; \ + s|USE_INCLUDED_LIBINTL=yes|#USE_INCLUDED_LIBINTL=yes|g ; \ + s|\$$\(top_builddir\)/intl/libintl.a|-lintl|g' ${WRKSRC}/configure + @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ + 's|\$$\(datadir\)/gnome/|\$$\(datadir\)/|g ; \ + s|\$$\(datadir\)/locale|\$$\(prefix\)/share/locale|g' post-install: - @strip ${PREFIX}/bin/xchat .if !defined(NOPORTDOCS) - @${ECHO} "===> Installing xchat docs in ${PREFIX}/share/doc/xchat" + @${ECHO_MSG} "===> Installing xchat docs in ${PREFIX}/share/doc/xchat" @${MKDIR} ${PREFIX}/share/doc/xchat && ${CHMOD} a+rx ${PREFIX}/share/doc/xchat ${INSTALL_DATA} ${WRKSRC}/doc/*.* ${PREFIX}/share/doc/xchat ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/xchat ${INSTALL_DATA} ${WRKSRC}/ChangeLog ${PREFIX}/share/doc/xchat .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |