diff options
author | Brian Harring <ferringb@gentoo.org> | 2005-09-17 07:55:30 +0000 |
---|---|---|
committer | Brian Harring <ferringb@gentoo.org> | 2005-09-17 07:55:30 +0000 |
commit | e24999295c11b2cb7392ba936f0cc773337a6534 (patch) | |
tree | 044acc4a30a5553414d5ab40de0a62308ff32017 /dev-util | |
parent | bsdiff v4.3 addition, and yoinking of bsdiff-4.1 (diff) | |
download | gentoo-2-e24999295c11b2cb7392ba936f0cc773337a6534.tar.gz gentoo-2-e24999295c11b2cb7392ba936f0cc773337a6534.tar.bz2 gentoo-2-e24999295c11b2cb7392ba936f0cc773337a6534.zip |
yanked an unneeded DEFINE
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/bsdiff/bsdiff-4.3.ebuild | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/dev-util/bsdiff/bsdiff-4.3.ebuild b/dev-util/bsdiff/bsdiff-4.3.ebuild index 3054df954657..939dee11702e 100644 --- a/dev-util/bsdiff/bsdiff-4.3.ebuild +++ b/dev-util/bsdiff/bsdiff-4.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/bsdiff/bsdiff-4.3.ebuild,v 1.1 2005/09/17 07:47:38 ferringb Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/bsdiff/bsdiff-4.3.ebuild,v 1.2 2005/09/17 07:55:30 ferringb Exp $ inherit toolchain-funcs @@ -12,16 +12,14 @@ SRC_URI="http://www.daemonology.net/bsdiff/${P}.tar.gz" SLOT="0" LICENSE="BSD-protection" -KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~mips ~amd64 ia64" +KEYWORDS="x86 ppc sparc alpha ~hppa ~mips amd64 ia64" DEPEND="app-arch/bzip2" src_compile() { - local BZIP - BZIP=$(type -p bzip2) cd ${S} - $(tc-getCC) -o bsdiff -DBZIP2=\"${BZIP}\" bsdiff.c -lbz2 || die "failed compiling bsdiff" - $(tc-getCC) -o bspatch -DBZIP2=\"${BZIP}\" bspatch.c -lbz2 || die "failed compiling bspatch" + $(tc-getCC) -o bsdiff bsdiff.c -lbz2 || die "failed compiling bsdiff" + $(tc-getCC) -o bspatch bspatch.c -lbz2 || die "failed compiling bspatch" } src_install() { |