diff options
Diffstat (limited to 'multimedia/totem')
-rw-r--r-- | multimedia/totem/Makefile | 3 | ||||
-rw-r--r-- | multimedia/totem/files/patch-src_totem.c | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/multimedia/totem/Makefile b/multimedia/totem/Makefile index 7e123cc9f..8d59c747d 100644 --- a/multimedia/totem/Makefile +++ b/multimedia/totem/Makefile @@ -7,6 +7,7 @@ PORTNAME= totem PORTVERSION= 2.17.1 +PORTREVISION= 1 CATEGORIES= multimedia gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 @@ -67,7 +68,7 @@ CONFIGURE_ARGS+=--without-mozilla \ .if defined(WITH_GSTREAMER) CONFIGURE_ARGS+=--enable-gstreamer=yes -USE_GSTREAMER+= gnomevfs core gconf hal good +USE_GSTREAMER+= gnomevfs core gconf hal good mpeg2dec ugly WITHOUT_DVDNAV= yes PLIST_SUB+= GSTREAMER="" .else diff --git a/multimedia/totem/files/patch-src_totem.c b/multimedia/totem/files/patch-src_totem.c new file mode 100644 index 000000000..da8b5dc31 --- /dev/null +++ b/multimedia/totem/files/patch-src_totem.c @@ -0,0 +1,14 @@ +--- src/totem.c.orig Sat Oct 21 22:10:07 2006 ++++ src/totem.c Sat Oct 21 22:11:56 2006 +@@ -339,7 +339,11 @@ + + g_object_get (G_OBJECT (totem->bvw), + "mediadev", &device, NULL); ++#if defined (__FreeBSD__) ++ cmd = g_strdup_printf ("cdcontrol -f %s eject", device); ++#else + cmd = g_strdup_printf ("eject %s", device); ++#endif + g_free (device); + + if (g_spawn_command_line_sync (cmd, NULL, NULL, NULL, &err) == FALSE) |