diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2014-02-20 16:38:57 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2014-02-20 16:38:57 +0800 |
commit | 704abea820855d4d8424cc5224e0c0ef99a68e9b (patch) | |
tree | 49115cae060f3bb01841274b46491fcef38ec92c /graphics | |
parent | 7d6c5e941ab50810182b5ed25dfd5219d51deb88 (diff) | |
download | freebsd-ports-gnome-704abea820855d4d8424cc5224e0c0ef99a68e9b.tar.gz freebsd-ports-gnome-704abea820855d4d8424cc5224e0c0ef99a68e9b.tar.zst freebsd-ports-gnome-704abea820855d4d8424cc5224e0c0ef99a68e9b.zip |
Support staging
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/ppsei/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/graphics/ppsei/Makefile b/graphics/ppsei/Makefile index 9fd7586cbac9..70b7abf686e5 100644 --- a/graphics/ppsei/Makefile +++ b/graphics/ppsei/Makefile @@ -11,14 +11,13 @@ EXTRACT_SUFX= .tgz MAINTAINER= romain@FreeBSD.org COMMENT= PowerPoint images extractor -PLIST_FILES= bin/${PORTNAME} +PLIST_FILES= bin/ppsei WRKSRC= ${WRKDIR}/${PORTNAME} -NO_STAGE= yes do-build: - @(cd ${WRKSRC} && ${CC} ${CFLAGS} -o ${PORTNAME} ${PORTNAME}.c) + ${CC} ${CFLAGS} -o ${WRKSRC}/${PORTNAME} ${WRKSRC}/${PORTNAME}.c do-install: - @(cd ${WRKSRC} && ${INSTALL_PROGRAM} ${PORTNAME} ${PREFIX}/bin) + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin .include <bsd.port.mk> |