blob: adb87f634b050d8baca00af088d6d0ebd447275d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/nero/nero-2.1.0.3.ebuild,v 1.3 2007/02/12 00:58:34 wschlich Exp $
EAPI=5
inherit eutils rpm multilib
S=${WORKDIR}
DESCRIPTION="Nero Burning ROM for Linux"
HOMEPAGE="http://nerolinux.nero.com/"
NERO_RPM="nerolinux-${PV}-x86.rpm"
SRC_URI="ftp://ftp.nero.com/${NERO_RPM}
http://httpdl3.de.nero.com/${NERO_RPM}
http://httpdl4.de.nero.com/${NERO_RPM}
http://httpdl5.de.nero.com/${NERO_RPM}
http://httpdl6.de.nero.com/${NERO_RPM}
ftp://ftp3.de.nero.com/${NERO_RPM}
ftp://ftp4.de.nero.com/${NERO_RPM}
ftp://ftp5.de.nero.com/${NERO_RPM}
ftp://ftp6.de.nero.com/${NERO_RPM}"
LICENSE="Nero"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="mp3 ogg shorten sox vorbis"
DEPEND=""
RDEPEND="sys-libs/glibc
|| ( x11-libs/libX11 virtual/x11 )
=x11-libs/gtk+-1.2*[abi_x86_32(-)]
mp3? ( media-sound/mpg123 media-sound/lame media-sound/mp3info )
ogg? ( media-sound/oggtst )
shorten? ( media-sound/shorten media-sound/shntool )
sox? ( media-sound/sox )
vorbis? ( media-sound/vorbis-tools )"
RESTRICT="nostrip nomirror"
src_unpack() {
rpm_src_unpack
}
src_compile() { :; }
src_install() {
cd ${WORKDIR}
dodir /usr/share/nero
insinto /usr/share/nero
doins ./usr/share/nero/{*.so,DosBootImage.ima,Nero.txt,CDROM.CFG}
dodir /usr/share/nero/desktop
insinto /usr/share/nero/desktop
doins ./usr/share/nero/desktop/NeroLINUX.template
dodir /usr/share/nero/docs
insinto /usr/share/nero/docs
doins ./usr/share/nero/docs/{Manual.pdf,EULA,NEWS}
dodir /usr/share/nero/pixmaps
insinto /usr/share/nero/pixmaps
doins ./usr/share/nero/pixmaps/nero.png
dodir /usr/share/nero/sounds
insinto /usr/share/nero/sounds
doins ./usr/share/nero/sounds/*.wav
libdir=$(get_libdir)
dodir /usr/${libdir}
insinto /usr/${libdir}
doins ./usr/lib/*.so
dobin ./usr/bin/nero
insinto /usr/share/applications
doins ${FILESDIR}/nero.desktop
}
pkg_setup() {
# This is a binary x86 package => ABI=x86
has_multilib_profile && ABI="x86"
}
# TODO
# pkg_preinst() {
# check_license
# }
pkg_postinst() {
elog
elog "Please make sure that no hdX=ide-scsi option is passed"
elog "to your kernel command line."
elog
elog "For setting up your burning device correctly you also"
elog "have to give your regular user(s) read/write access to"
elog "the disc writer devices, for example by adding the user(s)"
elog "to the system group 'cdrom', e.g. like this:"
elog
elog "\tgpasswd -a <username> cdrom"
elog
elog "NOTE: This is demo software, it will run for a trial"
elog "period only until unlocked with a serial number."
elog "See ${HOMEPAGE} for details."
elog
elog "Technical support for NeroLINUX is provided by CDFreaks"
elog "Linux forum at http://club.cdfreaks.com/forumdisplay.php?f=104"
elog
}
|