summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2012-12-06 07:38:45 +0000
committerJustin Lecher <jlec@gentoo.org>2012-12-06 07:38:45 +0000
commit6e4c97765a5ec565a3fb9561bcaf3279446dbeb4 (patch)
tree119dbbc454d8d5b63ae51fabe97c57c1dff1e742 /sci-libs/mmdb
parentsci-libs/mmdb: Drop old (diff)
downloadgentoo-2-6e4c97765a5ec565a3fb9561bcaf3279446dbeb4.tar.gz
gentoo-2-6e4c97765a5ec565a3fb9561bcaf3279446dbeb4.tar.bz2
gentoo-2-6e4c97765a5ec565a3fb9561bcaf3279446dbeb4.zip
sci-libs/mmdb: Drop old
(Portage version: 2.2.0_alpha144/cvs/Linux x86_64, signed Manifest commit with key 70EB7916)
Diffstat (limited to 'sci-libs/mmdb')
-rw-r--r--sci-libs/mmdb/ChangeLog7
-rw-r--r--sci-libs/mmdb/files/1.21-allignment.patch222
-rw-r--r--sci-libs/mmdb/files/1.23.2-allignment.patch150
-rw-r--r--sci-libs/mmdb/files/1.23.2.2-pkg-config.patch16
-rw-r--r--sci-libs/mmdb/mmdb-1.21-r4.ebuild48
-rw-r--r--sci-libs/mmdb/mmdb-1.23.2-r1.ebuild48
-rw-r--r--sci-libs/mmdb/mmdb-1.23.2.2.ebuild23
7 files changed, 6 insertions, 508 deletions
diff --git a/sci-libs/mmdb/ChangeLog b/sci-libs/mmdb/ChangeLog
index a7c5d7c54eef..48640c859276 100644
--- a/sci-libs/mmdb/ChangeLog
+++ b/sci-libs/mmdb/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sci-libs/mmdb
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/mmdb/ChangeLog,v 1.27 2012/12/06 04:08:35 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/mmdb/ChangeLog,v 1.28 2012/12/06 07:38:45 jlec Exp $
+
+ 06 Dec 2012; Justin Lecher <jlec@gentoo.org> -files/1.21-allignment.patch,
+ -files/1.23.2.2-pkg-config.patch, -files/1.23.2-allignment.patch,
+ -mmdb-1.21-r4.ebuild, -mmdb-1.23.2-r1.ebuild, -mmdb-1.23.2.2.ebuild:
+ Drop old
06 Dec 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> mmdb-1.24.ebuild:
x86 stable wrt bug #445102
diff --git a/sci-libs/mmdb/files/1.21-allignment.patch b/sci-libs/mmdb/files/1.21-allignment.patch
deleted file mode 100644
index edc4cc44b785..000000000000
--- a/sci-libs/mmdb/files/1.21-allignment.patch
+++ /dev/null
@@ -1,222 +0,0 @@
-diff --git a/src/file_.cpp b/src/file_.cpp
-index 4071886..6bfa648 100644
---- a/src/file_.cpp
-+++ b/src/file_.cpp
-@@ -347,10 +347,10 @@ int i;
- if (i>0) sleep ( 1 );
- #endif
- if (TextMode) {
-- if (ReadOnly) hFile = fopen ( FName,"r" );
-+ if (ReadOnly) hFile = fopen ( FName,"rt" );
- else hFile = fopen ( FName,"r+t" );
- } else {
-- if (ReadOnly) hFile = fopen ( FName,"r" );
-+ if (ReadOnly) hFile = fopen ( FName,"rb" );
- else hFile = fopen ( FName,"r+b" );
- }
- #ifndef _MVS
-diff --git a/src/machine_.h b/src/machine_.h
-index 2e81264..7b18675 100644
---- a/src/machine_.h
-+++ b/src/machine_.h
-@@ -127,8 +127,12 @@
- # define CALL_LIKE_VMS 1
-
- // MVS stands for Microsoft Visual Studio
--#elif defined(_MVS)
-+#elif defined(_MSC_VER)
-+# if (_MSC_VER) >= 800
-+# define CALL_LIKE_MVS 2
-+# else
- # define CALL_LIKE_MVS 1
-+# endif
-
- #elif defined(F2C) || defined(G77)
- # define CALL_LIKE_SUN 8
-@@ -400,6 +404,36 @@ typedef double apireal; // FORTRAN real*8
-
- #elif defined(CALL_LIKE_MVS)
-
-+# if ( CALL_LIKE_MVS == 2 )
-+
-+ typedef pstr fpstr;
-+
-+# define FTN_STR(s) s
-+# define FTN_LEN(s) s##_len
-+
-+# define char_struct(s) \
-+ pstr s; \
-+ int s##_len;
-+# define fill_char_struct(s,str) \
-+ s = str; \
-+ s##_len = strlen(str);
-+
-+# ifdef __cplusplus
-+# define FORTRAN_SUBR(NAME,name,p_sun,p_stardent,p_mvs) \
-+ extern "C" void NAME p_sun
-+# else
-+# define FORTRAN_SUBR(NAME,name,p_sun,p_stardent,p_mvs) \
-+ void NAME p_sun
-+# endif
-+
-+# define FORTRAN_EXTERN(NAME,name,p_sun,p_stardent,p_mvs) \
-+ extern "C" void NAME p_sun
-+
-+# define FORTRAN_CALL(NAME,name,p_sun,p_stardent,p_mvs) \
-+ NAME p_sun
-+
-+# else
-+
- typedef pstr fpstr;
-
- # define FTN_STR(s) s
-@@ -425,7 +459,7 @@ typedef double apireal; // FORTRAN real*8
-
- # define FORTRAN_CALL(NAME,name,p_sun,p_stardent,p_mvs) \
- NAME p_mvs
--
-+# endif
- #else
-
- # error Unknown machine!!!
-diff --git a/src/mmdb_atom.h b/src/mmdb_atom.h
-index 45049c8..5d0af2a 100644
---- a/src/mmdb_atom.h
-+++ b/src/mmdb_atom.h
-@@ -290,7 +290,7 @@ class CAtom : public CUDData {
- void CalcAtomStatistics ( RSAtomStat AS );
- realtype GetDist2 ( PCAtom a );
- realtype GetDist2 ( PCAtom a, mat44 & tm ); // tm applies to A
-- realtype GetDist2 ( PCAtom a, mat33 & r, vect3 & t );// tm applies to A
-+ realtype GetDist2 ( PCAtom a, mat33 & r, vect3 & t ); // tm applies to A
- realtype GetDist2 ( realtype ax, realtype ay, realtype az );
-
- // GetCosine(a1,a2) calculates cosine of angle a1-this-a2,
-diff --git a/src/mmdb_chain.cpp b/src/mmdb_chain.cpp
-index a6f66c2..24baa37 100644
---- a/src/mmdb_chain.cpp
-+++ b/src/mmdb_chain.cpp
-@@ -672,7 +672,8 @@ int i,k,sN;
- i = 0;
- sN = 1;
- while (i<numRes) {
-- PutInteger ( &(S[8]),sN,2 );
-+ //PutInteger ( &(S[8]),sN,2 );
-+ PutInteger ( &(S[7]),sN,3 );
- k = 19;
- while ((i<numRes) && (k<70)) {
- if (resName[i][0])
-diff --git a/src/mmdb_rwbrook.cpp b/src/mmdb_rwbrook.cpp
-index dc33086..5d319c3 100644
---- a/src/mmdb_rwbrook.cpp
-+++ b/src/mmdb_rwbrook.cpp
-@@ -1478,7 +1478,6 @@ AltLoc altLoc;
- SegID sgID;
- Element element;
- PCAtom atom;
--pstr p;
- char charge[10];
-
- strcpy ( LastFunc,"MMDB_F_Atom" );
-@@ -1552,10 +1551,9 @@ char charge[10];
- } else
- charge [0] = char(0);
-
--/*
- if (FTN_STR(ID)[0]==' ') {
- atomName[0] = char(0);
-- if ((FTN_STR(AtNam)[1]=='H') ||
-+ if ((FTN_STR(AtNam)[1]=='H') && (FTN_STR(AtNam)[0]!='H') ||
- ((FTN_STR(AtNam)[1]=='D') && (FTN_STR(ID)[2]=='D'))) {
- i = 0;
- while ((i<nHydAtomNames) &&
-@@ -1563,12 +1561,16 @@ char charge[10];
- if (i<nHydAtomNames)
- GetStrTer ( atomName,FTN_STR(AtNam),4,5,FTN_LEN(AtNam) );
- }
-- if (!atomName[0]) {
-+
-+ if ((FTN_STR(AtNam)[0]=='A') || ((FTN_STR(AtNam)[0]=='N') && (FTN_STR(ID)[1]!='N'))) {
-+ GetStrTer ( atomName,FTN_STR(AtNam),4,5,FTN_LEN(AtNam) );
-+ } else if ((FTN_STR(ID)[1]=='N') && ( (FTN_STR(AtNam)[0]=='N') && (FTN_STR(AtNam)[1]=='N') )) {
-+ GetStrTer ( atomName,FTN_STR(AtNam),4,5,FTN_LEN(AtNam) );
-+ } else if (!atomName[0]) {
- atomName[0] = ' ';
- GetStrTer ( &(atomName[1]),FTN_STR(AtNam),3,4,FTN_LEN(AtNam) );
- }
- } else
--*/
- GetStrTer ( atomName,FTN_STR(AtNam),4,5,4 );
-
-
-diff --git a/src/mmdb_sbase0.cpp b/src/mmdb_sbase0.cpp
-index a210d62..cb8d719 100644
---- a/src/mmdb_sbase0.cpp
-+++ b/src/mmdb_sbase0.cpp
-@@ -1320,7 +1320,11 @@ PPCSBIndex Index1;
- dirpath = new char[i+10];
- strcpy ( dirpath,path );
- if (i>0) {
-+#if defined(_MSC_VER) || defined (WIN32)
-+ if (dirpath[i-1]!='\\') strcat ( dirpath,"\\" );
-+#else
- if (dirpath[i-1]!='/') strcat ( dirpath,"/" );
-+#endif
- }
- }
-
-diff --git a/src/mmdb_selmngr.cpp b/src/mmdb_selmngr.cpp
-index b923529..4395dde 100644
---- a/src/mmdb_selmngr.cpp
-+++ b/src/mmdb_selmngr.cpp
-@@ -1158,7 +1158,7 @@ void CMMDBSelManager::Select (
- int selKey // selection key
- ) {
- int i,j,k,n,m1,m2,c, sk,nsel;
--Boolean noRes,modelSel,chainSel,resSel,selAND;
-+Boolean noRes,modelSel(False),chainSel,resSel,selAND;
- PCModel model;
- PCChain chain;
- PCResidue res;
-diff --git a/src/mmdb_title.cpp b/src/mmdb_title.cpp
-index b0b2ae5..627173f 100644
---- a/src/mmdb_title.cpp
-+++ b/src/mmdb_title.cpp
-@@ -1381,6 +1381,10 @@ MakeStreamFunctions(CRemark)
- #define R350_CHAINS 2
- #define R350_BIOMT 3
-
-+#ifdef _WIN32
-+#define strcasestr(s, t) strstr(strupr(s), t)
-+#endif
-+
- void getRemarkKey ( RPCRemark rem, int & lkey ) {
- if (rem) {
- if (rem->remarkNum!=350) lkey = R350_END;
-@@ -1458,7 +1462,7 @@ int l,lkey,nAdd,j;
-
- while ((i<l) && (lkey==R350_NONE)) {
-
-- p = strcasestr ( rem->Remark,"CHAINS:" );
-+ p = strcasestr( rem->Remark,"CHAINS:" );
- if (p) p += 7;
- else {
- p = rem->Remark;
-@@ -1513,7 +1517,7 @@ pstr p1,p2;
- int l,j,lkey;
-
- sprintf ( PN,"BIOMT%1i",biomtNo );
-- p1 = strcasestr ( rem->Remark,PN );
-+ p1 = strcasestr( rem->Remark,PN );
- if (!p1) return R350_ERRBIOMT;
-
- p1 += 6;
-@@ -1972,7 +1976,7 @@ int i,l;
- if (rem) {
- if (rem->remarkNum==2) {
- if (rem->Remark) {
-- p = strcasestr ( rem->Remark,"RESOLUTION" );
-+ p = strcasestr( rem->Remark,"RESOLUTION" );
- if (p) {
- while ((*p) && (*p!=' ')) p++;
- if (*p) {
diff --git a/sci-libs/mmdb/files/1.23.2-allignment.patch b/sci-libs/mmdb/files/1.23.2-allignment.patch
deleted file mode 100644
index 7d7c159e7daa..000000000000
--- a/sci-libs/mmdb/files/1.23.2-allignment.patch
+++ /dev/null
@@ -1,150 +0,0 @@
-diff --git a/src/machine_.h b/src/machine_.h
-index 804bc6d..6ed52a6 100644
---- a/src/machine_.h
-+++ b/src/machine_.h
-@@ -127,8 +127,12 @@
- # define CALL_LIKE_VMS 1
-
- // MVS stands for Microsoft Visual Studio
--#elif defined(_MVS)
-+#elif defined(_MSC_VER)
-+# if (_MSC_VER) >= 800
-+# define CALL_LIKE_MVS 2
-+# else
- # define CALL_LIKE_MVS 1
-+# endif
-
- #elif defined(F2C) || defined(G77)
- # define CALL_LIKE_SUN 8
-@@ -400,11 +404,41 @@ typedef double apireal; // FORTRAN real*8
-
- #elif defined(CALL_LIKE_MVS)
-
-+# if ( CALL_LIKE_MVS == 2 )
-+
- typedef pstr fpstr;
-
- # define FTN_STR(s) s
- # define FTN_LEN(s) s##_len
-
-+# define char_struct(s) \
-+ pstr s; \
-+ int s##_len;
-+# define fill_char_struct(s,str) \
-+ s = str; \
-+ s##_len = strlen(str);
-+
-+# ifdef __cplusplus
-+# define FORTRAN_SUBR(NAME,name,p_sun,p_stardent,p_mvs) \
-+ extern "C" void NAME p_sun
-+# else
-+# define FORTRAN_SUBR(NAME,name,p_sun,p_stardent,p_mvs) \
-+ void NAME p_sun
-+# endif
-+
-+# define FORTRAN_EXTERN(NAME,name,p_sun,p_stardent,p_mvs) \
-+ extern "C" void NAME p_sun
-+
-+# define FORTRAN_CALL(NAME,name,p_sun,p_stardent,p_mvs) \
-+ NAME p_sun
-+
-+# else
-+
-+ typedef pstr fpstr;
-+
-+# define FTN_STR(s) s
-+# define FTN_LEN(s) s##_len
-+
- # define char_struct(s) \
- pstr s; \
- int s##_len;
-@@ -425,7 +459,7 @@ typedef double apireal; // FORTRAN real*8
-
- # define FORTRAN_CALL(NAME,name,p_sun,p_stardent,p_mvs) \
- NAME p_mvs
--
-+# endif
- #else
-
- # error Unknown machine!!!
-diff --git a/src/mmdb_atom.h b/src/mmdb_atom.h
-index 61bafaa..c860e30 100644
---- a/src/mmdb_atom.h
-+++ b/src/mmdb_atom.h
-@@ -312,7 +312,7 @@ class CAtom : public CUDData {
-
- realtype GetDist2 ( PCAtom a );
- realtype GetDist2 ( PCAtom a, mat44 & tm ); // tm applies to A
-- realtype GetDist2 ( PCAtom a, mat33 & r, vect3 & t );// tm applies to A
-+ realtype GetDist2 ( PCAtom a, mat33 & r, vect3 & t ); // tm applies to A
- realtype GetDist2 ( realtype ax, realtype ay, realtype az );
-
- // GetCosine(a1,a2) calculates cosine of angle a1-this-a2,
-diff --git a/src/mmdb_chain.cpp b/src/mmdb_chain.cpp
-index 95023b7..fcf602f 100644
---- a/src/mmdb_chain.cpp
-+++ b/src/mmdb_chain.cpp
-@@ -679,7 +679,7 @@ int i,k,sN;
- i = 0;
- sN = 1;
- while (i<numRes) {
-- PutInteger ( &(S[8]),sN,2 );
-+ PutInteger ( &(S[7]),sN,3 );
- k = 19;
- while ((i<numRes) && (k<70)) {
- if (resName[i][0])
-diff --git a/src/mmdb_selmngr.cpp b/src/mmdb_selmngr.cpp
-index 20261c7..87b4bef 100644
---- a/src/mmdb_selmngr.cpp
-+++ b/src/mmdb_selmngr.cpp
-@@ -1158,7 +1158,7 @@ void CMMDBSelManager::Select (
- int selKey // selection key
- ) {
- int i,j,k,n,m1,m2,c, sk,nsel;
--Boolean noRes,modelSel,chainSel,resSel,selAND;
-+Boolean noRes,modelSel(False),chainSel,resSel,selAND;
- PCModel model;
- PCChain chain;
- PCResidue res;
-diff --git a/src/mmdb_title.cpp b/src/mmdb_title.cpp
-index 3dd7925..eb6de74 100644
---- a/src/mmdb_title.cpp
-+++ b/src/mmdb_title.cpp
-@@ -1381,6 +1381,10 @@ MakeStreamFunctions(CRemark)
- #define R350_CHAINS 2
- #define R350_BIOMT 3
-
-+#ifdef _WIN32
-+#define strcasestr(s, t) strstr(strupr(s), t)
-+#endif
-+
- void getRemarkKey ( RPCRemark rem, int & lkey ) {
- if (rem) {
- if (rem->remarkNum!=350) lkey = R350_END;
-@@ -1458,7 +1462,7 @@ int l,lkey,nAdd,j;
-
- while ((i<l) && (lkey==R350_NONE)) {
-
-- p = strcasestr ( rem->Remark,"CHAINS:" );
-+ p = strcasestr( rem->Remark,"CHAINS:" );
- if (p) p += 7;
- else {
- p = rem->Remark;
-@@ -1513,7 +1517,7 @@ pstr p1,p2;
- int l,j,lkey;
-
- sprintf ( PN,"BIOMT%1i",biomtNo );
-- p1 = strcasestr ( rem->Remark,PN );
-+ p1 = strcasestr( rem->Remark,PN );
- if (!p1) return R350_ERRBIOMT;
-
- p1 += 6;
-@@ -1976,7 +1980,7 @@ int i,l;
- if (rem) {
- if (rem->remarkNum==2) {
- if (rem->Remark) {
-- p = strcasestr ( rem->Remark,"RESOLUTION" );
-+ p = strcasestr( rem->Remark,"RESOLUTION" );
- if (p) {
- while ((*p) && (*p!=' ')) p++;
- if (*p) {
diff --git a/sci-libs/mmdb/files/1.23.2.2-pkg-config.patch b/sci-libs/mmdb/files/1.23.2.2-pkg-config.patch
deleted file mode 100644
index 4584dd720bb5..000000000000
--- a/sci-libs/mmdb/files/1.23.2.2-pkg-config.patch
+++ /dev/null
@@ -1,16 +0,0 @@
- mmdb.pc.in | 2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/mmdb.pc.in b/mmdb.pc.in
-index 6156025..0bc3e6e 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.21-r4.ebuild b/sci-libs/mmdb/mmdb-1.21-r4.ebuild
deleted file mode 100644
index 8fd3cf736b34..000000000000
--- a/sci-libs/mmdb/mmdb-1.21-r4.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/mmdb/mmdb-1.21-r4.ebuild,v 1.4 2011/07/16 11:53:55 jlec Exp $
-
-EAPI=3
-
-inherit autotools eutils
-
-DESCRIPTION="The Coordinate Library, designed to assist CCP4 developers in working with coordinate files"
-HOMEPAGE="http://launchpad.net/mmdb/"
-SRC_URI="http://www.ysbl.york.ac.uk/~emsley/software/${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-3"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-DEPEND="!<sci-libs/ccp4-libs-6.1.3"
-RDEPEND=""
-
-src_prepare() {
- epatch "${FILESDIR}"/${PV}-allignment.patch
- eautoreconf
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
-
- # create missing mmdb.pc
- cat >> "${T}"/mmdb.pc <<- EOF
- prefix=${EPREFIX}/usr
- exec_prefix=${EPREFIX}/usr
- libdir=${EPREFIX}/usr/$(get_libdir)
- includedir=${EPREFIX}/usr/include/mmdb
-
- Name: ${PN}
- Description: Macromolecular coordinate library
- Version: ${PV}
- Requires:
- Conflicts:
- Libs: -L${EPREFIX}/usr/$(get_libdir) -lmmdb
- Cflags: -I${EPREFIX}/usr/include/mmdb
-
- EOF
-
- insinto /usr/$(get_libdir)/pkgconfig
- doins "${T}"/mmdb.pc || die
-}
diff --git a/sci-libs/mmdb/mmdb-1.23.2-r1.ebuild b/sci-libs/mmdb/mmdb-1.23.2-r1.ebuild
deleted file mode 100644
index e13bdf8d25bd..000000000000
--- a/sci-libs/mmdb/mmdb-1.23.2-r1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/mmdb/mmdb-1.23.2-r1.ebuild,v 1.3 2011/07/16 11:53:55 jlec Exp $
-
-EAPI=4
-
-inherit autotools eutils
-
-DESCRIPTION="The Coordinate Library, designed to assist CCP4 developers in working with coordinate files"
-HOMEPAGE="http://launchpad.net/mmdb/"
-SRC_URI="http://www.ysbl.york.ac.uk/~emsley/software/${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-DEPEND="!<sci-libs/ccp4-libs-6.1.3"
-RDEPEND=""
-
-src_prepare() {
- epatch "${FILESDIR}"/${PV}-allignment.patch
- eautoreconf
-}
-
-src_install() {
- default
-
- # create missing mmdb.pc
- cat >> "${T}"/mmdb.pc <<- EOF
- prefix=${EPREFIX}/usr
- exec_prefix=${EPREFIX}/usr
- libdir=${EPREFIX}/usr/$(get_libdir)
- includedir=${EPREFIX}/usr/include/mmdb
-
- Name: ${PN}
- Description: Macromolecular coordinate library
- Version: ${PV}
- Requires:
- Conflicts:
- Libs: -L${EPREFIX}/usr/$(get_libdir) -lmmdb
- Cflags: -I${EPREFIX}/usr/include/mmdb
-
- EOF
-
- insinto /usr/$(get_libdir)/pkgconfig
- doins "${T}"/mmdb.pc
-}
diff --git a/sci-libs/mmdb/mmdb-1.23.2.2.ebuild b/sci-libs/mmdb/mmdb-1.23.2.2.ebuild
deleted file mode 100644
index 8d5b486de11d..000000000000
--- a/sci-libs/mmdb/mmdb-1.23.2.2.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/mmdb/mmdb-1.23.2.2.ebuild,v 1.5 2011/08/01 20:25:28 maekke Exp $
-
-EAPI=4
-
-inherit autotools-utils
-
-DESCRIPTION="The Coordinate Library, designed to assist CCP4 developers in working with coordinate files"
-HOMEPAGE="http://launchpad.net/mmdb/"
-SRC_URI="http://launchpad.net/mmdb/1.23/${PV}/+download/${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-DEPEND="!<sci-libs/ccp4-libs-6.1.3"
-RDEPEND=""
-
-PATCHES=(
- "${FILESDIR}"/${PV}-pkg-config.patch
- )