Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 281727
Collapse All | Expand All

(-)eina-0.8.0.ebuild.orig (-14 / +15 lines)
Lines 1-4 Link Here
1
# Copyright 1999-2009 Gentoo Foundation
1
# Copyright 1999-2010 Gentoo Foundation
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: $
3
# $Header: $
4
4
Lines 11-41 Link Here
11
LICENSE="GPL-3"
11
LICENSE="GPL-3"
12
SLOT="0"
12
SLOT="0"
13
KEYWORDS="~x86"
13
KEYWORDS="~x86"
14
IUSE=""
14
IUSE="nls"
15
15
16
RDEPEND="
16
RDEPEND="dev-db/sqlite:3
17
	>=dev-db/sqlite-3.2
18
	>=dev-libs/dbus-glib-0.80
17
	>=dev-libs/dbus-glib-0.80
19
	>=dev-libs/glib-2.16
18
	dev-libs/glib:2
20
	>=dev-libs/libunique-1.0
19
	dev-libs/libunique
21
	>=media-libs/gstreamer-0.10
20
	media-libs/gstreamer
22
	net-misc/curl
21
	net-misc/curl
23
	sys-devel/gettext
22
	sys-devel/gettext
24
	>=x11-libs/libnotify-0.4
23
	virtual/libintl
24
	x11-libs/libnotify
25
	>=x11-libs/gtk+-2.14"
25
	>=x11-libs/gtk+-2.14"
26
DEPEND="
26
DEPEND="dev-util/pkgconfig
27
	>=dev-util/pkgconfig-0.9
27
	nls? ( sys-devel/gettext )
28
	${RDEPEND}"
28
	${RDEPEND}"
29
29
30
src_configure() {
30
src_configure() {
31
	econf --enable-release-build || die "configure failed"
31
	use nls || my_conf="--disable-nls"
32
	econf --enable-release-build ${my_conf} || die
32
}
33
}
33
34
34
src_compile() {
35
src_compile() {
35
	emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" || die "compile failed"
36
	emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" || die
36
}
37
}
37
38
38
src_install() {
39
src_install() {
39
	emake DESTDIR="${D}" install || die "install failed"
40
	emake DESTDIR="${D}" install || die
40
	dodoc AUTHORS ChangeLog README NEWS || die "docs install failed" 
41
	dodoc AUTHORS ChangeLog README NEWS || die
41
}
42
}

Return to bug 281727