summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2014-10-11 10:39:53 +0000
committerAlexis Ballier <aballier@gentoo.org>2014-10-11 10:39:53 +0000
commit504d5a56d7e81fe6874d3ae6077fc8281199afbc (patch)
treee5ff4b2bdc4fb4f5a43193957f8910063b8e1190 /dev-libs/ptexenc
parentVersion bump. (diff)
downloadgentoo-2-504d5a56d7e81fe6874d3ae6077fc8281199afbc.tar.gz
gentoo-2-504d5a56d7e81fe6874d3ae6077fc8281199afbc.tar.bz2
gentoo-2-504d5a56d7e81fe6874d3ae6077fc8281199afbc.zip
bump to texlive 2014 version
(Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'dev-libs/ptexenc')
-rw-r--r--dev-libs/ptexenc/ChangeLog10
-rw-r--r--dev-libs/ptexenc/ptexenc-1.3.2_p20140525.ebuild47
2 files changed, 55 insertions, 2 deletions
diff --git a/dev-libs/ptexenc/ChangeLog b/dev-libs/ptexenc/ChangeLog
index 59e7d8f2b380..7fb1d8d2abda 100644
--- a/dev-libs/ptexenc/ChangeLog
+++ b/dev-libs/ptexenc/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for dev-libs/ptexenc
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/ptexenc/ChangeLog,v 1.43 2013/06/27 16:43:58 aballier Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/ptexenc/ChangeLog,v 1.44 2014/10/11 10:39:53 aballier Exp $
+
+*ptexenc-1.3.2_p20140525 (11 Oct 2014)
+
+ 11 Oct 2014; Alexis Ballier <aballier@gentoo.org>
+ +ptexenc-1.3.2_p20140525.ebuild:
+ bump to texlive 2014 version
*ptexenc-1.3.1_p20130530 (26 Jun 2013)
diff --git a/dev-libs/ptexenc/ptexenc-1.3.2_p20140525.ebuild b/dev-libs/ptexenc/ptexenc-1.3.2_p20140525.ebuild
new file mode 100644
index 000000000000..207ff977ccd9
--- /dev/null
+++ b/dev-libs/ptexenc/ptexenc-1.3.2_p20140525.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/ptexenc/ptexenc-1.3.2_p20140525.ebuild,v 1.1 2014/10/11 10:39:53 aballier Exp $
+
+EAPI=3
+
+inherit libtool
+
+DESCRIPTION="Library for Japanese pTeX providing a better way of handling character encodings"
+HOMEPAGE="http://tutimura.ath.cx/ptexlive/?ptexenc"
+SRC_URI="mirror://gentoo/texlive-${PV#*_p}-source.tar.xz"
+# http://tutimura.ath.cx/~nob/tex/ptexlive/ptexenc/${P}.tar.xz
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-macos"
+IUSE="iconv static-libs"
+
+DEPEND="iconv? ( virtual/libiconv )
+ dev-libs/kpathsea"
+RDEPEND="${DEPEND}"
+
+S=${WORKDIR}/texlive-${PV#*_p}-source/texk/${PN}
+
+src_prepare() {
+ default
+
+ # https://bugs.gentoo.org/show_bug.cgi?id=377141
+ sed -i '/^LIBS/s:@LIBS@:@LIBS@ @KPATHSEA_LIBS@:' "${S}"/Makefile.in || die
+
+ cd "${WORKDIR}/texlive-${PV#*_p}-source"
+ S="${WORKDIR}/texlive-${PV#*_p}-source" elibtoolize #sane .so versionning on gfbsd
+}
+
+src_configure() {
+ econf \
+ --with-system-kpathsea \
+ $(use_enable static-libs static) \
+ $(use_enable iconv kanji-iconv)
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die
+ find "${D}" -name '*.la' -delete
+
+ dodoc ChangeLog README || die
+}