OLD | NEW |
1 # Copyright 1999-2010 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: /var/cvsroot/gentoo-x86/net-libs/gssdp/gssdp-0.7.1.ebuild,v 1.3 2010/
02/19 18:20:17 armin76 Exp $ | 3 # $Header: /var/cvsroot/gentoo-x86/net-libs/gssdp/gssdp-0.7.1.ebuild,v 1.3 2010/
02/19 18:20:17 armin76 Exp $ |
4 | 4 |
| 5 inherit eutils |
| 6 |
5 EAPI=2 | 7 EAPI=2 |
6 | 8 |
7 DESCRIPTION="A GObject-based API for handling resource discovery and announcemen
t over SSDP." | 9 DESCRIPTION="A GObject-based API for handling resource discovery and announcemen
t over SSDP." |
8 HOMEPAGE="http://gupnp.org/" | 10 HOMEPAGE="http://gupnp.org/" |
9 SRC_URI="http://gupnp.org/sources/${PN}/${P}.tar.gz" | 11 SRC_URI="http://gupnp.org/sources/${PN}/${P}.tar.gz" |
10 | 12 |
11 LICENSE="LGPL-2" | 13 LICENSE="LGPL-2" |
12 SLOT="0" | 14 SLOT="0" |
13 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" | 15 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" |
14 IUSE="" | 16 IUSE="" |
15 | 17 |
16 RDEPEND=">=dev-libs/glib-2.18:2 | 18 RDEPEND=">=dev-libs/glib-2.18:2 |
17 net-libs/libsoup:2.4 | 19 net-libs/libsoup:2.4 |
18 >=x11-libs/gtk+-2.12:2" | 20 >=x11-libs/gtk+-2.12:2" |
19 DEPEND="${RDEPEND} | 21 DEPEND="${RDEPEND} |
20 dev-util/pkgconfig | 22 dev-util/pkgconfig |
21 sys-devel/gettext" | 23 sys-devel/gettext" |
22 | 24 |
| 25 src_unpack() { |
| 26 unpack ${A} |
| 27 cd "${S}" |
| 28 epatch "${FILESDIR}"/${P}-gold.patch |
| 29 } |
| 30 |
23 src_configure() { | 31 src_configure() { |
24 econf \ | 32 econf \ |
25 --disable-dependency-tracking \ | 33 --disable-dependency-tracking \ |
26 --disable-gtk-doc \ | 34 --disable-gtk-doc \ |
27 --with-html-dir=/usr/share/doc/${PF}/html | 35 --with-html-dir=/usr/share/doc/${PF}/html |
28 } | 36 } |
29 | 37 |
30 src_install() { | 38 src_install() { |
31 emake DESTDIR="${D}" install || die | 39 emake DESTDIR="${D}" install || die |
32 dodoc AUTHORS ChangeLog NEWS README | 40 dodoc AUTHORS ChangeLog NEWS README |
33 } | 41 } |
OLD | NEW |