diff options
author | Michael Haubenwallner <haubi@gentoo.org> | 2010-02-24 10:05:30 +0000 |
---|---|---|
committer | Michael Haubenwallner <haubi@gentoo.org> | 2010-02-24 10:05:30 +0000 |
commit | 2daf783760d73af39b34f9cc587d5b8bf7cee0b8 (patch) | |
tree | ee14953d12cfc45ff5095baddc82c73fe077f631 /net-misc/mico | |
parent | Apply patch from upstream trunk for Sieve script editing wrt #305211, thanks ... (diff) | |
download | gentoo-2-2daf783760d73af39b34f9cc587d5b8bf7cee0b8.tar.gz gentoo-2-2daf783760d73af39b34f9cc587d5b8bf7cee0b8.tar.bz2 gentoo-2-2daf783760d73af39b34f9cc587d5b8bf7cee0b8.zip |
update postgres dependency to use virtual/postgresql-base (#306255)
(Portage version: 2.1.7.16/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/mico')
-rw-r--r-- | net-misc/mico/ChangeLog | 9 | ||||
-rw-r--r-- | net-misc/mico/files/mico-2.3.13-drop-pgsql-header-check.patch | 25 | ||||
-rw-r--r-- | net-misc/mico/mico-2.3.13-r3.ebuild (renamed from net-misc/mico/mico-2.3.13-r2.ebuild) | 5 |
3 files changed, 36 insertions, 3 deletions
diff --git a/net-misc/mico/ChangeLog b/net-misc/mico/ChangeLog index d333993b611c..148e583dff64 100644 --- a/net-misc/mico/ChangeLog +++ b/net-misc/mico/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-misc/mico # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/mico/ChangeLog,v 1.25 2010/02/24 08:53:26 haubi Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/mico/ChangeLog,v 1.26 2010/02/24 10:05:29 haubi Exp $ + +*mico-2.3.13-r3 (24 Feb 2010) + + 24 Feb 2010; Michael Haubenwallner <haubi@gentoo.org> + -mico-2.3.13-r2.ebuild, +mico-2.3.13-r3.ebuild, + +files/mico-2.3.13-drop-pgsql-header-check.patch: + update postgres dependency to use virtual/postgresql-base (#306255) 24 Feb 2010; Michael Haubenwallner <haubi@gentoo.org> mico-2.3.13-r2.ebuild: diff --git a/net-misc/mico/files/mico-2.3.13-drop-pgsql-header-check.patch b/net-misc/mico/files/mico-2.3.13-drop-pgsql-header-check.patch new file mode 100644 index 000000000000..529c0ae7c741 --- /dev/null +++ b/net-misc/mico/files/mico-2.3.13-drop-pgsql-header-check.patch @@ -0,0 +1,25 @@ +http://bugs.gentoo.org/show_bug.cgi?id=306255 + +Result of 'checking for pgsql/libpq-fe.h' is not used anywhere, just drop it. +--- configure.in.orig 2010-02-24 10:27:45.043267799 +0100 ++++ configure.in 2010-02-24 10:28:09.016074329 +0100 +@@ -1324,7 +1324,7 @@ + AC_CHECK_HEADERS(netinet/tcp.h stdlib.h sys/time.h sunmath.h sys/stat.h) + AC_CHECK_HEADERS(poll.h) + +-AC_CHECK_HEADERS(exception exception.h terminate.h openssl/ssl.h pgsql/libpq-fe.h) ++AC_CHECK_HEADERS(exception exception.h terminate.h openssl/ssl.h) + + # QT + AC_CHECK_HEADERS(qapplication.h qsocketnotifier.h qlineedit.h) +--- configure.orig 2010-02-24 10:27:55.573241035 +0100 ++++ configure 2010-02-24 10:28:19.102698424 +0100 +@@ -6906,7 +6906,7 @@ + done + + +-for ac_hdr in exception exception.h terminate.h openssl/ssl.h pgsql/libpq-fe.h ++for ac_hdr in exception exception.h terminate.h openssl/ssl.h + do + ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` + echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 diff --git a/net-misc/mico/mico-2.3.13-r2.ebuild b/net-misc/mico/mico-2.3.13-r3.ebuild index 2ff60e12464e..32ab33e98ef0 100644 --- a/net-misc/mico/mico-2.3.13-r2.ebuild +++ b/net-misc/mico/mico-2.3.13-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/mico/mico-2.3.13-r2.ebuild,v 1.2 2010/02/24 08:53:26 haubi Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/mico/mico-2.3.13-r3.ebuild,v 1.1 2010/02/24 10:05:29 haubi Exp $ EAPI="2" @@ -21,7 +21,7 @@ RESTRICT="test" #298101 RDEPEND=" gtk? ( x11-libs/gtk+:2 ) - postgres? ( dev-db/postgresql ) + postgres? ( virtual/postgresql-base ) qt4? ( x11-libs/qt-gui:4[qt3support] ) ssl? ( dev-libs/openssl ) tcl? ( dev-lang/tcl ) @@ -42,6 +42,7 @@ src_prepare() { epatch "${FILESDIR}"/${P}-hpux.patch epatch "${FILESDIR}"/${P}-as-needed.patch #280678 epatch "${FILESDIR}"/${P}-qt4-nothread.patch + epatch "${FILESDIR}"/${P}-drop-pgsql-header-check.patch [[ ${CHOST} == *-winnt* ]] && epatch "${FILESDIR}"/${P}-winnt.patch.bz2 |