wok-next view portmap/receipt @ rev 21678

updated getmail (4.41.0 -> 5.14)
author Hans-G?nter Theisgen
date Mon Jun 29 13:44:08 2020 +0100 (2020-06-29)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="portmap"
4 VERSION="6.0"
5 CATEGORY="network"
6 SHORT_DESC="RPC portmapper"
7 MAINTAINER="maintainer@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="ftp://ftp.porcupine.org/pub/security/index.html"
11 TARBALL="$PACKAGE-$VERSION.tgz"
12 WGET_URL="http://neil.brown.name/portmap/$TARBALL"
14 BUILD_DEPENDS="glibc-dev libwrap-dev"
16 compile_rules()
17 {
18 # Disabling TCP_WRAPPER with NO_TCP_WRAPPER variable
19 NO_TCP_WRAPPER=1 make || return 1
21 install -Dm755 pmap_dump $install/usr/sbin/pmap_dump
22 install -Dm755 pmap_set $install/usr/sbin/pmap_set
23 install -Dm755 portmap $install/usr/sbin/portmap
25 install -Dm755 $stuff/init.d/portmap $install/etc/init.d/portmap
26 }
28 genpkg_rules()
29 {
30 copy @std
31 DEPENDS="libwrap"
32 }
34 # Post message when installing.
35 post_install() {
36 [ -n "$quiet" ] || cat <<EOT
38 .------------------------------------------------.
39 | To start portmap server you can run: |
40 | /etc/init.d/portmap start |
41 | or add portmap to RUN_DAEMONS in /etc/rcS.conf |
42 '------------------------------------------------'
43 EOT
44 }