diff options
Diffstat (limited to 'audio/openal/Makefile')
-rw-r--r-- | audio/openal/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/audio/openal/Makefile b/audio/openal/Makefile index f2ce83b..96fcf34 100644 --- a/audio/openal/Makefile +++ b/audio/openal/Makefile @@ -13,14 +13,16 @@ MASTER_SITES= ftp://ftp.openal.org/ MAINTAINER= ports@FreeBSD.org WRKSRC= ${WRKDIR}/${PORTNAME}/linux + +USE_GMAKE= yes USE_AUTOCONF= yes -GNU_CONFIGURE= yes INSTALLS_SHLIB= yes post-patch: - for file in $$(find ${WRKSRC} -name Makefile.in); \ - do \ - perl -pi -e 's/-g -c/-c/g' $${file}; \ - done + @find ${WRKSRC} -name 'Makefile.in' | xargs ${PERL} -pi -e 's/-g -c/-c/g' + +post-install: + ${INSTALL_DATA} ${WRKSRC}/doc/openal.info ${PREFIX}/info + @install-info ${PREFIX}/info/openal.info ${PREFIX}/info/dir .include <bsd.port.mk> |