You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-arch/star/star-1.5.1-r1.ebuild

85 lines
2.8 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/star/star-1.5.1-r1.ebuild,v 1.6 2012/01/04 19:51:50 ranger Exp $
EAPI="3"
inherit eutils toolchain-funcs
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}/${P}.tar.bz2"
LICENSE="GPL-2 LGPL-2.1 CDDL-Schily"
SLOT="0"
KEYWORDS="alpha amd64 hppa ia64 ~mips ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="acl xattr"
DEPEND="acl? ( sys-apps/acl )
xattr? ( sys-apps/attr )"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${P/_alpha[0-9][0-9]}
src_prepare() {
sed -i \
-e "s:/opt/schily:${EPREFIX}/usr:g" \
-e 's:bin:root:g' \
-e "s:/usr/src/linux/include:${EPREFIX}/usr/include:" \
DEFAULTS/Defaults.linux || die
# Disable libacl autodependency (hacky build system, hacky fix...)
use acl || sed -e 's:[$]ac_cv_header_sys_acl_h:disable acl:' \
-i "${S}/autoconf/configure"
use xattr || sed -e 's:[$]ac_cv_header_attr_xattr_h:disable xattr:' \
-i "${S}/autoconf/configure"
# Create additional symlinks needed for some archs.
cd "${S}/RULES"
local t
for t in ppc64 s390x ; do
ln -s i586-linux-cc.rul ${t}-linux-cc.rul || die
ln -s i586-linux-gcc.rul ${t}-linux-gcc.rul || die
done
}
src_configure() { :; } #avoid ./configure run
src_compile() {
emake CC="$(tc-getCC)" COPTX="${CFLAGS}" CPPOPTX="${CPPFLAGS}" LDOPTX="${LDFLAGS}" || die
}
src_install() {
# Joerg Schilling suggested to integrate star into the main OS using call:
# make INS_BASE=/usr DESTDIR="${D}" install
dobin star/OBJ/*-*-cc/star || die "dobin star failed"
dobin tartest/OBJ/*-*-cc/tartest || die "dobin tartest failed"
dobin star_sym/OBJ/*-*-cc/star_sym || die "dobin star_sym failed"
dobin mt/OBJ/*-*-cc/smt || die "dobin smt failed"
newsbin rmt/OBJ/*-*-cc/rmt rmt.star || die
newman rmt/rmt.1 rmt.star.1 || die
# Note that we should never install gnutar, tar or rmt in this package.
# tar and rmt are provided by app-arch/tar. gnutar is not compatible with
# GNU tar and breakes compilation, or init scripts. bug #33119
dosym {star,/usr/bin/ustar} || die
dosym {star,/usr/bin/spax} || die
dosym {star,/usr/bin/scpio} || die
dosym {star,/usr/bin/suntar} || die
# match is needed to understand the pattern matcher, if you wondered why ;)
mv star/{star.4,star.5}
doman man/man1/match.1 tartest/tartest.1 \
star/{star.5,star.1,spax.1,scpio.1,suntar.1} || die
insinto /etc/default
newins star/star.dfl star || die
newins rmt/rmt.dfl rmt || die
dodoc star/{README.ACL,README.crash,README.largefiles,README.otherbugs} \
star/{README.pattern,README.pax,README.posix-2001,README,STARvsGNUTAR} \
rmt/default-rmt.sample TODO AN-* Changelog CONTRIBUTING || die
}