diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-14 23:51:01 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-14 23:51:01 +0000 |
commit | f1e6dae55660be36ab41f2d3505e792411ba35f4 (patch) | |
tree | 38e64575d2e2be35335fa2175e4329a8932131d3 /eclass | |
parent | version bump (diff) | |
download | historical-f1e6dae55660be36ab41f2d3505e792411ba35f4.tar.gz historical-f1e6dae55660be36ab41f2d3505e792411ba35f4.tar.bz2 historical-f1e6dae55660be36ab41f2d3505e792411ba35f4.zip |
more tweaks
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/commonbox.eclass | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/eclass/commonbox.eclass b/eclass/commonbox.eclass index 439f7b9aa7c0..ddfebc6d3c1e 100644 --- a/eclass/commonbox.eclass +++ b/eclass/commonbox.eclass @@ -1,7 +1,7 @@ # Copyright 2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 # Author: Seemant Kulleen <seemant@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/eclass/commonbox.eclass,v 1.2 2002/07/14 23:01:40 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/commonbox.eclass,v 1.3 2002/07/14 23:51:01 seemant Exp $ # The commonbox eclass is designed to allow easier installation of the box # window managers such as blackbox and fluxbox and commonbox @@ -15,7 +15,7 @@ INHERITED="$INHERITED $ECLASS" EXPORT_FUNCTIONS commonify src_compile src_install DEPEND="x11-misc/commonbox-utils - x11-misc/commonbox-styles" + x11-themes/commonbox-styles" RDEPEND="nls? ( sys-devel/gettext )" PROVIDE="virtual/blackbox" @@ -40,9 +40,9 @@ commonbox_commonify() { cd ${S}/src cp Makefile Makefile.orig - sed -e "s:\(DEFAULT_MENU = \).*:\1/usr/share/commonbox/menu:" \ - -e "s:\(DEFAULT_STYLE = \).*:\1/usr/share/commonbox/styles/Clean:" \ - -e "s:\(DEFAULT_INITFILE = \).*:\1/usr/share/commonbox/init:" \ + sed -e 's:$(pkgdatadir)/menu:\\"/usr/share/commonbox/menu\\":' \ + -e 's:$(pkgdatadir)/styles:\\"/usr/share/commonbox/styles\\":' \ + -e 's:\(DEFAULT_INITFILE\).*:\1=\\"/usr/share/commonbox/init\\":' \ Makefile.orig > Makefile cd ${S} |