# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-arch/star/star-1.5_alpha46.ebuild,v 1.10 2005/04/14 03:03:42 tgall Exp $ inherit eutils 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 ~ppc64" IUSE="" DEPEND="virtual/libc" src_unpack() { unpack ${A} cd ${S} epatch ${FILESDIR}/${P}-gentoo.patch 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 if [ "${ARCH}" = "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() { 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 }