diff options
author | ade <ade@FreeBSD.org> | 2000-10-17 20:07:25 +0000 |
---|---|---|
committer | ade <ade@FreeBSD.org> | 2000-10-17 20:07:25 +0000 |
commit | b24002a09fa3225925ec6fe744dba5f078c87c2b (patch) | |
tree | a17486296477577ade25d92395e041ab1447cd4d /audio/openal/Makefile | |
parent | 9bb283eed3262c7b076ae181ffd8ce1c53c36ddb (diff) | |
download | FreeBSD-ports-b24002a09fa3225925ec6fe744dba5f078c87c2b.zip FreeBSD-ports-b24002a09fa3225925ec6fe744dba5f078c87c2b.tar.gz |
Add USE_GMAKE
Remove redundant GNU_CONFIGURE
Install info file
Support install macros
perl -> PERL
Fix version number of sharedlib
PR: 22054
Submitted by: Ports Fury
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> |