diff options
author | Cory Visi <merlin@gentoo.org> | 2006-05-31 00:11:24 +0000 |
---|---|---|
committer | Cory Visi <merlin@gentoo.org> | 2006-05-31 00:11:24 +0000 |
commit | 46e8680e7e2f9e59d6a7f0002f98e4e61914c394 (patch) | |
tree | 95704b1771bf924212826e728132b8d622d84c21 /app-arch/star/star-1.5_alpha74.ebuild | |
parent | Initial commit, based on submission from bug #82035. (diff) | |
download | gentoo-2-46e8680e7e2f9e59d6a7f0002f98e4e61914c394.tar.gz gentoo-2-46e8680e7e2f9e59d6a7f0002f98e4e61914c394.tar.bz2 gentoo-2-46e8680e7e2f9e59d6a7f0002f98e4e61914c394.zip |
Took over maintainership, revbumped to alpha74, and corrected symlink bug
(Portage version: 2.0.54-r2)
Diffstat (limited to 'app-arch/star/star-1.5_alpha74.ebuild')
-rw-r--r-- | app-arch/star/star-1.5_alpha74.ebuild | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/app-arch/star/star-1.5_alpha74.ebuild b/app-arch/star/star-1.5_alpha74.ebuild new file mode 100644 index 000000000000..d12584b15120 --- /dev/null +++ b/app-arch/star/star-1.5_alpha74.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/star/star-1.5_alpha74.ebuild,v 1.1 2006/05/31 00:11:24 merlin Exp $ + +DESCRIPTION="An enhanced (world's fastest) tar, as well as enhanced mt/rmt" +HOMEPAGE="http://cdrecord.berlios.de/old/private/star.html" +SRC_URI="ftp://ftp.berlios.de/pub/${PN}/alpha/${PN}-${PV/_alpha/a}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +DEPEND="virtual/libc" + +S=${WORKDIR}/${P/_alpha[0-9][0-9]} + +src_unpack() { + unpack ${A} + cd ${S}/DEFAULTS + sed -i \ + -e 's:/opt/schily:/usr:g' \ + -e 's:bin:root:g' \ + -e 's:/usr/src/linux/include:/usr/include:' \ + Defaults.linux + + if use amd64 ; then + cd ${S}/RULES + cp i386-linux-cc.rul x86_64-linux-cc.rul + cp i386-linux-gcc.rul x86_64-linux-gcc.rul + fi + + if use ppc64 ; then + cd ${S}/RULES + cp ppc-linux-cc.rul ppc64-linux-cc.rul + cp ppc-linux-gcc.rul ppc64-linux-gcc.rul + fi + +} + +src_compile() { + emake COPTX="${CFLAGS}" || die +} + +src_install() { + make INS_BASE=${D}/usr install || die + insinto /etc/default + newins ${S}/rmt/rmt.dfl rmt + + # install mt as mt.star to not conflict with other packages + mv ${D}/usr/bin/mt ${D}/usr/bin/mt.star + + # same goes for rmt (see #33119, sort of) + mv ${D}/usr/sbin/rmt ${D}/usr/sbin/rmt.star + + # finally, remove /usr/bin/tar and /usr/bin/gnutar #33119 + rm ${D}/usr/bin/tar ${D}/usr/bin/gnutar + + dosym star /usr/bin/ustar + + dodoc BUILD Changelog AN-1.* README README.* PORTING TODO + + rm ${D}/usr/man/man1/match* + dodir /usr/share/ + mv ${D}/usr/man/ ${D}/usr/share + + mv ${D}/usr/share/man/man1/rmt.1.gz ${D}/usr/share/man/man1/rmt.star.1.gz +} |