blob: 3330b95af5c59fd92a502aae30774a219812548a (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-ftp/weex/weex-3.0.0_pre20030508.ebuild,v 1.2 2003/06/24 08:16:09 phosphan Exp $
S="${WORKDIR}/weex"
DESCRIPTION="Automates maintaining a web page or other FTP archive."
HOMEPAGE="http://sourceforge.net/projects/weex/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE="nls"
DEPEND="sys-libs/ncurses"
src_compile() {
local myconf
use nls || myconf="--disable-nls"
econf ${myconf}
emake || die
}
src_install() {
einstall || die
dodoc doc/TODO
}
|