diff options
author | ben <ben@pkgsrc.org> | 2004-03-30 19:51:31 +0000 |
---|---|---|
committer | ben <ben@pkgsrc.org> | 2004-03-30 19:51:31 +0000 |
commit | 05cd73ec17e9eb4da20b01c6c2d8d9fbeb99df11 (patch) | |
tree | 6fe29abdcfe70df22d89138ff2373dcf4ece0e5b /multimedia/mplex/Makefile | |
parent | 4464ecf94a796fd81f179de0dbda6bd7d936e17b (diff) | |
download | pkgsrc-05cd73ec17e9eb4da20b01c6c2d8d9fbeb99df11.tar.gz |
Update mplex to version 1.6.2. A changelog was not available, but several
bugs were fixed. For details look at
http://cvs.sourceforge.net/viewcvs.py/mjpeg/mjpeg_play/mplex/
Diffstat (limited to 'multimedia/mplex/Makefile')
-rw-r--r-- | multimedia/mplex/Makefile | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/multimedia/mplex/Makefile b/multimedia/mplex/Makefile index a003facf2db..88fbfcd63c6 100644 --- a/multimedia/mplex/Makefile +++ b/multimedia/mplex/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.3 2004/02/14 17:21:45 jlam Exp $ +# $NetBSD: Makefile,v 1.4 2004/03/30 19:51:31 ben Exp $ -DISTNAME= mjpegtools-1.6.0 -PKGNAME= mplex-1.6.0 +DISTNAME= mjpegtools-1.6.2 +PKGNAME= mplex-1.6.2 CATEGORIES= multimedia MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mjpeg/} @@ -15,16 +15,21 @@ USE_GNU_TOOLS+= make USE_LIBTOOL= yes GNU_CONFIGURE= yes USE_GCC_SHLIB= yes +USE_BUILDLINK3= yes do-build: cd ${WRKSRC}/utils && ${GMAKE} cd ${WRKSRC}/mplex && ${GMAKE} do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/mplex/mplex ${PREFIX}/bin + cd ${WRKSRC}/mplex && \ + ${LIBTOOL} --mode=install ${INSTALL_DATA} libmplex2.la \ + ${PREFIX}/lib && \ + ${LIBTOOL} --mode=install ${INSTALL_PROGRAM} mplex ${PREFIX}/bin ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/mplex for FILE in COPYING INSTRUCT README; do \ ${INSTALL_DATA} ${WRKSRC}/mplex/$$FILE ${PREFIX}/share/doc/mplex; \ done +.include "../../graphics/jpeg/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |