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

(-)multimedia/ogmrip/Makefile (-64 / +55 lines)
Lines 6-33 Link Here
6
#
6
#
7
7
8
PORTNAME=	ogmrip
8
PORTNAME=	ogmrip
9
PORTVERSION=	0.11.2
9
PORTVERSION=	0.12.0
10
PORTREVISION=	1
11
CATEGORIES=	multimedia
10
CATEGORIES=	multimedia
12
MASTER_SITES=	SF
11
MASTER_SITES=	SF
13
12
14
MAINTAINER=	ports@FreeBSD.org
13
MAINTAINER=	ports@FreeBSD.org
15
COMMENT=	Application and libraries for encoding DVDs into DivX/OGM files
14
COMMENT=	Application and libraries for encoding DVDs into DivX/OGM files
16
15
17
BUILD_DEPENDS=	lame:${PORTSDIR}/audio/lame \
16
BUILD_DEPENDS=	mencoder:${PORTSDIR}/multimedia/mencoder \
18
		oggenc:${PORTSDIR}/audio/vorbis-tools \
19
		mencoder:${PORTSDIR}/multimedia/mencoder \
20
		ogmmerge:${PORTSDIR}/multimedia/ogmtools \
21
		gsed:${PORTSDIR}/textproc/gsed
17
		gsed:${PORTSDIR}/textproc/gsed
22
LIB_DEPENDS=	enca.5:${PORTSDIR}/converters/enca \
18
LIB_DEPENDS=	enca.5:${PORTSDIR}/converters/enca \
23
		notify.1:${PORTSDIR}/devel/libnotify \
19
		dvdread.5:${PORTSDIR}/multimedia/libdvdread
24
		dvdread.5:${PORTSDIR}/multimedia/libdvdread \
25
		x264:${PORTSDIR}/multimedia/x264
26
RUN_DEPENDS=	lame:${PORTSDIR}/audio/lame \
20
RUN_DEPENDS=	lame:${PORTSDIR}/audio/lame \
27
		oggenc:${PORTSDIR}/audio/vorbis-tools \
21
		oggenc:${PORTSDIR}/audio/vorbis-tools \
28
		mencoder:${PORTSDIR}/multimedia/mencoder \
22
		mencoder:${PORTSDIR}/multimedia/mencoder \
29
		ogmmerge:${PORTSDIR}/multimedia/ogmtools
23
		ogmmerge:${PORTSDIR}/multimedia/ogmtools
30
24
25
OPTIONS=	GUI      "Build the GTK+ GUI"                           on  \
26
		HAL      "Enable Hardware Abstract Layer (HAL) support" off \
27
		ENCHANT  "Enable spell checking for text subtitles"     off \
28
		MATROSKA "Enable Matroska container support"            off \
29
		MP4      "Enable Mpeg-4 container support"              off \
30
		THEORA   "Enable Ogg Theora video codec support"        off \
31
		FAAC     "Enable Advance Audio Coding (AAC) support"    off \
32
		SRT      "Enable SRT text subtitles support"            off \
33
		DEBUG    "Enable debug"                                 off
34
31
USE_GNOME=	glib20 gnomehack libxml2
35
USE_GNOME=	glib20 gnomehack libxml2
32
USE_GETTEXT=	yes
36
USE_GETTEXT=	yes
33
USE_GMAKE=	yes
37
USE_GMAKE=	yes
Lines 39-67 Link Here
39
43
40
MAN1=		dvdcpy.1
44
MAN1=		dvdcpy.1
41
45
42
OPTIONS=	GUI		"Build the GTK+ GUI"				on  \
43
		HAL		"Enable Hardware Abstract Layer (HAL) support"	off \
44
		FAAC		"Enable Advance Audio Coding (AAC) support"	off \
45
		SRT		"Enable SRT text subtitles support"		off \
46
		ENCHANT		"Enable spell checking for text subtitles"	off \
47
		THEORA		"Enable Ogg Theora video codec support"		off \
48
		MATROSKA	"Enable Matroska container support"		off \
49
		DEBUG		"Enable debug"					off
