diff options
Diffstat (limited to 'net-misc/smbc/smbc-1.0.0-r1.ebuild')
-rw-r--r-- | net-misc/smbc/smbc-1.0.0-r1.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/net-misc/smbc/smbc-1.0.0-r1.ebuild b/net-misc/smbc/smbc-1.0.0-r1.ebuild new file mode 100644 index 000000000000..c67ea4b2bc0d --- /dev/null +++ b/net-misc/smbc/smbc-1.0.0-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/smbc/smbc-1.0.0-r1.ebuild,v 1.1 2004/12/20 15:09:09 satya Exp $ + +DESCRIPTION="A text mode (ncurses) SMB network commander. Features: resume and UTF-8" +HOMEPAGE="http://smbc.airm.net/en/index.php" +SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="nls debug" + +DEPEND="sys-devel/gcc + >=net-fs/samba-2.8.8 + >=sys-devel/automake-1.8 + sys-libs/ncurses + dev-libs/popt + nls? ( sys-devel/gettext )" +#---------------------------------------------------------------------------- +src_compile() { + local myconf="" + use nls && myconf="${myconf} `use_enable nls`" + use debug && myconf="${myconf} --with-debug" + econf ${myconf} || die "Configuration failed" + einfo "Configuration: ${myconf}" + emake || die "Make failed" +} +#---------------------------------------------------------------------------- +src_install() { + make DESTDIR=${D} install || die +} + |