blob: d557ce54726d1d44e068ec43404ac32059c0ef9f (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/idesk/idesk-0.5.6.ebuild,v 1.2 2003/09/05 00:57:57 msterret Exp $
DESCRIPTION="Utility to place icons on the root window"
HOMEPAGE="http://idesk.timmfin.net"
SRC_URI="mirror://sourceforge/idesk/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86 ppc"
DEPEND=">media-libs/imlib-1.9.14
virtual/x11
media-libs/freetype
>=gnome-base/librsvg-2.2.5
>=dev-util/pkgconfig-0.12.0
dev-libs/libxml2
=dev-libs/glib-2*
gnome-extra/libgsf
=x11-libs/pango-1*
=x11-libs/gtk+-2*
media-libs/libart_lgpl"
S="${WORKDIR}"
src_unpack() {
unpack ${A}
cd ${S}
#Allow for more robust CXXFLAGS
mv Makefile Makefile.orig
sed -e "s:= -g -W #-Wall:= ${CXXFLAGS}:" Makefile.orig > Makefile
}
src_compile() {
emake || die
}
src_install() {
exeinto /usr/bin
doexe idesk
dodoc README
doman ${FILESDIR}/idesk.1 ${FILESDIR}/ideskrc.5
}
pkg_postinst() {
einfo
einfo "NOTE: Please refer to ${HOMEPAGE}"
einfo "NOTE: For info on configuring ${PN}"
einfo
}
|