~alpine/devel

1

[alpine-devel] extra/cutter

Michael Mason <ms13sp@gmail.com>
Details
Message ID
<C3B858D1-817F-4365-8285-C702A41DBAB5@gmail.com>
Sender timestamp
1235164921
DKIM signature
missing
Download raw message
Please apply.
I hope this is the correct one from the list...
Details
Message ID
<1235393707.992.43.camel@nc>
In-Reply-To
<C3B858D1-817F-4365-8285-C702A41DBAB5@gmail.com> (view parent)
Sender timestamp
1235393707
DKIM signature
missing
Download raw message
On Fri, 2009-02-20 at 21:22 +0000, Michael Mason wrote:
> Please apply.
> I hope this is the correct one from the list...

Looks good. please see the comments below.

> 
> 
> 
> 
> 
> 
> differences
> between files
> attachment
> (0001-Adding-cutter-APKBUILD.patch)
> 
> From 441815fe3fab31dd4c39f1211690d92252df0bff Mon Sep 17 00:00:00 2001
> From: ms13sp <ms13sp@gmail.com>
> Date: Fri, 20 Feb 2009 21:18:33 +0000
> Subject: [PATCH] Adding cutter APKBUILD
> 
> ---
>  extra/cutter/APKBUILD |   30 ++++++++++++++++++++++++++++++
>  1 files changed, 30 insertions(+), 0 deletions(-)
>  create mode 100644 extra/cutter/APKBUILD
> 
> diff --git a/extra/cutter/APKBUILD b/extra/cutter/APKBUILD
> new file mode 100644
> index 0000000..66c8a43
> --- /dev/null
> +++ b/extra/cutter/APKBUILD
> @@ -0,0 +1,30 @@
> +# Contributor: ms13sp <ms13sp@gmail.com>
> +# Maintainer: ms13sp <ms13sp@gmail.com>
> +pkgname=cutter
> +pkgver=1.03
> +pkgrel=0
> +pkgdesc="An open source program that allows Linux firewall administrators to abort TCP/IP connections routed over the firewall or router on which it is run."

I feel this is a bit to long. Could we shorten down the description? Not
critical, but would be nice.

> +url="http://www.lowth.com/cutter"
> +license="GPL"
> +depends=""

nclab01:~/aports/extra/cutter$ scanelf -Rn pkg/
 TYPE   NEEDED FILE 
ET_DYN libc.so.0,ld-uClibc.so.0 pkg/usr/sbin/cutter 

uclibc needs to be in depends.

> +makedepends=""
> +install=
> +subpackages=""
> +source="http://www.lowth.com/cutter/software/$pkgname-$pkgver.tgz"
> +
> +build() {
> +       cd "$srcdir/$pkgname-$pkgver"
> +       #no make install and no configure script
> +
> +       make || return 1
> +       
> +       mkdir -p "$pkgdir"/usr/sbin/ 
> +       
> +       install -m755 -D "$srcdir"/"$pkgname"-"$pkgver"/"$pkgname" "$pkgdir"/usr/sbin/"$pkgname"
                                    ^^^
you dont really need "" around pkgname and pkgver since those are not
allowed to have spaces. They dont hurt though. Dirs should always have
them or things will go wrong if there are spaces in the path somewhere.

Also, since you already are in $srcdir/$pkgname-$pkgdir you could have
done:

install -m755 -D cutter "$pkgdir"/usr/sbin/cutter

(i use cutter since its the name of the binary file, not the package
itself. but that is just a question of taste. $pkgname there is fully
ok.)

> +       
> +       #make DESTDIR="$pkgdir" install
> +       # install -m755 -D "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname
> +       # install -m644 -D "$srcdir"/$pkgname.confd "$pkgdir"/etc/conf.d/$pkgname

those are dead code and should preferrible be removed.

> +}
> +
> +md5sums="50093db9b64277643969ee75b83ebbd1  cutter-1.03.tgz"
> -- 
> 1.6.1.3

I commit as is. Please send a new patch that at least adds uclibc to
depends. the rest of the suggestions are optional. 

-nc



---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---
Reply to thread Export thread (mbox)