diff options
author | Michael Cummings <mcummings@gentoo.org> | 2002-12-22 23:14:32 +0000 |
---|---|---|
committer | Michael Cummings <mcummings@gentoo.org> | 2002-12-22 23:14:32 +0000 |
commit | 773c891e4bd3c7da444414ec424a6a8d1b9e068e (patch) | |
tree | a09f259cc78dd1931bd688011c7619c587173dd9 /dev-perl | |
parent | New version (diff) | |
download | gentoo-2-773c891e4bd3c7da444414ec424a6a8d1b9e068e.tar.gz gentoo-2-773c891e4bd3c7da444414ec424a6a8d1b9e068e.tar.bz2 gentoo-2-773c891e4bd3c7da444414ec424a6a8d1b9e068e.zip |
fixor
Diffstat (limited to 'dev-perl')
-rw-r--r-- | dev-perl/libapreq/libapreq-1.0-r3.ebuild | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/dev-perl/libapreq/libapreq-1.0-r3.ebuild b/dev-perl/libapreq/libapreq-1.0-r3.ebuild index 8c1ed9576cff..cbeaf89a073e 100644 --- a/dev-perl/libapreq/libapreq-1.0-r3.ebuild +++ b/dev-perl/libapreq/libapreq-1.0-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/libapreq/libapreq-1.0-r3.ebuild,v 1.1 2002/12/22 22:21:05 mcummings Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/libapreq/libapreq-1.0-r3.ebuild,v 1.2 2002/12/22 23:14:32 mcummings Exp $ inherit perl-post @@ -20,11 +20,16 @@ mydoc="TODO" src_compile() { perl Makefile.PL PREFIX=${D}/usr || die - make + cp Cookie/Makefile Cookie/Makefile.bak + cp Request/Makefile Request/Makefile.bak + sed -e "s|LD_RUN_PATH = /var/tmp/portage/libapreq-1.0-r3/work/libapreq-1.0/Cookie/|LD_RUN_PATH = |" Cookie/Makefile.bak > Cookie/Makefile + + + sed -e "s|LD_RUN_PATH = /var/tmp/portage/libapreq-1.0-r3/work/libapreq-1.0/Request/|LD_RUN_PATH = |" Request/Makefile.bak > Request/Makefile + make } src_install() { - make install } |