diff options
Diffstat (limited to 'app-arch/star/star-1.5_alpha43.ebuild')
-rw-r--r-- | app-arch/star/star-1.5_alpha43.ebuild | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/app-arch/star/star-1.5_alpha43.ebuild b/app-arch/star/star-1.5_alpha43.ebuild new file mode 100644 index 000000000000..b1e9c04a9118 --- /dev/null +++ b/app-arch/star/star-1.5_alpha43.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/star/star-1.5_alpha43.ebuild,v 1.1 2004/07/30 17:02:04 lostlogic Exp $ + +S=${WORKDIR}/${P/_alpha[0-9][0-9]} + +DESCRIPTION="An enhanced (world's fastest) tar, as well as enhanced mt/rmt" +HOMEPAGE="http://www.fokus.gmd.de/research/cc/glone/employees/joerg.schilling/private/star.html" +#This URI for alpha versions +SRC_URI="ftp://ftp.berlios.de/pub/${PN}/alpha/${PN}-${PV/_alpha/a}.tar.bz2" +#This URI for non-alpha versions +#SRC_URI="ftp://ftp.berlios.de/pub/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~mips ~alpha ~hppa ~amd64 ~ia64" +IUSE="" + +DEPEND="virtual/libc" + +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 [ "${ARCH}" = "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 + +} + +src_compile() { + emake COPTX="${CFLAGS}" || die +} + +src_install() { + einstall INS_BASE=${D}/usr || 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 + + 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 + cd ${D}/usr/bin + ln -s star ustar + cd ${D}/usr/sbin + mv rmt rmt.star + dosym rmt.star /usr/sbin/rmt + dosym rmt.1.gz /usr/share/man/man1/rmt.star.1.gz +} |