diff options
author | Mamoru Komachi <usata@gentoo.org> | 2003-11-13 15:25:35 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2003-11-13 15:25:35 +0000 |
commit | b68b46ce596d3d6e13e5a62668afbe0cff107cdc (patch) | |
tree | 80a90ac05a37577e6c614a3a4b7827d675a0439f /dev-tex | |
parent | new version (diff) | |
download | gentoo-2-b68b46ce596d3d6e13e5a62668afbe0cff107cdc.tar.gz gentoo-2-b68b46ce596d3d6e13e5a62668afbe0cff107cdc.tar.bz2 gentoo-2-b68b46ce596d3d6e13e5a62668afbe0cff107cdc.zip |
Fixed ${S} in pkg_postinst by adding addwrite in src_install. Marked as stable.
Diffstat (limited to 'dev-tex')
-rw-r--r-- | dev-tex/listings/ChangeLog | 6 | ||||
-rw-r--r-- | dev-tex/listings/Manifest | 4 | ||||
-rw-r--r-- | dev-tex/listings/listings-1.1.ebuild | 17 |
3 files changed, 11 insertions, 16 deletions
diff --git a/dev-tex/listings/ChangeLog b/dev-tex/listings/ChangeLog index ba0de20f0659..d9bcdef368eb 100644 --- a/dev-tex/listings/ChangeLog +++ b/dev-tex/listings/ChangeLog @@ -1,9 +1,13 @@ # ChangeLog for dev-tex/listings # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/listings/ChangeLog,v 1.1 2003/09/19 17:21:51 obz Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/listings/ChangeLog,v 1.2 2003/11/13 15:25:31 usata Exp $ *listings-1.1 (20 Sep 2003) + 14 Nov 2003; Mamoru KOMACHI <usata@gentoo.org> listings-1.1.ebuild: + Removed ${S} from pkg_postinst and added addwrite to src_install. + Marked as stable. + 20 Sep 2003; Mike Gardiner <obz@gentoo.org> listings-1.1.ebuild, metadata.xml: First commit. Needed some eclass overriding, which may in fact hint at fixes that need to be applied to the class. Thanks to <g_sauthoff@web.de> for a diff --git a/dev-tex/listings/Manifest b/dev-tex/listings/Manifest index 9e3159a4b2a4..af9035722426 100644 --- a/dev-tex/listings/Manifest +++ b/dev-tex/listings/Manifest @@ -1,4 +1,4 @@ -MD5 794a21b5879fc8bd929b8a1aa436a5d0 listings-1.1.ebuild 783 -MD5 424080f44ccea83575b35df4d215c611 ChangeLog 505 +MD5 05413655c2af9802d89f39c4dc437625 ChangeLog 666 +MD5 81e211427682f664f047a1bd270b22c5 listings-1.1.ebuild 713 MD5 c472f5fd1646eb8bca71d8df5cb2bdcc metadata.xml 164 MD5 497cdc64162e5fbeb57cc316b9bf0c53 files/digest-listings-1.1 61 diff --git a/dev-tex/listings/listings-1.1.ebuild b/dev-tex/listings/listings-1.1.ebuild index 17b8905bb413..540e9566f290 100644 --- a/dev-tex/listings/listings-1.1.ebuild +++ b/dev-tex/listings/listings-1.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/listings/listings-1.1.ebuild,v 1.1 2003/09/19 17:21:51 obz Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/listings/listings-1.1.ebuild,v 1.2 2003/11/13 15:25:31 usata Exp $ inherit latex-package @@ -13,23 +13,14 @@ LICENSE="LPPL-1.2" IUSE="" SLOT="0" -KEYWORDS="~x86" +KEYWORDS="x86" # these functions are overridden from the base class because # we need to do docs things using texi2dvi in # /var/cache/fonts src_install() { - cd ${S} - latex-package_src_doinstall styles fonts pdf + addwrite /var/cache/fonts + latex-package_src_doinstall styles fonts pdf dtx } - -pkg_postinst() { - - cd ${S} - latex-package_src_doinstall dtx - latex-package_pkg_postinst - -} - |