diff options
author | Marcus D. Hanwell <cryos@gentoo.org> | 2005-03-10 23:34:51 +0000 |
---|---|---|
committer | Marcus D. Hanwell <cryos@gentoo.org> | 2005-03-10 23:34:51 +0000 |
commit | a02139229f2c0768c5782108efb68a38ab61632a (patch) | |
tree | 050ec8889ed69c2ebc58185ee8bd8577d5da868f /net-libs | |
parent | Remove ipsec-tools mask, thanks to resolution of bug #77369 problems (diff) | |
download | gentoo-2-a02139229f2c0768c5782108efb68a38ab61632a.tar.gz gentoo-2-a02139229f2c0768c5782108efb68a38ab61632a.tar.bz2 gentoo-2-a02139229f2c0768c5782108efb68a38ab61632a.zip |
Tiny cleanup in symlink creation of the .so.
(Portage version: 2.0.51.19)
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/c-client/ChangeLog | 5 | ||||
-rw-r--r-- | net-libs/c-client/c-client-2004a-r1.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/net-libs/c-client/ChangeLog b/net-libs/c-client/ChangeLog index 90d8c9160e10..946cd88faa2f 100644 --- a/net-libs/c-client/ChangeLog +++ b/net-libs/c-client/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-libs/c-client # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.21 2005/02/21 04:04:29 hardave Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.22 2005/03/10 23:32:27 cryos Exp $ + + 10 Mar 2005; Marcus D. Hanwell <cryos@gentoo.org> c-client-2004a-r1.ebuild: + Tiny cleanup in symlink creation of the .so. 20 Feb 2005; Hardave Riar <hardave@gentoo.org> c-client-2004a.ebuild: Stable on mips diff --git a/net-libs/c-client/c-client-2004a-r1.ebuild b/net-libs/c-client/c-client-2004a-r1.ebuild index 6b7c20df66b7..1250a557f5e7 100644 --- a/net-libs/c-client/c-client-2004a-r1.ebuild +++ b/net-libs/c-client/c-client-2004a-r1.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-libs/c-client/c-client-2004a-r1.ebuild,v 1.1 2005/02/01 15:33:05 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2004a-r1.ebuild,v 1.2 2005/03/10 23:32:27 cryos Exp $ inherit flag-o-matic eutils libtool @@ -75,10 +75,10 @@ src_install() { # Now the shared library created for amd64 if use amd64; then - dolib.so c-client/libc-client.so* + dolib.so c-client/libc-client.so.1.0.0 cd ${D}/usr/$(get_libdir) ln -s libc-client.so.1.0.0 libc-client.so.1 - ln -s libc-client.so.1 libc-client.so + ln -s libc-client.so.1.0.0 libc-client.so fi cd ${S} |