Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 129666 - tetex-3 eclass typo
Summary: tetex-3 eclass typo
Status: RESOLVED WORKSFORME
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Eclasses (show other bugs)
Hardware: All Other
: High normal (vote)
Assignee: Gentoo Linux bug wranglers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-04-12 02:07 UTC by Tobias Hahn
Modified: 2006-04-12 02:16 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Tobias Hahn 2006-04-12 02:07:40 UTC
Summary: {D}usr should be {D}/usr

Details:

function tetex-3_src_install() begins with

        tetex_src_install

        dodir /etc/env.d
        echo 'CONFIG_PROTECT_MASK="/etc/texmf/web2c"' > ${D}/etc/env.d/98tetex
        # populate /etc/texmf
        keepdir /etc/texmf/web2c
        cd ${D}/usr/share/texmf         # not ${TEXMF_PATH}
        for d in $(find . -name config -type d | sed -e "s:\./::g") ; do
                dodir /etc/texmf/${d}
                for f in $(find ${D}usr/share/texmf/$d -maxdepth 1 -mindepth 1); do

This last line 
  for f in $(find ${D}usr/share/texmf/$d -maxdepth 1 -mindepth 1); do
should read
  for f in $(find ${D}/usr/share/texmf/$d -maxdepth 1 -mindepth 1); do
Comment 1 Jakub Moc (RETIRED) gentoo-dev 2006-04-12 02:16:25 UTC
{D} already included the trailing /