diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2002-08-08 13:16:32 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2002-08-08 13:16:32 +0000 |
commit | d9375a36b97083fe6a58fcaf33f23697842a3093 (patch) | |
tree | a7c4f49189ff0b002f9165f84efc9926016d5b92 /net/ickle/Makefile | |
parent | I take over maintainership. (diff) |
* libicq2000
- Return correct cflags when libicq2000-config is called [1]
- USE_REINPLACE
- Bump PORTREVISION
* ickle
- Patch to work with aforementioned fix
Prompted by: Neil Darlow <neil@darlow.co.uk> [1]
Notes
Notes:
svn path=/head/; revision=64219
Diffstat (limited to 'net/ickle/Makefile')
-rw-r--r-- | net/ickle/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/ickle/Makefile b/net/ickle/Makefile index 0b447bbe4927..f27cab9e462a 100644 --- a/net/ickle/Makefile +++ b/net/ickle/Makefile @@ -20,15 +20,17 @@ LIB_DEPENDS= gtkmm:${PORTSDIR}/x11-toolkits/gtk-- \ WANT_GNOME= yes USE_GTK= yes +USE_REINPLACE= yes GNU_CONFIGURE= yes INSTALLS_SHLIB= yes CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} CONFIGURE_ARGS= --with-sigc-prefix=${LOCALBASE} \ --with-gtkmm-prefix=${X11BASE} +CONFIGURE_ENV= CPPFLAGS="`${LOCALBASE}/bin/sigc-config --cflags`" post-patch: - @${PERL} -pi -e 's|(#include <sys/socket.h>)|#include <sys/types.h>\n\1|' \ - ${WRKSRC}/ctrlsocket/ControlSocket.h + @${REINPLACE_CMD} -E -e 's|(gtkmm_config_args[[:space:]]*=).+$$|\1|' \ + ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} .include <bsd.port.pre.mk> |