diff options
author | Samuli Suominen <drac@gentoo.org> | 2008-02-02 12:14:07 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2008-02-02 12:14:07 +0000 |
commit | 7f0a9d2eb2027e0a8d85d6cd8c7fd1d471a1ac1c (patch) | |
tree | d332cfe19391982f89484de83ca2a63bcf36d058 /net-p2p/linkage | |
parent | Version bump and migration to gen-2 eclasses, bug #168655. Dropped ppc due to... (diff) | |
download | gentoo-2-7f0a9d2eb2027e0a8d85d6cd8c7fd1d471a1ac1c.tar.gz gentoo-2-7f0a9d2eb2027e0a8d85d6cd8c7fd1d471a1ac1c.tar.bz2 gentoo-2-7f0a9d2eb2027e0a8d85d6cd8c7fd1d471a1ac1c.zip |
Download and copy sizeof.m4 from upstream subversion to m4 subdirectory because it isn't included in default tarball wrt #208548.
(Portage version: 2.1.4.1)
Diffstat (limited to 'net-p2p/linkage')
-rw-r--r-- | net-p2p/linkage/ChangeLog | 8 | ||||
-rw-r--r-- | net-p2p/linkage/linkage-0.1.4.ebuild | 27 |
2 files changed, 25 insertions, 10 deletions
diff --git a/net-p2p/linkage/ChangeLog b/net-p2p/linkage/ChangeLog index df1dd6b0e523..a0a93b496b8e 100644 --- a/net-p2p/linkage/ChangeLog +++ b/net-p2p/linkage/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-p2p/linkage -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/linkage/ChangeLog,v 1.6 2007/11/01 17:33:24 drac Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/linkage/ChangeLog,v 1.7 2008/02/02 12:14:07 drac Exp $ + + 02 Feb 2008; Samuli Suominen <drac@gentoo.org> linkage-0.1.4.ebuild: + Download and copy sizeof.m4 from upstream subversion to m4 subdirectory + because it isn't included in default tarball wrt #208548. 01 Nov 2007; Samuli Suominen <drac@gentoo.org> linkage-0.1.4.ebuild: Keyword ~amd64 wrt #186477. diff --git a/net-p2p/linkage/linkage-0.1.4.ebuild b/net-p2p/linkage/linkage-0.1.4.ebuild index 893c43812da7..d088e7179322 100644 --- a/net-p2p/linkage/linkage-0.1.4.ebuild +++ b/net-p2p/linkage/linkage-0.1.4.ebuild @@ -1,15 +1,16 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/linkage/linkage-0.1.4.ebuild,v 1.2 2007/11/01 17:33:24 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/linkage/linkage-0.1.4.ebuild,v 1.3 2008/02/02 12:14:07 drac Exp $ -SCROLLKEEPER_UPDATE="no" -GCONF_DEBUG="no" +SCROLLKEEPER_UPDATE=no +GCONF_DEBUG=no inherit gnome2 DESCRIPTION="BitTorrent client written in C++ using gtkmm and libtorrent." HOMEPAGE="http://code.google.com/p/linkage" -SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz" +SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz + http://code.google.com/p/${PN}/source/browse/tags/${P}/m4/sizeof.m4" LICENSE="GPL-2" SLOT="0" @@ -32,7 +33,17 @@ DEPEND="${RDEPEND} dev-util/pkgconfig sys-devel/gettext" -GCONF2="${GCONF2} $(use_with curl) $(use_with gnome) \ - $(use_with upnp gupnp) $(use_with xfce exo)" +DOCS="README TODO" -DOCS="AUTHORS ChangeLog NEWS README TODO" +pkg_setup() { + GCONF2="${GCONF2} $(use_with curl) $(use_with gnome) + $(use_with upnp gupnp) $(use_with xfce exo)" +} + +src_unpack() { + # Bug 208548, sizeof.m4 isn't included in default tarball. + unpack ${P}.tar.gz + cd "${S}" + mkdir m4 + cp ${DISTDIR}/sizeof.m4 m4 +} |