diff options
author | Brandy Westcott <brandy@gentoo.org> | 2003-11-28 00:40:24 +0000 |
---|---|---|
committer | Brandy Westcott <brandy@gentoo.org> | 2003-11-28 00:40:24 +0000 |
commit | 944d44d6df8b0234d1c99f3f5265dd6ccb3d6ca5 (patch) | |
tree | 7c28973f1b522ca5e8f6659160ea00e76f3bdb52 /net-dialup/dial/dial-1.2.ebuild | |
parent | Initial import. Closes bug #31868. (diff) | |
download | gentoo-2-944d44d6df8b0234d1c99f3f5265dd6ccb3d6ca5.tar.gz gentoo-2-944d44d6df8b0234d1c99f3f5265dd6ccb3d6ca5.tar.bz2 gentoo-2-944d44d6df8b0234d1c99f3f5265dd6ccb3d6ca5.zip |
Initial import. Closes bug #31955.
Diffstat (limited to 'net-dialup/dial/dial-1.2.ebuild')
-rw-r--r-- | net-dialup/dial/dial-1.2.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/net-dialup/dial/dial-1.2.ebuild b/net-dialup/dial/dial-1.2.ebuild new file mode 100644 index 000000000000..d3abfbf5ab13 --- /dev/null +++ b/net-dialup/dial/dial-1.2.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/dial/dial-1.2.ebuild,v 1.1 2003/11/28 00:40:07 brandy Exp $ + +DESCRIPTION="A simple client for DWUN" +HOMEPAGE="http://dwun.sourceforge.net/" +SRC_URI="http://download.sourceforge.net/dwun/${P}.tar.gz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="virtual/glibc" +RDEPEND="net-dialup/dwun" + +src_unpack() { + + unpack ${A} + cd ${S} + epatch ${FILESDIR}/${P}-gcc3.3.patch + +} + +src_compile() { + + econf || die "econf failed." + emake || die "parallel make failed." + +} + +src_install() { + + einstall || die "install failed." + dodoc AUTHORS COPYING ChangeLog INSTALL README TODO + +} |