diff options
author | Tiago Cunha <tcunha@gentoo.org> | 2008-08-18 23:02:22 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gentoo.org> | 2008-08-18 23:02:22 +0000 |
commit | 2b73d68d2cbc2a0cb3022cd4ae0ac72b6e64a8aa (patch) | |
tree | 8b5ca6ab4f7f04cedfd89b3bebccebed22295f3a /dev-tex | |
parent | sys-auth/nss-ldapd: Added comment to clarify why library is installed to /lib. (diff) | |
download | sunrise-2b73d68d2cbc2a0cb3022cd4ae0ac72b6e64a8aa.tar.gz sunrise-2b73d68d2cbc2a0cb3022cd4ae0ac72b6e64a8aa.tar.bz2 sunrise-2b73d68d2cbc2a0cb3022cd4ae0ac72b6e64a8aa.zip |
dev-tex/luximono: Since PACK, and SUPPLIER are only used in src_install, avoid polluting global scope by declaring them local
svn path=/sunrise/; revision=6758
Diffstat (limited to 'dev-tex')
-rw-r--r-- | dev-tex/luximono/ChangeLog | 7 | ||||
-rw-r--r-- | dev-tex/luximono/Manifest | 4 | ||||
-rw-r--r-- | dev-tex/luximono/luximono-2004.ebuild | 5 |
3 files changed, 11 insertions, 5 deletions
diff --git a/dev-tex/luximono/ChangeLog b/dev-tex/luximono/ChangeLog index 0ba3a2293..fe75d8a16 100644 --- a/dev-tex/luximono/ChangeLog +++ b/dev-tex/luximono/ChangeLog @@ -1,7 +1,12 @@ # ChangeLog for dev-tex/luximono -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 18 Aug 2008; Tiago Cunha (tcunha) <me@tiagocunha.org> + luximono-2004.ebuild: + Since PACK, and SUPPLIER are only used in src_install, avoid polluting + global scope by declaring them local + 21 Jul 2007; Ali Polatel <hawking@gentoo.org> luximono-2004.ebuild: removed trailing whitespace diff --git a/dev-tex/luximono/Manifest b/dev-tex/luximono/Manifest index 55795b171..d5585a877 100644 --- a/dev-tex/luximono/Manifest +++ b/dev-tex/luximono/Manifest @@ -1,4 +1,4 @@ DIST LuxiMono-2004.zip 199660 RMD160 edc8d07911945f4db27c5741e6c7597cceebdae6 SHA1 3b59fd6e57c1e96dbaacb0c21222a49477468181 SHA256 93f6466649edcb0de608589805c1bc0f04cb364a4efcac3a81fbc38488272293 -EBUILD luximono-2004.ebuild 1367 RMD160 e4cc311fdfc56acc767d9a41a669f450a1a80d94 SHA1 84435cc3ba983f461b95a8684b4283b72b4eb01b SHA256 472927b76ef92df00fa4d56690fa45d17db808c59c26ba293142155b70e8765c -MISC ChangeLog 341 RMD160 0c7dc6ef2eea8b2b0e5a0cdfaaabaf8d0853f78f SHA1 fd5b8f7345b834adb50640e0887fa7ad5ceef5e0 SHA256 797280a34dd715f3326f329e1ce805e8fa91d0a6bac528bd7ff685436ffd7ffd +EBUILD luximono-2004.ebuild 1382 RMD160 37409200b53d0537a1c5f48e78e9461979d34540 SHA1 bc5306380b7f2c32866be4d30e75388698f5c960 SHA256 f3afef382c1583d4690adc72ada19dbdce512ae97386c93d13ca27da9603c602 +MISC ChangeLog 534 RMD160 68f583a52d9761af06baa3ef5a3fced88a36f3bb SHA1 70d0d4a4f0cf6883470985ca3189df5563f42f4a SHA256 75e63f60ed00be705c9b69b2c73307fe88af13b2e2bec3e11b69730ea5f3d83b MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42 diff --git a/dev-tex/luximono/luximono-2004.ebuild b/dev-tex/luximono/luximono-2004.ebuild index 9cd4ec33c..748cb4e82 100644 --- a/dev-tex/luximono/luximono-2004.ebuild +++ b/dev-tex/luximono/luximono-2004.ebuild @@ -18,8 +18,6 @@ DEPEND="app-arch/unzip" RDEPEND=">=app-text/tetex-3.0" S=${WORKDIR}/${MY_PN} -PACK="luxi" -SUPPLIER="public" src_unpack(){ unpack ${A} @@ -28,6 +26,9 @@ src_unpack(){ } src_install() { + local PACK="luxi" + local SUPPLIER="public" + # latex-package_src_doinstall generally uses different # directories than this package expects # cd ${S} |