Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 37990
Collapse All | Expand All

(-)ebuild.sh (+17 lines)
Lines 215-220 Link Here
215
export INSDESTTREE=""
215
export INSDESTTREE=""
216
export EXEDESTTREE=""
216
export EXEDESTTREE=""
217
export DOCDESTTREE=""
217
export DOCDESTTREE=""
218
export PIXDESTTREE=""
218
export INSOPTIONS="-m0644"
219
export INSOPTIONS="-m0644"
219
export EXEOPTIONS="-m0755"	
220
export EXEOPTIONS="-m0755"	
220
export LIBOPTIONS="-m0644"
221
export LIBOPTIONS="-m0644"
Lines 574-579 Link Here
574
	fi
575
	fi
575
}
576
}
576
577
578
pixinto() {
579
	if [ "$1" == "/" ]; then
580
		export PIXDESTTREE=""
581
	else
582
		export PIXDESTTREE="$1"
583
		if [ ! -d "${D}usr/share/pixmaps/${PIXDESTTREE}" ]; then
584
			install -d "${D}usr/share/pixmaps/${PIXDESTTREE}"
585
		fi
586
	fi
587
}
588
577
insopts() {
589
insopts() {
578
	INSOPTIONS=""
590
	INSOPTIONS=""
579
	for x in $*; do
591
	for x in $*; do
Lines 832-837 Link Here
832
		rm -fR ${IMAGE}/usr/share/doc
844
		rm -fR ${IMAGE}/usr/share/doc
833
	fi
845
	fi
834
846
847
	# remove pixmaps
848
	if has nopix $FEATURES; then
849
		rm -fR ${IMAGE}/usr/share/pixmaps
850
	fi
851
835
	# Smart FileSystem Permissions
852
	# Smart FileSystem Permissions
836
	if has sfperms $FEATURES; then
853
	if has sfperms $FEATURES; then
837
		for i in $(find ${IMAGE}/ -type f -perm -4000); do
854
		for i in $(find ${IMAGE}/ -type f -perm -4000); do

Return to bug 37990