diff options
author | David W. Chapman Jr. <dwcjr@FreeBSD.org> | 2001-08-24 23:16:41 +0000 |
---|---|---|
committer | David W. Chapman Jr. <dwcjr@FreeBSD.org> | 2001-08-24 23:16:41 +0000 |
commit | 253e1b647bb13c22a2d5454131a5e3a439692ddd (patch) | |
tree | 649ad9bab32dfa4bbed5fabb6305a117daedf8c8 /audio/libsndfile/Makefile | |
parent | 31a07d6e675fae603e9eebc0caaf1b412403a8ab (diff) | |
download | ports-253e1b647bb13c22a2d5454131a5e3a439692ddd.tar.gz ports-253e1b647bb13c22a2d5454131a5e3a439692ddd.zip |
Notes
Diffstat (limited to 'audio/libsndfile/Makefile')
-rw-r--r-- | audio/libsndfile/Makefile | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/audio/libsndfile/Makefile b/audio/libsndfile/Makefile index bc581522bd30..4f5b255d58fd 100644 --- a/audio/libsndfile/Makefile +++ b/audio/libsndfile/Makefile @@ -7,19 +7,28 @@ # PORTNAME= libsndfile -PORTVERSION= 0.0.23 +PORTVERSION= 0.0.24 CATEGORIES= audio MASTER_SITES= http://www.zip.com.au/~erikd/libsndfile/ MAINTAINER= ports@FreeBSD.org -GNU_CONFIGURE= yes +USE_LIBTOOL= yes +CONFIGURE_ARGS= --enable-justsrc --disable-gcc-pipe INSTALLS_SHLIB= yes +PORTDOCS= ChangeLog NEWS api.html bugs.html index.html libsndfile.jpg \ + new_file_type.HOWTO sf_info.html + +pre-patch: + @${PERL} -pi -e 's|-g -O2 |\$$CFLAGS |g' ${WRKSRC}/configure + .if !defined(NOPORTDOCS) post-install: @${MKDIR} ${DOCSDIR} - @${CP} -R ${WRKSRC}/doc/ ${DOCSDIR} +.for file in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/doc/${file} ${DOCSDIR} +.endfor .endif .include <bsd.port.mk> |