diff --git a/app-admin/chrpath/ChangeLog b/app-admin/chrpath/ChangeLog index eaddcfe8..972c49d9 100644 --- a/app-admin/chrpath/ChangeLog +++ b/app-admin/chrpath/ChangeLog @@ -2,6 +2,10 @@ # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 13 Apr 2009; Mario Fetka chrpath-0.13.ebuild, + +chrpath-0.13-r1.ebuild: + bump revision + 09 Apr 2009; Mario Fetka ChangeLog: Add multilib patch diff --git a/app-admin/chrpath/Manifest b/app-admin/chrpath/Manifest index 384b5f66..cc68adfb 100644 --- a/app-admin/chrpath/Manifest +++ b/app-admin/chrpath/Manifest @@ -1,6 +1,7 @@ AUX chrpath-keepgoing.patch 1041 RMD160 9c454d96245d434b69db0b176a792f50eb882429 SHA1 a213403888ca21aa7730b4957b8f9f7e6c4b05b6 SHA256 6c45aa896835cea3df7b0edcadea2171e8e5833b4d40c99babab15b5648d219a AUX chrpath-multilib.patch 3549 RMD160 1ebe77532319fd4877fbea019b519b4b78cb1427 SHA1 2a1189a4e7743b3707de929bacc162c73ac0549d SHA256 36241db7e559ed8cfa0d239d63d17e4c33d63d58a10981f18dfa6e7c2004aac7 DIST chrpath-0.13.tar.gz 125129 RMD160 89b91919e3f629173388f10469dc94fadd46aa56 SHA1 11ff3e3dda2acaf1e529475f394f74f2ef7a8204 SHA256 c1aa5342eac0daad81b8da05aa282ae1ccd6f68bc75ca94064304f541eed071b -EBUILD chrpath-0.13.ebuild 620 RMD160 628be02e1ca7ed2c5ab167c353a4aa9de1766d01 SHA1 99870f8cc38ee2941540dfc0ace5675cd3c5411a SHA256 6ac245d672de1be8bf80bf1b7c305e1667cb271817cd7803af9779cea084a84e -MISC ChangeLog 1233 RMD160 6312ef92bad762ab3417a5bdca1b53c0a941c13c SHA1 6d284f93ee400983d6fa52551bbbd4e7223b0080 SHA256 eca4288d53061c98d784dd2295bc4695c92bfcb5d2abcbd183fe8c3975e674b0 +EBUILD chrpath-0.13-r1.ebuild 607 RMD160 a7bd71581196736d9f7c282f28079094be5488fb SHA1 86e8f848e66d4f360c27d15ad2211c40c8f54754 SHA256 614096880e43a79a92695295aca63ce060172d83d67540cf60e922e03ad655a1 +EBUILD chrpath-0.13.ebuild 595 RMD160 c029bf674920979c26ab311c1beea6037251a443 SHA1 a93326ef0f7fb19c7ace53d24fbac9534165a6e7 SHA256 3369fcdcde879d118f51b17f8a2e9365da7dd0d855381358134d5421d951c388 +MISC ChangeLog 1349 RMD160 351ac5d88582a9de51958b785cb8bf2e7a3f1381 SHA1 8bf103ba5b72af3549284ea97dfb496098e464c1 SHA256 86e88bc755f117ddb81779c0dbc05b632dd5d86a4ee317068cc1c2774d775853 MISC metadata.xml 236 RMD160 92f49f8275e75caf57b88a3172d5204eaa4e33ae SHA1 dd1a8550a514e55ab0ed6190ab4794bb090994f8 SHA256 56075995f83836ae824c7cb01931b98d6745f6d5a7764299c8262e801486b829 diff --git a/app-admin/chrpath/chrpath-0.13-r1.ebuild b/app-admin/chrpath/chrpath-0.13-r1.ebuild new file mode 100644 index 00000000..d0e6b32b --- /dev/null +++ b/app-admin/chrpath/chrpath-0.13-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="2" + +inherit eutils autotools + +DESCRIPTION="chrpath can modify the rpath and runpath of ELF executables" +HOMEPAGE="http://directory.fsf.org/project/chrpath/" +SRC_URI="ftp://ftp.hungry.com/pub/hungry/chrpath/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 arm ppc x86 ~x86-fbsd" +IUSE="" + +src_prepare() { + epatch "${FILESDIR}"/chrpath-multilib.patch + epatch "${FILESDIR}"/chrpath-keepgoing.patch + eautoreconf +} + +src_install() { + einstall + dodoc ChangeLog AUTHORS NEWS README +} \ No newline at end of file diff --git a/app-admin/chrpath/chrpath-0.13.ebuild b/app-admin/chrpath/chrpath-0.13.ebuild index b3163744..2c429ee4 100644 --- a/app-admin/chrpath/chrpath-0.13.ebuild +++ b/app-admin/chrpath/chrpath-0.13.ebuild @@ -1,10 +1,8 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13.ebuild,v 1.10 2008/11/23 18:05:16 patrick Exp $ -EAPI="2" - -inherit eutils autotools +inherit eutils DESCRIPTION="chrpath can modify the rpath and runpath of ELF executables" HOMEPAGE="http://directory.fsf.org/project/chrpath/" @@ -15,14 +13,8 @@ SLOT="0" KEYWORDS="amd64 arm ppc x86 ~x86-fbsd" IUSE="" -src_prepare() { - epatch ${FILESDIR}/chrpath-multilib.patch - epatch ${FILESDIR}/chrpath-keepgoing.patch - eautoreconf -} - src_install() { - einstall + dobin chrpath || die doman chrpath.1 dodoc ChangeLog AUTHORS NEWS README -} \ No newline at end of file +}