diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2012-11-30 18:23:37 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2012-11-30 18:23:37 +0000 |
commit | 334607f73c14ff4db467b2ab51d6bb1eaea0141a (patch) | |
tree | acebdf5348a10d1a33f87a30f229369161e654af /www-misc/multisort | |
parent | Revision bump to remove also man2html manpage. Fixes bug#445358. (diff) | |
download | gentoo-2-334607f73c14ff4db467b2ab51d6bb1eaea0141a.tar.gz gentoo-2-334607f73c14ff4db467b2ab51d6bb1eaea0141a.tar.bz2 gentoo-2-334607f73c14ff4db467b2ab51d6bb1eaea0141a.zip |
Revision bump: EAPI 4, add ~amd64 keyword, respect LDFLAGS wrt bug #337359, drop old revision
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'www-misc/multisort')
-rw-r--r-- | www-misc/multisort/ChangeLog | 9 | ||||
-rw-r--r-- | www-misc/multisort/multisort-1.1-r1.ebuild (renamed from www-misc/multisort/multisort-1.1.ebuild) | 17 |
2 files changed, 20 insertions, 6 deletions
diff --git a/www-misc/multisort/ChangeLog b/www-misc/multisort/ChangeLog index a31472100f07..7f8683264e3b 100644 --- a/www-misc/multisort/ChangeLog +++ b/www-misc/multisort/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for www-misc/multisort # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-misc/multisort/ChangeLog,v 1.3 2012/11/27 18:45:52 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-misc/multisort/ChangeLog,v 1.4 2012/11/30 18:23:37 pinkbyte Exp $ + +*multisort-1.1-r1 (30 Nov 2012) + + 30 Nov 2012; Sergey Popov <pinkbyte@gentoo.org> -multisort-1.1.ebuild, + +multisort-1.1-r1.ebuild: + Revision bump: EAPI 4, add ~amd64 keyword, respect LDFLAGS wrt bug #337359, + drop old revision 27 Nov 2012; Pacho Ramos <pacho@gentoo.org> metadata.xml: Drop apache herd as discussed in http://www.gossamer- diff --git a/www-misc/multisort/multisort-1.1.ebuild b/www-misc/multisort/multisort-1.1-r1.ebuild index 0da012ff1f70..f6c2a1de0062 100644 --- a/www-misc/multisort/multisort-1.1.ebuild +++ b/www-misc/multisort/multisort-1.1-r1.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-misc/multisort/multisort-1.1.ebuild,v 1.2 2005/07/10 01:23:03 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-misc/multisort/multisort-1.1-r1.ebuild,v 1.1 2012/11/30 18:23:37 pinkbyte Exp $ + +EAPI=4 inherit toolchain-funcs @@ -10,15 +12,20 @@ SRC_URI="http://www.xach.com/${PN}/${PN}-${PV}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~x86" +KEYWORDS="~amd64 ~x86" IUSE="" DEPEND="" +src_prepare() { + # respect LDFLAGS wrt bug #337359 + sed -i -e 's/$(CFLAGS)/& \$(LDFLAGS)/' Makefile || die 'sed on Makefile failed' +} + src_compile() { - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die "emake failed" + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" } src_install() { - dosbin ${S}/multisort + dosbin multisort } |