View previous topic :: View next topic |
Author |
Message |
deranonyme Guru
Joined: 09 Jul 2005 Posts: 519
|
Posted: Wed Feb 15, 2006 11:24 am Post subject: ebuild für KDE DVD Authoring Wizard? [gelöst] |
|
|
Hallo
Weiß jemand eine Quelle für ein ebuild für den KDE DVD Authoring Wizard?
Danke Frank
Wenn man weiß wie es geht kein Problem. Danke
Last edited by deranonyme on Thu Feb 16, 2006 7:29 am; edited 1 time in total |
|
Back to top |
|
|
hoernerfranz Tux's lil' helper
Joined: 29 Feb 2004 Posts: 135 Location: Baden
|
Posted: Wed Feb 15, 2006 2:54 pm Post subject: |
|
|
meinst du das hier:
http://kde-apps.org/content/show.php?content=27528 ?
wenn ja - das ist ein kommander-script und braucht kein ebuild
- einfach zusehen dass alles aus der requirements liste installiert ist und laufen lassen... |
|
Back to top |
|
|
deranonyme Guru
Joined: 09 Jul 2005 Posts: 519
|
Posted: Thu Feb 16, 2006 7:28 am Post subject: |
|
|
Ok, danke das wars. Damit hatte ich mich noch nicht beschäftigt. Er hat zwar fehlende KDE Komponenten bemängelt, aber die habe ich aus dem Test rausgenoimmen, dann ging es.
Frank |
|
Back to top |
|
|
Fauli l33t
Joined: 24 Apr 2004 Posts: 760 Location: Moers, Germany
|
Posted: Sun Feb 26, 2006 6:33 pm Post subject: |
|
|
Da der KDE DVD Authoring Wizard das erste Programm ist, mit dem ich ohne stundenlanges Herumprobieren eine DVD mit Menü erstellen konnte, hat es auch ein Ebuild verdient.
(EDIT: Aktualisiert auf Version 1.4.1)
dvdauthorwizard-1.4.1.ebuild
Code: | # Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
DESCRIPTION="The KDE DVD Authoring Wizard allows you to create video DVDs with menus"
HOMEPAGE="http://dvdauthorwizard.sourceforge.net/view.php/page/Voorpagina"
SRC_URI="mirror://sourceforge/dvdauthorwizard/DVDAuthorWizard-${PV}.tar.bz2"
RESTRICT="nomirror"
IUSE=""
LICENSE="GPL"
SLOT="0"
KEYWORDS="~x86" # other platforms not tested
RDEPEND="|| ( kde-base/kommander kde-base/kdewebdev )
>=media-gfx/imagemagick-6.1
media-video/mjpegtools
media-sound/sox
>=media-video/dvdauthor-0.6
media-video/transcode
sys-devel/bc"
S="${WORKDIR}/DVDAuthorWizard-${PV}"
src_unpack() {
unpack ${A}
cat <<EOF >"${S}/dvdauthorwizard.desktop"
[Desktop Entry]
Name=KDE DVD Authoring Wizard
GenericName=DVD Authoring Application
Exec=kmdr-executor '/usr/bin/DVDAuthorWizard.kmdr'
Type=Application
Icon=dvd_unmount
Categories=Qt;KDE;AudioVideo;
EOF
}
src_install() {
dobin ${S}/bin/DVDAuthorWizard-Builder.sh
dobin ${S}/bin/DVDAuthorWizard.kmdr
cp -r ${S}/share ${D}/usr
insinto /usr/share/applications/kde
doins dvdauthorwizard.desktop
dodoc Changelog "Creating Chapters.txt" README
} |
_________________ Do your part to beautify the web! Turn off link underlining! |
|
Back to top |
|
|
|