diff options
author | salo <salo> | 2003-04-03 17:01:36 +0000 |
---|---|---|
committer | salo <salo> | 2003-04-03 17:01:36 +0000 |
commit | ec2e1fa143a90830a1ffcf07d9d89c6d0d74c319 (patch) | |
tree | 7d99670cadb72cf4730ddecd23e41e54a250a481 /graphics | |
parent | 545669e8e4c4b6e2ea53824af331081269ae8775 (diff) | |
download | pkgsrc-ec2e1fa143a90830a1ffcf07d9d89c6d0d74c319.tar.gz |
Bump PKGREVISON:
- fixed MASTER_SITES
- added HOMEPAGE
- removed NetBSD-only restriction, allow install on all i386,
powerpc and alpha systems
- removed bogus fix for powerpc
- splitted MESSAGE into MESSAGE.common and MESSAGE.powerpc
- delint
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/realplayer-codecs/MESSAGE.common | 7 | ||||
-rw-r--r-- | graphics/realplayer-codecs/MESSAGE.powerpc (renamed from graphics/realplayer-codecs/MESSAGE) | 14 | ||||
-rw-r--r-- | graphics/realplayer-codecs/Makefile | 27 |
3 files changed, 24 insertions, 24 deletions
diff --git a/graphics/realplayer-codecs/MESSAGE.common b/graphics/realplayer-codecs/MESSAGE.common new file mode 100644 index 00000000000..a4d17ca5146 --- /dev/null +++ b/graphics/realplayer-codecs/MESSAGE.common @@ -0,0 +1,7 @@ +=========================================================================== +$NetBSD: MESSAGE.common,v 1.1 2003/04/03 17:01:36 salo Exp $ + +For all systems, to use the "sipr" codec, a "libm.so.6" is required. It is +not yet known if the libm on your system will suit this functionality or +not. +=========================================================================== diff --git a/graphics/realplayer-codecs/MESSAGE b/graphics/realplayer-codecs/MESSAGE.powerpc index 78d445b34c0..caa658453ff 100644 --- a/graphics/realplayer-codecs/MESSAGE +++ b/graphics/realplayer-codecs/MESSAGE.powerpc @@ -1,20 +1,16 @@ =========================================================================== -$NetBSD: MESSAGE,v 1.1.1.1 2003/04/01 08:02:48 mrg Exp $ +$NetBSD: MESSAGE.powerpc,v 1.1 2003/04/03 17:01:37 salo Exp $ This package requires a special hack to run on PowerPC systems, and to enable one codec on all systems. For PowerPC, these shared libraries are linked agained glibc6, the need a "libc.so.6" file. Fortunately, only a few simple functions (malloc, free, -memset, memcpy) are needed and these work from the NetBSD libc. As root, -you need to run this command to complete this installation (this *is* -ugly, but for now it is our best solution): +memset, memcpy) are needed and these work from the NetBSD libc and could +work on other systems as well. As root, you need to run this command to +complete this installation (this *is* ugly, but for now it is our best +solution): # cd /usr/lib # ln -s libc.so libc.so.6 - -For all systems, to use the "sipr" codec, a "libm.so.6" is required. It -is not yet known if the NetBSD libm will suit this functionality or not. - - =========================================================================== diff --git a/graphics/realplayer-codecs/Makefile b/graphics/realplayer-codecs/Makefile index dc3f20235b1..a3544ba8948 100644 --- a/graphics/realplayer-codecs/Makefile +++ b/graphics/realplayer-codecs/Makefile @@ -1,15 +1,21 @@ -# $NetBSD: Makefile,v 1.2 2003/04/01 08:07:41 mrg Exp $ +# $NetBSD: Makefile,v 1.3 2003/04/03 17:01:37 salo Exp $ # DISTNAME= rp8codecs${RP_ARCH} PKGNAME= realplayer-codecs-8 +PKGREVISION= 1 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} + +MAINTAINER= packages@netbsd.org +HOMEPAGE= http://mplayerhq.hu/MPlayer/releases/codecs/ +COMMENT= RealPlayer 8 shared libraries, primary for use with MPlayer CONFLICTS= realplayer-* +ONLY_FOR_PLATFORM= *-*-i386 *-*-powerpc *-*-alpha + .if ${MACHINE_ARCH} == "i386" RP_ARCH= .elif ${MACHINE_ARCH} == "powerpc" @@ -18,25 +24,16 @@ RP_ARCH= -ppc RP_ARCH= -alpha .endif -MAINTAINER= packages@netbsd.org -COMMENT= RealPlayer 8 shared libraries, primary for use with MPlayer - -USE_BUILDLINK2= yes -NO_BUILD= yes +NO_BUILD= YES -ONLY_FOR_PLATFORM= NetBSD-*-i386 NetBSD-*-powerpc NetBSD-*-alpha - -RESTRICTED= "Unsure of codec's license" +RESTRICTED= "Unsure of codec's license" NO_BIN_ON_CDROM=${RESTRICTED} -NO_BIN_ON_FTP= ${RESTRICTED} +NO_BIN_ON_FTP= ${RESTRICTED} NO_SRC_ON_CDROM=${RESTRICTED} NO_SRC_ON_FTP= ${RESTRICTED} do-install: ${INSTALL_DATA_DIR} ${PREFIX}/lib/RealPlayer8/Codecs ${INSTALL_DATA} ${WRKSRC}/* ${PREFIX}/lib/RealPlayer8/Codecs -.if ${MACHINE_ARCH} == "powerpc" - ${LN} -s /usr/lib/libc.so /usr/pkg/lib/libc.so.6 -.endif .include "../../mk/bsd.pkg.mk" |