diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2012-04-24 20:51:01 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2012-04-24 20:51:01 +0000 |
commit | 9053f8a672314373c7d21d7bad154e561e54e844 (patch) | |
tree | 4c0873e879f9e7b8d4a740f2ae6015e6cb9f575b /net-analyzer/thrulay | |
parent | Arg, sorry, fix SRC_URI again after mirror change (diff) | |
download | gentoo-2-9053f8a672314373c7d21d7bad154e561e54e844.tar.gz gentoo-2-9053f8a672314373c7d21d7bad154e561e54e844.tar.bz2 gentoo-2-9053f8a672314373c7d21d7bad154e561e54e844.zip |
At some point upstream changed to libtool building, and dobin/dosbin breaks the binaries from that.
(Portage version: 2.2.0_alpha99/cvs/Linux x86_64)
Diffstat (limited to 'net-analyzer/thrulay')
-rw-r--r-- | net-analyzer/thrulay/ChangeLog | 9 | ||||
-rw-r--r-- | net-analyzer/thrulay/thrulay-0.9-r1.ebuild (renamed from net-analyzer/thrulay/thrulay-0.9.ebuild) | 7 |
2 files changed, 12 insertions, 4 deletions
diff --git a/net-analyzer/thrulay/ChangeLog b/net-analyzer/thrulay/ChangeLog index 3f7e322f8d21..2a8a822c19f0 100644 --- a/net-analyzer/thrulay/ChangeLog +++ b/net-analyzer/thrulay/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-analyzer/thrulay # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/thrulay/ChangeLog,v 1.10 2012/02/21 09:00:28 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/thrulay/ChangeLog,v 1.11 2012/04/24 20:51:01 robbat2 Exp $ + +*thrulay-0.9-r1 (24 Apr 2012) + + 24 Apr 2012; Robin H. Johnson <robbat2@gentoo.org> +thrulay-0.9-r1.ebuild, + -thrulay-0.9.ebuild: + At some point upstream changed to libtool building, and dobin/dosbin breaks + the binaries from that. *thrulay-0.9 (21 Feb 2012) diff --git a/net-analyzer/thrulay/thrulay-0.9.ebuild b/net-analyzer/thrulay/thrulay-0.9-r1.ebuild index a42f044bae3b..8527f3d07aa4 100644 --- a/net-analyzer/thrulay/thrulay-0.9.ebuild +++ b/net-analyzer/thrulay/thrulay-0.9-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/thrulay/thrulay-0.9.ebuild,v 1.1 2012/02/21 09:00:28 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/thrulay/thrulay-0.9-r1.ebuild,v 1.1 2012/04/24 20:51:01 robbat2 Exp $ EAPI=4 inherit toolchain-funcs autotools @@ -21,8 +21,9 @@ src_prepare() { } src_install() { - dobin src/thrulay || die "dobin failed" - dosbin src/thrulayd || die "dosbin failed" + emake install DESTDIR="${D}" || die "emake install failed" + #dobin src/thrulay || die "dobin failed" + #dosbin src/thrulayd || die "dosbin failed" dodoc LICENSE README TODO doc/thrulay-protocol.txt || die "dodoc failed" doman doc/thrulay*.[1-8] || die "doman failed" newinitd "${FILESDIR}"/thrulayd-init.d thrulayd || die "newinitd failed" |