void-packages/srcpkgs/portmap/patches/fix_Makefile.diff
Juan RP 85cc462e1d Major infrastructure changes, part 2.
* Moved helpers, common and triggers dirs into xbps-src, where
  they belong.
* Renamed the templates dir to srcpkgs, it was so redundant before.
* Make it possible to add subpkgs with no restriction in names, for
  example udev now has a subpkgs called "libgudev". Previously
  subpkgs were named "${sourcepkg}-${pkgname}".
* xbps-src: changed to look for template files in current directory.
  That means that most arguments from the targets have been removed.
* xbps-src: added a reinstall target, to remove + install.
* xbps-src: do not overwrite binpkgs by default, skip them.

And more that I forgot because it's a mega-commit that I've been
working for some days already...

--HG--
extra : convert_revision : 0f466878584d1e6895d2a234f07ea1b2d1e61b3e
2009-11-22 08:31:44 +01:00

32 lines
1.3 KiB
Diff

--- Makefile.orig 2009-03-14 01:28:57.237390838 +0100
+++ Makefile 2009-03-14 01:30:27.492620161 +0100
@@ -18,6 +18,9 @@ FACILITY=LOG_DAEMON
# target system will never user NIS for hostname lookup, you can define
# USE_DNS to add hostname tests in hosts.allow/deny.
+USE_DNS=yes
+RPCUSER=nobody
+
ifeq ($(NO_TCP_WRAPPER),)
CPPFLAGS += -DHOSTS_ACCESS
WRAP_LIB = -lwrap
@@ -136,12 +139,12 @@ portmap.man : portmap.8
sed $(MAN_SED) < portmap.8 > portmap.man
install: all
- install -o root -g root -m 0755 -s portmap ${BASEDIR}/sbin
- install -o root -g root -m 0755 -s pmap_dump ${BASEDIR}/sbin
- install -o root -g root -m 0755 -s pmap_set ${BASEDIR}/sbin
- install -o root -g root -m 0644 portmap.man ${BASEDIR}/usr/share/man/man8/portmap.8
- install -o root -g root -m 0644 pmap_dump.8 ${BASEDIR}/usr/share/man/man8
- install -o root -g root -m 0644 pmap_set.8 ${BASEDIR}/usr/share/man/man8
+ install -D -m 0755 -s portmap ${BASEDIR}/sbin/portmap
+ install -D -m 0755 -s pmap_dump ${BASEDIR}/sbin/pmap_dump
+ install -D -m 0755 -s pmap_set ${BASEDIR}/sbin/pmap_set
+ install -D -m 0644 portmap.man ${BASEDIR}/usr/share/man/man8/portmap.8
+ install -D -m 0644 pmap_dump.8 ${BASEDIR}/usr/share/man/man8/pmap_dump.8
+ install -D -m 0644 pmap_set.8 ${BASEDIR}/usr/share/man/man8/pmap_set.8
clean:
rm -f *.o portmap pmap_dump pmap_set from_local \