View | Details | Raw Unified | Return to bug 168603
Collapse All | Expand All

(-)multimedia/ogmrip/Makefile (-27 / +25 lines)
Lines 6-13 Link Here
6
#
6
#
7
7
8
PORTNAME=	ogmrip
8
PORTNAME=	ogmrip
9
PORTVERSION=	0.13.7
9
PORTVERSION=	0.13.8
10
PORTREVISION?=	3
11
CATEGORIES=	multimedia
10
CATEGORIES=	multimedia
12
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTVERSION:R}/${PORTVERSION}
11
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTVERSION:R}/${PORTVERSION}
13
12
Lines 30-43 Link Here
30
		mplayer:${PORTSDIR}/multimedia/mplayer \
29
		mplayer:${PORTSDIR}/multimedia/mplayer \
31
		ogmmerge:${PORTSDIR}/multimedia/ogmtools
30
		ogmmerge:${PORTSDIR}/multimedia/ogmtools
32
31
33
OPTIONS=	GUI      "Build the GTK+ GUI"                           on  \
32
OPTIONS_DEFINE=	GTK2 ENCHANT MATROSKA MP4BOX THEORA FAAC SRT DEBUG
34
		ENCHANT  "Enable spell checking for text subtitles"     off \
33
OPTIONS_DEFAULT=GTK2
35
		MATROSKA "Enable Matroska container support"            off \
34
ENCHANT_DESC=	Enable spell checking for text subtitles
36
		MP4      "Enable Mpeg-4 container support"              off \
35
MATROSKA_DESC=	Enable Matroska container support
37
		THEORA   "Enable Ogg Theora video codec support"        off \
36
MP4BOX_DESC=	Enable Mpeg-4 container support
38
		FAAC     "Enable Advance Audio Coding (AAC) support"    off \
37
THEORA_DESC=	Enable Ogg Theora video codec support
39
		SRT      "Enable SRT text subtitles support"            off \
38
SRT_DESC=	Enable SRT text subtitles support
40
		DEBUG    "Enable debug"                                 off
41
39
42
USE_GNOME=	glib20 gnomehack intlhack libxml2
40
USE_GNOME=	glib20 gnomehack intlhack libxml2
43
USE_GETTEXT=	yes
41
USE_GETTEXT=	yes
Lines 51-73 Link Here
51
49
52
MAN1=		dvdcpy.1 avibox.1
50
MAN1=		dvdcpy.1 avibox.1
53
51
54
.include <bsd.port.pre.mk>
52
.include <bsd.port.options.mk>
55
53
56
.if defined(WITHOUT_GUI)
54
.if ${PORT_OPTIONS:MGTK2}
57
CONFIGURE_ARGS+=	--disable-gtk-support --disable-dbus-support \
58
			--disable-libnotify-support
59
PLIST_SUB+=		GUI_SUPPORT="@comment "
60
.else
61
CONFIGURE_ARGS+=	--enable-gtk-support --enable-dbus-support \
55
CONFIGURE_ARGS+=	--enable-gtk-support --enable-dbus-support \
62
			--enable-libnotify-support
56
			--enable-libnotify-support
63
LIB_DEPENDS+=		dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \
57
LIB_DEPENDS+=		dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \
64
			notify.4:${PORTSDIR}/devel/libnotify
58
			notify.4:${PORTSDIR}/devel/libnotify
65
USE_GNOME+=		gconf2 libglade2
59
USE_GNOME+=		gconf2 libglade2
66
GCONF_SCHEMAS=		ogmrip.schemas
60
GCONF_SCHEMAS=		ogmrip.schemas
67
PLIST_SUB+=		GUI_SUPPORT=""
61
PLIST_SUB+=		GTK2_SUPPORT=""
62
.else
63
CONFIGURE_ARGS+=	--disable-gtk-support --disable-dbus-support \
64
			--disable-libnotify-support
