Magellan Linux

Annotation of /smage/trunk/extras/splashy/splashy-0.3.13-r2.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1678 - (hide annotations) (download)
Sat Mar 12 00:14:51 2011 UTC (13 years, 2 months ago) by niro
File size: 904 byte(s)
-debug build
1 niro 1670 # $Id$
2    
3     PNAME="splashy"
4     PVER="0.3.13"
5     PBUILD="r2"
6    
7     PCATEGORIE="media-gfx"
8     STATE="unstable"
9    
10     DESCRIPTION="Splashy is a complete user-mode boot splashing system."
11     HOMEPAGE="http://alioth.debian.org/projects/splashy/"
12    
13 niro 1674 DEPEND=">= dev-libs/directfb-1.2
14 niro 1670 >= dev-libs/glib2-2.28
15     >= sys-libs/zlib-1.2.5"
16    
17     SRCFILE="${PNAME}-${PVER}.tar.gz"
18     SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
19    
20     sminclude mbuild
21    
22     SRC_URI=(
23     http://alioth.debian.org/frs/download.php/2691/${SRCFILE}
24     mirror://${PNAME}/${SRCFILE}
25 niro 1675 mirror://${PNAME}/${PNAME}-${PVER}-fix-theme-path.patch
26 niro 1670 )
27    
28     UP2DATE="updatecmd ${HOMEPAGE} | grep -A5 'Latest File' | grep ']${PNAME}' | sed -n 's/.*]${PNAME}\ \(.*\)\ -.*/\1/;$ p'"
29    
30 niro 1675 src_prepare()
31     {
32     munpack ${SRCFILE} || die
33     cd ${SRCDIR}
34    
35     # fix theme pathes in config.xml
36     mpatch ${PNAME}-${PVER}-fix-theme-path.patch || die
37     }
38 niro 1677
39     src_compile()
40     {
41     cd ${SRCDIR}
42     mconfigure --enable-debug || die
43 niro 1678 mmake -j1 || die
44 niro 1677 }