diff options
author | 2005-06-17 01:05:34 +0000 | |
---|---|---|
committer | 2005-06-17 01:05:34 +0000 | |
commit | dc2df7666e5b4dad3367a1b157a41d14aef239ba (patch) | |
tree | 1334920711b7d30f56fc5af9c4b20ae2e1d2c59b /app-arch/rzip | |
parent | delete manpages provided by other packages (diff) | |
download | historical-dc2df7666e5b4dad3367a1b157a41d14aef239ba.tar.gz historical-dc2df7666e5b4dad3367a1b157a41d14aef239ba.tar.bz2 historical-dc2df7666e5b4dad3367a1b157a41d14aef239ba.zip |
fix up install paths
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'app-arch/rzip')
-rw-r--r-- | app-arch/rzip/metadata.xml | 3 | ||||
-rw-r--r-- | app-arch/rzip/rzip-2.0-r1.ebuild | 15 |
2 files changed, 9 insertions, 9 deletions
diff --git a/app-arch/rzip/metadata.xml b/app-arch/rzip/metadata.xml index 69ea07e1a226..a08987162014 100644 --- a/app-arch/rzip/metadata.xml +++ b/app-arch/rzip/metadata.xml @@ -3,8 +3,7 @@ <pkgmetadata> <herd>no-herd</herd> <maintainer> - <email>ferringb@gentoo.org</email> - <name>Brian Harring</name> + <email>ferringb@gentoo.org</email> </maintainer> <maintainer> <email>ben@stijlstek.nl</email> diff --git a/app-arch/rzip/rzip-2.0-r1.ebuild b/app-arch/rzip/rzip-2.0-r1.ebuild index 71b0643a8021..85140f99bb1a 100644 --- a/app-arch/rzip/rzip-2.0-r1.ebuild +++ b/app-arch/rzip/rzip-2.0-r1.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/app-arch/rzip/rzip-2.0-r1.ebuild,v 1.6 2005/01/01 11:57:35 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/rzip/rzip-2.0-r1.ebuild,v 1.7 2005/06/17 01:05:34 vapier Exp $ DESCRIPTION="compression program for large files" HOMEPAGE="http://rzip.samba.org/" @@ -8,14 +8,15 @@ SRC_URI="http://rzip.samba.org/ftp/rzip/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="x86 ppc sparc amd64 ppc64" +KEYWORDS="amd64 ppc ppc64 sparc x86" IUSE="" -DEPEND="virtual/libc - sys-apps/coreutils - app-arch/bzip2" +DEPEND="app-arch/bzip2" src_install() { - einstall || die - dosym /usr/bin/rzip /usr/bin/runzip + make \ + INSTALL_BIN="${D}"/usr/bin \ + INSTALL_MAN="${D}"/usr/share/man \ + install || die + dosym rzip /usr/bin/runzip } |