summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Koltsov <maksbotan@gentoo.org>2011-12-15 20:04:03 +0000
committerMaxim Koltsov <maksbotan@gentoo.org>2011-12-15 20:04:03 +0000
commita14d20d0a222f22dac1e6c2878587d4ca0f4e90b (patch)
tree389dff317676efcbf0d0871806258ddab57f6953 /eclass/leechcraft.eclass
parentpam_mount: version bump (diff)
downloadgentoo-2-a14d20d0a222f22dac1e6c2878587d4ca0f4e90b.tar.gz
gentoo-2-a14d20d0a222f22dac1e6c2878587d4ca0f4e90b.tar.bz2
gentoo-2-a14d20d0a222f22dac1e6c2878587d4ca0f4e90b.zip
Update leechcraft eclass to new filename suffix
Diffstat (limited to 'eclass/leechcraft.eclass')
-rw-r--r--eclass/leechcraft.eclass12
1 files changed, 9 insertions, 3 deletions
diff --git a/eclass/leechcraft.eclass b/eclass/leechcraft.eclass
index 8567105cc8f0..c4e83a281486 100644
--- a/eclass/leechcraft.eclass
+++ b/eclass/leechcraft.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/leechcraft.eclass,v 1.2 2011/08/22 18:20:34 maksbotan Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/leechcraft.eclass,v 1.3 2011/12/15 20:04:03 maksbotan Exp $
#
# @ECLASS: leechcraft.eclass
# @MAINTAINER:
@@ -27,7 +27,7 @@ case ${EAPI:-0} in
*) die "Unknown EAPI, bug eclass maintainers" ;;
esac
-inherit cmake-utils
+inherit cmake-utils versionator
if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="git://github.com/0xd34df00d/leechcraft.git"
@@ -35,7 +35,13 @@ if [[ ${PV} == 9999 ]]; then
inherit git-2
else
- SRC_URI="mirror://sourceforge/leechcraft/leechcraft-${PV}.tar.bz2"
+ local suffix
+ if version_is_at_least 0.4.95; then
+ suffix="xz"
+ else
+ suffix="bz2"
+ fi
+ SRC_URI="mirror://sourceforge/leechcraft/leechcraft-${PV}.tar.${suffix}"
S="${WORKDIR}/leechcraft-${PV}"
fi