diff options
author | FUJISHIMA Satsuki <sf@FreeBSD.org> | 2001-05-27 19:05:43 +0000 |
---|---|---|
committer | FUJISHIMA Satsuki <sf@FreeBSD.org> | 2001-05-27 19:05:43 +0000 |
commit | ac3bb953d44e292a0e61b005789c8f4fb05d8d77 (patch) | |
tree | 558634a00a47c1a590c6f422c70fc01ada588543 | |
parent | Add temperature.app 1.0, a dockable WindowMaker applet which (diff) |
install documents with ${INSTALL_DATA} instead of ${CP}.
${CP} makes some files unreadable other than root.
Notes
Notes:
svn path=/head/; revision=43165
-rw-r--r-- | audio/flac/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/audio/flac/Makefile b/audio/flac/Makefile index 616163fcad47..8bb8e36c2879 100644 --- a/audio/flac/Makefile +++ b/audio/flac/Makefile @@ -8,6 +8,7 @@ PORTNAME= flac PORTVERSION= 0.9 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -34,9 +35,9 @@ post-install: .if !defined(NO_PORTDOCS) ${MKDIR} ${PREFIX}/share/doc/flac ${MKDIR} ${PREFIX}/share/doc/flac/images - ${CP} ${WRKSRC}/doc/*.html ${PREFIX}/share/doc/flac + ${INSTALL_DATA} ${WRKSRC}/doc/*.html ${PREFIX}/share/doc/flac .for file in logo.jpg 1x1.gif - ${CP} ${WRKSRC}/doc/images/${file} ${PREFIX}/share/doc/flac/images + ${INSTALL_DATA} ${WRKSRC}/doc/images/${file} ${PREFIX}/share/doc/flac/images .endfor .endif |