blob: ea76e7c20ea2ca776779228c2d1f6010d3fca2ac (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/icecc/icecc-2.7.ebuild,v 1.1 2004/07/27 12:10:20 phosphan Exp $
inherit eutils
DESCRIPTION="IceWM Control Center (only main program, see icewm-tools for the rest)"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
HOMEPAGE="http://icecc.sourceforge.net/"
LICENSE="GPL-2"
KEYWORDS="~x86"
IUSE=""
SLOT="0"
DEPEND=">=x11-libs/qt-3.0.0"
src_unpack() {
unpack ${A}
cd ${S}
sed -e "s:/usr/local:${D}/usr:" -i ${PN}.pro || die "sed failed"
local file
for file in *.cpp; do
sed -e 's:PREFIX:"/usr":' -i ${file}
done
}
src_compile() {
qmake || die
emake || die
}
src_install() {
einstall || die
rm -rf ${D}/usr/doc
dohtml ${PN}/docs/en/*.{html,sgml}
dodoc AUTHORS ChangeLog README TODO
dodir /usr/share/${PN}/themes
cp -a theme/* ${D}/usr/share/${PN}/themes/
chmod go-w ${D}/usr/share/${PN}/themes/
}
pkg_postinst() {
einfo "emerge icewm-tools for the control center helper tools"
}
|