85cc462e1d
* 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
39 lines
1.5 KiB
Diff
39 lines
1.5 KiB
Diff
--- Makefile.orig 2008-12-15 02:35:56.000000000 +0100
|
|
+++ Makefile 2008-12-15 02:38:10.000000000 +0100
|
|
@@ -27,10 +27,10 @@ SKFLAGS= $(RPM_OPT_FLAGS) -O3 -DSYSV -fo
|
|
LDFLAGS= -s
|
|
|
|
# Look where your install program is.
|
|
-INSTALL = /usr/bin/install
|
|
+INSTALL = install
|
|
|
|
# Destination paths, set prefix=/opt if required
|
|
-BINDIR = $(prefix)/usr/sbin
|
|
+BINDIR = $(prefix)/sbin
|
|
MANDIR = $(prefix)/usr/share/man
|
|
|
|
# There is one report that under an all ELF system there may be a need to
|
|
@@ -127,14 +127,17 @@ clobber: clean
|
|
rm -f syslogd klogd ksym syslog_tst oops_test TAGS tsyslogd tklogd
|
|
|
|
install_exec: syslogd klogd
|
|
- ${INSTALL} -m 500 -s syslogd ${BINDIR}/syslogd
|
|
- ${INSTALL} -m 500 -s klogd ${BINDIR}/klogd
|
|
+ ${INSTALL} -d ${BINDIR}
|
|
+ ${INSTALL} -s syslogd ${BINDIR}/syslogd
|
|
+ ${INSTALL} -s klogd ${BINDIR}/klogd
|
|
|
|
install_man:
|
|
- ${INSTALL} -o ${MAN_USER} -g ${MAN_GROUP} -m ${MAN_PERMS} sysklogd.8 ${MANDIR}/man8/sysklogd.8
|
|
- ${INSTALL} -o ${MAN_USER} -g ${MAN_GROUP} -m ${MAN_PERMS} syslogd.8 ${MANDIR}/man8/syslogd.8
|
|
- ${INSTALL} -o ${MAN_USER} -g ${MAN_GROUP} -m ${MAN_PERMS} syslog.conf.5 ${MANDIR}/man5/syslog.conf.5
|
|
- ${INSTALL} -o ${MAN_USER} -g ${MAN_GROUP} -m ${MAN_PERMS} klogd.8 ${MANDIR}/man8/klogd.8
|
|
+ ${INSTALL} -d ${MANDIR}/man5
|
|
+ ${INSTALL} -d ${MANDIR}/man8
|
|
+ ${INSTALL} -m ${MAN_PERMS} sysklogd.8 ${MANDIR}/man8/sysklogd.8
|
|
+ ${INSTALL} -m ${MAN_PERMS} syslogd.8 ${MANDIR}/man8/syslogd.8
|
|
+ ${INSTALL} -m ${MAN_PERMS} syslog.conf.5 ${MANDIR}/man5/syslog.conf.5
|
|
+ ${INSTALL} -m ${MAN_PERMS} klogd.8 ${MANDIR}/man8/klogd.8
|
|
|
|
obj-m += oops.o
|
|
|