blob: 28d4d534c7f30143608c9b6498e30a28ac6860c0 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-contrib/freebsd-contrib-6.2_beta1.ebuild,v 1.1 2006/09/21 20:53:16 flameeyes Exp $
inherit bsdmk freebsd flag-o-matic
GCC="freebsd-gcc-3.4.2"
DESCRIPTION="Contributed sources for FreeBSD."
SLOT="0"
KEYWORDS="~x86-fbsd"
LICENSE="BSD GPL-2 as-is"
IUSE="ssl kerberos"
SRC_URI="mirror://gentoo/${GNU}.tar.bz2
mirror://gentoo/${GCC}.tar.bz2
mirror://gentoo/${P}.tar.bz2"
RDEPEND="kerberos? ( virtual/krb5 )
ssl? ( dev-libs/openssl )"
DEPEND="${RDEPEND}
=sys-freebsd/freebsd-sources-${RV}*
=sys-freebsd/freebsd-mk-defs-${RV}*"
S="${WORKDIR}/gnu"
pkg_setup() {
if use kerberos && ! use ssl; then
error "You can't install with kerberos support and no ssl support"
fi
use ssl || mymakeopts="${mymakeopts} NO_OPENSSL= NO_CRYPT= "
use kerberos || mymakeopts="${mymakeopts} NO_KERBEROS= "
}
REMOVE_SUBDIRS="lib/libg2c lib/libgcc lib/libgcc_r lib/libgcov lib/libiberty
lib/libobjc lib/libreadline lib/libregex lib/libstdc++ lib/libsupc++ usr.bin/bc
usr.bin/binutils usr.bin/cc usr.bin/cpio usr.bin/cvs usr.bin/dc usr.bin/dialog
usr.bin/diff usr.bin/diff3 usr.bin/gdb usr.bin/gperf usr.bin/grep usr.bin/groff
usr.bin/gzip usr.bin/man usr.bin/rcs usr.bin/sdiff usr.bin/send-pr
usr.bin/tar usr.bin/texinfo"
PATCHES="${FILESDIR}/${PN}-5.3-lib_csu-makefile.patch"
src_install() {
freebsd_src_install
# Move these to /bin for boot access
dodir /bin
mv "${D}/usr/bin/sort" "${D}/bin/" || die "mv failed"
}
|