summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-02-20 19:31:32 +0100
committerPacho Ramos <pacho@gentoo.org>2016-02-20 19:31:32 +0100
commit031ceb4bc4a53dca5c20906459ff08b8c48f7c5e (patch)
treeee1b081d58989215ab12530f6cd38e58277a1649 /dev-libs/syck/syck-0.55-r6.ebuild
parentRemove masked for removal packages (diff)
downloadgentoo-031ceb4bc4a53dca5c20906459ff08b8c48f7c5e.tar.gz
gentoo-031ceb4bc4a53dca5c20906459ff08b8c48f7c5e.tar.bz2
gentoo-031ceb4bc4a53dca5c20906459ff08b8c48f7c5e.zip
Remove masked for removal packages
Diffstat (limited to 'dev-libs/syck/syck-0.55-r6.ebuild')
-rw-r--r--dev-libs/syck/syck-0.55-r6.ebuild55
1 files changed, 0 insertions, 55 deletions
diff --git a/dev-libs/syck/syck-0.55-r6.ebuild b/dev-libs/syck/syck-0.55-r6.ebuild
deleted file mode 100644
index 0a597e98c136..000000000000
--- a/dev-libs/syck/syck-0.55-r6.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-DISTUTILS_SINGLE_IMPL=1
-
-inherit distutils-r1 flag-o-matic
-
-DESCRIPTION="Syck is an extension for reading and writing YAML swiftly in popular scripting languages"
-HOMEPAGE="http://whytheluckystiff.net/syck/"
-SRC_URI="http://rubyforge.org/frs/download.php/4492/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos"
-IUSE="php python"
-
-DEPEND="python? ( !dev-python/pysyck )"
-RDEPEND="${DEPEND}"
-PDEPEND="php? ( dev-php/pecl-syck
- !=dev-libs/syck-0.55-r1 )"
-pkg_setup() {
- use python && python-single-r1_pkg_setup
-}
-
-src_prepare() {
- epatch "${FILESDIR}/syck-0.55-64bit.patch"
-}
-
-src_configure() {
- append-flags -fPIC
- econf
-}
-
-src_compile() {
- emake
- if use python; then
- pushd ext/python > /dev/null
- distutils-r1_src_compile
- popd > /dev/null
- fi
-}
-
-src_install() {
- emake DESTDIR=${D} install
- if use python; then
- pushd ext/python > /dev/null
- distutils-r1_src_install
- popd > /dev/null
- fi
- distutils-r1_python_install_all
-}