summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2008-09-03 04:48:23 +0000
committerAlexis Ballier <aballier@gentoo.org>2008-09-03 04:48:23 +0000
commita084b778998b4d1d708d34dfac6f2301ce075669 (patch)
tree29187216bc13c2048ce4d1608a807c1537fcaf2b /dev-tex/europecv
parentfix collision (diff)
downloadgentoo-2-a084b778998b4d1d708d34dfac6f2301ce075669.tar.gz
gentoo-2-a084b778998b4d1d708d34dfac6f2301ce075669.tar.bz2
gentoo-2-a084b778998b4d1d708d34dfac6f2301ce075669.zip
rev bump to install in texmf-site and add examples useflag
(Portage version: 2.2_rc8/cvs/Linux 2.6.26.3 x86_64)
Diffstat (limited to 'dev-tex/europecv')
-rw-r--r--dev-tex/europecv/ChangeLog8
-rw-r--r--dev-tex/europecv/europecv-20060424-r1.ebuild38
2 files changed, 45 insertions, 1 deletions
diff --git a/dev-tex/europecv/ChangeLog b/dev-tex/europecv/ChangeLog
index b2bef9e00dd5..1e45d1c4a748 100644
--- a/dev-tex/europecv/ChangeLog
+++ b/dev-tex/europecv/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for dev-tex/europecv
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/europecv/ChangeLog,v 1.16 2008/09/03 04:20:27 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/europecv/ChangeLog,v 1.17 2008/09/03 04:48:23 aballier Exp $
+
+*europecv-20060424-r1 (03 Sep 2008)
+
+ 03 Sep 2008; Alexis Ballier <aballier@gentoo.org>
+ +europecv-20060424-r1.ebuild:
+ rev bump to install in texmf-site and add examples useflag
03 Sep 2008; Alexis Ballier <aballier@gentoo.org>
europecv-20040603.ebuild, europecv-20060424.ebuild:
diff --git a/dev-tex/europecv/europecv-20060424-r1.ebuild b/dev-tex/europecv/europecv-20060424-r1.ebuild
new file mode 100644
index 000000000000..3936926766dd
--- /dev/null
+++ b/dev-tex/europecv/europecv-20060424-r1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/europecv/europecv-20060424-r1.ebuild,v 1.1 2008/09/03 04:48:23 aballier Exp $
+
+inherit latex-package
+
+DESCRIPTION="LaTeX class for the standard model for curricula vitae as recommended by the European Commission."
+HOMEPAGE="http://www.ctan.org/tex-archive/help/Catalogue/entries/europecv.html"
+# Downloaded from:
+# ftp://cam.ctan.org/tex-archive/macros/latex/contrib/europecv.zip
+SRC_URI="mirror://gentoo/${P}.zip"
+
+LICENSE="LPPL-1.2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+IUSE="examples"
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+ app-arch/unzip"
+S="${WORKDIR}/${PN}"
+
+TEXMF=/usr/share/texmf-site
+
+src_compile() {
+ return
+}
+
+src_install() {
+ insinto ${TEXMF}/tex/latex/europecv
+ doins ecv* europecv.cls EuropeFlag* europasslogo*
+
+ insinto /usr/share/doc/${PF}
+ doins -r europecv.pdf europecv.tex
+ dosym /usr/share/doc/${PF}/europecv.pdf ${TEXMF}/doc/latex/${PN}/europecv.pdf
+ use examples && doins -r examples templates
+}