50
51
.include <bsd.port.pre.mk>
46
.include <bsd.port.pre.mk>
52
47
53
.if defined(WITH_DEBUG)
54
CONFIGURE_ARGS+=	--enable-maintainer-mode --enable-devel-mode
55
.endif
56
57
.if defined(WITHOUT_GUI)
48
.if defined(WITHOUT_GUI)
58
CONFIGURE_ARGS+=	--disable-gtk-support
49
CONFIGURE_ARGS+=	--disable-gtk-support --disable-libnotify-support
59
PLIST_SUB+=		GUI_SUPPORT="@comment "
50
PLIST_SUB+=		GUI_SUPPORT="@comment "
60
.else
51
.else
61
CONFIGURE_ARGS+=	--enable-gtk-support
52
CONFIGURE_ARGS+=	--enable-gtk-support --enable-libnotify-support
62
PLIST_SUB+=		GUI_SUPPORT=""
53
LIB_DEPENDS+=		notify.1:${PORTSDIR}/devel/libnotify
63
USE_GNOME+=		libglade2 gconf2 intlhack
54
USE_GNOME+=		gconf2 intlhack libglade2
64
GCONF_SCHEMAS=		ogmrip.schemas
55
GCONF_SCHEMAS=		ogmrip.schemas
56
PLIST_SUB+=		GUI_SUPPORT=""
65
.endif
57
.endif
66
58
67
.if defined(WITH_HAL)
59
.if defined(WITH_HAL)
Lines 73-91 Link Here
73
PLIST_SUB+=		HAL_SUPPORT="@comment "
65
PLIST_SUB+=		HAL_SUPPORT="@comment "
74
.endif
66
.endif
75
67
68
.if defined(WITH_ENCHANT)
69
CONFIGURE_ARGS+=	--enable-enchant-support
70
LIB_DEPENDS+=		enchant:${PORTSDIR}/textproc/enchant
71
PLIST_SUB+=		ENCHANT_SUPPORT=""
72
.else
73
CONFIGURE_ARGS+=	--disable-enchant-support
74
PLIST_SUB+=		ENCHANT_SUPPORT="@comment "
75
.endif
76
76
.if defined(WITH_MATROSKA)
77
.if defined(WITH_MATROSKA)
77
CONFIGURE_ARGS+=	--enable-matroska-support
78
CONFIGURE_ARGS+=	--enable-mkv-support
78
BUILD_DEPENDS+=		mkvmerge:${PORTSDIR}/multimedia/mkvtoolnix
79
RUN_DEPENDS+=		mkvmerge:${PORTSDIR}/multimedia/mkvtoolnix
79
RUN_DEPENDS+=		mkvmerge:${PORTSDIR}/multimedia/mkvtoolnix
80
PLIST_SUB+=		MATROSKA_SUPPORT=""
80
PLIST_SUB+=		MATROSKA_SUPPORT=""
81
.else
81
.else
82
CONFIGURE_ARGS+=	--disable-matroska-support
82
CONFIGURE_ARGS+=	--disable-mkv-support
83
PLIST_SUB+=		MATROSKA_SUPPORT="@comment "
83
PLIST_SUB+=		MATROSKA_SUPPORT="@comment "
84
.endif
84
.endif
85
85
86
.if defined(WITH_MP4)
87
CONFIGURE_ARGS+=	--enable-mp4-support
88
RUN_DEPENDS+=		mp4box:${PORTSDIR}/multimedia/gpac-mp4box
89
PLIST_SUB+=		MP4_SUPPORT=""
90
.else
91
CONFIGURE_ARGS+=	--disable-mp4-support
92
PLIST_SUB+=		MP4_SUPPORT="@comment "
93
.endif
94
95
.if defined(WITH_THEORA)
96
CONFIGURE_ARGS+=	--enable-theora-support
97
LIB_DEPENDS+=		theora:${PORTSDIR}/multimedia/libtheora
98
PLIST_SUB+=		THEORA_SUPPORT=""
99
.else
100
CONFIGURE_ARGS+=	--disable-theora-support
101
PLIST_SUB+=		THEORA_SUPPORT="@comment "
102
.endif
103
86
.if defined(WITH_FAAC)
104
.if defined(WITH_FAAC)
87
CONFIGURE_ARGS+=	--enable-aac-support
105
CONFIGURE_ARGS+=	--enable-aac-support
88
BUILD_DEPENDS+=		faac:${PORTSDIR}/audio/faac
89
RUN_DEPENDS+=		faac:${PORTSDIR}/audio/faac
106
RUN_DEPENDS+=		faac:${PORTSDIR}/audio/faac
90
PLIST_SUB+=		FAAC_SUPPORT=""
107
PLIST_SUB+=		FAAC_SUPPORT=""
91
.else
108
.else
Lines 95-135 Link Here
95
112
96
.if defined(WITH_SRT)
113
.if defined(WITH_SRT)
97
CONFIGURE_ARGS+=	--enable-srt-support
114
CONFIGURE_ARGS+=	--enable-srt-support
98
BUILD_DEPENDS+=		gocr:${PORTSDIR}/graphics/gocr
99
RUN_DEPENDS+=		gocr:${PORTSDIR}/graphics/gocr
115
RUN_DEPENDS+=		gocr:${PORTSDIR}/graphics/gocr
116
MAN1+=			subp2pgm.1 subptools.1
100
PLIST_SUB+=		SRT_SUPPORT=""
117
PLIST_SUB+=		SRT_SUPPORT=""
101
.else
118
.else
102
CONFIGURE_ARGS+=	--disable-srt-support
119
CONFIGURE_ARGS+=	--disable-srt-support
103
PLIST_SUB+=		SRT_SUPPORT="@comment "
120
PLIST_SUB+=		SRT_SUPPORT="@comment "
104
.endif
121
.endif
105
122
106
.if defined(WITH_THEORA)
123
.if defined(WITH_DEBUG)
107
CONFIGURE_ARGS+=	--enable-theora-support
124
CONFIGURE_ARGS+=	--enable-maintainer-mode --enable-devel-mode
108
LIB_DEPENDS+=		theora:${PORTSDIR}/multimedia/libtheora
109
PLIST_SUB+=		THEORA_SUPPORT=""
110
.else
111
CONFIGURE_ARGS+=	--disable-theora-support
112
PLIST_SUB+=		THEORA_SUPPORT="@comment "
113
.endif
114
115
.if defined(WITH_ENCHANT)
116
CONFIGURE_ARGS+=	--enable-enchant-support
117
LIB_DEPENDS+=		enchant:${PORTSDIR}/textproc/enchant
118
PLIST_SUB+=		ENCHANT_SUPPORT=""
119
.else
120
CONFIGURE_ARGS+=	--disable-enchant-support
121
PLIST_SUB+=		ENCHANT_SUPPORT="@comment "
122
.endif
125
.endif
123
126
124
X264_SUPPORT!=		${LOCALBASE}/bin/mencoder -ovc help 2> /dev/null | \
127
pre-everything::
125
				${GREP} -q '^ *x264 *- .*$$' && \
