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

(-)wireshark-1.8.2-r2.ebuild (-5 / +7 lines)
Lines 130-142 Link Here
130
130
131
	if use adns; then
131
	if use adns; then
132
		if use libadns; then
132
		if use libadns; then
133
			myconf+=" --with-adns --without-c-ares"
133
			myconf+=( " --with-adns --without-c-ares" )
134
		else
134
		else
135
			myconf+=" --without-adns --with-c-ares"
135
			myconf+=( " --without-adns --with-c-ares" )
136
		fi
136
		fi
137
	else
137
	else
138
		if use libadns; then
138
		if use libadns; then
139
			myconf+=" --with-adns --without-c-ares"
139
			myconf+=( " --with-adns --without-c-ares" )
140
		else
141
			myconf+=( " --without-adns --without-c-ares" )
140
		fi
142
		fi
141
	fi
143
	fi
142
	# Workaround bug #213705. If krb5-config --libs has -lcrypto then pass
144
	# Workaround bug #213705. If krb5-config --libs has -lcrypto then pass
Lines 147-153 Link Here
147
				ewarn "Kerberos was built with ssl support: linkage with openssl is enabled."
149
				ewarn "Kerberos was built with ssl support: linkage with openssl is enabled."
148
				ewarn "Note there are annoying license incompatibilities between the OpenSSL"
150
				ewarn "Note there are annoying license incompatibilities between the OpenSSL"
149
				ewarn "license and the GPL, so do your check before distributing such package."
151
				ewarn "license and the GPL, so do your check before distributing such package."
150
				myconf+=" --with-ssl"
152
				myconf+=( " --with-ssl" )
151
				;;
153
				;;
152
		esac
154
		esac
153
	fi
155
	fi
Lines 178-184 Link Here
178
		--disable-extra-gcc-checks \
180
		--disable-extra-gcc-checks \
179
		--disable-usr-local \
181
		--disable-usr-local \
180
		--sysconfdir="${EPREFIX}"/etc/wireshark \
182
		--sysconfdir="${EPREFIX}"/etc/wireshark \
181
		${myconf}
183
		${myconf[@]}
182
}
184
}
183
185
184
src_compile() {
186
src_compile() {

Return to bug 435542