blob: c23dd3a3c257778ccd093999325061f5f3c0818d (
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
|
# Copyright 2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/x11-misc/icebgset/icebgset-0.5.ebuild,v 1.5 2002/07/08 21:31:06 aliz Exp $
S=${WORKDIR}/${P}
DESCRIPTION="IceWM background editor."
SRC_URI="http://www.selena.kherson.ua/xvadim/${P}.tar.bz2"
HOMEPAGE="http://www.selena.kherson.ua/xvadim"
DEPEND="virtual/x11
x11-libs/qt
media-libs/jpeg
media-libs/libpng"
RDEPEND="x11-wm/icewm"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
src_compile () {
econf \
--with-qt-dir=${QTDIR} || die
emake || die
}
src_install () {
einstall || die
rm -rf ${D}/usr/doc
dohtml icebgset/docs/en/*.{html,sgml}
dodoc AUTHORS COPYING README TODO
}
|