summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2017-03-01 19:24:42 +0100
committerDavid Seifert <soap@gentoo.org>2017-03-01 19:24:42 +0100
commit745b4ba0ffe13cc14ba3f55a499b06ecb021ba11 (patch)
tree4a0feeb60accc68d03e5ec944faa7b295815fa18 /dev-cpp/ctemplate/ctemplate-2.2_p129.ebuild
parentsci-geosciences/qgis: Move opt. gdal[oracle] dep below oracle conditional (diff)
downloadgentoo-745b4ba0ffe13cc14ba3f55a499b06ecb021ba11.tar.gz
gentoo-745b4ba0ffe13cc14ba3f55a499b06ecb021ba11.tar.bz2
gentoo-745b4ba0ffe13cc14ba3f55a499b06ecb021ba11.zip
dev-cpp/ctemplate: Remove old
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'dev-cpp/ctemplate/ctemplate-2.2_p129.ebuild')
-rw-r--r--dev-cpp/ctemplate/ctemplate-2.2_p129.ebuild68
1 files changed, 0 insertions, 68 deletions
diff --git a/dev-cpp/ctemplate/ctemplate-2.2_p129.ebuild b/dev-cpp/ctemplate/ctemplate-2.2_p129.ebuild
deleted file mode 100644
index 5e700bc7f05f..000000000000
--- a/dev-cpp/ctemplate/ctemplate-2.2_p129.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-AM_OPTS="--force-missing"
-AUTOTOOLS_AUTORECONF=1
-AUTOTOOLS_IN_SOURCE_BUILD=1
-PYTHON_COMPAT=( python2_7 )
-inherit autotools-utils elisp-common python-any-r1
-
-DESCRIPTION="A simple but powerful template language for C++"
-HOMEPAGE="https://github.com/olafvdspek/ctemplate"
-SRC_URI="https://dev.gentoo.org/~pinkbyte/distfiles/snapshots/${P}.tar.bz2"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm ppc x86 ~amd64-linux ~x86-linux"
-IUSE="doc emacs vim-syntax static-libs test"
-
-DEPEND="test? ( ${PYTHON_DEPS} )"
-RDEPEND="vim-syntax? ( >=app-editors/vim-core-7 )
- emacs? ( virtual/emacs )"
-
-DOCS=( AUTHORS ChangeLog NEWS README )
-
-SITEFILE="70ctemplate-gentoo.el"
-
-# Some tests are broken in 2.2_p129
-RESTRICT="test"
-
-src_compile() {
- autotools-utils_src_compile
-
- if use emacs ; then
- elisp-compile contrib/tpl-mode.el || die "elisp-compile failed"
- fi
-}
-
-src_install() {
- autotools-utils_src_install
-
- # Installs just every piece
- rm -rf "${ED}/usr/share/doc"
-
- use doc && dohtml doc/*
-
- if use vim-syntax ; then
- cd "${S}/contrib"
- sh highlighting.vim || die "unpacking vim scripts failed"
- insinto /usr/share/vim/vimfiles
- doins -r .vim/*
- fi
-
- if use emacs ; then
- cd "${S}/contrib"
- elisp-install ${PN} tpl-mode.el tpl-mode.elc || die "elisp-install failed"
- elisp-site-file-install "${FILESDIR}/${SITEFILE}"
- fi
-}
-
-pkg_postinst() {
- use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
- use emacs && elisp-site-regen
-}