summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2005-08-16 18:10:55 +0000
committerSeemant Kulleen <seemant@gentoo.org>2005-08-16 18:10:55 +0000
commit56bff71e826b784dd4ab8496f0560d0ec95c2b52 (patch)
tree42a3af58e6427ba1ab520b9033cfa2b563af0f6a /app-misc/nomadii-utils
parentFix HOMEPAGE (diff)
downloadgentoo-2-56bff71e826b784dd4ab8496f0560d0ec95c2b52.tar.gz
gentoo-2-56bff71e826b784dd4ab8496f0560d0ec95c2b52.tar.bz2
gentoo-2-56bff71e826b784dd4ab8496f0560d0ec95c2b52.zip
took out the groupadd stuff, since usb seems to be in /etc/group by default. if there's a problem the maintainer can use eutils to add the group
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'app-misc/nomadii-utils')
-rw-r--r--app-misc/nomadii-utils/ChangeLog7
-rw-r--r--app-misc/nomadii-utils/nomadii-utils-0.8.ebuild13
2 files changed, 10 insertions, 10 deletions
diff --git a/app-misc/nomadii-utils/ChangeLog b/app-misc/nomadii-utils/ChangeLog
index bad37787ac49..2d3011d88ea9 100644
--- a/app-misc/nomadii-utils/ChangeLog
+++ b/app-misc/nomadii-utils/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-misc/nomadii-utils
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/nomadii-utils/ChangeLog,v 1.5 2005/01/01 15:16:51 eradicator Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/nomadii-utils/ChangeLog,v 1.6 2005/08/16 18:10:55 seemant Exp $
+
+ 16 Aug 2005; Seemant Kulleen <seemant@gentoo.org>
+ nomadii-utils-0.8.ebuild:
+ took out the groupadd stuff, since usb seems to be in /etc/group by default.
+ if there's a problem the maintainer can use eutils to add the group
01 Jun 2004; Aron Griffis <agriffis@gentoo.org> nomadii-utils-0.8.ebuild:
Fix use invocation
diff --git a/app-misc/nomadii-utils/nomadii-utils-0.8.ebuild b/app-misc/nomadii-utils/nomadii-utils-0.8.ebuild
index cd56a50ecaad..7b0b265051b0 100644
--- a/app-misc/nomadii-utils/nomadii-utils-0.8.ebuild
+++ b/app-misc/nomadii-utils/nomadii-utils-0.8.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/nomadii-utils/nomadii-utils-0.8.ebuild,v 1.13 2005/01/01 15:16:51 eradicator Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/nomadii-utils/nomadii-utils-0.8.ebuild,v 1.14 2005/08/16 18:10:55 seemant Exp $
IUSE="readline"
@@ -18,10 +18,9 @@ DEPEND=">=sys-libs/ncurses-5.2
readline? ( >=sys-libs/readline-4.1 )"
src_compile() {
- sed -i -e "s:^LIBTERMCAP=-ltermcap$:LIBTERMCAP=-lncurses:" \
- Makefile
-
- sed -i -e "s:^OPTIMIZER= -O2$:OPTIMIZER= ${CFLAGS}:" \
+ sed -i \
+ -e "s:^LIBTERMCAP=-ltermcap$:LIBTERMCAP=-lncurses:" \
+ -e "s:^OPTIMIZER= -O2$:OPTIMIZER= ${CFLAGS}:" \
Makefile
if ! use readline ; then
@@ -39,10 +38,6 @@ src_install() {
}
pkg_postinst() {
- if ! groupmod usb; then
- groupadd -g 85 usb || die "problem adding group usb"
- fi
-
echo
einfo "To use nomadii, you need to have usbdevfs compiled in your kernel"
einfo "Look for: CONFIG_USB_DEVICEFS or Preliminary USB device filesystem"