diff options
Diffstat (limited to 'textproc/popup-stacks/Makefile')
-rw-r--r-- | textproc/popup-stacks/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/textproc/popup-stacks/Makefile b/textproc/popup-stacks/Makefile new file mode 100644 index 000000000000..03b41942133e --- /dev/null +++ b/textproc/popup-stacks/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: popup +# Date created: 18 Dec 2006 +# Whom: dirk.meyer@dinoex.sub.org +# +# $FreeBSD$ +# + +PORTNAME= popup +PORTVERSION= 1.0 +CATEGORIES= textproc +MASTER_SITES= http://popup.sourceforge.net/files/cstack/ +MASTER_SITE_SUBDIR= ${PORTNAME} +PKGNAMESUFFIX= -stacks${PKGNAMESUFFIX2} +DISTFILES= English-German.cstack.gz German-French.cstack.gz + +MAINTAINER= dinoex@FreeBSD.org +COMMENT= Stacks for use with Popup + +NO_BUILD= yes + +WRKSRC= ${WRKDIR} +STACKS= English-German.cstack German-French.cstack +PLIST_DIRS= share/examples/popup +.for i in ${STACKS} +PLIST_FILES+= share/examples/popup/${i} +.endfor + +do-extract: + ${MKDIR} ${WRKDIR} +.for i in ${DISTFILES} + ${CP} ${DISTDIR}/${i} ${WRKDIR}/ + ${GZIP_CMD} -d ${WRKDIR}/${i} +.endfor + +do-install: + ${MKDIR} ${EXAMPLESDIR} + (cd ${WRKDIR} && ${INSTALL_DATA} ${STACKS} ${EXAMPLESDIR}/) + +.include <bsd.port.mk> |