Portage is a package management system used by Gentoo Linux
# ChangeLog for dev-tex/listings
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-tex/listings/ChangeLog,v 1.22 2008/03/16 14:49:49 coldwind Exp $
16 Mar 2008; Santiago M. Mola
amd64 stable wrt bug #180550
10 Mar 2008; Raúl Porcel
alpha stable wrt #180550
09 Mar 2008; nixnut
Stable on ppc wrt bug 180550
09 Mar 2008; Markus Meier
x86 stable, bug #180550
08 Mar 2008; Ferris McCormick
Sparc stable, Bug #180550 --- built with USE=doc, texlive.
08 Mar 2008; Alexis Ballier
remove old
*listings-1.4 (08 Mar 2008)
08 Mar 2008; Alexis Ballier
version bump, bug #172443
02 Jul 2007; Piotr Jaroszyński
(QA) RESTRICT clean up.
12 Mar 2007; Alexandre Buisse
Replaced text-markup by tex as maintaining herd (text-markup split).
05 Feb 2007; Diego Pettenò
Regenerate digest in Manifest2 format.
10 Sep 2005; Aron Griffis
Mark 1.3 stable on alpha
05 Feb 2005; Michael Hanselmann
Stable on ppc and sparc.
28 Dec 2004; Dylan Carlson
Stable on amd64.
05 Oct 2004; Mamoru KOMACHI
listings-1.2.ebuild, listings-1.3.ebuild:
Added app-arch/unzip to DEPEND.
*listings-1.3 (09 Sep 2004)
09 Sep 2004; Mamoru KOMACHI
Version bumped. This closes bug #63205.
*listings-1.2 (18 Aug 2004)
18 Aug 2004; Mamoru KOMACHI
Version bumped. This closes bug #59909.
21 Jun 2004; Michael Hanselmann
Added to ~ppc, bug #54668.
16 Jun 2004; Ciaran McCreesh
Added ~sparc, bug #53552
13 Apr 2004; Danny van Dyk
marked ~amd64
*listings-1.1 (20 Sep 2003)
14 Nov 2003; Mamoru KOMACHI
Removed ${S} from pkg_postinst and added addwrite to src_install.
Marked as stable.
20 Sep 2003; Mike Gardiner
First commit. Needed some eclass overriding, which may in fact hint at fixes
that need to be applied to the class. Thanks to
submission and bug #23061
DIST listings-1.3.zip 584179 RMD160 17b7370b8ca54ddf81df560ba3be8a4691f51b01 SHA1 52a10dcf1d74eb964361156f68f4fe456cba8b66 SHA256 1b2f35caf5958937115fb8e92349cc2025e897e042ab8ca6ba3f408f6d6130cc
DIST listings-1.4.zip 778833 RMD160 7ca57ec56ded5a4876d2dbda334e123e1a77f494 SHA1 6283aab40e9fb9ce33d75ff451a5f9a438581c69 SHA256 23e91cf85e8a38b2431d62a78ba7227f5bacdcfdfda7314a3c50b6dc8c35d93f
EBUILD listings-1.3.ebuild 816 RMD160 9d69b793f9c051627930907de1954d850999b668 SHA1 89621af380ca04b2c240e6de0a9806b58506ab5e SHA256 6eeab709d38d2a44e844213ea9036944dce87a8cb5c40f6447535caca6d09734
EBUILD listings-1.4.ebuild 935 RMD160 ead9999685a36975000fe009a5e610bccf6c2339 SHA1 f5402efc3be98a9f279769e2cd51a4d8de3f7080 SHA256 ee555b4cd6f042c97277a214caa79072970f73c3bd1d92b20bd639c888708e6d
MISC ChangeLog 2785 RMD160 7f54ec9f5c4c3755912af0433e82a36d96722713 SHA1 059d72c5558cd324e997f133a73ae2fc2764be3c SHA256 c7aa196150368adaacf1d1095d6a6cca95c82e9150cb7e690d8ec10d5014991e
MISC metadata.xml 156 RMD160 2bf6b2ed9ff0fcef1e902cf093ccf4ae2dcc70a0 SHA1 e9260cd53905d8569cf3327ded4c6d01653fc389 SHA256 b4971b8472ab3fe4fbfe41b331a79193ca19e86c08d055ad1c20eaf9e04b79b6
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tex/listings/listings-1.3.ebuild,v 1.6 2007/07/02 15:08:35 peper Exp $
inherit latex-package
S=${WORKDIR}
DESCRIPTION="A source code and pretty print package for LaTeX"
#SRC_URI="http://www.atscire.de/index.php?nav=download\&file=${P}.zip"
#RESTRICT="mirror"
SRC_URI="mirror://gentoo/${P}.zip"
HOMEPAGE="http://www.atscire.de/products/listings"
LICENSE="LPPL-1.2"
IUSE=""
SLOT="0"
KEYWORDS="alpha amd64 ppc sparc x86"
DEPEND="app-arch/unzip"
# these functions are overridden from the base class because
# we need to do docs things using texi2dvi in
# /var/cache/fonts
src_install() {
addwrite /var/cache/fonts
latex-package_src_doinstall styles fonts pdf dtx
}
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tex/listings/listings-1.4.ebuild,v 1.6 2008/03/16 14:49:49 coldwind Exp $
inherit latex-package
DESCRIPTION="A source code and pretty print package for LaTeX"
# Taken from ctan:
# http://www.tex.ac.uk/tex-archive/macros/latex/contrib/listings.zip
SRC_URI="mirror://gentoo/${P}.zip"
HOMEPAGE="http://www.tex.ac.uk/tex-archive/macros/latex/contrib/listings/"
LICENSE="LPPL-1.3"
IUSE="doc"
SLOT="0"
KEYWORDS="alpha amd64 ppc sparc x86"
DEPEND="app-arch/unzip"
S=${WORKDIR}/${PN}
TEXMF="/usr/share/texmf-site"
DOCS="README"
src_compile() {
export VARTEXFONTS="${T}/fonts"
emake listings || die "Failed to create listings.sty"
if use doc; then
emake -j1 all || die "Failed to create documentation"
fi
}
src_install() {
export VARTEXFONTS="${T}/fonts"
latex-package_src_install
}