blob: dfde3df2d2f768e7cc307d6640ed45bae918a40a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# 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_alpha46.ebuild,v 1.11 2006/05/30 23:39:53 merlin 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 ~ppc64"
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
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
}
|