diff options
Diffstat (limited to 'app-crypt/gringotts/gringotts-1.2.8-r1.ebuild')
-rw-r--r-- | app-crypt/gringotts/gringotts-1.2.8-r1.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app-crypt/gringotts/gringotts-1.2.8-r1.ebuild b/app-crypt/gringotts/gringotts-1.2.8-r1.ebuild index 2b05e27eec7b..436e82df37d3 100644 --- a/app-crypt/gringotts/gringotts-1.2.8-r1.ebuild +++ b/app-crypt/gringotts/gringotts-1.2.8-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/gringotts/gringotts-1.2.8-r1.ebuild,v 1.6 2005/09/02 19:17:13 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/gringotts/gringotts-1.2.8-r1.ebuild,v 1.7 2008/11/04 01:27:16 jmbsvicetto Exp $ DESCRIPTION="Utility that allows you to jot down sensitive data" HOMEPAGE="http://devel.pluto.linux.it/projects/Gringotts/" @@ -21,14 +21,14 @@ DEPEND="${RDEPEND} src_unpack() { unpack ${A} - cd ${S} + cd "${S}" # Remove deprecation flag, so it compiles using Gtk+ 2.4. sed -i -e 's:-DGTK_DISABLE_DEPRECATED::g' src/Makefile.in } src_install() { - make DESTDIR=${D} install || die + make DESTDIR="${D}" install || die # The FAQ and README documents shouldn't be gzip'd, as they need to be # available in plain format when they are called from the `Help' menu. @@ -45,6 +45,6 @@ pkg_postinst() { ewarn " http://bugs.gentoo.org/" else einfo "Changing permissions for the gringotts binary." - chmod u-s ${ROOT}/usr/bin/gringotts + chmod u-s "${ROOT}/usr/bin/gringotts" fi } |