blob: 40312ed59958adb39e6dae7724a68ffd456168b9 (
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/xmcd/xmcd-3.2.1-r1.ebuild,v 1.2 2004/06/25 00:29:39 agriffis Exp $
inherit eutils
IUSE="alsa encode oggvorbis"
SUPPLIB="cddb2supplib"
DESCRIPTION="Xmcd is a full-featured CD Player and Ripper software package."
HOMEPAGE="http://www.ibiblio.org/tkan/xmcd/"
SRC_URI="http://www.ibiblio.org/tkan/download/${PN}/${PV}/src/${P}.tar.gz
http://www.ibiblio.org/tkan/download/cddb2supp/${PV}/lib/linux-x86-libc6/${SUPPLIB}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc"
DEPEND="virtual/x11
x11-libs/openmotif
alsa? ( media-libs/alsa-lib )
encode? ( >=media-sound/lame-3.93.1 )
oggvorbis? ( >=media-libs/libvorbis-1.0 )"
src_unpack() {
ebegin "Unpacking ${P} source tarball"
unpack ${P}.tar.gz > /dev/null
eend 0
if use x86
then
ebegin "Unpacking Gracenote CDDB� support package"
unpack ${SUPPLIB}.tar.gz > /dev/null
eend 0
fi
epatch ${FILESDIR}/${P}-gentoo.patch || die
}
src_compile() {
einfo "Building xmcd..."
xmkmf -a || die
make CDEBUGFLAGS="${CDEBUGFLAGS} ${CFLAGS} -D_GNU_SOURCE" || die
}
src_install() {
# shamelessly culled from SuSE .spec file...
ebegin "Running install script"
BATCH_BINDIR=${D}/usr/X11R6/bin \
BATCH_LIBDIR=${D}/usr/X11R6/lib/X11 \
BATCH_XMCDLIB=${D}/usr/X11R6/lib/X11/xmcd \
BATCH_MANDIR=${D}/usr/X11R6/man/man1 \
BATCH_CDDBDIR=${D}/var/lib/xmcd/cddb \
BATCH_DISCOGDIR=${D}/var/lib/xmcd/discog \
sh install.sh -n -b
eend 0
dodir /usr/lib
for lib in libcddb.so.1 libcddb.a libcddbkey1.a libcddbkey2.a; do
cp ${S}/cddb_d/${lib} ${D}/usr/lib
done
dosym libcddbkey2.a /usr/lib/libcddbkey.a
dosym libcddb.so.1 /usr/lib/libcddb.so
# a small fixup...
rm -rf ${D}/usr/X11R6/lib/X11/xmcd/docs
dodir etc
dosym ../usr/X11R6/lib/X11/xmcd/config /etc/xmcd
# move binaries to correct place
ebegin "Moving binaries to target location"
(cd ${D}/usr/X11R6/lib/X11/xmcd/bin-*;
sed -e "s@${D}@@g" \
< ${D}/usr/X11R6/bin/.xmcd_start > start
cp start ${D}/usr/X11R6/bin/.xmcd_start
sed -e "s@${D}@@" < README > README.tmp
mv README.tmp README )
rm -f ${D}/usr/X11R6/bin/*
(cd ${D}/usr/X11R6/bin; \
ln -s ../lib/X11/xmcd/bin-*/start xmcd; \
ln -s ../lib/X11/xmcd/bin-*/start cda)
cp ${D}/usr/X11R6/lib/X11/xmcd/config/common.cfg \
${D}/usr/X11R6/lib/X11/xmcd/config/cdrom
for i in config/config.sh scripts/genidx ; do
sed -e "s@${D}@@g" \
< ${D}/usr/X11R6/lib/X11/xmcd/$i \
> ${D}/usr/X11R6/lib/X11/xmcd/$i.tmp
mv ${D}/usr/X11R6/lib/X11/xmcd/$i.tmp \
${D}/usr/X11R6/lib/X11/xmcd/$i
done
eend 0
ebegin "Fixing ownership and permissions"
# fix ownership
chown -R root:root ${D}
# remove setuid bit
chmod 0755 ${D}/usr/X11R6/lib/X11/xmcd/bin-*/{cda,xmcd,start,gobrowser}
chmod 0755 ${D}/usr/X11R6/lib/X11/xmcd/config/config.sh
chmod 0755 ${D}/usr/X11R6/lib/X11/xmcd/scripts/genidx
# change perms
chmod 0644 ${D}/var/lib/xmcd/discog/index.html
chmod 0644 ${D}/var/lib/xmcd/discog/*/*/index.html
eend 0
if use x86
then
ebegin "Adding Gracenote CDDB� support"
exeinto /usr/X11R6/lib/X11/xmcd/lib-Linux-i686
doexe ${WORKDIR}/${P}/cddb_d/libcddb.so.1
dosym libcddb.so.1 /usr/X11R6/lib/X11/xmcd/lib-Linux-i686/libcddb.so
eend 0
fi
# install documentation
dodoc docs_d/*
dosym ../../../../../usr/share/doc/${P} /usr/X11R6/lib/X11/xmcd/docs
}
pkg_postinst() {
einfo ""
einfo "Don't forget to run ${ROOT}etc/xmcd/config.sh"
einfo "as root to configure your CD devices!"
einfo ""
}
pkg_postrm() {
einfo ""
einfo "Old discographies found in ${ROOT}var/lib/xmcd can safely be deleted."
einfo "Old CD configurations in ${ROOT}etc/xmcd can safely be deleted."
einfo ""
}
|