diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2004-07-27 01:04:21 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2004-07-27 01:04:21 +0000 |
commit | 62dfbc91a9b14b1043cf812a54bf6591a6134d45 (patch) | |
tree | d7be5bf0b6c57259bfd1a561697fff5d61213e2b /multimedia/libquicktime/Makefile | |
parent | Remove lthack, set LIBTOOL_VER to 15, adjust the plist, (diff) |
- install portdocs
- fix build on 4.x (pointed out by vs@)
- use SOURCEFORGE_EXTENDED in master sites
PR: 69643
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=114833
Diffstat (limited to 'multimedia/libquicktime/Makefile')
-rw-r--r-- | multimedia/libquicktime/Makefile | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/multimedia/libquicktime/Makefile b/multimedia/libquicktime/Makefile index 4a8641b97b28..daa8da676e72 100644 --- a/multimedia/libquicktime/Makefile +++ b/multimedia/libquicktime/Makefile @@ -9,7 +9,7 @@ PORTNAME= libquicktime PORTVERSION= 0.9.3 CATEGORIES= multimedia -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED} MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= ahze@ahze.net @@ -23,6 +23,7 @@ LIB_DEPENDS= avcodec.0:${PORTSDIR}/multimedia/ffmpeg \ dv.4:${PORTSDIR}/multimedia/libdv INSTALLS_SHLIB= yes +USE_REINPLACE= yes USE_GL= yes USE_GNOME= gnometarget gtk12 USE_GMAKE= yes @@ -33,6 +34,17 @@ CONFIGURE_ARGS= --disable-firewire CFLAGS+= -fPIC MAN1= lqtplay.1 +PORTDOCS= codecs.html \ + qt4l_building.html \ + qt4l_codecs.html \ + qt4l_firewire.html \ + qt4l_index.html \ + qt4l_license.html \ + qt4l_opening.html \ + qt4l_positioning.html \ + qt4l_reading.html \ + qt4l_util.html \ + qt4l_writing.html .include <bsd.port.pre.mk> @@ -42,4 +54,17 @@ CONFIGURE_ARGS+= --enable-mmx CONFIGURE_ARGS+= --disable-mmx .endif +post-extract: + @${REINPLACE_CMD} -e 's|stdint.h|inttypes.h|' \ + ${WRKSRC}/plugins/audiocodec/* \ + ${WRKSRC}/plugins/videocodec/* + +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} +.for i in ${PORTDOCS} + @${INSTALL_DATA} ${WRKSRC}/doc/${i} ${DOCSDIR} +.endfor +.endif + .include <bsd.port.post.mk> |