Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/soapbox/
Date: Sat, 29 Aug 2015 21:16:57
Message-Id: 1440882966.adc4e2f5e35ae139ec43c85b23c88c63bce01d57.monsieurp@gentoo
1 commit: adc4e2f5e35ae139ec43c85b23c88c63bce01d57
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 29 21:16:06 2015 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 29 21:16:06 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adc4e2f5
7
8 app-shells/soapbox: remove old.
9
10 Package-Manager: portage-2.2.20.1
11 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
12
13 app-shells/soapbox/soapbox-0.3.1-r1.ebuild | 41 ------------------------------
14 1 file changed, 41 deletions(-)
15
16 diff --git a/app-shells/soapbox/soapbox-0.3.1-r1.ebuild b/app-shells/soapbox/soapbox-0.3.1-r1.ebuild
17 deleted file mode 100644
18 index d120264..0000000
19 --- a/app-shells/soapbox/soapbox-0.3.1-r1.ebuild
20 +++ /dev/null
21 @@ -1,41 +0,0 @@
22 -# Copyright 1999-2010 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -# $Id$
25 -
26 -EAPI="2"
27 -
28 -inherit multilib toolchain-funcs
29 -
30 -DESCRIPTION="A preload (sandbox) library to restrict filesystem writes"
31 -HOMEPAGE="http://dag.wieers.com/home-made/soapbox/"
32 -SRC_URI="http://dag.wieers.com/home-made/soapbox/${P}.tar.bz2"
33 -
34 -LICENSE="GPL-2"
35 -SLOT="0"
36 -KEYWORDS="~amd64 ~x86 ~ppc ~ppc64"
37 -IUSE=""
38 -
39 -src_prepare() {
40 - sed -i soapbox.sh \
41 - -e "s|0.3.0|${PV}|g" \
42 - -e "s:/lib:/usr/$(get_libdir):" \
43 - || die "sed soapbox.sh"
44 - sed -i Makefile \
45 - -e 's|$(CFLAGS)|& $(LDFLAGS)|g' \
46 - || die "sed Makefile"
47 -}
48 -
49 -src_compile() {
50 - emake \
51 - CC="$(tc-getCC)" \
52 - LD="$(tc-getCC)" \
53 - CFLAGS="${CFLAGS} -fPIC" \
54 - LDFLAGS="${LDFLAGS}" \
55 - || die "emake failed"
56 -}
57 -
58 -src_install() {
59 - dolib.so libsoapbox.so || die "soapsox.so"
60 - newbin soapbox.sh soapbox || die "soapbox"
61 - dodoc AUTHORS BUGS ChangeLog README THANKS TODO
62 -}