diff options
author | sf <sf@FreeBSD.org> | 2001-05-28 03:05:43 +0800 |
---|---|---|
committer | sf <sf@FreeBSD.org> | 2001-05-28 03:05:43 +0800 |
commit | 3ea52995d253fc8818d3cc1f8a9153628411ea26 (patch) | |
tree | c63c86cef9d6f41ebe22d4d5128ffbc3097fea3e /audio | |
parent | 4c39e9d50f1507e0933726474b4b9afb2f746a47 (diff) | |
download | freebsd-ports-gnome-3ea52995d253fc8818d3cc1f8a9153628411ea26.tar.gz freebsd-ports-gnome-3ea52995d253fc8818d3cc1f8a9153628411ea26.tar.zst freebsd-ports-gnome-3ea52995d253fc8818d3cc1f8a9153628411ea26.zip |
install documents with ${INSTALL_DATA} instead of ${CP}.
${CP} makes some files unreadable other than root.
Diffstat (limited to 'audio')
-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 |