diff options
author | Nick Hadaway <raker@gentoo.org> | 2003-02-06 02:09:53 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2003-02-06 02:09:53 +0000 |
commit | f78a2195fb2328099a5b72283edadc2692614d27 (patch) | |
tree | 0b59f81d4da72cb0ef2d2e8451e99a5c148bd910 /media-video/avifile | |
parent | added support for activefilter. (diff) | |
download | gentoo-2-f78a2195fb2328099a5b72283edadc2692614d27.tar.gz gentoo-2-f78a2195fb2328099a5b72283edadc2692614d27.tar.bz2 gentoo-2-f78a2195fb2328099a5b72283edadc2692614d27.zip |
Added a comment about suid root
Diffstat (limited to 'media-video/avifile')
-rw-r--r-- | media-video/avifile/ChangeLog | 6 | ||||
-rw-r--r-- | media-video/avifile/avifile-0.7.29.20030204.ebuild | 12 |
2 files changed, 12 insertions, 6 deletions
diff --git a/media-video/avifile/ChangeLog b/media-video/avifile/ChangeLog index 35b16a91fc5f..53bbc752efc0 100644 --- a/media-video/avifile/ChangeLog +++ b/media-video/avifile/ChangeLog @@ -1,9 +1,13 @@ # ChangeLog for media-video/avifile # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/media-video/avifile/ChangeLog,v 1.35 2003/02/05 00:57:04 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/avifile/ChangeLog,v 1.36 2003/02/06 02:09:53 raker Exp $ *avifile-0.7.29.20030204 (04 Feb 2003) + 05 Feb 2003; Nick Hadaway <raker@gentoo.org> avifile-0.7.29.20030204.ebuild : + Added a pkg_postinst with a note about making aviplay suid root + so certain video functions work properly. + 04 Feb 2003; Nick Hadaway <raker@gentoo.org> avifile-0.7.2920030204, files/digest-avifile-0.7.29.20030204 : Added esd and alsa USE variables. No patches... so autoconf... just diff --git a/media-video/avifile/avifile-0.7.29.20030204.ebuild b/media-video/avifile/avifile-0.7.29.20030204.ebuild index d85106ae7cb8..41614c776f44 100644 --- a/media-video/avifile/avifile-0.7.29.20030204.ebuild +++ b/media-video/avifile/avifile-0.7.29.20030204.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/avifile/avifile-0.7.29.20030204.ebuild,v 1.1 2003/02/05 00:57:04 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/avifile/avifile-0.7.29.20030204.ebuild,v 1.2 2003/02/06 02:09:53 raker Exp $ IUSE="static freetype xv sdl oss dvd mmx sse 3dnow zlib oggvorbis X qt alsa esd" @@ -31,13 +31,11 @@ DEPEND=">=media-libs/divx4linux-20020418 qt? ( >=x11-libs/qt-3.0.3 ) alsa? ( >=media-libs/alsa-lib-0.9.0_rc2 ) esd? ( >=media-sound/esound-0.2.28 )" - SLOT="0.7" LICENSE="GPL-2" KEYWORDS="~x86" src_compile() { - local myconf="" local kdepre="" @@ -141,12 +139,10 @@ src_compile() { --with-fpic \ --with-gnu-ld \ ${myconf} || die - emake || die } src_install () { - dodir /usr/lib /usr/bin use avi && dodir /usr/lib/win32 @@ -159,3 +155,9 @@ src_install () { dodoc VIDEO-PERFORMANCE WARNINGS } +pkg_postinst() { + einfo "In order to use certain video modes, you must be root" + einfo "chmod +s /usr/bin/aviplay to suid root" + einfo "As this is considered a security risk on multiuser" + einfo "systems, this is not done by default" +} |