blob: f5221f1463f14b1112fd68e1443f4fb21eeea403 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/rox-extra/roxget/roxget-0.0.4.ebuild,v 1.4 2007/07/12 06:31:38 mr_bones_ Exp $
ROX_LIB_VER=1.9.16
inherit rox
DESCRIPTION="ROXget - Download Handler for the ROX Desktop"
MY_PN="ROXget"
MY_PV="004"
HOMEPAGE="http://nipul.digitillogic.net/"
SRC_URI="http://nipul.digitillogic.net/${MY_PN}-${MY_PV}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="dev-python/urlgrabber"
APPNAME=${MY_PN}
S=${WORKDIR}/${MY_PN}-${MY_PV}
src_unpack() {
unpack ${A}
cd ${MY_PN}-${MY_PV}
mkdir ${APPNAME}
mv * ${APPNAME}/
}
|