blob: 05fc63ac52b7f1e94468b03270728928838cbbf0 (
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
|
# 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_rc1.ebuild,v 1.1 2006/05/01 02:21:56 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"
PATCHES="${FILESDIR}/${PN}-5.3-doc-locations.patch
${FILESDIR}/${PN}-5.4-gentoo-skel.patch
${FILESDIR}/${PN}-6.0-links.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
# Remove them so that they can't be included by error
rm -rf ${S}/mk/*.mk
}
src_compile() {
# 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"
}
|