blob: c124dba791ef00ceb6bcbc24e2b606ec3b89856a (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdg-utils/xdg-utils-1.0.ebuild,v 1.4 2006/11/22 12:43:58 gustavoz Exp $
MY_P="${P/_}"
DESCRIPTION="Portland utils for cross-platform/cross-toolkit/cross-desktop interoperability"
HOMEPAGE="http://portland.freedesktop.org/wiki/Portland"
SRC_URI="http://portland.freedesktop.org/download/${MY_P}.tgz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~x86-fbsd"
IUSE=""
RESTRICT="test"
DEPEND=""
RDEPEND="|| ( x11-apps/xprop <virtual/x11-7 )"
S=${WORKDIR}/${MY_P}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc README TODO
}
|