128
	@${ECHO_MSG} ""
126
	  			${ECHO_CMD} "" || ${ECHO_CMD} "@comment "
129
	@${ECHO_MSG} "This port requires a version of MEncoder compiled with XviD and/or"
127
PLIST_SUB+=		X264_SUPPORT="${X264_SUPPORT}"
130
	@${ECHO_MSG} "x264 support if you want to use these codecs."
128
131
	@${ECHO_MSG} ""
129
LAVF_SUPPORT!=		${LOCALBASE}/bin/mencoder -of help 2> /dev/null | \
130
				${GREP} -q '^ *lavf *- .*$$' && \
131
	  			${ECHO_CMD} "" || ${ECHO_CMD} "@comment "
132
PLIST_SUB+=		LAVF_SUPPORT="${LAVF_SUPPORT}"
133
132
134
post-patch:
133
post-patch:
135
	@${REINPLACE_CMD} -e 's|^CFLAGS=|#CFLAGS=|g ; \
134
	@${REINPLACE_CMD} -e 's|^CFLAGS=|#CFLAGS=|g ; \
Lines 137-150 Link Here
137
		 s|^LDFLAGS=|#LDFLAGS|g' ${WRKSRC}/configure
136
		 s|^LDFLAGS=|#LDFLAGS|g' ${WRKSRC}/configure
