Magellan Linux

Contents of /trunk/extras/idesk/idesk-0.7.5-r4.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 8910 - (show annotations) (download)
Thu Aug 18 10:48:40 2011 UTC (12 years, 9 months ago) by niro
File size: 930 byte(s)
auto added: ver bump to 0.7.5-r4
1 # $Id$
2
3 PNAME="idesk"
4 PVER="0.7.5"
5 PBUILD="r4"
6
7 PCATEGORIE="x11-misc"
8 STATE="unstable"
9
10 DESCRIPTION="iDesk, a tool to provide desktop icons."
11 HOMEPAGE="http://idesk.sourceforge.net/"
12
13 DEPEND=">= media-libs/imlib2-1.2.0
14 >= media-libs/freetype-2.1.9
15 >= dev-libs/libxml2-2.6.19
16 >= x11-libs/startup-notification-0.8"
17
18 SDEPEND=">= dev-util/pkgconfig-0.17.2"
19
20 SRCFILE="${PNAME}-${PVER}.tar.bz2"
21 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
22
23 sminclude mbuild mtools
24
25 SRC_URI=(
26 sourceforge://${PNAME}/${SRCFILE}
27 mirror://${PNAME}/${SRCFILE}
28 )
29
30 src_compile()
31 {
32 cd ${SRCDIR}
33 mconfigure --enable-libsn || die
34 mmake || die
35 }
36
37 src_install()
38 {
39 cd ${SRCDIR}
40
41 # needed directories
42 minstalldir /usr/bin || die
43 minstalldir /usr/share/idesk || die
44
45 # the makefile like always suckz ...
46 minstallexec src/idesk || die
47 install -m0644 examples/* ${BINDIR}/usr/share/idesk || die
48 minstalldocs AUTHORS COPYING ChangeLog NEWS README TODO || die
49 }