summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Wever <weeve@gentoo.org>2003-11-28 17:57:38 +0000
committerJason Wever <weeve@gentoo.org>2003-11-28 17:57:38 +0000
commitec3472ba9ab35d79663dee40c50c1261af1cd30d (patch)
tree2d473b74fc34b4ae9108a871eb84ffb265df8b37 /sys-apps/attr
parentversion bump (diff)
downloadgentoo-2-ec3472ba9ab35d79663dee40c50c1261af1cd30d.tar.gz
gentoo-2-ec3472ba9ab35d79663dee40c50c1261af1cd30d.tar.bz2
gentoo-2-ec3472ba9ab35d79663dee40c50c1261af1cd30d.zip
Added a fix for sparcs so attr will build. Not that we can use XFS yet, but acl wants it.
Diffstat (limited to 'sys-apps/attr')
-rw-r--r--sys-apps/attr/ChangeLog6
-rw-r--r--sys-apps/attr/Manifest4
-rw-r--r--sys-apps/attr/attr-2.4.7-r1.ebuild8
3 files changed, 13 insertions, 5 deletions
diff --git a/sys-apps/attr/ChangeLog b/sys-apps/attr/ChangeLog
index 49edf5be81da..35a688a24ff0 100644
--- a/sys-apps/attr/ChangeLog
+++ b/sys-apps/attr/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-apps/attr
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/ChangeLog,v 1.20 2003/10/22 12:14:47 darkspecter Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/ChangeLog,v 1.21 2003/11/28 17:57:35 weeve Exp $
+
+ 28 Nov 2003; Jason Wever <weeve@gentoo.org> attr-2.4.7-r1.ebuild:
+ Added a fix for sparcs so attr will build. Not that we can use XFS yet, but
+ acl wants it.
22 Oct 2003; Bartosch Pixa <darkspecter@gentoo.org> attr-2.4.7-r1.ebuild:
set ppc in keywords
diff --git a/sys-apps/attr/Manifest b/sys-apps/attr/Manifest
index 885572e8eda9..fa92286aef17 100644
--- a/sys-apps/attr/Manifest
+++ b/sys-apps/attr/Manifest
@@ -1,7 +1,7 @@
-MD5 e666daf164818db326aa5c66366aaf56 ChangeLog 3444
+MD5 41d7e1343cd761d795459e321480b33a ChangeLog 3601
MD5 d40802c48efda832a579be7e9b69f559 attr-2.2.0.ebuild 1278
MD5 9bf91e2476f3372fb92bc398ba94601f attr-2.4.1.ebuild 1344
-MD5 fd5f3d12a4c6820c8fbfde3a081f6d19 attr-2.4.7-r1.ebuild 1540
+MD5 36f0baa0d2c771e8c772067a52987ab9 attr-2.4.7-r1.ebuild 1630
MD5 eb9d74131b80a3e1c465474ea5eb5d9e files/attr-2.2.0-gettext.diff 642
MD5 74e751203db2d18c328b77951c4e5396 files/attr-2.4.1-gettext.diff 1208
MD5 b57048711f1d8bc6ae87ea34a3dc212f files/digest-attr-2.2.0 123
diff --git a/sys-apps/attr/attr-2.4.7-r1.ebuild b/sys-apps/attr/attr-2.4.7-r1.ebuild
index 92ec0b17e4db..3e786ba99c63 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-2003 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.5 2003/10/22 12:14:47 darkspecter Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/attr-2.4.7-r1.ebuild,v 1.6 2003/11/28 17:57:35 weeve Exp $
S=${WORKDIR}/${P}
DESCRIPTION="xfs extended attributes tools"
@@ -10,7 +10,7 @@ SRC_URI="ftp://oss.sgi.com/projects/xfs/download/cmd_tars/${P}.src.tar.gz
SLOT="0"
LICENSE="LGPL-2.1"
-KEYWORDS="x86 ~amd64 ~mips ppc ia64"
+KEYWORDS="x86 ~amd64 ~mips ppc ia64 ~sparc"
DEPEND=">=sys-apps/portage-2.0.47-r10
>=sys-apps/sed-4.0.5
@@ -43,6 +43,10 @@ src_compile() {
-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
}