65
PLIST_SUB+=		GTK2_SUPPORT="@comment "
68
.endif
66
.endif
69
67
70
.if defined(WITH_ENCHANT)
68
.if ${PORT_OPTIONS:MENCHANT}
71
CONFIGURE_ARGS+=	--enable-enchant-support
69
CONFIGURE_ARGS+=	--enable-enchant-support
72
LIB_DEPENDS+=		enchant:${PORTSDIR}/textproc/enchant
70
LIB_DEPENDS+=		enchant:${PORTSDIR}/textproc/enchant
73
PLIST_SUB+=		ENCHANT_SUPPORT=""
71
PLIST_SUB+=		ENCHANT_SUPPORT=""
Lines 76-82 Link Here
76
PLIST_SUB+=		ENCHANT_SUPPORT="@comment "
74
PLIST_SUB+=		ENCHANT_SUPPORT="@comment "
77
.endif
75
.endif
78
76
79
.if defined(WITH_MATROSKA)
77
.if ${PORT_OPTIONS:MMATROSKA}
80
CONFIGURE_ARGS+=	--enable-mkv-support
78
CONFIGURE_ARGS+=	--enable-mkv-support
81
RUN_DEPENDS+=		mkvmerge:${PORTSDIR}/multimedia/mkvtoolnix
79
RUN_DEPENDS+=		mkvmerge:${PORTSDIR}/multimedia/mkvtoolnix
82
PLIST_SUB+=		MATROSKA_SUPPORT=""
80
PLIST_SUB+=		MATROSKA_SUPPORT=""
Lines 85-100 Link Here
85
PLIST_SUB+=		MATROSKA_SUPPORT="@comment "
83
PLIST_SUB+=		MATROSKA_SUPPORT="@comment "
86
.endif
84
.endif
87
85
88
.if defined(WITH_MP4)
86
.if ${PORT_OPTIONS:MMP4BOX}
89
CONFIGURE_ARGS+=	--enable-mp4-support
87
CONFIGURE_ARGS+=	--enable-mp4-support
90
RUN_DEPENDS+=		mp4box:${PORTSDIR}/multimedia/gpac-mp4box
88
RUN_DEPENDS+=		mp4box:${PORTSDIR}/multimedia/gpac-mp4box
91
PLIST_SUB+=		MP4_SUPPORT=""
89
PLIST_SUB+=		MP4BOX_SUPPORT=""
92
.else
90
.else
93
CONFIGURE_ARGS+=	--disable-mp4-support
91
CONFIGURE_ARGS+=	--disable-mp4-support
94
PLIST_SUB+=		MP4_SUPPORT="@comment "
92
PLIST_SUB+=		MP4BOX_SUPPORT="@comment "
95
.endif
93
.endif
96
94
97
.if defined(WITH_THEORA)
95
.if ${PORT_OPTIONS:MTHEORA}
98
CONFIGURE_ARGS+=	--enable-theora-support
96
CONFIGURE_ARGS+=	--enable-theora-support
99
LIB_DEPENDS+=		theora:${PORTSDIR}/multimedia/libtheora
97
LIB_DEPENDS+=		theora:${PORTSDIR}/multimedia/libtheora
100
PLIST_SUB+=		THEORA_SUPPORT=""
98
PLIST_SUB+=		THEORA_SUPPORT=""
Lines 103-109 Link Here
103
PLIST_SUB+=		THEORA_SUPPORT="@comment "
101
PLIST_SUB+=		THEORA_SUPPORT="@comment "
104
.endif
102
.endif
105
103
106
.if defined(WITH_FAAC)
104
.if ${PORT_OPTIONS:MFAAC}
107
CONFIGURE_ARGS+=	--enable-aac-support
105
CONFIGURE_ARGS+=	--enable-aac-support
108
RUN_DEPENDS+=		faac:${PORTSDIR}/audio/faac
106
RUN_DEPENDS+=		faac:${PORTSDIR}/audio/faac
109
PLIST_SUB+=		FAAC_SUPPORT=""
107
PLIST_SUB+=		FAAC_SUPPORT=""
Lines 112-118 Link Here
112
PLIST_SUB+=		FAAC_SUPPORT="@comment "
110
PLIST_SUB+=		FAAC_SUPPORT="@comment "
113
.endif
111
.endif
114
112
115
.if defined(WITH_SRT)
113
.if ${PORT_OPTIONS:MSRT}
116
CONFIGURE_ARGS+=	--enable-srt-support
114
CONFIGURE_ARGS+=	--enable-srt-support
117
RUN_DEPENDS+=		gocr:${PORTSDIR}/graphics/gocr
115
RUN_DEPENDS+=		gocr:${PORTSDIR}/graphics/gocr
118
MAN1+=			subp2pgm.1 subptools.1
116
MAN1+=			subp2pgm.1 subptools.1
Lines 122-128 Link Here
122
PLIST_SUB+=		SRT_SUPPORT="@comment "
120
PLIST_SUB+=		SRT_SUPPORT="@comment "
123
.endif
121
.endif
124
122
125
.if defined(WITH_DEBUG)
123
.if ${PORT_OPTIONS:MDEBUG}
126
CONFIGURE_ARGS+=	--enable-maintainer-mode --enable-devel-mode
124
CONFIGURE_ARGS+=	--enable-maintainer-mode --enable-devel-mode
127
.endif
125
.endif
128
126
Lines 146-149 Link Here
146
	@${CAT} ${PKGMESSAGE}
