diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2004-11-11 23:07:38 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2004-11-11 23:07:38 +0000 |
commit | a83524e55901d2c4f5a820dbf56b987760939f70 (patch) | |
tree | 261d50286e0c644371d81414ea09205c87002966 /sys-libs/libsafe | |
parent | Remove einfo/ewarn/eerror banners, bug #70864 (Manifest recommit) (diff) | |
download | gentoo-2-a83524e55901d2c4f5a820dbf56b987760939f70.tar.gz gentoo-2-a83524e55901d2c4f5a820dbf56b987760939f70.tar.bz2 gentoo-2-a83524e55901d2c4f5a820dbf56b987760939f70.zip |
Removed old versions.
Diffstat (limited to 'sys-libs/libsafe')
-rw-r--r-- | sys-libs/libsafe/files/digest-libsafe-2.0_p16 | 1 | ||||
-rw-r--r-- | sys-libs/libsafe/libsafe-2.0_p16.ebuild | 60 |
2 files changed, 0 insertions, 61 deletions
diff --git a/sys-libs/libsafe/files/digest-libsafe-2.0_p16 b/sys-libs/libsafe/files/digest-libsafe-2.0_p16 deleted file mode 100644 index fdd539b81368..000000000000 --- a/sys-libs/libsafe/files/digest-libsafe-2.0_p16 +++ /dev/null @@ -1 +0,0 @@ -MD5 6b7b6e6df84d4afb469ccc66d04fc24d libsafe-2.0-16.tgz 360508 diff --git a/sys-libs/libsafe/libsafe-2.0_p16.ebuild b/sys-libs/libsafe/libsafe-2.0_p16.ebuild deleted file mode 100644 index 71d5d0ff38d4..000000000000 --- a/sys-libs/libsafe/libsafe-2.0_p16.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsafe/libsafe-2.0_p16.ebuild,v 1.3 2004/07/02 08:47:38 eradicator Exp $ - -MY_P="${P/_p/-}" -DESCRIPTION="Protection against buffer overflow vulnerabilities" -HOMEPAGE="http://www.research.avayalabs.com/project/libsafe/index.html" -SRC_URI="http://www.research.avayalabs.com/project/libsafe/src/${MY_P}.tgz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~x86" -IUSE="prelude" - -DEPEND="virtual/libc - prelude? ( dev-libs/libprelude )" - -S=${WORKDIR}/${MY_P} - -src_compile() { - local mycflags="" - - mycflags="${mycflags} ${CFLAGS}" - mycflags="${mycflags} -DLIBSAFE_VERSION=\"\$(VERSION)\"" - use prelude && mycflags="${mycflags} \$(LIBPRELUDE_CFLAGS)" - - # Note email notification currently not implimented in this ebuild - # due to I cannot work out if a mta is on localhost:25 for it. - # It safer not too assume it is. Uncomment the following if desired - # use mta && mycflags="${mycflags} -DNOTIFY_WITH_EMAIL" - - emake CC="${CC}" CFLAGS="${mycflags}" || die -} - -src_install() { - - # libsafe stuff - into / - dolib.so src/libsafe.so.${PV/_p/.} || die - # dodir /lib - dosym libsafe.so.${PV/_p/.} /lib/libsafe.so || die - dosym libsafe.so.${PV/_p/.} /lib/libsafe.so.${PV%%.*} || die - - # Documentation - doman doc/libsafe.8 - dohtml doc/libsafe.8.html - - dodoc COPYING README INSTALL - use prelude && dodoc LIBPRELUDE - # use mta && dodoc EMAIL_NOTIFICATION -} - -pkg_postinst() { - einfo - einfo "To use this you have to put the library as one of the variables" - einfo "in LD_PRELOAD." - einfo "Example in bash:" - einfo "export LD_PRELOAD=/lib/libsafe.so.${PV%%.*}" - einfo -} |