diff options
author | Kito Danya Dietrich <kito@gentoo.org> | 2005-07-19 20:40:07 +0000 |
---|---|---|
committer | Kito Danya Dietrich <kito@gentoo.org> | 2005-07-19 20:40:07 +0000 |
commit | 2f3b61f76059beee5a463015726acc79bfa6f304 (patch) | |
tree | 0045436c6bea45b782730c5926e63ace5580435e /net-misc/neon | |
parent | Update st_flags patch, bug 94637. (diff) | |
download | gentoo-2-2f3b61f76059beee5a463015726acc79bfa6f304.tar.gz gentoo-2-2f3b61f76059beee5a463015726acc79bfa6f304.tar.bz2 gentoo-2-2f3b61f76059beee5a463015726acc79bfa6f304.zip |
fix for building shared libs on Darwin
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'net-misc/neon')
-rw-r--r-- | net-misc/neon/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/neon/Manifest | 2 | ||||
-rw-r--r-- | net-misc/neon/neon-0.24.7.ebuild | 9 |
3 files changed, 14 insertions, 4 deletions
diff --git a/net-misc/neon/ChangeLog b/net-misc/neon/ChangeLog index 7bc8a7e6e991..4373169a9064 100644 --- a/net-misc/neon/ChangeLog +++ b/net-misc/neon/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-misc/neon -# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/neon/ChangeLog,v 1.47 2004/12/29 19:56:19 ciaranm Exp $ +# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/neon/ChangeLog,v 1.48 2005/07/19 20:40:07 kito Exp $ + + 19 Jul 2005; Kito <kito@gentoo.org> neon-0.24.7.ebuild: + fix for shared library on Darwin 29 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> : Change encoding to UTF-8 for GLEP 31 compliance diff --git a/net-misc/neon/Manifest b/net-misc/neon/Manifest index 5b77e0c464de..3e19782f5b2a 100644 --- a/net-misc/neon/Manifest +++ b/net-misc/neon/Manifest @@ -8,7 +8,7 @@ MD5 6142927b432bebd6941e53e73fce0cf5 neon-0.24.2.ebuild 760 MD5 9485c1088e78f7c8203364cdb15edff1 neon-0.24.4.ebuild 928 MD5 439547a82610ff7f5ad68f5d0d186a99 neon-0.24.5.ebuild 934 MD5 dcf38560f4c806d8beee775ee1866d49 neon-0.24.6.ebuild 884 -MD5 127e2f2661268481b80a32e0ae88aef5 neon-0.24.7.ebuild 905 +MD5 4473c92c8e58ad2c81ccaefe70c753a7 neon-0.24.7.ebuild 1000 MD5 5a576942b2663898889c1239a5bec804 files/digest-neon-0.21.3 63 MD5 e6994eafdacea2341c0b293f12a27e4c files/digest-neon-0.23.8 63 MD5 9ea45811212cea8423e1fd38812675ed files/digest-neon-0.23.9 63 diff --git a/net-misc/neon/neon-0.24.7.ebuild b/net-misc/neon/neon-0.24.7.ebuild index 7ad830d52e20..5f95864ca967 100644 --- a/net-misc/neon/neon-0.24.7.ebuild +++ b/net-misc/neon/neon-0.24.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/neon/neon-0.24.7.ebuild,v 1.12 2005/02/24 01:41:27 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/neon/neon-0.24.7.ebuild,v 1.13 2005/07/19 20:40:07 kito Exp $ DESCRIPTION="HTTP and WebDAV client library" HOMEPAGE="http://www.webdav.org/neon/" @@ -16,6 +16,13 @@ DEPEND="expat? ( dev-libs/expat ) ssl? ( >=dev-libs/openssl-0.9.6f ) zlib? ( sys-libs/zlib )" +src_unpack() { + unpack ${A} + cd ${S} + use userland_Darwin && sed -i -e "s:GXX:GCC:g" configure \ + || die "sed failed" +} + src_compile() { local myc="" use expat && myc="$myc --with-expat" || myc="$myc --with-xml2" |