diff options
Diffstat (limited to 'print/tex-IEEEtran/Makefile')
-rw-r--r-- | print/tex-IEEEtran/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/print/tex-IEEEtran/Makefile b/print/tex-IEEEtran/Makefile new file mode 100644 index 00000000000..e2fbec29d89 --- /dev/null +++ b/print/tex-IEEEtran/Makefile @@ -0,0 +1,31 @@ +# $NetBSD: Makefile,v 1.1.1.1 2005/07/27 17:02:05 drochner Exp $ +# + +DISTNAME= IEEEtran-1.6b +PKGNAME= tex-IEEEtran-1.6b +CATEGORIES= print +MASTER_SITES= ${MASTER_SITE_TEX_CTAN:=macros/latex/contrib/IEEEtran/} + +MAINTAINER= tech-pkg@NetBSD.org +# HOMEPAGE= +COMMENT= LaTeX class for IEEE journals and conferences + +DIST_SUBDIR= ${DISTNAME} +DISTFILES= IEEEtran.cls IEEEtran_HOWTO.pdf README bare_conf.tex bare_jrnl.tex + +EXTRACT_ONLY= # nothing +NO_CONFIGURE= yes +NO_BUILD= yes + +IEEETRANDIR= ${PREFIX}/share/texmf/tex/latex/IEEEtran + +do-install: + ${INSTALL_DATA_DIR} ${IEEETRANDIR} + for f in ${DISTFILES}; do \ + ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/$$f ${IEEETRANDIR}; \ + done + +post-install: + ${LOCALBASE}/bin/texconfig rehash + +.include "../../mk/bsd.pkg.mk" |