summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris White <chriswhite@gentoo.org>2005-01-08 14:41:56 +0000
committerChris White <chriswhite@gentoo.org>2005-01-08 14:41:56 +0000
commitaba9cca4e9784900f104003134e36440e440bbf3 (patch)
treef62daa150702337f859cd3885698feeccae84d15 /media-video
parentNew package. Thanks to eGore for this ebuild in bug #70491. (Manifest recommit) (diff)
downloadgentoo-2-aba9cca4e9784900f104003134e36440e440bbf3.tar.gz
gentoo-2-aba9cca4e9784900f104003134e36440e440bbf3.tar.bz2
gentoo-2-aba9cca4e9784900f104003134e36440e440bbf3.zip
Fixed #77119. Also fixed 2 syntax errors located in #60696.
Diffstat (limited to 'media-video')
-rw-r--r--media-video/vlc/ChangeLog5
-rw-r--r--media-video/vlc/vlc-0.8.1.ebuild7
2 files changed, 8 insertions, 4 deletions
diff --git a/media-video/vlc/ChangeLog b/media-video/vlc/ChangeLog
index 720a6c1c68f2..c53f9647dd6a 100644
--- a/media-video/vlc/ChangeLog
+++ b/media-video/vlc/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-video/vlc
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/ChangeLog,v 1.64 2005/01/08 05:04:17 chriswhite Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/ChangeLog,v 1.65 2005/01/08 14:41:56 chriswhite Exp $
+
+ 08 Jan 2005; Chris White <chriswhite@gentoo.org> vlc-0.8.1.ebuild:
+ Fixed #77119. Also fixed 2 syntax errors located in #60696.
08 Jan 2005; Chris White <chriswhite@gentoo.org> vlc-0.8.1.ebuild:
Fixing MOZILLA_CONFIG errors that I'll surely be getting in about 30 minutes.
diff --git a/media-video/vlc/vlc-0.8.1.ebuild b/media-video/vlc/vlc-0.8.1.ebuild
index bf1032cd7ba7..5907d3bb4db3 100644
--- a/media-video/vlc/vlc-0.8.1.ebuild
+++ b/media-video/vlc/vlc-0.8.1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-0.8.1.ebuild,v 1.3 2005/01/08 05:04:17 chriswhite Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-0.8.1.ebuild,v 1.4 2005/01/08 14:41:56 chriswhite Exp $
# Missing support for...
# tarkin - package not in portage yet - experimental
@@ -54,6 +54,7 @@ DEPEND="hal? ( >=sys-apps/hal-0.2.97 )
3dfx? ( !amd64? ( media-libs/glide-v3 ) )
bidi? ( >=dev-libs/fribidi-0.10.4 )
gnutls? ( >=net-libs/gnutls-1.0.0 )
+ opengl? ( virtual/opengl )
sys-libs/zlib
media-libs/libpng
media-libs/libdvbpsi
@@ -97,7 +98,7 @@ src_compile () {
if use cdio && use cddb && use cdda ; then
myconf="${myconf} --enable-cddax"
else
- myconf-"${myconf} --disable-cddax"
+ myconf="${myconf} --disable-cddax"
fi
# reason why:
@@ -135,7 +136,7 @@ src_compile () {
$(use_enable bidi fribidi) \
$(use_enable dvd dvdread) \
$(use_enable dvd dvdplay) \
- $(use_eanble dvd dvdnav) \
+ $(use_enable dvd dvdnav) \
$(use_enable fbcon fb) \
$(use_enable svga svgalib) \
$(use_enable 3dfx glide) \