summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2014-11-12 20:13:31 +0000
committerJustin Lecher <jlec@gentoo.org>2014-11-12 20:13:31 +0000
commiteb4841295f4d61198dfa7af7bb51572ee3bf5fe6 (patch)
treebde06e6449455e2c22bc6e38211b8f187f808d62 /sci-libs/mmdb
parentDrop unneeded version (diff)
downloadgentoo-2-eb4841295f4d61198dfa7af7bb51572ee3bf5fe6.tar.gz
gentoo-2-eb4841295f4d61198dfa7af7bb51572ee3bf5fe6.tar.bz2
gentoo-2-eb4841295f4d61198dfa7af7bb51572ee3bf5fe6.zip
sci-libs/mmdb: Fix broken pc includedir path
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'sci-libs/mmdb')
-rw-r--r--sci-libs/mmdb/ChangeLog8
-rw-r--r--sci-libs/mmdb/files/mmdb-1.25.5-include-path.patch16
-rw-r--r--sci-libs/mmdb/mmdb-1.25.5-r1.ebuild21
3 files changed, 44 insertions, 1 deletions
diff --git a/sci-libs/mmdb/ChangeLog b/sci-libs/mmdb/ChangeLog
index fd1794a69ed0..15c5348d9b8e 100644
--- a/sci-libs/mmdb/ChangeLog
+++ b/sci-libs/mmdb/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sci-libs/mmdb
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/mmdb/ChangeLog,v 1.29 2014/09/23 13:28:00 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/mmdb/ChangeLog,v 1.30 2014/11/12 20:13:31 jlec Exp $
+
+*mmdb-1.25.5-r1 (12 Nov 2014)
+
+ 12 Nov 2014; Justin Lecher <jlec@gentoo.org> +mmdb-1.25.5-r1.ebuild,
+ +files/mmdb-1.25.5-include-path.patch:
+ Fix broken pc includedir path
*mmdb-2.0.1 (23 Sep 2014)
*mmdb-1.25.5 (23 Sep 2014)
diff --git a/sci-libs/mmdb/files/mmdb-1.25.5-include-path.patch b/sci-libs/mmdb/files/mmdb-1.25.5-include-path.patch
new file mode 100644
index 000000000000..52189f0a32f0
--- /dev/null
+++ b/sci-libs/mmdb/files/mmdb-1.25.5-include-path.patch
@@ -0,0 +1,16 @@
+ mmdb.pc.in | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/mmdb.pc.in b/mmdb.pc.in
+index dd654a4..b3c28a9 100644
+--- a/mmdb.pc.in
++++ b/mmdb.pc.in
+@@ -1,7 +1,7 @@
+ prefix=@prefix@
+ exec_prefix=@exec_prefix@
+ libdir=@libdir@
+-includedir=@includedir@
++includedir=@includedir@/mmdb
+
+ Name: mmdb
+ Description: Macromolecular coordinate library
diff --git a/sci-libs/mmdb/mmdb-1.25.5-r1.ebuild b/sci-libs/mmdb/mmdb-1.25.5-r1.ebuild
new file mode 100644
index 000000000000..5417be413b7b
--- /dev/null
+++ b/sci-libs/mmdb/mmdb-1.25.5-r1.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/mmdb/mmdb-1.25.5-r1.ebuild,v 1.1 2014/11/12 20:13:31 jlec Exp $
+
+EAPI=5
+
+inherit autotools-utils
+
+DESCRIPTION="The Coordinate Library, designed to assist CCP4 developers in working with coordinate files"
+HOMEPAGE="http://launchpad.net/mmdb/"
+SRC_URI="ftp://ftp.ccp4.ac.uk/opensource/${P}.tar.gz"
+
+LICENSE="GPL-2 LGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+IUSE="static-libs"
+
+DEPEND="!<sci-libs/ccp4-libs-6.1.3"
+RDEPEND=""
+
+PATCHES=( "${FILESDIR}"/${P}-include-path.patch )