138
	@${REINPLACE_CMD} -e 's|^SUBDIRS|#SUBDIRS|g' ${WRKSRC}/docs/Makefile.in
137
	@${REINPLACE_CMD} -e 's|^SUBDIRS|#SUBDIRS|g' ${WRKSRC}/docs/Makefile.in
139
138
140
pre-configure:
141
	@if ${LOCALBASE}/mencoder -ovc help 2> /dev/null | ${GREP} -q "^ *xvid *- .*" ; then \
142
	  ${ECHO_MSG} "" ; \
143
	  ${ECHO_MSG} "This port requires a version of MEncoder compiled with XviD support." ; \
144
	  ${ECHO_MSG} "" ; \
145
	  ${FALSE} ; \
146
	fi
147
148
post-install:
139
post-install:
149
	@${ECHO_CMD} ""
140
	@${ECHO_CMD} ""
150
	@${CAT} ${PKGMESSAGE}
141
	@${CAT} ${PKGMESSAGE}
(-)multimedia/ogmrip/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (ogmrip-0.11.2.tar.gz) = fa9123dee79af4b51e959695a2b99124
1
MD5 (ogmrip-0.12.0.tar.gz) = 092a14dd7d95e13818fb8876f1a16f1a
2
SHA256 (ogmrip-0.11.2.tar.gz) = 6622721d58ed5b0eced2eeddcc60244788db164517df055c16c19dcb1a13011b
2
SHA256 (ogmrip-0.12.0.tar.gz) = df7f8f6cf1c59f15da7d9b87207014dedd12ea844510955300625b440628b53b
3
SIZE (ogmrip-0.11.2.tar.gz) = 1893441
3
SIZE (ogmrip-0.12.0.tar.gz) = 2911954
(-)multimedia/ogmrip/pkg-plist (-57 / +80 lines)
Lines 1-7 Link Here
1
bin/dvdcpy
1
bin/dvdcpy
2
%%GUI_SUPPORT%%bin/ogmrip
2
%%GUI_SUPPORT%%bin/ogmrip
3
%%SRT_SUPPORT%%bin/srtutil
4
%%SRT_SUPPORT%%bin/subp2pgm
3
%%SRT_SUPPORT%%bin/subp2pgm
4
%%SRT_SUPPORT%%bin/subp2png
5
%%SRT_SUPPORT%%bin/subp2tiff
6
%%SRT_SUPPORT%%bin/subptools
5
%%THEORA_SUPPORT%%bin/theoraenc
7
%%THEORA_SUPPORT%%bin/theoraenc
6
include/ogmdvd/ogmdvd-audio.h
8
include/ogmdvd/ogmdvd-audio.h
7
%%GUI_SUPPORT%%include/ogmdvd/ogmdvd-chapter-list.h
9
%%GUI_SUPPORT%%include/ogmdvd/ogmdvd-chapter-list.h
Lines 12-17 Link Here
12
include/ogmdvd/ogmdvd-enums.h
14
include/ogmdvd/ogmdvd-enums.h
13
%%GUI_SUPPORT%%include/ogmdvd/ogmdvd-gtk.h
15
%%GUI_SUPPORT%%include/ogmdvd/ogmdvd-gtk.h
14
include/ogmdvd/ogmdvd-labels.h
16
include/ogmdvd/ogmdvd-labels.h
17
include/ogmdvd/ogmdvd-parser.h
18
include/ogmdvd/ogmdvd-reader.h
15
include/ogmdvd/ogmdvd-stream.h
19
include/ogmdvd/ogmdvd-stream.h
16
include/ogmdvd/ogmdvd-subp.h
20
include/ogmdvd/ogmdvd-subp.h
17
%%GUI_SUPPORT%%include/ogmdvd/ogmdvd-title-chooser-widget.h
21
%%GUI_SUPPORT%%include/ogmdvd/ogmdvd-title-chooser-widget.h
Lines 29-35 Link Here
29
include/ogmjob/ogmjob-queue.h
33
include/ogmjob/ogmjob-queue.h
30
include/ogmjob/ogmjob-spawn.h
34
include/ogmjob/ogmjob-spawn.h
31
include/ogmjob/ogmjob.h
35
include/ogmjob/ogmjob.h
32
include/ogmrip/ogmrip-audio.h
36
include/ogmrip/ogmrip-audio-codec.h
33
%%GUI_SUPPORT%%include/ogmrip/ogmrip-chapter-list.h
37
%%GUI_SUPPORT%%include/ogmrip/ogmrip-chapter-list.h
34
include/ogmrip/ogmrip-chapters.h
38
include/ogmrip/ogmrip-chapters.h
35
%%GUI_SUPPORT%%include/ogmrip/ogmrip-chooser-list.h
39
%%GUI_SUPPORT%%include/ogmrip/ogmrip-chooser-list.h
Lines 42-56 Link Here
42
include/ogmrip/ogmrip-fs.h
46
include/ogmrip/ogmrip-fs.h
43
%%GUI_SUPPORT%%include/ogmrip/ogmrip-gtk.h
47
%%GUI_SUPPORT%%include/ogmrip/ogmrip-gtk.h
44
%%GUI_SUPPORT%%include/ogmrip/ogmrip-helper.h
48
%%GUI_SUPPORT%%include/ogmrip/ogmrip-helper.h
49
include/ogmrip/ogmrip-lavc.h
45
%%GUI_SUPPORT%%include/ogmrip/ogmrip-marshal.h
50
%%GUI_SUPPORT%%include/ogmrip/ogmrip-marshal.h
46
include/ogmrip/ogmrip-mplayer.h
51
include/ogmrip/ogmrip-mplayer.h
52
%%GUI_SUPPORT%%include/ogmrip/ogmrip-options-plugin.h
47
include/ogmrip/ogmrip-plugin.h
53
include/ogmrip/ogmrip-plugin.h
48
%%GUI_SUPPORT%%include/ogmrip/ogmrip-preferences.h
54
%%GUI_SUPPORT%%include/ogmrip/ogmrip-preferences.h
49
%%GUI_SUPPORT%%include/ogmrip/ogmrip-source-chooser-widget.h
55
%%GUI_SUPPORT%%include/ogmrip/ogmrip-source-chooser-widget.h
50
%%GUI_SUPPORT%%include/ogmrip/ogmrip-source-chooser.h
56
%%GUI_SUPPORT%%include/ogmrip/ogmrip-source-chooser.h
51
include/ogmrip/ogmrip-subp.h
57
include/ogmrip/ogmrip-subp-codec.h
52
include/ogmrip/ogmrip-version.h
58
include/ogmrip/ogmrip-version.h
53
include/ogmrip/ogmrip-video.h
59
include/ogmrip/ogmrip-video-codec.h
54
include/ogmrip/ogmrip.h
60
include/ogmrip/ogmrip.h
55
%%GUI_SUPPORT%%lib/libogmdvd-gtk.a
61
%%GUI_SUPPORT%%lib/libogmdvd-gtk.a
56
%%GUI_SUPPORT%%lib/libogmdvd-gtk.la
62
%%GUI_SUPPORT%%lib/libogmdvd-gtk.la
Lines 68-73 Link Here
68
%%GUI_SUPPORT%%lib/libogmrip-gtk.la
74
%%GUI_SUPPORT%%lib/libogmrip-gtk.la
69
%%GUI_SUPPORT%%lib/libogmrip-gtk.so
75
%%GUI_SUPPORT%%lib/libogmrip-gtk.so
70
%%GUI_SUPPORT%%lib/libogmrip-gtk.so.0
76
%%GUI_SUPPORT%%lib/libogmrip-gtk.so.0
77
lib/libogmrip-lavc.a
78
lib/libogmrip-lavc.la
79
lib/libogmrip-lavc.so
80
lib/libogmrip-lavc.so.0
71
lib/libogmrip-mplayer.a
81
lib/libogmrip-mplayer.a
72
lib/libogmrip-mplayer.la
82
lib/libogmrip-mplayer.la
73
lib/libogmrip-mplayer.so
83
lib/libogmrip-mplayer.so
Lines 76-129 Link Here
76
lib/libogmrip.la
86
lib/libogmrip.la
77
lib/libogmrip.so
87
lib/libogmrip.so
78
lib/libogmrip.so.0
88
lib/libogmrip.so.0
79
%%FAAC_SUPPORT%%lib/ogmrip/audio-codecs/libogmrip-aac.a
89
%%FAAC_SUPPORT%%lib/ogmrip/audio-plugins/libogmrip-aac.a
80
%%FAAC_SUPPORT%%lib/ogmrip/audio-codecs/libogmrip-aac.la
90
%%FAAC_SUPPORT%%lib/ogmrip/audio-plugins/libogmrip-aac.la
81
%%FAAC_SUPPORT%%lib/ogmrip/audio-codecs/libogmrip-aac.so
91
%%FAAC_SUPPORT%%lib/ogmrip/audio-plugins/libogmrip-aac.so
82
lib/ogmrip/audio-codecs/libogmrip-acopy.a
92
lib/ogmrip/audio-plugins/libogmrip-acopy.a
83
lib/ogmrip/audio-codecs/libogmrip-acopy.la
93
lib/ogmrip/audio-plugins/libogmrip-acopy.la
84
lib/ogmrip/audio-codecs/libogmrip-acopy.so
94
lib/ogmrip/audio-plugins/libogmrip-acopy.so
85
lib/ogmrip/audio-codecs/libogmrip-mp3.a
95
lib/ogmrip/audio-plugins/libogmrip-mp3.a
86
lib/ogmrip/audio-codecs/libogmrip-mp3.la
96
lib/ogmrip/audio-plugins/libogmrip-mp3.la
87
lib/ogmrip/audio-codecs/libogmrip-mp3.so
97
lib/ogmrip/audio-plugins/libogmrip-mp3.so
88
lib/ogmrip/audio-codecs/libogmrip-vorbis.a
98
lib/ogmrip/audio-plugins/libogmrip-vorbis.a
89
lib/ogmrip/audio-codecs/libogmrip-vorbis.la
99
lib/ogmrip/audio-plugins/libogmrip-vorbis.la
90
lib/ogmrip/audio-codecs/libogmrip-vorbis.so
100
lib/ogmrip/audio-plugins/libogmrip-vorbis.so
91
lib/ogmrip/audio-codecs/libogmrip-wav.a
101
lib/ogmrip/audio-plugins/libogmrip-wav.a
92
lib/ogmrip/audio-codecs/libogmrip-wav.la
102
lib/ogmrip/audio-plugins/libogmrip-wav.la
93
lib/ogmrip/audio-codecs/libogmrip-wav.so
103
lib/ogmrip/audio-plugins/libogmrip-wav.so
94
lib/ogmrip/containers/libogmrip-avi.a
104
lib/ogmrip/container-plugins/libogmrip-avi.a
95
lib/ogmrip/containers/libogmrip-avi.la
105
lib/ogmrip/container-plugins/libogmrip-avi.la
96
lib/ogmrip/containers/libogmrip-avi.so
106
lib/ogmrip/container-plugins/libogmrip-avi.so
97
%%MATROSKA_SUPPORT%%lib/ogmrip/containers/libogmrip-mkv.a
107
%%MATROSKA_SUPPORT%%lib/ogmrip/container-plugins/libogmrip-mkv.a
98
%%MATROSKA_SUPPORT%%lib/ogmrip/containers/libogmrip-mkv.la
108
%%MATROSKA_SUPPORT%%lib/ogmrip/container-plugins/libogmrip-mkv.la
99
%%MATROSKA_SUPPORT%%lib/ogmrip/containers/libogmrip-mkv.so
109
%%MATROSKA_SUPPORT%%lib/ogmrip/container-plugins/libogmrip-mkv.so
100
%%LAVF_SUPPORT%%lib/ogmrip/containers/libogmrip-mov.a
110
lib/ogmrip/container-plugins/libogmrip-mov.a
101
%%LAVF_SUPPORT%%lib/ogmrip/containers/libogmrip-mov.la
111
lib/ogmrip/container-plugins/libogmrip-mov.la
102
%%LAVF_SUPPORT%%lib/ogmrip/containers/libogmrip-mov.so
112
lib/ogmrip/container-plugins/libogmrip-mov.so
103
%%LAVF_SUPPORT%%lib/ogmrip/containers/libogmrip-mp4.a
113
%%MP4_SUPPORT%%lib/ogmrip/container-plugins/libogmrip-mp4.a
104
%%LAVF_SUPPORT%%lib/ogmrip/containers/libogmrip-mp4.la
114
%%MP4_SUPPORT%%lib/ogmrip/container-plugins/libogmrip-mp4.la
105
%%LAVF_SUPPORT%%lib/ogmrip/containers/libogmrip-mp4.so
115
%%MP4_SUPPORT%%lib/ogmrip/container-plugins/libogmrip-mp4.so
106
lib/ogmrip/containers/libogmrip-ogg.a
116
lib/ogmrip/container-plugins/libogmrip-ogg.a
107
lib/ogmrip/containers/libogmrip-ogg.la
117
lib/ogmrip/container-plugins/libogmrip-ogg.la
108
lib/ogmrip/containers/libogmrip-ogg.so
118
lib/ogmrip/container-plugins/libogmrip-ogg.so
109
%%SRT_SUPPORT%%lib/ogmrip/subp-codecs/libogmrip-srt.a
119
%%GUI_SUPPORT%%lib/ogmrip/options-plugins/libogmrip-lavc-options.a
110
%%SRT_SUPPORT%%lib/ogmrip/subp-codecs/libogmrip-srt.la
120
%%GUI_SUPPORT%%lib/ogmrip/options-plugins/libogmrip-lavc-options.la
111
%%SRT_SUPPORT%%lib/ogmrip/subp-codecs/libogmrip-srt.so
121
%%GUI_SUPPORT%%lib/ogmrip/options-plugins/libogmrip-lavc-options.so
112
lib/ogmrip/subp-codecs/libogmrip-vobsub.a
122
%%GUI_SUPPORT%%lib/ogmrip/options-plugins/libogmrip-x264-options.a
113
lib/ogmrip/subp-codecs/libogmrip-vobsub.la
123
%%GUI_SUPPORT%%lib/ogmrip/options-plugins/libogmrip-x264-options.la
114
lib/ogmrip/subp-codecs/libogmrip-vobsub.so
124
%%GUI_SUPPORT%%lib/ogmrip/options-plugins/libogmrip-x264-options.so
115
lib/ogmrip/video-codecs/libogmrip-lavc.a
125
%%SRT_SUPPORT%%lib/ogmrip/subp-plugins/libogmrip-srt.a
116
lib/ogmrip/video-codecs/libogmrip-lavc.la
126
%%SRT_SUPPORT%%lib/ogmrip/subp-plugins/libogmrip-srt.la
117
lib/ogmrip/video-codecs/libogmrip-lavc.so
127
%%SRT_SUPPORT%%lib/ogmrip/subp-plugins/libogmrip-srt.so
118
%%THEORA_SUPPORT%%lib/ogmrip/video-codecs/libogmrip-theora.a
128
lib/ogmrip/subp-plugins/libogmrip-vobsub.a
119
%%THEORA_SUPPORT%%lib/ogmrip/video-codecs/libogmrip-theora.la
129
lib/ogmrip/subp-plugins/libogmrip-vobsub.la
120
%%THEORA_SUPPORT%%lib/ogmrip/video-codecs/libogmrip-theora.so
130
lib/ogmrip/subp-plugins/libogmrip-vobsub.so
121
%%X264_SUPPORT%%lib/ogmrip/video-codecs/libogmrip-x264.a
131
lib/ogmrip/video-plugins/libogmrip-lavc-mpeg4.a
122
%%X264_SUPPORT%%lib/ogmrip/video-codecs/libogmrip-x264.la
132
lib/ogmrip/video-plugins/libogmrip-lavc-mpeg4.la
123
%%X264_SUPPORT%%lib/ogmrip/video-codecs/libogmrip-x264.so
133
lib/ogmrip/video-plugins/libogmrip-lavc-mpeg4.so
124
lib/ogmrip/video-codecs/libogmrip-xvid.a
134
%%THEORA_SUPPORT%%lib/ogmrip/video-plugins/libogmrip-theora.a
125
lib/ogmrip/video-codecs/libogmrip-xvid.la
135
%%THEORA_SUPPORT%%lib/ogmrip/video-plugins/libogmrip-theora.la
126
lib/ogmrip/video-codecs/libogmrip-xvid.so
136
%%THEORA_SUPPORT%%lib/ogmrip/video-plugins/libogmrip-theora.so
137
lib/ogmrip/video-plugins/libogmrip-x264.a
138
lib/ogmrip/video-plugins/libogmrip-x264.la
139
lib/ogmrip/video-plugins/libogmrip-x264.so
140
lib/ogmrip/video-plugins/libogmrip-xvid.a
141
lib/ogmrip/video-plugins/libogmrip-xvid.la
142
lib/ogmrip/video-plugins/libogmrip-xvid.so
127
libdata/pkgconfig/ogmdvd-gtk.pc
143
libdata/pkgconfig/ogmdvd-gtk.pc
128
libdata/pkgconfig/ogmdvd.pc
144
libdata/pkgconfig/ogmdvd.pc
129
libdata/pkgconfig/ogmjob.pc
145
libdata/pkgconfig/ogmjob.pc
Lines 134-155 Link Here
134
share/locale/cs/LC_MESSAGES/ogmrip.mo
150
share/locale/cs/LC_MESSAGES/ogmrip.mo
135
share/locale/de/LC_MESSAGES/ogmrip.mo
151
share/locale/de/LC_MESSAGES/ogmrip.mo
136
share/locale/fr/LC_MESSAGES/ogmrip.mo
152
share/locale/fr/LC_MESSAGES/ogmrip.mo
137
share/locale/pl/LC_MESSAGES/ogmrip.mo
138
share/locale/sv/LC_MESSAGES/ogmrip.mo
153
share/locale/sv/LC_MESSAGES/ogmrip.mo
139
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-crop.glade
154
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-crop.glade
155
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-lavc.glade
140
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-main.glade
156
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-main.glade
141
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-options.glade
157
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-options.glade
142
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-pref.glade
158
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-pref.glade
159
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-profile-editor.glade
160
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-profiles.glade
143
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-progress.glade
161
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-progress.glade
162
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-simple-editor.glade
144
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-spell.glade
163
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-spell.glade
145
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-ui.xml
164
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-ui.xml
165
%%GUI_SUPPORT%%%%DATADIR%%/ogmrip-x264.glade
166
%%GUI_SUPPORT%%%%DATADIR%%/profiles/profiles.xml
146
%%GUI_SUPPORT%%share/pixmaps/ogmrip.png
167
%%GUI_SUPPORT%%share/pixmaps/ogmrip.png
168
%%GUI_SUPPORT%%@dirrm %%DATADIR%%/profiles
147
%%GUI_SUPPORT%%@dirrm %%DATADIR%%
169
%%GUI_SUPPORT%%@dirrm %%DATADIR%%
148
%%GUI_SUPPORT%%@dirrmtry share/applications
170
%%GUI_SUPPORT%%@dirrmtry share/applications
149
@dirrm lib/ogmrip/video-codecs
171
@dirrm lib/ogmrip/video-plugins
150
@dirrm lib/ogmrip/subp-codecs
172
@dirrm lib/ogmrip/subp-plugins
151
@dirrm lib/ogmrip/containers
173
%%GUI_SUPPORT%%@dirrm lib/ogmrip/options-plugins
152
@dirrm lib/ogmrip/audio-codecs
174
@dirrm lib/ogmrip/container-plugins
175
@dirrm lib/ogmrip/audio-plugins
153
@dirrm lib/ogmrip
176
@dirrm lib/ogmrip
154
@dirrm include/ogmrip
177
@dirrm include/ogmrip
155
@dirrm include/ogmjob
178
@dirrm include/ogmjob

Return to bug 124588