diff options
author | salo <salo> | 2003-04-03 17:25:11 +0000 |
---|---|---|
committer | salo <salo> | 2003-04-03 17:25:11 +0000 |
commit | 05fb4101f3350f3e7c662cf9988dad0f1e50e1e5 (patch) | |
tree | 114f97114c95cbd17fc769c67451c51ce12a3649 | |
parent | fffd175ce32e80b3d6315e8665ea045d49af2d15 (diff) | |
download | pkgsrc-05fb4101f3350f3e7c662cf9988dad0f1e50e1e5.tar.gz |
- fixed MASTER_SITES
- added HOMEPAGE
- removed NetBSD-only restriction, allow install on all i386 systems
- shortened DESCR
- delint
-rw-r--r-- | graphics/win32-codecs/DESCR | 33 | ||||
-rw-r--r-- | graphics/win32-codecs/Makefile | 21 |
2 files changed, 21 insertions, 33 deletions
diff --git a/graphics/win32-codecs/DESCR b/graphics/win32-codecs/DESCR index 21b8775fa12..b13157d9a45 100644 --- a/graphics/win32-codecs/DESCR +++ b/graphics/win32-codecs/DESCR @@ -2,33 +2,22 @@ A huge compilation of Win32 codecs: Video: - Win32 VfW DLLs: - Indeo Video 3.2, 4.1 - Microsoft MPEG-4 v1 & v2 beta - Microsoft MPEG-4 v3 ( also known as DivX ;-) ) - Cinepak Video - ATI VCR-2 - I263 + Indeo Video 3.2 and 4.1, Microsoft MPEG-4 v1 & v2 beta, Microsoft + MPEG-4 v3 (also known as DivX ;-)), Cinepak Video, ATI VCR-2, I263 - Win32 DirectShow filters, decompression-only support: - Microsoft MPEG-4 v3 ( this decoder is slower than VfW one, - but offers wider range of picture control features ) - Windows Media Video 7 - Indeo Video 5.0 - Motion JPEG ( using Morgan Multimedia shareware codec ) + Microsoft MPEG-4 v3 (this decoder is slower than VfW one, but + offers wider range of picture control features), Windows Media + Video 7, Indeo Video 5.0, Motion JPEG (using Morgan Multimedia + shareware codec) - Open-source plugins: - Motion JPEG ( using libjpeg, very slow ) + Motion JPEG (using libjpeg, very slow) Audio: - Win32 ACM DLLs, decompression-only support: - Windows Media Audio ( also known as DivX ;-) Audio ) - MS ADPCM + Windows Media Audio (also known as DivX ;-) Audio), MS ADPCM Intel Music Codec - Open-source plugins, decompression-only support: - PCM - AC3 - IMA ADPCM - MPEG Layer-1,2,3 ( compression into MP3 is also supported ) - MSN Audio - GSM 6.1 Audio + PCM, AC3, IMA ADPCM, MPEG Layer-1,2,3 (compression into MP3 is + also supported), MSN Audio, GSM 6.1 Audio - Win32 DirectShow filters, untested decompression-only support: - Voxware Metasound - ACELP.net + Voxware Metasound, ACELP.net diff --git a/graphics/win32-codecs/Makefile b/graphics/win32-codecs/Makefile index afcb1043751..1af075bdc2e 100644 --- a/graphics/win32-codecs/Makefile +++ b/graphics/win32-codecs/Makefile @@ -1,27 +1,26 @@ -# $NetBSD: Makefile,v 1.7 2003/03/17 21:05:01 wiz Exp $ +# $NetBSD: Makefile,v 1.8 2003/04/03 17:25:11 salo Exp $ # DISTNAME= w32codec-0.90pre7 PKGNAME= win32-codecs-020909 PKGREVISION= 2 -WRKSRC= ${WRKDIR} CATEGORIES= graphics -MASTER_SITES= ftp://mplayerhq.hu/MPlayer/releases/ +MASTER_SITES= ftp://mplayerhq.hu/MPlayer/releases/codecs/ EXTRACT_SUFX= .tar.bz2 DISTFILES= ${DISTNAME}${EXTRACT_SUFX} qt6dlls.tar.bz2 dmocodecs.tar.bz2 MAINTAINER= packages@netbsd.org +HOMEPAGE= http://mplayerhq.hu/MPlayer/releases/codecs/ COMMENT= huge compilation of Win32 binary codecs -USE_BUILDLINK2= yes -NO_BUILD= yes - SITES_qt6dlls.tar.bz2= http://www.mplayerhq.hu/~alex/codecs/ SITES_dmocodecs.tar.bz2= ftp://mplayerhq.hu/MPlayer/releases/codecs/ -ONLY_FOR_PLATFORM= NetBSD-*-i386 +ONLY_FOR_PLATFORM= *-*-i386 + +NO_BUILD= YES -RESTRICTED= "Unsure of codec's license" +RESTRICTED= "Unsure of codec's license" NO_BIN_ON_CDROM=${RESTRICTED} NO_BIN_ON_FTP= ${RESTRICTED} NO_SRC_ON_CDROM=${RESTRICTED} @@ -29,8 +28,8 @@ NO_SRC_ON_FTP= ${RESTRICTED} do-install: ${INSTALL_DATA_DIR} ${PREFIX}/lib/win32 - ${INSTALL_DATA} ${WRKSRC}/${DISTNAME:C/pre.*//}/* ${PREFIX}/lib/win32 - ${INSTALL_DATA} ${WRKSRC}/qt6dlls/* ${PREFIX}/lib/win32 - ${INSTALL_DATA} ${WRKSRC}/dmocodecs/* ${PREFIX}/lib/win32 + ${INSTALL_DATA} ${WRKDIR}/${DISTNAME:C/pre.*//}/* ${PREFIX}/lib/win32 + ${INSTALL_DATA} ${WRKDIR}/qt6dlls/* ${PREFIX}/lib/win32 + ${INSTALL_DATA} ${WRKDIR}/dmocodecs/* ${PREFIX}/lib/win32 .include "../../mk/bsd.pkg.mk" |