Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 71249 - app-text/xdvi
Summary: app-text/xdvi
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High enhancement (vote)
Assignee: Text-Markup Team (OBSOLETE)
URL:
Whiteboard:
Keywords: EBUILD
Depends on:
Blocks:
 
Reported: 2004-11-14 23:16 UTC by Dmitry S. Kulyabov
Modified: 2004-11-19 03:53 UTC (History)
0 users

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


Attachments
app-text/xdvik-22.84.5.ebuild (xdvik-22.84.5.ebuild,3.44 KB, text/plain)
2004-11-14 23:17 UTC, Dmitry S. Kulyabov
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Dmitry S. Kulyabov 2004-11-14 23:16:31 UTC
neXtaw support added.
emacs support added.

Reproducible: Always
Steps to Reproduce:
1.
2.
3.
Comment 1 Dmitry S. Kulyabov 2004-11-14 23:17:08 UTC
Created attachment 43975 [details]
app-text/xdvik-22.84.5.ebuild
Comment 2 Mamoru KOMACHI (RETIRED) gentoo-dev 2004-11-18 23:01:10 UTC
Thanks, I'll add it tonight.
Comment 3 Mamoru KOMACHI (RETIRED) gentoo-dev 2004-11-19 03:53:57 UTC
Added to CVS. Thanks.

However, there are two things I should mention.
First, your ebuild inherit elisp, but it should be elips-common.
inherit elisp pulls in virutal/emacs, but it is not desired
if you don't have emacs installed. 
Second,
if [ -n "`use motif`" ];then
    foo
fi
syntax is deprecated and shouln't be used anymore.
Please use
if use motif ; then
    foo
fi
syntax instead.