diff options
author | Michael Sterrett <msterret@gentoo.org> | 2003-09-05 22:01:57 +0000 |
---|---|---|
committer | Michael Sterrett <msterret@gentoo.org> | 2003-09-05 22:01:57 +0000 |
commit | b5a7f75d6a7a31cdfe5daffda48a15bc2ce2999f (patch) | |
tree | aaae03e472c453b0e1c37aad094ef40d9beb0484 /net-misc/raccess | |
parent | LICENSE fix (diff) | |
download | gentoo-2-b5a7f75d6a7a31cdfe5daffda48a15bc2ce2999f.tar.gz gentoo-2-b5a7f75d6a7a31cdfe5daffda48a15bc2ce2999f.tar.bz2 gentoo-2-b5a7f75d6a7a31cdfe5daffda48a15bc2ce2999f.zip |
whitespace cleanup
Diffstat (limited to 'net-misc/raccess')
-rw-r--r-- | net-misc/raccess/Manifest | 2 | ||||
-rw-r--r-- | net-misc/raccess/raccess-0.6.ebuild | 23 |
2 files changed, 11 insertions, 14 deletions
diff --git a/net-misc/raccess/Manifest b/net-misc/raccess/Manifest index 3107e8caa4d6..8d470ba2e15a 100644 --- a/net-misc/raccess/Manifest +++ b/net-misc/raccess/Manifest @@ -1,3 +1,3 @@ MD5 bcee36e00f0612ab68c6588d0e70bf64 ChangeLog 853 -MD5 50c02af7176419b46dc359962efc1d2f raccess-0.6.ebuild 1196 +MD5 4ee6149e5e747dad3cd922bfe1e14053 raccess-0.6.ebuild 1186 MD5 6f29cd79f699f5fe7678b0f86f20124d files/digest-raccess-0.6 63 diff --git a/net-misc/raccess/raccess-0.6.ebuild b/net-misc/raccess/raccess-0.6.ebuild index 05a1a8442267..97ff232b76a7 100644 --- a/net-misc/raccess/raccess-0.6.ebuild +++ b/net-misc/raccess/raccess-0.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/raccess/raccess-0.6.ebuild,v 1.9 2003/02/13 15:04:51 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/raccess/raccess-0.6.ebuild,v 1.10 2003/09/05 22:01:49 msterret Exp $ S=${WORKDIR}/${P} DESCRIPTION="Remote Access Session is a security tool to analyze the integrity of systems using a library of publically available (and proven to work) exploits" @@ -14,22 +14,19 @@ DEPEND="sys-devel/gcc" src_compile() { - ./configure --prefix=/usr --sysconfdir=/etc/raccess --host=${CHOST} || die - make BINFILES="-DLOCATION_BIN_FILES=\\\"/usr/lib/raccess\\\"" CFGFILES="-DLOCATION_CONFIG_FILES=\\\"/etc/raccess\\\"" CFLAGS="-g ${CFLAGS}" all || die - + ./configure --prefix=/usr --sysconfdir=/etc/raccess --host=${CHOST} || die + make BINFILES="-DLOCATION_BIN_FILES=\\\"/usr/lib/raccess\\\"" CFGFILES="-DLOCATION_CONFIG_FILES=\\\"/etc/raccess\\\"" CFLAGS="-g ${CFLAGS}" all || die + } src_install() { + dodir /etc/raccess + dodir /usr/lib/raccess - dodir /etc/raccess - dodir /usr/lib/raccess - - mv ${S}/exploits/Makefile ${S}/exploits/Makefile.old - sed 's/bin\/exploits/lib\/raccess/g' ${S}/exploits/Makefile.old > ${S}/exploits/Makefile + mv ${S}/exploits/Makefile ${S}/exploits/Makefile.old + sed 's/bin\/exploits/lib\/raccess/g' ${S}/exploits/Makefile.old > ${S}/exploits/Makefile - make prefix=${D}/usr mandir=${D}/usr/share/man sysconfdir=${D}/etc/raccess install || die - - dodoc AUTHORS COPYING ChangeLog INSTALL NEWS PROJECT_PLANNING README + make prefix=${D}/usr mandir=${D}/usr/share/man sysconfdir=${D}/etc/raccess install || die + dodoc AUTHORS COPYING ChangeLog INSTALL NEWS PROJECT_PLANNING README } - |