diff options
author | Brad Teaford Cowan <bcowan@gentoo.org> | 2002-10-05 08:25:36 +0000 |
---|---|---|
committer | Brad Teaford Cowan <bcowan@gentoo.org> | 2002-10-05 08:25:36 +0000 |
commit | 3b7bb73023f00fa0126f4a3865349c6388bd5882 (patch) | |
tree | c412d7bcd88f583007c1bc3e0424a50708689069 /sys-apps/attr | |
parent | Modernized ebuilds and fixed symlinks (diff) | |
download | historical-3b7bb73023f00fa0126f4a3865349c6388bd5882.tar.gz historical-3b7bb73023f00fa0126f4a3865349c6388bd5882.tar.bz2 historical-3b7bb73023f00fa0126f4a3865349c6388bd5882.zip |
Modernized ebuilds and fixed symlinks
Diffstat (limited to 'sys-apps/attr')
-rw-r--r-- | sys-apps/attr/ChangeLog | 6 | ||||
-rw-r--r-- | sys-apps/attr/attr-2.0.9.ebuild | 31 |
2 files changed, 22 insertions, 15 deletions
diff --git a/sys-apps/attr/ChangeLog b/sys-apps/attr/ChangeLog index 0997c2e39343..7ea0162cf849 100644 --- a/sys-apps/attr/ChangeLog +++ b/sys-apps/attr/ChangeLog @@ -1,6 +1,6 @@ # ChangeLog for sys-apps/attr # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/ChangeLog,v 1.4 2002/09/27 20:01:06 bcowan Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/ChangeLog,v 1.5 2002/10/05 08:25:36 bcowan Exp $ *attr-2.0.9 (27 Sep 2002) @@ -9,6 +9,10 @@ version bump thanks to Hanno Boeck <hanno@gentoo.org> + 05 Oct 2002; Brad Cowan <bcowan@gentoo.org> attr-2.0.9.ebuild : + + Fixed symlinks and "modernized" ebuild. + *attr-20020330.ebuild (14 July 2002) 21 Jul 2002; Mark Guertin <gerk@gentoo.org>: diff --git a/sys-apps/attr/attr-2.0.9.ebuild b/sys-apps/attr/attr-2.0.9.ebuild index d73c5c007e40..dda5bace39a4 100644 --- a/sys-apps/attr/attr-2.0.9.ebuild +++ b/sys-apps/attr/attr-2.0.9.ebuild @@ -1,40 +1,43 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/attr-2.0.9.ebuild,v 1.2 2002/10/04 06:22:52 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/attr-2.0.9.ebuild,v 1.3 2002/10/05 08:25:36 bcowan Exp $ S=${WORKDIR}/${P} + DESCRIPTION="xfs extended attributes tools" + SRC_URI="ftp://oss.sgi.com/projects/xfs/download/cmd_tars/${P}.src.tar.gz" HOMEPAGE="http://oss.sgi.com/projects/xfs" + KEYWORDS="x86 ppc sparc sparc64" SLOT="0" LICENSE="LGPL-2.1" -DEPEND="virtual/glibc sys-devel/autoconf sys-devel/make" -RDEPEND="virtual/glibc" +DEPEND="virtual/glibc" +RDEPEND="${DEPEND}" src_compile() { - cd ${S} - export OPTIMIZER="${CFLAGS}" - export DEBUG=-DNDEBUG + OPTIMIZER="${CFLAGS}" + DEBUG=-DNDEBUG + autoconf || die - ./configure --prefix=/usr || die - # 1) add a ${DESTDIR} prefix to all install paths so we can relocate during the "install" phase - # 2) we also set the /usr/share/doc/ directory to the correct value. - # 3) we remove a hard-coded "-O1" - # 4) we fix some Makefile-created library symlinks that contains absolute paths + + ./configure --prefix=/usr \ + --libexecdir=/lib || die + cp include/builddefs include/builddefs.orig sed -e 's:^PKG_\(.*\)_DIR = \(.*\)$:PKG_\1_DIR = ${DESTDIR}\2:' \ -e "s:/usr/share/doc/${PN}:/usr/share/doc/${PF}:" \ -e 's:-O1::' \ -e 's:../$(INSTALL) -S \(.*\) $(PKG_.*_DIR)/\(.*$\)::' \ include/builddefs.orig > include/builddefs || die + emake || die } src_install() { make DESTDIR=${D} install install-lib install-dev || die - #dosym /usr/lib/libattr.a /lib/libattr.a - #dosym /usr/lib/libattr.la /lib/libattr.la - #dosym /lib/libattr.so /usr/lib/libattr.so + dosym /lib/libattr.a /usr/lib/libattr.a + dosym /lib/libattr.la /usr/lib/libattr.la + dosym /usr/lib/libattr.so /lib/libattr.so } |