Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


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