diff options
author | 2002-08-17 02:10:59 +0000 | |
---|---|---|
committer | 2002-08-17 02:10:59 +0000 | |
commit | 169019656c8879cfe12d78e4e4a6ee00a9b457a8 (patch) | |
tree | f49975d446982e061a3606e7994ef50a8fcb30d1 /sys-apps/tar | |
parent | slight cleanup (diff) | |
download | gentoo-2-169019656c8879cfe12d78e4e4a6ee00a9b457a8.tar.gz gentoo-2-169019656c8879cfe12d78e4e4a6ee00a9b457a8.tar.bz2 gentoo-2-169019656c8879cfe12d78e4e4a6ee00a9b457a8.zip |
enhanced DEPEND list
Diffstat (limited to 'sys-apps/tar')
-rw-r--r-- | sys-apps/tar/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/tar/tar-1.13.25-r2.ebuild | 15 |
2 files changed, 17 insertions, 5 deletions
diff --git a/sys-apps/tar/ChangeLog b/sys-apps/tar/ChangeLog index 8fa322260e64..627e0650a3f7 100644 --- a/sys-apps/tar/ChangeLog +++ b/sys-apps/tar/ChangeLog @@ -1,9 +1,14 @@ # ChangeLog for sys-apps/tar # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/sys-apps/tar/ChangeLog,v 1.3 2002/07/14 19:20:19 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/tar/ChangeLog,v 1.4 2002/08/17 02:10:59 seemant Exp $ *tar-1.13.19-r1.ebuild (14 July 2002) + 16 Aug 2002; Seemant Kulleen <seemant@gentoo.org> tar-1.13.25-r2.ebuild : + + Added gzip, bzip2 and ncompress to DEPEND list. Closes bug #6611 by + laurent.mouillart@free.fr (Laurent Mouillart) + 14 Jul 2002; phoen][x <phoenix@gentoo.org> tar-1.13.19.ebuild : Added LICENSE, KEYWORDS, SLOT. diff --git a/sys-apps/tar/tar-1.13.25-r2.ebuild b/sys-apps/tar/tar-1.13.25-r2.ebuild index ca58bb836f4a..c28e18384cad 100644 --- a/sys-apps/tar/tar-1.13.25-r2.ebuild +++ b/sys-apps/tar/tar-1.13.25-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/sys-apps/tar/tar-1.13.25-r2.ebuild,v 1.6 2002/08/17 02:04:09 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/tar/tar-1.13.25-r2.ebuild,v 1.7 2002/08/17 02:10:59 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="Use this to try make tarballs :)" @@ -11,13 +11,20 @@ SLOT="0" LICENSE="GPL-2" KEYWORDS="x86 ppc sparc sparc64" -DEPEND="nls? ( >=sys-devel/gettext-0.10.35 )" +DEPEND="sys-apps/gzip + sys-apps/bzip2 + app-arch/ncompress" + +RDEPEND="nls? ( >=sys-devel/gettext-0.10.35 )" src_compile() { local myconf [ -z "`use nls`" ] && myconf="--disable-nls" - ./configure --prefix=/usr --bindir=/bin --libexecdir=/usr/lib/misc \ - --infodir=/usr/share/info --host=${CHOST} ${myconf} || die + econf \ + --bindir=/bin \ + --libexecdir=/usr/lib/misc \ + ${myconf} || die + if [ -z "`use static`" ] then emake || die |