Hello! attached is an ebuild for dvbcut 0.5.3, i suggest putting it into media-video/dvbcut The following desription is taken from the project website [http://dvbcut.sourceforge.net/]: dvbcut is a Qt application that allows you to select certain parts of an MPEG transport stream (as received via Digital Video Broadcasting, DVB) and save these parts into a single MPEG output file. It follows a "keyhole surgery" approach where the input video and audio data is mostly kept unchanged, and only very few frames at the beginning and/or end of the selected range are re-encoded in order to obtain a valid MPEG file.
Created attachment 96253 [details] dvbcut-0.5.3.ebuild
I added this ebuild to portage tree but I had to do some changes. DEPENDS: >=x11-libs/qt-3* - what should that do either you want versions greater than qt-3 or you want version which match qt-3* but that is different. As qt-4 is not completely compatible this should be done via qt3.eclass: inherit qt3 DEPEND="$(qt_min_version 3)" That garantees to use version 3 and greater, but not version 4. Then I switched to build against system-wide ffmpeg instead of included one, as that makes it easier to manage (no duplication) and saves space.