summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2014-03-22 18:07:11 +0000
committerMichael Palimaka <kensington@gentoo.org>2014-03-22 18:07:11 +0000
commited5209fea5909572fb15f1feac8563e330b71f29 (patch)
treecfee25cdc544091281b39d603de47b2199394d86 /sys-libs
parentRemove old. (diff)
downloadgentoo-2-ed5209fea5909572fb15f1feac8563e330b71f29.tar.gz
gentoo-2-ed5209fea5909572fb15f1feac8563e330b71f29.tar.bz2
gentoo-2-ed5209fea5909572fb15f1feac8563e330b71f29.zip
Remove old.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
Diffstat (limited to 'sys-libs')
-rw-r--r--sys-libs/libsafe/ChangeLog8
-rw-r--r--sys-libs/libsafe/libsafe-2.0_p16-r2.ebuild62
2 files changed, 6 insertions, 64 deletions
diff --git a/sys-libs/libsafe/ChangeLog b/sys-libs/libsafe/ChangeLog
index 9f5b188a80ef..06e12df6c604 100644
--- a/sys-libs/libsafe/ChangeLog
+++ b/sys-libs/libsafe/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-libs/libsafe
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsafe/ChangeLog,v 1.12 2013/03/15 13:14:59 pinkbyte Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsafe/ChangeLog,v 1.13 2014/03/22 18:07:11 kensington Exp $
+
+ 22 Mar 2014; Michael Palimaka <kensington@gentoo.org>
+ -libsafe-2.0_p16-r2.ebuild:
+ Remove old.
*libsafe-2.0_p16-r3 (15 Mar 2013)
diff --git a/sys-libs/libsafe/libsafe-2.0_p16-r2.ebuild b/sys-libs/libsafe/libsafe-2.0_p16-r2.ebuild
deleted file mode 100644
index c5d5ce22f1b3..000000000000
--- a/sys-libs/libsafe/libsafe-2.0_p16-r2.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2008 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-r2.ebuild,v 1.2 2008/12/31 03:43:36 mr_bones_ Exp $
-
-inherit flag-o-matic toolchain-funcs multilib
-
-MY_P="${P/_p/-}"
-DESCRIPTION="Protection against buffer overflow vulnerabilities"
-HOMEPAGE="http://www.research.avayalabs.com/gcm/usa/en-us/initiatives/all/nsr.htm&Filter=ProjectTitle:Libsafe&Wrapper=LabsProjectDetails&View=LabsProjectDetails"
-SRC_URI="http://www.research.avayalabs.com/project/libsafe/src/${MY_P}.tgz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE=""
-
-S="${WORKDIR}/${MY_P}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- filter-flags -fomit-frame-pointer
-
- sed -i \
- -e "s:gcc:$(tc-getCC):" \
- -e "/^CCFLAGS/s:-O2:${CFLAGS}:" \
- -e "/^LDFLAGS/s:= := ${LDFALGS}:" \
- -e "s:\$(LIBPRELUDE_CFLAGS)::" \
- -e "s:\$(LIBPRELUDE_LIBS)::" \
- src/Makefile || die
-}
-
-src_compile() {
- emake libsafe || die
-}
-
-src_install() {
- # libsafe stuff
- into /
- dolib.so src/libsafe.so.${PV/_p/.} || die
- # dodir /lib
- dosym libsafe.so.${PV/_p/.} /$(get_libdir)/libsafe.so || die
- dosym libsafe.so.${PV/_p/.} /$(get_libdir)/libsafe.so.${PV%%.*} || die
-
- # Documentation
- doman doc/libsafe.8
- dohtml doc/libsafe.8.html
-
- dodoc README
- # 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=libsafe.so.${PV%%.*}"
- einfo
-}