diff options
author | Ben Lutgens <blutgens@gentoo.org> | 2002-06-24 18:03:15 +0000 |
---|---|---|
committer | Ben Lutgens <blutgens@gentoo.org> | 2002-06-24 18:03:15 +0000 |
commit | b2261259872037f56568e53911590c62fd1f7d7d (patch) | |
tree | 688040688fdcc1b34ac0d1f19344d1131d5e4e37 /app-misc/tinyca | |
parent | tinyca is a cool little app for managing a cert authority (diff) | |
download | historical-b2261259872037f56568e53911590c62fd1f7d7d.tar.gz historical-b2261259872037f56568e53911590c62fd1f7d7d.tar.bz2 historical-b2261259872037f56568e53911590c62fd1f7d7d.zip |
Added another sed command to fix $template var in the app
Diffstat (limited to 'app-misc/tinyca')
-rw-r--r-- | app-misc/tinyca/tinyca-0.3.4.ebuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app-misc/tinyca/tinyca-0.3.4.ebuild b/app-misc/tinyca/tinyca-0.3.4.ebuild index a7e633c7a64e..ef0038e78258 100644 --- a/app-misc/tinyca/tinyca-0.3.4.ebuild +++ b/app-misc/tinyca/tinyca-0.3.4.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Maintainer: Ben Lutgens,,, <lamer@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/app-misc/tinyca/tinyca-0.3.4.ebuild,v 1.1 2002/06/24 17:48:47 lamer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/tinyca/tinyca-0.3.4.ebuild,v 1.2 2002/06/24 18:03:15 lamer Exp $ # This ebuild was generated by Ebuilder v0.4. @@ -24,7 +24,8 @@ src_unpack() { cd ${S} # this app was written to be run from cwd and not meant to be installed # this little hack fixes that... pretty silly if you ask me - cat tinyca | sed -e "s:\./lib:/usr/share/tinyca/lib:" > tinyca + cat tinyca | sed -e "s:\./lib:/usr/share/tinyca/lib:" \ + -e "s:\./template:/usr/share/tinyca/template:" > tinyca } |