diff options
-rw-r--r-- | net-analyzer/nbaudit/ChangeLog | 6 | ||||
-rw-r--r-- | net-analyzer/nbaudit/nbaudit-1.0.ebuild | 11 |
2 files changed, 8 insertions, 9 deletions
diff --git a/net-analyzer/nbaudit/ChangeLog b/net-analyzer/nbaudit/ChangeLog index 7a6ca32eff50..8cb4931e53b7 100644 --- a/net-analyzer/nbaudit/ChangeLog +++ b/net-analyzer/nbaudit/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-analyzer/nbaudit # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nbaudit/ChangeLog,v 1.7 2004/07/10 11:57:22 eldad Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nbaudit/ChangeLog,v 1.8 2004/08/24 10:37:22 eldad Exp $ + + 24 Aug 2004; Eldad Zack <eldad@gentoo.org> nbaudit-1.0.ebuild: + Fixed -lshadow linking problem. Thanks to wernfried haas + <w.haas@xover.htu.tuwien.ac.at> for pointing it out. Closes bug #61437. 10 Jul 2004; Eldad Zack <eldad@gentoo.org> +metadata.xml, nbaudit-1.0.ebuild: diff --git a/net-analyzer/nbaudit/nbaudit-1.0.ebuild b/net-analyzer/nbaudit/nbaudit-1.0.ebuild index 291fb7a3f866..7d1f199678a6 100644 --- a/net-analyzer/nbaudit/nbaudit-1.0.ebuild +++ b/net-analyzer/nbaudit/nbaudit-1.0.ebuild @@ -1,9 +1,8 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nbaudit/nbaudit-1.0.ebuild,v 1.15 2004/07/10 11:57:22 eldad Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nbaudit/nbaudit-1.0.ebuild,v 1.16 2004/08/24 10:37:22 eldad Exp $ - -# Its officially called nat10 but the name conflicts with other projects +# It is officially called nat10 but the name conflicts with other projects # so I'm following the *BSDs suggestion of calling it nbaudit MY_P=nat10 @@ -21,10 +20,7 @@ IUSE="" src_compile() { - mv Makefile Makefile.old - sed -e "s/# \(FLAGSM = -DLINUX -DSHADOW_PWD\)/\1 -DNO_ASMSIGNALH/" \ - -e "s/# LIBSM = -lshadow/LIBSM = -lshadow/" \ - Makefile.old > Makefile + sed -i -e "s/# \(FLAGSM = -DLINUX -DSHADOW_PWD\)/\1 -DNO_ASMSIGNALH/; s;# LIBSM = -lshadow;LIBSM = -lshadow -L/usr/X11R6/lib/modules ;" Makefile # NOTE: DO NOT SET CFLAGS OR THE PROGRAM WILL SEGFAULT make all || die @@ -32,7 +28,6 @@ src_compile() { } src_install () { - mv nat nbaudit dobin nbaudit |