diff options
author | tv <tv@pkgsrc.org> | 1999-05-24 20:39:35 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 1999-05-24 20:39:35 +0000 |
commit | 5c60ed579430954635a901b457a1fe4128eaca47 (patch) | |
tree | 65bbd73001946c26475423bf378f0a1854ed3cb6 /emulators/suse_x11 | |
parent | 42a1a676be446ce3279f0baeeda7b3dcc1002c13 (diff) | |
download | pkgsrc-5c60ed579430954635a901b457a1fe4128eaca47.tar.gz |
Change {ONLY,NOT}_FOR_{ARCH,OPSYS} format to {ONLY,NOT}_FOR_PLATFORM
pattern match format. Minor pkglint along the way.
Diffstat (limited to 'emulators/suse_x11')
-rw-r--r-- | emulators/suse_x11/Makefile | 51 |
1 files changed, 24 insertions, 27 deletions
diff --git a/emulators/suse_x11/Makefile b/emulators/suse_x11/Makefile index 828c15b68d7..408106affb8 100644 --- a/emulators/suse_x11/Makefile +++ b/emulators/suse_x11/Makefile @@ -1,39 +1,36 @@ -# $NetBSD: Makefile,v 1.4 1999/05/17 02:24:27 tron Exp $ +# $NetBSD: Makefile,v 1.5 1999/05/24 20:39:41 tv Exp $ -DISTNAME= suse_x11-6.1 -CATEGORIES= emulators -MASTER_SITES= ftp://ftp.suse.com/pub/suse/i386/6.1/suse/x1/ \ - ftp://ftp.cs.unm.edu/mirrors/SuSE61/suse/x1/ -DISTFILES= xshared.rpm xpm.rpm -ONLY_FOR_ARCHS= i386 +DISTNAME= suse_x11-6.1 +CATEGORIES= emulators +MASTER_SITES= ftp://ftp.suse.com/pub/suse/i386/6.1/suse/x1/ \ + ftp://ftp.cs.unm.edu/mirrors/SuSE61/suse/x1/ +DISTFILES= xshared.rpm xpm.rpm -MAINTAINER= tron@netbsd.org -HOMEPAGE= http://www.suse.com/ +MAINTAINER= tron@netbsd.org +HOMEPAGE= http://www.suse.com/ -DEPENDS+= suse_base-6.1:../suse_base +DEPENDS= suse_base-6.1:../suse_base -DIST_SUBDIR= suse -MIRROR_DISTFILE= no +DIST_SUBDIR= suse +MIRROR_DISTFILE= no -EXTRACT_ONLY= # empty -NO_BUILD= yes -NO_PATCH= yes -NO_CONFIGURE= yes -NO_WRKSUBDIR= yes -MANCOMPRESSED= yes -PLIST_SRC= ${WRKDIR}/PLIST_DYNAMIC +EXTRACT_ONLY= # empty +NO_BUILD= yes +NO_WRKSUBDIR= yes +MANCOMPRESSED= yes +PLIST_SRC= ${WRKDIR}/PLIST_DYNAMIC -EMULSUBDIR= emul/linux -EMULDIR= ${PREFIX}/${EMULSUBDIR} -SBINDIR= ${PREFIX}/sbin +EMULSUBDIR= emul/linux +EMULDIR= ${PREFIX}/${EMULSUBDIR} +SBINDIR= ${PREFIX}/sbin do-install: - cd ${_DISTDIR} && \ - ${SBINDIR}/rpm2pkg ${DISTFILES} >${PLIST_SRC} - @${ECHO} "@exec %D/${EMULSUBDIR}/sbin/ldconfig -r %D/${EMULSUBDIR}" >>${PLIST_SRC} - ${EMULDIR}/sbin/ldconfig -r ${EMULDIR} || ${TRUE} + cd ${_DISTDIR} && \ + ${SBINDIR}/rpm2pkg ${DISTFILES} >${PLIST_SRC} + @${ECHO} "@exec %D/${EMULSUBDIR}/sbin/ldconfig -r %D/${EMULSUBDIR}" >>${PLIST_SRC} + ${EMULDIR}/sbin/ldconfig -r ${EMULDIR} || ${TRUE} show-shlib-type: - @${ECHO} linux-${MACHINE_ARCH} + @${ECHO} linux-${MACHINE_ARCH} .include "../../mk/bsd.pkg.mk" |