diff options
author | Maik Schreiber <blizzy@gentoo.org> | 2002-11-18 06:49:54 +0000 |
---|---|---|
committer | Maik Schreiber <blizzy@gentoo.org> | 2002-11-18 06:49:54 +0000 |
commit | 9d2dcc23078500fa444a6c3c9adb251bad110bf6 (patch) | |
tree | 8d0e5dbd765af734e4ed9a16e2d249fd483ee39f /media-video | |
parent | rev bump (diff) | |
download | gentoo-2-9d2dcc23078500fa444a6c3c9adb251bad110bf6.tar.gz gentoo-2-9d2dcc23078500fa444a6c3c9adb251bad110bf6.tar.bz2 gentoo-2-9d2dcc23078500fa444a6c3c9adb251bad110bf6.zip |
(multiple) removed quite some crap:
- "boxes" done with "*****", "#####", "=====" or "-----"
- checking for user accounts with weird awk stuff instead of using id
- empty lines at beginning or end of functions
- whole "novels" of instructions in pkg_postinst()
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/SDLcam/SDLcam-0.7.3.ebuild | 16 | ||||
-rw-r--r-- | media-video/mgavideo/mgavideo-0.1.0.ebuild | 10 |
2 files changed, 4 insertions, 22 deletions
diff --git a/media-video/SDLcam/SDLcam-0.7.3.ebuild b/media-video/SDLcam/SDLcam-0.7.3.ebuild index 69ef6eb8952e..2e1ae1e4492b 100644 --- a/media-video/SDLcam/SDLcam-0.7.3.ebuild +++ b/media-video/SDLcam/SDLcam-0.7.3.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/SDLcam/SDLcam-0.7.3.ebuild,v 1.2 2002/10/20 18:49:49 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/SDLcam/SDLcam-0.7.3.ebuild,v 1.3 2002/11/18 06:49:54 blizzy Exp $ S="${WORKDIR}/${P}" DESCRIPTION="Webcam application that uses the SDL library" @@ -40,17 +40,3 @@ src_install () { insinto /usr/lib/SDLcam/capture doins ${S}/capture/*.so } - -pkg_postinst() { - - einfo "" - einfo "#################################################" - einfo "# #" - einfo "# You can change global options by editing #" - einfo "# /usr/share/SDLcam/SDLcam.cfg #" - einfo "# #" - einfo "#################################################" - einfo "" - -} - diff --git a/media-video/mgavideo/mgavideo-0.1.0.ebuild b/media-video/mgavideo/mgavideo-0.1.0.ebuild index c7a94d95c94b..7be9d5d42dbf 100644 --- a/media-video/mgavideo/mgavideo-0.1.0.ebuild +++ b/media-video/mgavideo/mgavideo-0.1.0.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/mgavideo/mgavideo-0.1.0.ebuild,v 1.3 2002/10/04 05:56:06 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/mgavideo/mgavideo-0.1.0.ebuild,v 1.4 2002/11/18 06:49:54 blizzy Exp $ S=${WORKDIR}/${P}/driver DESCRIPTION="Matrox Marvel G200/G400/Rainbow Runner G-series V4L I and II @@ -55,11 +55,7 @@ src_install() { pkg_postinst() { depmod -a if [ ! -f /lib/modules/${KVERS}/kernel/drivers/i2c/i2c-core.o ] ; then - echo - echo '###############################################################' - echo '## WARNING: i2c support must be compiled into your kernel ##' - echo '## as a module for these drivers to work. ##' - echo '###############################################################' - echo + ewarn "i2c support must be compiled into your kernel as a module" + ewarn "for these drivers to work." fi } |