Home | Docs | Forums | Lists | Bugs | Planet | Store | GMN | Get Gentoo!
Not eligible to see or edit group visibility for this bug.
View Bug Activity | Format For Printing | XML | Clone This Bug
sci-visualization/gnuplot-4.2_rc1 is missing tetex dependency I have fixed it (just for myself and users of my overlay) like this: < IUSE="doc emacs gd ggi pdf plotutils png readline svga X xemacs wxwindows" > IUSE="doc emacs gd ggi pdf plotutils png readline svga X xemacs wxwindows latex" added 'latex? ( || ( app-text/tetex app-text/cstetex ) )' (not sure if correct) to DEPEND and to begin of src_compile() function added something like this: if ! use latex; then sed -i '/^SUBDIRS/ s/LaTeX//' share/Makefile.in || die "sed failed" fi
Please change (eg in your overlay) the dependency to virtual/tetex so one is able to use texlive. In addition, please add the following patches to the Makefiles in share/LaTeX to put the configuration file in TEXFMSITE where Gentoo should put its TeX files. thx
Created an attachment (id=111968) [edit] Makefile.am.patch TEXFMLOCAL -> TEXMFSITE
Created an attachment (id=111969) [edit] Makefile.in.patch TEXMFLOCAL -> TEXMFSITE
Created an attachment (id=111988) [edit] gnuplot-4.2_rc4 ebuild I added the necessary changes to the ebuild of Grant Goodyear's overlay.
Created an attachment (id=111990) [edit] Makefile.am patch Needed by rc 4
Created an attachment (id=111991) [edit] Makefile.in patch Needed by rc 4
Fixed as of sci-visualization/gnuplot-4.2_rc4. I used sed instead of your patch files.