mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-09 06:51:44 +00:00
2ca1572adc
- Remove IGNORE on FreeBSD versions before 900038, they're unsupported - Do not claim that port is broken on PowerPC (builds and links fine) - Remove custom naive `do-build' target: add missing `all' target to supplied Makefile instead
26 lines
566 B
Makefile
26 lines
566 B
Makefile
# Created by: Stephen Hurd <shurd@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pkg_cleanup
|
|
PORTVERSION= 2.1
|
|
CATEGORIES= ports-mgmt
|
|
DISTFILES=
|
|
|
|
MAINTAINER= shurd@FreeBSD.org
|
|
COMMENT= Interactive program for deinstalling 'leaf' packages
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
PLIST_FILES= sbin/pkg_cleanup \
|
|
man/man1/pkg_cleanup.1.gz
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKSRC}
|
|
@${CP} -a ${FILESDIR}/ ${WRKSRC}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/pkg_cleanup ${STAGEDIR}${PREFIX}/sbin
|
|
${INSTALL_MAN} ${WRKSRC}/pkg_cleanup.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|