diff options
author | Anders Nordby <anders@FreeBSD.org> | 2003-05-20 23:52:47 +0000 |
---|---|---|
committer | Anders Nordby <anders@FreeBSD.org> | 2003-05-20 23:52:47 +0000 |
commit | 0e3e65c6bcb8c6f2882d6db18526006e35a831f5 (patch) | |
tree | a3e5e9911d699de769d8b5fc88483eaa5b80fde7 /comms/gnokii/scripts | |
parent | 182253b72e62410d743157bb138db5b058ec8d28 (diff) | |
download | ports-0e3e65c6bcb8c6f2882d6db18526006e35a831f5.tar.gz ports-0e3e65c6bcb8c6f2882d6db18526006e35a831f5.zip |
By me:
- Update to 0.5.0.
- Add ftp.gnokii.org as MASTER_SITE, as it is back.
And from Simon:
- Fix package building - use pkg-install for adding/removing the gnokii
group.
- Use REINPLACE_CMD instead of sed for cleanliness.
- Unbreak building on -current.
PR: ports/47516
Submitted by: Simon Schubert <corecode@corecode.ath.cx> (partly)
Notes
Notes:
svn path=/head/; revision=81569
Diffstat (limited to 'comms/gnokii/scripts')
-rw-r--r-- | comms/gnokii/scripts/creategroup | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/comms/gnokii/scripts/creategroup b/comms/gnokii/scripts/creategroup deleted file mode 100644 index ce829947a3fb..000000000000 --- a/comms/gnokii/scripts/creategroup +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh - -PATH=/bin:/usr/sbin - -GROUP=gnokii - -if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." -else - if pw groupadd ${GROUP}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi -fi |