blob: c4e323aa217bb1c686fad9d90e81cab08c672623 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gpe-base/libdisplaymigration/libdisplaymigration-0.99.ebuild,v 1.1 2009/03/06 17:53:43 solar Exp $
inherit gpe
DESCRIPTION="Gtk+ display migration library"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~arm ~amd64 ~x86"
IUSE="${IUSE}"
GPE_DOCS=""
src_install() {
gpe_src_install "$@"
make DESTDIR="${D}" PREFIX=/usr install-devel
}
RDEPEND="${RDEPEND}
>=x11-libs/gtk+-2.6.3
>=dev-libs/libgcrypt-1.2.1"
DEPEND="${DEPEND}
${RDEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e s/'install -s'/'install'/ Makefile || die
}
|