summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2002-11-30 02:08:45 +0000
committerMike Frysinger <vapier@gentoo.org>2002-11-30 02:08:45 +0000
commit6bd65592eb82ef573a457293356b0fce9cd0be0e (patch)
treeeee03e81cb03f801be3d7e5a26d452b14e8e95fc /app-admin/sxid
parentChanged src_install () to src_install() (diff)
downloadgentoo-2-6bd65592eb82ef573a457293356b0fce9cd0be0e.tar.gz
gentoo-2-6bd65592eb82ef573a457293356b0fce9cd0be0e.tar.bz2
gentoo-2-6bd65592eb82ef573a457293356b0fce9cd0be0e.zip
Changed econf||die to econf
Diffstat (limited to 'app-admin/sxid')
-rw-r--r--app-admin/sxid/sxid-4.0.2.ebuild9
1 files changed, 5 insertions, 4 deletions
diff --git a/app-admin/sxid/sxid-4.0.2.ebuild b/app-admin/sxid/sxid-4.0.2.ebuild
index 5121d4482f76..d59996744218 100644
--- a/app-admin/sxid/sxid-4.0.2.ebuild
+++ b/app-admin/sxid/sxid-4.0.2.ebuild
@@ -1,11 +1,11 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/sxid/sxid-4.0.2.ebuild,v 1.1 2002/11/08 13:32:48 aliz Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/sxid/sxid-4.0.2.ebuild,v 1.2 2002/11/30 02:08:00 vapier Exp $
-S="${WORKDIR}/${P}"
DESCRIPTION="suid, sgid file and directory checking"
SRC_URI="ftp://marcus.seva.net/pub/sxid/${P/-/_}.tar.gz"
HOMEPAGE="http://freshmeat.net/projects/sxid"
+
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
@@ -20,14 +20,15 @@ src_compile() {
mv -f Makefile.in.new Makefile.in
cd ..
- econf || die "./configure failed"
+ econf
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc README docs/sxid.conf.example docs/sxid.cron.example
+}
+pkg_postinst() {
einfo "You will need to configure sxid.conf for your system using the manpage and example"
}
-