Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 7335 - Unace ebuild forgets to add /opt/ace/bin to the path
Summary: Unace ebuild forgets to add /opt/ace/bin to the path
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All All
: High normal (vote)
Assignee: Ryan Phillips (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-09-01 12:14 UTC by Javier Marcet
Modified: 2002-09-01 20:52 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 Javier Marcet 2002-09-01 12:14:41 UTC
Simple fix to unace's ebuild, so that it updates the path :) 
 
diff -urN /portage/app-arch/unace/files/99unace 
portage/app-arch/unace/files/99unace 
--- /portage/app-arch/unace/files/99unace       Thu Jan  1 01:00:00 1970 
+++ portage/app-arch/unace/files/99unace        Wed Aug 21 01:42:44 2002 
@@ -0,0 +1,2 @@ 
+PATH=/opt/ace/bin 
+ROOTPATH=/opt/ace/bin 
diff -urN /portage/app-arch/unace/unace-2.0.4.ebuild 
portage/app-arch/unace/unace-2.0.4.ebuild 
--- /portage/app-arch/unace/unace-2.0.4.ebuild  Fri Aug 16 04:50:02 2002 
+++ portage/app-arch/unace/unace-2.0.4.ebuild   Wed Aug 21 01:44:43 2002 
@@ -14,6 +14,11 @@ 
 DEPEND="virtual/glibc" 
 
 src_install () { 
+ 
        into /opt/ace 
        dobin unace 
+ 
+       insinto /etc/env.d 
+       doins ${FILESDIR}/99unace 
+ 
 }
Comment 1 Ryan Phillips (RETIRED) gentoo-dev 2002-09-01 20:52:31 UTC
With the inclusion of the new baselayout... Single executables should be
installed into /opt/bin eliminating a whole rash of env.d files.  I have changed
the ebuild to install into /opt/bin.