diff options
Diffstat (limited to 'net-misc/curl')
-rw-r--r-- | net-misc/curl/ChangeLog | 6 | ||||
-rw-r--r-- | net-misc/curl/curl-7.12.0-r2.ebuild | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/net-misc/curl/ChangeLog b/net-misc/curl/ChangeLog index e025f4014222..cf1b6f6394e3 100644 --- a/net-misc/curl/ChangeLog +++ b/net-misc/curl/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-misc/curl # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.13 2004/09/01 04:22:35 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.14 2004/09/29 09:01:25 eradicator Exp $ + + 29 Sep 2004; Jeremy Huddleston <eradicator@gentoo.org> + curl-7.12.0-r2.ebuild: + get_libdir love. 01 Sep 2004; Mike Frysinger <vapier@gentoo.org> curl-7.12.0-r2.ebuild: Dont define the fputc() prototype since the header files from our libc do it diff --git a/net-misc/curl/curl-7.12.0-r2.ebuild b/net-misc/curl/curl-7.12.0-r2.ebuild index dfb921456840..f2fcdcc5bfa1 100644 --- a/net-misc/curl/curl-7.12.0-r2.ebuild +++ b/net-misc/curl/curl-7.12.0-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.12.0-r2.ebuild,v 1.2 2004/09/01 04:22:35 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.12.0-r2.ebuild,v 1.3 2004/09/29 09:01:25 eradicator Exp $ # NOTE: If you bump this ebuild, make sure you bump dev-python/pycurl! @@ -43,11 +43,11 @@ src_compile() { } src_install() { - make install DESTDIR=${D} || die + make install DESTDIR="${D}" || die dodoc LEGAL CHANGES README dodoc docs/FEATURES docs/INSTALL docs/INTERNALS docs/LIBCURL dodoc docs/MANUAL docs/FAQ docs/BUGS docs/CONTRIBUTE # backwards compat link - dosym libcurl.so.3 /usr/lib/libcurl.so.2 + dosym libcurl.so.3 /usr/$(get_libdir)/libcurl.so.2 } |