blob: f9ccce6a09c7c5ee7b135a64e179c9021e66a31e (
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
68
69
70
71
72
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-share/freebsd-share-6.1-r1.ebuild,v 1.1 2006/07/18 21:13:32 flameeyes Exp $
inherit bsdmk freebsd
DESCRIPTION="FreeBSD shared tools/files"
SLOT="0"
KEYWORDS="~x86-fbsd"
IUSE="doc isdn"
SRC_URI="mirror://gentoo/${SHARE}.tar.bz2
mirror://gentoo/${CONTRIB}.tar.bz2
mirror://gentoo/${GNU}.tar.bz2
mirror://gentoo/${UBIN}.tar.bz2
mirror://gentoo/${USBIN}.tar.bz2
mirror://gentoo/${SBIN}.tar.bz2
mirror://gentoo/${BIN}.tar.bz2
mirror://gentoo/${LIB}.tar.bz2
mirror://gentoo/${ETC}.tar.bz2"
DEPEND="=sys-freebsd/freebsd-mk-defs-${RV}*"
RDEPEND=""
RESTRICT="nostrip"
S="${WORKDIR}/share"
pkg_setup() {
use isdn || mymakeopts="${mymakeopts} NO_I4B= "
use doc || mymakeopts="${mymakeopts} NO_SHAREDOCS= "
mymakeopts="${mymakeopts} NO_SENDMAIL= "
}
REMOVE_SUBDIRS="mk termcap zoneinfo tabset"
PATCHES="${FILESDIR}/${PN}-5.3-doc-locations.patch
${FILESDIR}/${PN}-5.4-gentoo-skel.patch"
src_unpack() {
freebsd_src_unpack
# Remove make.conf manpage as it describes bsdmk's make.conf.
sed -i -e 's:make.conf.5::' "${S}/man/man5/Makefile"
# Don't install the arch-specific directories in subdirectories
sed -i -e '/MANSUBDIR/d' "${S}"/man/man4/man4.{alpha,i386,sparc64}/Makefile
cd "${S}/mklocale"
# See http://opal.com/freebsd/unicode.html
epatch "${FILESDIR}/${P}-utf8.patch"
# Remove them so that they can't be included by error
rm -rf "${S}"/mk/*.mk
# Change the order, colldef has to go after mklocale or it creates symlinks
# with the names of directories
sed -i -e 's:colldef::' -e 's:mklocale:mklocale colldef:' "${S}/Makefile"
}
src_compile() {
export ESED="/usr/bin/sed"
# This is a groff problem and not a -shared problem.
export GROFF_TMAC_PATH="/usr/share/tmac/:/usr/share/groff/1.19.1/tmac/"
mkmake || die "emake failed"
}
src_install() {
mkmake DESTDIR="${D}" DOCDIR=/usr/share/doc/${PF} install || die "Install failed"
}
|