diff options
author | Markus Dittrich <markusle@gentoo.org> | 2006-01-20 04:03:20 +0000 |
---|---|---|
committer | Markus Dittrich <markusle@gentoo.org> | 2006-01-20 04:03:20 +0000 |
commit | 92f52c630bfd4e9d8acb6d65d11c1dde0dc1154c (patch) | |
tree | 1975d99b615aaa6075646791628db00426d7ef8c /dev-libs/libtecla/libtecla-1.6.0-r1.ebuild | |
parent | stable on x86 for bug #119588 (diff) | |
download | gentoo-2-92f52c630bfd4e9d8acb6d65d11c1dde0dc1154c.tar.gz gentoo-2-92f52c630bfd4e9d8acb6d65d11c1dde0dc1154c.tar.bz2 gentoo-2-92f52c630bfd4e9d8acb6d65d11c1dde0dc1154c.zip |
Applied small patch to ebuild to get rid of insecure RUNPATHs in enhance. This fixes bug #119477.
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'dev-libs/libtecla/libtecla-1.6.0-r1.ebuild')
-rw-r--r-- | dev-libs/libtecla/libtecla-1.6.0-r1.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-libs/libtecla/libtecla-1.6.0-r1.ebuild b/dev-libs/libtecla/libtecla-1.6.0-r1.ebuild new file mode 100644 index 000000000000..54d4ab583985 --- /dev/null +++ b/dev-libs/libtecla/libtecla-1.6.0-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtecla/libtecla-1.6.0-r1.ebuild,v 1.1 2006/01/20 04:03:20 markusle Exp $ + +DESCRIPTION="Tecla command-line editing library" +HOMEPAGE="http://www.astro.caltech.edu/~mcs/tecla/" +SRC_URI="http://www.astro.caltech.edu/~mcs/tecla/${P}.tar.gz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~x86 ~ppc" + +IUSE="" +DEPEND="virtual/libc" + +S=${WORKDIR}/libtecla + +src_compile() { + # remove build directory from RPATH (see bug #119477) + sed -e "s|:\$\$LD_RUN_PATH:\`pwd\`||" -i Makefile.rules || \ + die "Failed to adjust Makefile.rules" + econf || die + make || die +} + +src_install() { + make install prefix=${D}/usr MANDIR=${D}/usr/share/man || die + dodoc CHANGES INSTALL LICENSE.TERMS PORTING README RELEASE.NOTES +} |