summaryrefslogtreecommitdiff
path: root/dev-ml
diff options
context:
space:
mode:
authorMatthieu Sozeau <mattam@gentoo.org>2004-08-18 20:27:01 +0000
committerMatthieu Sozeau <mattam@gentoo.org>2004-08-18 20:27:01 +0000
commit3648529066c8b6f75c08245561782e68d4a294c3 (patch)
treee0dd18b19f6d18aed7b935fc5b532060d719811d /dev-ml
parentAdding KDE integration patch and closing bug #58312. (diff)
downloadhistorical-3648529066c8b6f75c08245561782e68d4a294c3.tar.gz
historical-3648529066c8b6f75c08245561782e68d4a294c3.tar.bz2
historical-3648529066c8b6f75c08245561782e68d4a294c3.zip
Version bump, fixes bug #52575
Diffstat (limited to 'dev-ml')
-rw-r--r--dev-ml/pxp/ChangeLog7
-rw-r--r--dev-ml/pxp/Manifest4
-rw-r--r--dev-ml/pxp/files/digest-pxp-1.1.61
-rw-r--r--dev-ml/pxp/pxp-1.1.6.ebuild28
4 files changed, 38 insertions, 2 deletions
diff --git a/dev-ml/pxp/ChangeLog b/dev-ml/pxp/ChangeLog
index a0bcd6b7b002..e3e752621f6e 100644
--- a/dev-ml/pxp/ChangeLog
+++ b/dev-ml/pxp/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-ml/pxp
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/pxp/ChangeLog,v 1.3 2004/06/25 00:03:46 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/pxp/ChangeLog,v 1.4 2004/08/18 20:27:01 mattam Exp $
+
+*pxp-1.1.6 (18 Aug 2004)
+
+ 18 Aug 2004; Matthieu Sozeau <mattam@gentoo.org> pxp-1.1.6.ebuild:
+ Version bump
*pxp-1.1.5 (09 Mar 2003)
diff --git a/dev-ml/pxp/Manifest b/dev-ml/pxp/Manifest
index 932cd8423e8b..1496a78cba28 100644
--- a/dev-ml/pxp/Manifest
+++ b/dev-ml/pxp/Manifest
@@ -1,3 +1,5 @@
-MD5 64bee833dbec8fff76da77d479bf792d ChangeLog 478
+MD5 19c0b86c4fae44dad2a8159f2f0b8f91 ChangeLog 587
MD5 0b38c2adab83e50346f68e206e7e7027 pxp-1.1.5.ebuild 827
+MD5 1e31810594ce4405be04738866a50361 pxp-1.1.6.ebuild 823
+MD5 cc510152563ebbd7b5b9f13f5bbbf3aa files/digest-pxp-1.1.6 61
MD5 63a6f71f962f5b710fc1d5c789dd4733 files/digest-pxp-1.1.5 61
diff --git a/dev-ml/pxp/files/digest-pxp-1.1.6 b/dev-ml/pxp/files/digest-pxp-1.1.6
new file mode 100644
index 000000000000..2efd4790d237
--- /dev/null
+++ b/dev-ml/pxp/files/digest-pxp-1.1.6
@@ -0,0 +1 @@
+MD5 8f1c26e348405fb7f064b4bc2584ab59 pxp-1.1.6.tar.gz 615236
diff --git a/dev-ml/pxp/pxp-1.1.6.ebuild b/dev-ml/pxp/pxp-1.1.6.ebuild
new file mode 100644
index 000000000000..153e2292e00e
--- /dev/null
+++ b/dev-ml/pxp/pxp-1.1.6.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/pxp/pxp-1.1.6.ebuild,v 1.1 2004/08/18 20:27:01 mattam Exp $
+
+DESCRIPTION="validating XML parser library for O'Caml"
+HOMEPAGE="http://www.ocaml-programming.de/packages/documentation/pxp/index_dev.html"
+SRC_URI="http://www.ocaml-programming.de/packages/${P}.tar.gz"
+
+LICENSE="as-is"
+SLOT="0"
+KEYWORDS="x86"
+IUSE=""
+
+DEPEND=">=dev-ml/pcre-ocaml-4.31
+ >=dev-ml/ocamlnet-0.94
+ >=dev-ml/findlib-0.8"
+
+src_compile() {
+ #the included configure does not support many standard switches and is quite picky
+ ./configure || die
+ make all opt || die
+}
+
+src_install() {
+ local destdir=`ocamlfind printconf destdir`
+ dodir ${destdir}
+ make OCAMLFIND_DESTDIR=${D}${destdir} install || die
+}