summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Wever <weeve@gentoo.org>2004-02-21 23:30:05 +0000
committerJason Wever <weeve@gentoo.org>2004-02-21 23:30:05 +0000
commitf16b6175565a838482791a1b8fb04f8a92aad755 (patch)
treec63f75fcc0908677517fba80dda4f63e8091e789 /sys-apps/attr
parentamd64 (diff)
downloadhistorical-f16b6175565a838482791a1b8fb04f8a92aad755.tar.gz
historical-f16b6175565a838482791a1b8fb04f8a92aad755.tar.bz2
historical-f16b6175565a838482791a1b8fb04f8a92aad755.zip
Changed sparc fix so now it's an actual fix rather than a workaround.
Diffstat (limited to 'sys-apps/attr')
-rw-r--r--sys-apps/attr/ChangeLog5
-rw-r--r--sys-apps/attr/attr-2.4.7-r1.ebuild8
2 files changed, 7 insertions, 6 deletions
diff --git a/sys-apps/attr/ChangeLog b/sys-apps/attr/ChangeLog
index 7dec2ce453dd..73c15c670137 100644
--- a/sys-apps/attr/ChangeLog
+++ b/sys-apps/attr/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-apps/attr
# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/ChangeLog,v 1.25 2004/01/10 18:47:11 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/ChangeLog,v 1.26 2004/02/21 23:30:05 weeve Exp $
+
+ 21 Feb 2004; Jason Wever <weeve@gentoo.org> attr-2.4.7-r1.ebuild:
+ Changed sparc fix so now it's an actual fix rather than a workaround.
10 Jan 2004; Aron Griffis <agriffis@gentoo.org> attr-2.4.7-r1.ebuild:
stable on alpha
diff --git a/sys-apps/attr/attr-2.4.7-r1.ebuild b/sys-apps/attr/attr-2.4.7-r1.ebuild
index 0d057eff447a..1978a538b38e 100644
--- a/sys-apps/attr/attr-2.4.7-r1.ebuild
+++ b/sys-apps/attr/attr-2.4.7-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/attr-2.4.7-r1.ebuild,v 1.11 2004/01/25 00:29:08 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/attr-2.4.7-r1.ebuild,v 1.12 2004/02/21 23:30:05 weeve Exp $
inherit eutils
@@ -46,17 +46,15 @@ src_compile() {
fi
local myconf="`use_enable nls gettext`"
+ [ `use sparc` ] && unset PLATFORM
econf ${myconf} || die
+
sed -i \
-e 's:^PKG_\(.*\)_DIR = \(.*\)$:PKG_\1_DIR = ${DESTDIR}\2:' \
-e 's:-O1::' -e 's:../$(INSTALL) -S \(.*\) $(PKG_.*_DIR)/\(.*$\)::' \
include/builddefs
- if [ "${ARCH}" = "sparc" ]; then
- sed -i -e 's/sparc.*$/linux/' include/builddefs
- fi
-
make || die
}