diff options
Diffstat (limited to 'net/sdl_net/Makefile')
-rw-r--r-- | net/sdl_net/Makefile | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/net/sdl_net/Makefile b/net/sdl_net/Makefile index f82e1b177755..fbeac7acd4b1 100644 --- a/net/sdl_net/Makefile +++ b/net/sdl_net/Makefile @@ -14,22 +14,18 @@ DISTNAME= SDL_net-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= A small sample cross-platform networking library -LIB_DEPENDS= SDL-1.1.5:${PORTSDIR}/devel/sdl12 \ - GUI.0:${PORTSDIR}/graphics/guilib +LIB_DEPENDS= GUI.0:${PORTSDIR}/graphics/guilib -SDL_CONFIG?= ${LOCALBASE}/bin/sdl11-config - -USE_LIBTOOL= yes +USE_SDL= yes +USE_REINPLACE= yes USE_GMAKE= yes +USE_LIBTOOL= yes +LIBTOOLFLAGS= --disable-ltlibs --release-ignore INSTALLS_SHLIB= yes -CONFIGURE_ENV= SDL_CONFIG="${SDL_CONFIG}" - -post-extract: - @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ - 's|-release \$$\(LT_RELEASE\)||g' post-configure: - @${PERL} -pi -e 's|^deplibs_check_method=.*|deplibs_check_method=pass_all|' \ - ${WRKSRC}/libtool + @${REINPLACE_CMD} -e \ + 's|^deplibs_check_method=.*|deplibs_check_method=pass_all|' \ + ${WRKSRC}/libtool .include <bsd.port.mk> |