summaryrefslogtreecommitdiff
path: root/app-shells/soapbox
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-shells/soapbox
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-shells/soapbox')
-rw-r--r--app-shells/soapbox/Manifest3
-rw-r--r--app-shells/soapbox/metadata.xml5
-rw-r--r--app-shells/soapbox/soapbox-0.3.1-r2.ebuild40
3 files changed, 0 insertions, 48 deletions
diff --git a/app-shells/soapbox/Manifest b/app-shells/soapbox/Manifest
deleted file mode 100644
index 783621496e54..000000000000
--- a/app-shells/soapbox/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST soapbox-0.3.1.tar.bz2 19947 BLAKE2B bbf271d1e48b43e1aa7a274e0020b69a7f389374b7ac14ec2084bca4cd8f1cc5312082a33e6f79527dd92756d88631eb77a37256d0315c45853bab0176a8a95e SHA512 c74420e6ea7e088347c897c275095fce5ecd093af9eb7f95ece4959d174fcc79e600704b6116ba9f36534fc8139dee70393db33ab22cd8f870cd77c449e2f430
-EBUILD soapbox-0.3.1-r2.ebuild 916 BLAKE2B 86fc9a55be4c409279980ca79c2812645fcd8605a03a66229e334104483cbb5da52c96b90939e21efd5011286dd70c3f78d2d42737b756c5df51499a3bda0146 SHA512 5392a486acd31086357b3ebb1ac5cbdc616a0c0041341094e4bfb910293ba3a82fe4938c2c8256f012b8b2e094c9b7026a6d39191c0106e7af96d0487ab631d8
-MISC metadata.xml 166 BLAKE2B c254f1fb642881aba57637be14fb0a89b10384f91a128feaec3a8c870d76efc2cbacb92caccc0dee2dd19a5ac5eaf8643080dafa05c4e2ac96a68568927e5afd SHA512 a56648c974a1d14dd4c18237532773c72057a13ab90c58b5da04f185e3c12a8bd8d5c21fb06053507f31766291a82dc7d87b34cd65fd94cfe2af7295c813ef84
diff --git a/app-shells/soapbox/metadata.xml b/app-shells/soapbox/metadata.xml
deleted file mode 100644
index 6f49eba8f496..000000000000
--- a/app-shells/soapbox/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
-</pkgmetadata>
diff --git a/app-shells/soapbox/soapbox-0.3.1-r2.ebuild b/app-shells/soapbox/soapbox-0.3.1-r2.ebuild
deleted file mode 100644
index c6bf86aec9bd..000000000000
--- a/app-shells/soapbox/soapbox-0.3.1-r2.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit multilib toolchain-funcs
-
-DESCRIPTION="A preload (sandbox) library to restrict filesystem writes"
-HOMEPAGE="http://dag.wieers.com/home-made/soapbox/"
-SRC_URI="http://dag.wieers.com/home-made/soapbox/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86 ~ppc ~ppc64"
-IUSE=""
-
-src_prepare() {
- sed -i soapbox.sh \
- -e "s|0.3.0|${PV}|g" \
- -e "s:/lib:/usr/$(get_libdir):" \
- || die "sed soapbox.sh"
- sed -i Makefile \
- -e 's|$(CFLAGS)|& $(LDFLAGS)|g' \
- || die "sed Makefile"
-}
-
-src_compile() {
- emake \
- CC="$(tc-getCC)" \
- LD="$(tc-getCC)" \
- CFLAGS="${CFLAGS} -fPIC" \
- LDFLAGS="${LDFLAGS}" \
- || die "emake failed"
-}
-
-src_install() {
- dolib.so libsoapbox.so || die "soapsox.so"
- newbin soapbox.sh soapbox || die "soapbox"
- dodoc AUTHORS BUGS ChangeLog README THANKS TODO
-}