summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2011-04-29 09:55:13 +0000
committerTim Harder <radhermit@gentoo.org>2011-04-29 09:55:13 +0000
commit51abf4c1b3af126ffcd0839ecc7b7e36d8a1f718 (patch)
tree94d31e714b4f16e8b73415da29b6be6e688702bc /dev-cpp/ctemplate
parentFix compile with gcc-4.6 (bug #363229). (diff)
downloadgentoo-2-51abf4c1b3af126ffcd0839ecc7b7e36d8a1f718.tar.gz
gentoo-2-51abf4c1b3af126ffcd0839ecc7b7e36d8a1f718.tar.bz2
gentoo-2-51abf4c1b3af126ffcd0839ecc7b7e36d8a1f718.zip
Remove old.
(Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
Diffstat (limited to 'dev-cpp/ctemplate')
-rw-r--r--dev-cpp/ctemplate/ChangeLog5
-rw-r--r--dev-cpp/ctemplate/ctemplate-0.98.ebuild61
2 files changed, 4 insertions, 62 deletions
diff --git a/dev-cpp/ctemplate/ChangeLog b/dev-cpp/ctemplate/ChangeLog
index 16c4fdda191c..1e39cc238010 100644
--- a/dev-cpp/ctemplate/ChangeLog
+++ b/dev-cpp/ctemplate/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-cpp/ctemplate
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/ctemplate/ChangeLog,v 1.11 2011/04/29 09:53:34 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/ctemplate/ChangeLog,v 1.12 2011/04/29 09:55:13 radhermit Exp $
+
+ 29 Apr 2011; Tim Harder <radhermit@gentoo.org> -ctemplate-0.98.ebuild:
+ Remove old.
29 Apr 2011; Tim Harder <radhermit@gentoo.org> ctemplate-0.99.ebuild,
+files/ctemplate-0.99-gcc-4.6.patch:
diff --git a/dev-cpp/ctemplate/ctemplate-0.98.ebuild b/dev-cpp/ctemplate/ctemplate-0.98.ebuild
deleted file mode 100644
index 726bc8e7a02d..000000000000
--- a/dev-cpp/ctemplate/ctemplate-0.98.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/ctemplate/ctemplate-0.98.ebuild,v 1.2 2011/04/24 04:47:17 josejx Exp $
-
-EAPI="3"
-
-inherit elisp-common
-
-DESCRIPTION="A simple but powerful template language for C++"
-HOMEPAGE="http://code.google.com/p/google-ctemplate/"
-SRC_URI="http://google-ctemplate.googlecode.com/files/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc emacs vim-syntax"
-
-DEPEND=""
-RDEPEND="vim-syntax? ( >=app-editors/vim-core-7 )
- emacs? ( virtual/emacs )"
-
-SITEFILE="70ctemplate-gentoo.el"
-
-src_compile() {
- emake || die "emake failed"
-
- if use emacs ; then
- elisp-compile contrib/tpl-mode.el || die "elisp-compile failed"
- fi
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
-
- # Installs just every piece
- rm -rf "${ED}/usr/share/doc"
-
- dodoc AUTHORS ChangeLog NEWS README
- 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
-}