Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 84898 | Differences between
and this patch

Collapse All | Expand All

(-)/root/overlay/eclass/freebsd-utils.eclass (-1 / +13 lines)
Lines 21-29 Link Here
21
21
22
#unalias -a
22
#unalias -a
23
alias make='/usr/bin/make'
23
alias make='/usr/bin/make'
24
alias emake='/usr/bin/make'
25
alias install-info='/usr/bin/bsdinstall-info'
24
alias install-info='/usr/bin/bsdinstall-info'
26
25
26
# For freebsd-* utils default to bsd make
27
MAKE="/usr/bin/make"
28
27
#### unlock-file <files> ####
29
#### unlock-file <files> ####
28
# Unlock a particular file using freebsd's 
30
# Unlock a particular file using freebsd's 
29
# chflags command. 
31
# chflags command. 
Lines 52-57 Link Here
52
# function. It runs dosbin
54
# function. It runs dosbin
53
# and doman.
55
# and doman.
54
#
56
#
57
#### fmake <options>
58
# calls ${MAKE} command with
59
# the given options, passing
60
# ${mymakeopts} to enable
61
# ports to useflags bridge.
62
#
55
#############################
63
#############################
56
64
57
unlock-file() {
65
unlock-file() {
Lines 150-155 Link Here
150
		fi
158
		fi
151
	done
159
	done
152
	return 0
160
	return 0
161
}
162
163
fmake() {
164
	${MAKE} ${MAKEOPTS} ${EXTRA_EMAKE} ${mymakeopts} "$@"
153
}
165
}
154
166
155
# Consider this testing for future versions of freebsd sources ebuild 
167
# Consider this testing for future versions of freebsd sources ebuild 

Return to bug 84898