diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-11-19 13:17:06 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-11-19 13:17:06 +0000 |
commit | 4ae12fb15748c6c7f967246c9ab31b1883a3ad4e (patch) | |
tree | 2fc1a0ece1a3de9d4d013cae274352e720a42fe6 /sys-apps/prctl | |
parent | Mask serpentine too, long overdue (diff) | |
download | gentoo-2-4ae12fb15748c6c7f967246c9ab31b1883a3ad4e.tar.gz gentoo-2-4ae12fb15748c6c7f967246c9ab31b1883a3ad4e.tar.bz2 gentoo-2-4ae12fb15748c6c7f967246c9ab31b1883a3ad4e.zip |
Keyword ~amd64 and ~x86 since this will be propably used by x11-misc/glipper >= 2.1.
(Portage version: 2.2.0_alpha73/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/prctl')
-rw-r--r-- | sys-apps/prctl/ChangeLog | 8 | ||||
-rw-r--r-- | sys-apps/prctl/prctl-1.5.ebuild | 17 |
2 files changed, 14 insertions, 11 deletions
diff --git a/sys-apps/prctl/ChangeLog b/sys-apps/prctl/ChangeLog index bb69ac6c6b95..83abd2c3b297 100644 --- a/sys-apps/prctl/ChangeLog +++ b/sys-apps/prctl/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-apps/prctl # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/prctl/ChangeLog,v 1.4 2011/05/19 20:19:42 mattst88 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/prctl/ChangeLog,v 1.5 2011/11/19 13:17:06 ssuominen Exp $ + + 19 Nov 2011; Samuli Suominen <ssuominen@gentoo.org> prctl-1.5.ebuild: + Keyword ~amd64 and ~x86 since this will be propably used by x11-misc/glipper + >= 2.1. 19 May 2011; Matt Turner <mattst88@gentoo.org> prctl-1.5.ebuild: Add ~alpha keyword. @@ -9,7 +13,7 @@ ia64 stable 14 Nov 2007; Robin H. Johnson <robbat2@gentoo.org> prctl-1.5.ebuild: - Fix $Header: /var/cvsroot/gentoo-x86/sys-apps/prctl/ChangeLog,v 1.4 2011/05/19 20:19:42 mattst88 Exp $ string. + Fix $Header: /var/cvsroot/gentoo-x86/sys-apps/prctl/ChangeLog,v 1.5 2011/11/19 13:17:06 ssuominen Exp $ string. *prctl-1.5 (11 Nov 2007) diff --git a/sys-apps/prctl/prctl-1.5.ebuild b/sys-apps/prctl/prctl-1.5.ebuild index 16dddeefa730..40c3ad65a3a8 100644 --- a/sys-apps/prctl/prctl-1.5.ebuild +++ b/sys-apps/prctl/prctl-1.5.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/prctl/prctl-1.5.ebuild,v 1.4 2011/05/19 20:19:42 mattst88 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/prctl/prctl-1.5.ebuild,v 1.5 2011/11/19 13:17:06 ssuominen Exp $ -inherit eutils toolchain-funcs +EAPI=4 +inherit toolchain-funcs DESCRIPTION="Tool to query and modify process behavior" HOMEPAGE="http://sourceforge.net/projects/prctl/" @@ -10,20 +11,18 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ia64" +KEYWORDS="~amd64 ~alpha ia64 ~x86" IUSE="" + +RDEPEND="" DEPEND="sys-apps/groff" src_compile() { - econf || die - emake \ - CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \ - || die "emake failed" + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" } src_install() { - # emake doesn't work dobin prctl doman prctl.1 - dodoc Changelog + dodoc ChangeLog } |