diff options
author | Ade Lovett <ade@FreeBSD.org> | 2000-10-17 20:07:25 +0000 |
---|---|---|
committer | Ade Lovett <ade@FreeBSD.org> | 2000-10-17 20:07:25 +0000 |
commit | d86841e4e573568d7c40ebf7ea0f50b22c0986bb (patch) | |
tree | c4853d10b2624eb49cc49e542e3f2c4a8aa732f6 /audio/openal/Makefile | |
parent | a64b373f81169bf57b773bfc2ce48ce954494f90 (diff) | |
download | ports-d86841e4e573568d7c40ebf7ea0f50b22c0986bb.tar.gz ports-d86841e4e573568d7c40ebf7ea0f50b22c0986bb.zip |
Notes
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 f2ce83b95e7e..96fcf349d921 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> |