144
	@${CAT} ${PKGMESSAGE}
147
	@${ECHO_MSG} ""
145
	@${ECHO_MSG} ""
148
146
149
.include <bsd.port.post.mk>
147
.include <bsd.port.mk>
(-)multimedia/ogmrip/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (ogmrip-0.13.7.tar.gz) = 362060e4c1944f020f9a491d9a8af53cd3bf4f94d4f5beb8d3d855ebf17d9c2a
1
SHA256 (ogmrip-0.13.8.tar.gz) = ea6a75e6cc4fe7df1ed65648af208c87748959a6b372847b1005c3b92cc5a423
2
SIZE (ogmrip-0.13.7.tar.gz) = 3246395
2
SIZE (ogmrip-0.13.8.tar.gz) = 3254176
(-)multimedia/ogmrip/pkg-plist (-59 / +59 lines)
Lines 1-30 Link Here
1
bin/avibox
1
bin/avibox
2
bin/dvdcpy
2
bin/dvdcpy
3
%%GUI_SUPPORT%%bin/ogmrip
3
%%GTK2_SUPPORT%%bin/ogmrip
4
%%SRT_SUPPORT%%bin/subp2pgm
4
%%SRT_SUPPORT%%bin/subp2pgm
5
%%SRT_SUPPORT%%bin/subp2png
5
%%SRT_SUPPORT%%bin/subp2png
6
%%SRT_SUPPORT%%bin/subp2tiff
6
%%SRT_SUPPORT%%bin/subp2tiff
7
%%SRT_SUPPORT%%bin/subptools
7
%%SRT_SUPPORT%%bin/subptools
8
%%THEORA_SUPPORT%%bin/theoraenc
8
%%THEORA_SUPPORT%%bin/theoraenc
9
include/ogmdvd/ogmdvd-audio.h
9
include/ogmdvd/ogmdvd-audio.h
10
%%GUI_SUPPORT%%include/ogmdvd/ogmdvd-cell-renderer-language.h
10
%%GTK2_SUPPORT%%include/ogmdvd/ogmdvd-cell-renderer-language.h
11
%%GUI_SUPPORT%%include/ogmdvd/ogmdvd-chapter-list.h
11
%%GTK2_SUPPORT%%include/ogmdvd/ogmdvd-chapter-list.h
12
include/ogmdvd/ogmdvd-disc.h
12
include/ogmdvd/ogmdvd-disc.h
13
%%GUI_SUPPORT%%include/ogmdvd/ogmdvd-drive-chooser-dialog.h
13
%%GTK2_SUPPORT%%include/ogmdvd/ogmdvd-drive-chooser-dialog.h
14
%%GUI_SUPPORT%%include/ogmdvd/ogmdvd-drive-chooser-widget.h
14
%%GTK2_SUPPORT%%include/ogmdvd/ogmdvd-drive-chooser-widget.h
15
%%GUI_SUPPORT%%include/ogmdvd/ogmdvd-drive-chooser.h
15
%%GTK2_SUPPORT%%include/ogmdvd/ogmdvd-drive-chooser.h
16
include/ogmdvd/ogmdvd-drive.h
16
include/ogmdvd/ogmdvd-drive.h
17
include/ogmdvd/ogmdvd-enums.h
17
include/ogmdvd/ogmdvd-enums.h
18
%%GUI_SUPPORT%%include/ogmdvd/ogmdvd-gtk.h
18
%%GTK2_SUPPORT%%include/ogmdvd/ogmdvd-gtk.h
19
include/ogmdvd/ogmdvd-labels.h
19
include/ogmdvd/ogmdvd-labels.h
20
%%GUI_SUPPORT%%include/ogmdvd/ogmdvd-marshal.h
20
%%GTK2_SUPPORT%%include/ogmdvd/ogmdvd-marshal.h
21
include/ogmdvd/ogmdvd-monitor.h
21
include/ogmdvd/ogmdvd-monitor.h
22
include/ogmdvd/ogmdvd-parser.h
22
include/ogmdvd/ogmdvd-parser.h
23
include/ogmdvd/ogmdvd-reader.h
23
include/ogmdvd/ogmdvd-reader.h
24
include/ogmdvd/ogmdvd-stream.h
24
include/ogmdvd/ogmdvd-stream.h
25
include/ogmdvd/ogmdvd-subp.h
25
include/ogmdvd/ogmdvd-subp.h
26
%%GUI_SUPPORT%%include/ogmdvd/ogmdvd-title-chooser-widget.h
26
%%GTK2_SUPPORT%%include/ogmdvd/ogmdvd-title-chooser-widget.h
27
%%GUI_SUPPORT%%include/ogmdvd/ogmdvd-title-chooser.h
27
%%GTK2_SUPPORT%%include/ogmdvd/ogmdvd-title-chooser.h
28
include/ogmdvd/ogmdvd-title.h
28
include/ogmdvd/ogmdvd-title.h
29
include/ogmdvd/ogmdvd-types.h
29
include/ogmdvd/ogmdvd-types.h
30
include/ogmdvd/ogmdvd.h
30
include/ogmdvd/ogmdvd.h
Lines 39-47 Link Here
39
include/ogmjob/ogmjob-spawn.h
39
include/ogmjob/ogmjob-spawn.h
40
include/ogmjob/ogmjob.h
40
include/ogmjob/ogmjob.h
41
include/ogmrip/ogmrip-audio-codec.h
41
include/ogmrip/ogmrip-audio-codec.h
42
%%GUI_SUPPORT%%include/ogmrip/ogmrip-chapter-list.h
42
%%GTK2_SUPPORT%%include/ogmrip/ogmrip-chapter-list.h
43
include/ogmrip/ogmrip-chapters.h
43
include/ogmrip/ogmrip-chapters.h
44
%%GUI_SUPPORT%%include/ogmrip/ogmrip-chooser-list.h
44
%%GTK2_SUPPORT%%include/ogmrip/ogmrip-chooser-list.h
45
include/ogmrip/ogmrip-codec.h
45
include/ogmrip/ogmrip-codec.h
46
include/ogmrip/ogmrip-container.h
46
include/ogmrip/ogmrip-container.h
47
include/ogmrip/ogmrip-dvdcpy.h
47
include/ogmrip/ogmrip-dvdcpy.h
Lines 51-79 Link Here
51
include/ogmrip/ogmrip-enums.h
51
include/ogmrip/ogmrip-enums.h
52
include/ogmrip/ogmrip-file.h
52
include/ogmrip/ogmrip-file.h
53
include/ogmrip/ogmrip-fs.h
53
include/ogmrip/ogmrip-fs.h
54
%%GUI_SUPPORT%%include/ogmrip/ogmrip-gconf-settings.h
54
%%GTK2_SUPPORT%%include/ogmrip/ogmrip-gconf-settings.h
55
%%GUI_SUPPORT%%include/ogmrip/ogmrip-gtk.h
55
%%GTK2_SUPPORT%%include/ogmrip/ogmrip-gtk.h
56
include/ogmrip/ogmrip-hardsub.h
56
include/ogmrip/ogmrip-hardsub.h
57
%%GUI_SUPPORT%%include/ogmrip/ogmrip-helper.h
57
%%GTK2_SUPPORT%%include/ogmrip/ogmrip-helper.h
58
include/ogmrip/ogmrip-keyfile-settings.h
58
include/ogmrip/ogmrip-keyfile-settings.h
59
include/ogmrip/ogmrip-lavc.h
59
include/ogmrip/ogmrip-lavc.h
60
include/ogmrip/ogmrip-mplayer.h
60
include/ogmrip/ogmrip-mplayer.h
61
include/ogmrip/ogmrip-novideo.h
61
include/ogmrip/ogmrip-novideo.h
62
%%GUI_SUPPORT%%include/ogmrip/ogmrip-options-plugin.h
62
%%GTK2_SUPPORT%%include/ogmrip/ogmrip-options-plugin.h
63
include/ogmrip/ogmrip-options.h
63
include/ogmrip/ogmrip-options.h
64
include/ogmrip/ogmrip-player.h
64
include/ogmrip/ogmrip-player.h
65
include/ogmrip/ogmrip-plugin.h
65
include/ogmrip/ogmrip-plugin.h
66
include/ogmrip/ogmrip-settings.h
66
include/ogmrip/ogmrip-settings.h
67
%%GUI_SUPPORT%%include/ogmrip/ogmrip-source-chooser-widget.h
67
%%GTK2_SUPPORT%%include/ogmrip/ogmrip-source-chooser-widget.h
68
%%GUI_SUPPORT%%include/ogmrip/ogmrip-source-chooser.h
68
%%GTK2_SUPPORT%%include/ogmrip/ogmrip-source-chooser.h
69
include/ogmrip/ogmrip-subp-codec.h
69
include/ogmrip/ogmrip-subp-codec.h
70
include/ogmrip/ogmrip-version.h
70
include/ogmrip/ogmrip-version.h
71
include/ogmrip/ogmrip-video-codec.h
71
include/ogmrip/ogmrip-video-codec.h
72
include/ogmrip/ogmrip.h
72
include/ogmrip/ogmrip.h
73
%%GUI_SUPPORT%%lib/libogmdvd-gtk.a
73
%%GTK2_SUPPORT%%lib/libogmdvd-gtk.a
74
%%GUI_SUPPORT%%lib/libogmdvd-gtk.la
74
%%GTK2_SUPPORT%%lib/libogmdvd-gtk.la
75
%%GUI_SUPPORT%%lib/libogmdvd-gtk.so
75
%%GTK2_SUPPORT%%lib/libogmdvd-gtk.so
76
%%GUI_SUPPORT%%lib/libogmdvd-gtk.so.1
76
%%GTK2_SUPPORT%%lib/libogmdvd-gtk.so.1
77
lib/libogmdvd.a
77
lib/libogmdvd.a
78
lib/libogmdvd.la
78
lib/libogmdvd.la
79
lib/libogmdvd.so
79
lib/libogmdvd.so
Lines 82-91 Link Here
82
lib/libogmjob.la
82
lib/libogmjob.la
83
lib/libogmjob.so
83
lib/libogmjob.so
84
lib/libogmjob.so.1
84
lib/libogmjob.so.1
85
%%GUI_SUPPORT%%lib/libogmrip-gtk.a
85
%%GTK2_SUPPORT%%lib/libogmrip-gtk.a
86
%%GUI_SUPPORT%%lib/libogmrip-gtk.la
86
%%GTK2_SUPPORT%%lib/libogmrip-gtk.la
87
%%GUI_SUPPORT%%lib/libogmrip-gtk.so
87
%%GTK2_SUPPORT%%lib/libogmrip-gtk.so
88
%%GUI_SUPPORT%%lib/libogmrip-gtk.so.1
88
%%GTK2_SUPPORT%%lib/libogmrip-gtk.so.1
89
lib/libogmrip-lavc.a
89
lib/libogmrip-lavc.a
90
lib/libogmrip-lavc.la
90
lib/libogmrip-lavc.la
91
lib/libogmrip-lavc.so
91
lib/libogmrip-lavc.so
Lines 122-142 Link Here
122
lib/ogmrip/container-plugins/libogmrip-mov.a
122
lib/ogmrip/container-plugins/libogmrip-mov.a
123
lib/ogmrip/container-plugins/libogmrip-mov.la
123
lib/ogmrip/container-plugins/libogmrip-mov.la
124
lib/ogmrip/container-plugins/libogmrip-mov.so
124
lib/ogmrip/container-plugins/libogmrip-mov.so
125
%%MP4_SUPPORT%%lib/ogmrip/container-plugins/libogmrip-mp4.a
125
%%MP4BOX_SUPPORT%%lib/ogmrip/container-plugins/libogmrip-mp4.a
126
%%MP4_SUPPORT%%lib/ogmrip/container-plugins/libogmrip-mp4.la
126
%%MP4BOX_SUPPORT%%lib/ogmrip/container-plugins/libogmrip-mp4.la
127
%%MP4_SUPPORT%%lib/ogmrip/container-plugins/libogmrip-mp4.so
127
%%MP4BOX_SUPPORT%%lib/ogmrip/container-plugins/libogmrip-mp4.so
128
lib/ogmrip/container-plugins/libogmrip-ogg.a
128
lib/ogmrip/container-plugins/libogmrip-ogg.a
129
lib/ogmrip/container-plugins/libogmrip-ogg.la
129
lib/ogmrip/container-plugins/libogmrip-ogg.la
130
lib/ogmrip/container-plugins/libogmrip-ogg.so
130
lib/ogmrip/container-plugins/libogmrip-ogg.so
131
%%GUI_SUPPORT%%lib/ogmrip/options-plugins/libogmrip-lavc-options.a
131
%%GTK2_SUPPORT%%lib/ogmrip/options-plugins/libogmrip-lavc-options.a
132
%%GUI_SUPPORT%%lib/ogmrip/options-plugins/libogmrip-lavc-options.la
132
%%GTK2_SUPPORT%%lib/ogmrip/options-plugins/libogmrip-lavc-options.la
133
%%GUI_SUPPORT%%lib/ogmrip/options-plugins/libogmrip-lavc-options.so
133
%%GTK2_SUPPORT%%lib/ogmrip/options-plugins/libogmrip-lavc-options.so
134
%%GUI_SUPPORT%%lib/ogmrip/options-plugins/libogmrip-x264-options.a
134
%%GTK2_SUPPORT%%lib/ogmrip/options-plugins/libogmrip-x264-options.a
135
%%GUI_SUPPORT%%lib/ogmrip/options-plugins/libogmrip-x264-options.la
135
%%GTK2_SUPPORT%%lib/ogmrip/options-plugins/libogmrip-x264-options.la
136
%%GUI_SUPPORT%%lib/ogmrip/options-plugins/libogmrip-x264-options.so
136
%%GTK2_SUPPORT%%lib/ogmrip/options-plugins/libogmrip-x264-options.so
137
%%GUI_SUPPORT%%lib/ogmrip/options-plugins/libogmrip-xvid-options.a
137
%%GTK2_SUPPORT%%lib/ogmrip/options-plugins/libogmrip-xvid-options.a
138
%%GUI_SUPPORT%%lib/ogmrip/options-plugins/libogmrip-xvid-options.la
138
%%GTK2_SUPPORT%%lib/ogmrip/options-plugins/libogmrip-xvid-options.la
139
%%GUI_SUPPORT%%lib/ogmrip/options-plugins/libogmrip-xvid-options.so
139
%%GTK2_SUPPORT%%lib/ogmrip/options-plugins/libogmrip-xvid-options.so
140
%%SRT_SUPPORT%%lib/ogmrip/subp-plugins/libogmrip-srt.a
140
%%SRT_SUPPORT%%lib/ogmrip/subp-plugins/libogmrip-srt.a
141
%%SRT_SUPPORT%%lib/ogmrip/subp-plugins/libogmrip-srt.la
141
%%SRT_SUPPORT%%lib/ogmrip/subp-plugins/libogmrip-srt.la
142
%%SRT_SUPPORT%%lib/ogmrip/subp-plugins/libogmrip-srt.so
142
%%SRT_SUPPORT%%lib/ogmrip/subp-plugins/libogmrip-srt.so
Lines 163-197 Link Here
163
libdata/pkgconfig/ogmjob.pc
163
libdata/pkgconfig/ogmjob.pc
164
libdata/pkgconfig/ogmrip-gtk.pc
164
libdata/pkgconfig/ogmrip-gtk.pc
165
libdata/pkgconfig/ogmrip.pc
165
libdata/pkgconfig/ogmrip.pc
166
%%GUI_SUPPORT%%share/applications/ogmrip.desktop
166
%%GTK2_SUPPORT%%share/applications/ogmrip.desktop
167
share/locale/cs/LC_MESSAGES/ogmrip.mo
167
share/locale/cs/LC_MESSAGES/ogmrip.mo
168
share/locale/de/LC_MESSAGES/ogmrip.mo
168
share/locale/de/LC_MESSAGES/ogmrip.mo
169
share/locale/fr/LC_MESSAGES/ogmrip.mo
169
share/locale/fr/LC_MESSAGES/ogmrip.mo
170
share/locale/nb/LC_MESSAGES/ogmrip.mo
170
share/locale/nb/LC_MESSAGES/ogmrip.mo
171
share/locale/ru/LC_MESSAGES/ogmrip.mo
171
share/locale/ru/LC_MESSAGES/ogmrip.mo
172
share/locale/sk/LC_MESSAGES/ogmrip.mo
172
share/locale/sk/LC_MESSAGES/ogmrip.mo
173
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-crop.glade
173
%%GTK2_SUPPORT%%%%DATADIR%%/ogmrip-crop.glade
174
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-lavc.glade
174
%%GTK2_SUPPORT%%%%DATADIR%%/ogmrip-lavc.glade
175
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-main.glade
175
%%GTK2_SUPPORT%%%%DATADIR%%/ogmrip-main.glade
176
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-options.glade
176
%%GTK2_SUPPORT%%%%DATADIR%%/ogmrip-options.glade
177
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-pref.glade
177
%%GTK2_SUPPORT%%%%DATADIR%%/ogmrip-pref.glade
178
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-profile-editor.glade
178
%%GTK2_SUPPORT%%%%DATADIR%%/ogmrip-profile-editor.glade
179
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-profiles.glade
179
%%GTK2_SUPPORT%%%%DATADIR%%/ogmrip-profiles.glade
180
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-progress.glade
180
%%GTK2_SUPPORT%%%%DATADIR%%/ogmrip-progress.glade
181
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-queue.glade
181
%%GTK2_SUPPORT%%%%DATADIR%%/ogmrip-queue.glade
182
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-spell.glade
182
%%GTK2_SUPPORT%%%%DATADIR%%/ogmrip-spell.glade
183
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-ui.xml
183
%%GTK2_SUPPORT%%%%DATADIR%%/ogmrip-ui.xml
184
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-update.glade
184
%%GTK2_SUPPORT%%%%DATADIR%%/ogmrip-update.glade
185
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-x264.glade
185
%%GTK2_SUPPORT%%%%DATADIR%%/ogmrip-x264.glade
186
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-xvid.glade
186
%%GTK2_SUPPORT%%%%DATADIR%%/ogmrip-xvid.glade
187
%%GUI_SUPPORT%%%%DATADIR%%/profiles/profiles.xml
187
%%GTK2_SUPPORT%%%%DATADIR%%/profiles/profiles.xml
188
%%GUI_SUPPORT%%share/pixmaps/ogmrip.png
188
%%GTK2_SUPPORT%%share/pixmaps/ogmrip.png
189
%%GUI_SUPPORT%%@dirrm %%DATADIR%%/profiles
189
%%GTK2_SUPPORT%%@dirrm %%DATADIR%%/profiles
190
%%GUI_SUPPORT%%@dirrm %%DATADIR%%
190
%%GTK2_SUPPORT%%@dirrm %%DATADIR%%
191
%%GUI_SUPPORT%%@dirrmtry share/applications
191
%%GTK2_SUPPORT%%@dirrmtry share/applications
192
@dirrm lib/ogmrip/video-plugins
192
@dirrm lib/ogmrip/video-plugins
193
@dirrm lib/ogmrip/subp-plugins
193
@dirrm lib/ogmrip/subp-plugins
194
%%GUI_SUPPORT%%@dirrm lib/ogmrip/options-plugins
194
%%GTK2_SUPPORT%%@dirrm lib/ogmrip/options-plugins
195
@dirrm lib/ogmrip/container-plugins
195
@dirrm lib/ogmrip/container-plugins
196
@dirrm lib/ogmrip/audio-plugins
196
@dirrm lib/ogmrip/audio-plugins
197
@dirrm lib/ogmrip
197
@dirrm lib/ogmrip

Return to bug 168603