blob: 0c4a52622c7e296fc6855f8cb61bacc83c4b3a7c (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/libxsettings-client/libxsettings-client-0.10.ebuild,v 1.3 2004/06/24 22:06:15 agriffis Exp $
IUSE=""
DESCRIPTION="xsettings provides inter toolkit configuration settings"
HOMEPAGE="http://www.freedesktop.org/standards/xsettings-spec/"
SRC_URI="http://handhelds.org/~mallum/downloadables/Xsettings-client-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
DEPEND="sys-devel/libtool
virtual/x11"
#RDEPEND=""
S=${WORKDIR}/Xsettings-client-${PV}
src_compile() {
econf || die "configure failed"
emake || die "make failed"
}
src_install() {
einstall || die "install failed"
dodoc AUTHORS COPYING ChangeLog NEWS README
}
|