blob: 69080a07edd8652faca39e02cca21500f5678508 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/giftui/giftui-0.4.1-r1.ebuild,v 1.1 2008/01/15 19:05:19 armin76 Exp $
inherit gnome2 eutils autotools
DESCRIPTION="A GTK+2 giFT frontend"
HOMEPAGE="http://giftui.sourceforge.net/"
SRC_URI="mirror://sourceforge/giftui/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc x86"
IUSE=""
RDEPEND=">=x11-libs/gtk+-2.4.3
net-p2p/gift
>=gnome-base/gconf-2.6.0
dev-util/pkgconfig"
DEPEND="${RDEPEND}
sys-apps/sed"
src_unpack() {
unpack ${A}
cd "${S}"
epatch ${FILESDIR}/${PV}-gentoo-r1.patch
sed -i -e 's:/doc/giftui:/share/doc/${P}:g' Makefile*
eautoreconf
}
src_install() {
export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1"
make DESTDIR=${D} install || die
}
|