summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Black <dragonheart@gentoo.org>2004-04-22 01:34:39 +0000
committerDaniel Black <dragonheart@gentoo.org>2004-04-22 01:34:39 +0000
commit6ba3995aed5a6614e55af907d6a9f052f59235c8 (patch)
tree7248a1f48547ce2d0f1dd4bd63ab4faf1156c35a /app-admin/sxid
parentphear the hppa (diff)
downloadgentoo-2-6ba3995aed5a6614e55af907d6a9f052f59235c8.tar.gz
gentoo-2-6ba3995aed5a6614e55af907d6a9f052f59235c8.tar.bz2
gentoo-2-6ba3995aed5a6614e55af907d6a9f052f59235c8.zip
Version bug - thanks to Daniel Webert <daniel_webert@web.de> in bug #48623
Diffstat (limited to 'app-admin/sxid')
-rw-r--r--app-admin/sxid/ChangeLog10
-rw-r--r--app-admin/sxid/files/digest-sxid-4.0.41
-rw-r--r--app-admin/sxid/metadata.xml9
-rw-r--r--app-admin/sxid/sxid-4.0.4.ebuild39
4 files changed, 57 insertions, 2 deletions
diff --git a/app-admin/sxid/ChangeLog b/app-admin/sxid/ChangeLog
index b7e54255086b..96985e8a408e 100644
--- a/app-admin/sxid/ChangeLog
+++ b/app-admin/sxid/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-admin/sxid
-# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/sxid/ChangeLog,v 1.5 2003/06/29 15:24:07 aliz Exp $
+# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/sxid/ChangeLog,v 1.6 2004/04/22 01:34:39 dragonheart Exp $
+
+*sxid-4.0.4 (22 Apr 2004)
+
+ 22 Apr 2004; Daniel Black <dragonheart@gentoo.org> metadata.xml,
+ sxid-4.0.4.ebuild:
+ Version bug - thanks to Daniel Webert <daniel_webert@web.de> in bug #48623
*sxid-4.0.2 (08 Nov 2002)
diff --git a/app-admin/sxid/files/digest-sxid-4.0.4 b/app-admin/sxid/files/digest-sxid-4.0.4
new file mode 100644
index 000000000000..74629f861cf8
--- /dev/null
+++ b/app-admin/sxid/files/digest-sxid-4.0.4
@@ -0,0 +1 @@
+MD5 f85f1bf18651af14efd2b475b87e55b1 sxid_4.0.4.tar.gz 45277
diff --git a/app-admin/sxid/metadata.xml b/app-admin/sxid/metadata.xml
new file mode 100644
index 000000000000..d8b96be3c5cd
--- /dev/null
+++ b/app-admin/sxid/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>no-herd</herd>
+ <maintainer>
+ <email>bug-wranglers@gentoo.org</email>
+ <description>This package lacks a primary herd or maintainer.</description>
+ </maintainer>
+</pkgmetadata>
diff --git a/app-admin/sxid/sxid-4.0.4.ebuild b/app-admin/sxid/sxid-4.0.4.ebuild
new file mode 100644
index 000000000000..c366f163d2e7
--- /dev/null
+++ b/app-admin/sxid/sxid-4.0.4.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2004 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.4.ebuild,v 1.1 2004/04/22 01:34:39 dragonheart Exp $
+
+DESCRIPTION="suid, sgid file and directory checking"
+SRC_URI="http://www.phunnypharm.org/pub/sxid/${P/-/_}.tar.gz"
+HOMEPAGE="http://freshmeat.net/projects/sxid"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86 ~ppc"
+IUSE=""
+
+RDEPEND="virtual/glibc"
+
+DEPEND="virtual/glibc
+ sys-apps/sed
+ sys-devel/gcc
+ sys-devel/autoconf"
+
+src_compile() {
+ # this is an admin application and really requires root to run correctly
+ # we need to move the binary to the sbin directory
+ cd source
+ sed -i s/bindir/sbindir/g Makefile.in
+ cd ..
+
+ 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"
+}