blob: 2100e4bf6e8ed33ca056abbba5754923db0e2aba (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/sipcalc/sipcalc-1.1.2.ebuild,v 1.2 2004/12/10 22:25:42 weeve Exp $
IUSE=""
DESCRIPTION="Sipcalc is an advanced console-based IP subnet calculator."
HOMEPAGE="http://www.routemeister.net/projects/sipcalc/"
KEYWORDS="~x86 ~sparc"
SRC_URI="http://www.routemeister.net/projects/${PN}/files/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
DEPEND="virtual/libc"
src_compile() {
# econf --prefix="${D}" --bindir="${D}/usr/bin" --mandir="${D}/usr/man" || die "econf failed"
econf || die
emake || die
}
src_install() {
make DESTDIR="${D}" install || die
dodoc ChangeLog AUTHORS COPYING INSTALL NEWS README TODO
}
|