Magellan Linux

Contents of /branches/magellan-next/core/plymouth/plymouth-0.8.4_20110603-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 7937 - (show annotations) (download)
Sat Jun 4 16:54:51 2011 UTC (12 years, 11 months ago) by niro
File size: 1135 byte(s)
-be dracut friendly
1 # $Id$
2
3 PNAME="plymouth"
4 PVER="0.8.4_20110603"
5 PBUILD="r1"
6
7 PCATEGORIE="sys-apps"
8
9 DESCRIPTION="Graphical Boot Animation and Logger."
10 HOMEPAGE="http://www.freedesktop.org/wiki/Software/Plymouth"
11
12 DEPEND=">= media-libs/libpng-1.5
13 >= x11-libs/pango-1.28
14 >= x11-libs/cairo-1.20"
15
16 SDEPEND=">= dev-util/pkgconfig-0.25
17 >= virtual/kernel-headers"
18
19 SRCFILE="${PNAME}-${PVER}.tar.bz2"
20 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
21
22 sminclude mbuild mtools
23
24 SRC_URI=(
25 http://www.freedesktop.org/software/${PNAME}/${SRCFILE}
26 mirror://${PNAME}/${SRCFILE}
27 mirror://${PNAME}/${PNAME}-fix-frozen-input.patch
28 )
29
30 UP2DATE="updatecmd http://www.freedesktop.org/software/plymouth/releases/ | lasttarball"
31
32 src_prepare()
33 {
34 munpack ${SRCFILE} || die
35 cd ${SRCDIR}
36
37 # fix broken keyboard
38 mpatch ${PNAME}-fix-frozen-input.patch || die
39
40 # git - missing configure
41 mautoreconf || die
42 }
43
44 src_compile()
45 {
46 cd ${SRCDIR}
47
48 mconfigure \
49 --libexecdir=/usr/$(mlibdir)/${PNAME} \
50 --enable-tracing \
51 --disable-tests \
52 --disable-gdm-transition \
53 --enable-systemd-integration \
54 --with-system-root-install \
55 --without-log-viewer \
56 || die
57
58 mmake || die
59 }