diff options
Diffstat (limited to 'net-wireless/hostapd')
-rw-r--r-- | net-wireless/hostapd/hostapd-9999.ebuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/net-wireless/hostapd/hostapd-9999.ebuild b/net-wireless/hostapd/hostapd-9999.ebuild index e7978ed1696b..342d0151c2d8 100644 --- a/net-wireless/hostapd/hostapd-9999.ebuild +++ b/net-wireless/hostapd/hostapd-9999.ebuild @@ -15,7 +15,12 @@ if [[ $PV == 9999 ]]; then inherit git-r3 EGIT_REPO_URI="https://w1.fi/hostap.git" else - SRC_URI+=" https://w1.fi/releases/${P}.tar.gz" + if [[ $PV =~ ^.*_p[0-9]{8}$ ]]; then + SRC_URI+=" https://dev.gentoo.org/~andrey_utkin/distfiles/${P}.tar.xz" + else + SRC_URI+=" https://w1.fi/releases/${P}.tar.gz" + fi + # Never stabilize snapshot ebuilds please KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86" fi |