summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dev-ml/ocamlnet/ChangeLog5
-rw-r--r--dev-ml/ocamlnet/ocamlnet-0.98.ebuild20
2 files changed, 15 insertions, 10 deletions
diff --git a/dev-ml/ocamlnet/ChangeLog b/dev-ml/ocamlnet/ChangeLog
index 53fc507ce46e..9ae67f803e4d 100644
--- a/dev-ml/ocamlnet/ChangeLog
+++ b/dev-ml/ocamlnet/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/ocamlnet
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v 1.9 2005/02/17 23:30:15 mattam Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v 1.10 2005/02/18 17:37:19 mr_bones_ Exp $
+
+ 18 Feb 2005; Michael Sterrett <mr_bones_@gentoo.org> ocamlnet-0.98.ebuild:
+ fix repoman issues; tidy
*ocamlnet-0.98 (18 Feb 2005)
diff --git a/dev-ml/ocamlnet/ocamlnet-0.98.ebuild b/dev-ml/ocamlnet/ocamlnet-0.98.ebuild
index 1d24415ac58e..3990f502f430 100644
--- a/dev-ml/ocamlnet/ocamlnet-0.98.ebuild
+++ b/dev-ml/ocamlnet/ocamlnet-0.98.ebuild
@@ -1,29 +1,31 @@
-# Copyright 1999-2005 Gentoo Technologies, Inc.
+# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ocamlnet-0.98.ebuild,v 1.1 2005/02/17 23:30:15 mattam Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ocamlnet-0.98.ebuild,v 1.2 2005/02/18 17:37:19 mr_bones_ Exp $
inherit findlib
DESCRIPTION="Modules for O'Caml application-level Internet protocols"
HOMEPAGE="http://ocamlnet.sourceforge.net"
SRC_URI="mirror://sourceforge/ocamlnet/${P}.tar.gz"
-LICENSE="as-is"
+LICENSE="as-is"
+KEYWORDS="~ppc ~x86"
+SLOT=")"
IUSE=""
-KEYWORDS="~x86 ~ppc"
+
DEPEND=">=dev-ml/pcre-ocaml-4.31.0"
S="${WORKDIR}/${P}/src"
src_compile() {
- ./configure || die
- make all opt || die
+ ./configure || die "configure failed"
+ make all opt || die "make failed"
}
-src_install() {
- findlib_src_install NET_DB_DIR=${D}${OCAML_SITELIB}/netstring
+src_install() {
+ findlib_src_install NET_DB_DIR="${D}${OCAML_SITELIB}/netstring"
- cd ${WORKDIR}/${P}
+ cd "${WORKDIR}/${P}"
dodoc README
dohtml doc/intro/html/*
}