diff options
Diffstat (limited to 'print/tex-IEEEtran/Makefile')
-rw-r--r-- | print/tex-IEEEtran/Makefile | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/print/tex-IEEEtran/Makefile b/print/tex-IEEEtran/Makefile index df56334be51..9f37b518482 100644 --- a/print/tex-IEEEtran/Makefile +++ b/print/tex-IEEEtran/Makefile @@ -1,11 +1,12 @@ -# $NetBSD: Makefile,v 1.6 2005/11/13 04:03:11 minskim Exp $ +# $NetBSD: Makefile,v 1.7 2005/11/14 02:41:19 minskim Exp $ # DISTNAME= IEEEtran PKGNAME= tex-IEEEtran-1.6c -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= print MASTER_SITES= http://www.ieee.org/portal/cms_docs/pubs/transactions/ +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} IEEEtranBST${EXTRACT_SUFX} MAINTAINER= minskim@NetBSD.org HOMEPAGE= http://www.ieee.org/organizations/pubs/transactions/stylesheets.htm @@ -17,10 +18,25 @@ WRKSRC= ${WRKDIR} NO_CONFIGURE= yes NO_BUILD= yes +LATEX_FILES= IEEEtran.cls IEEEtran_HOWTO.pdf README \ + bare_conf.tex bare_jrnl.tex +BIB_FILES= IEEEabrv.bib IEEEbcpat.bib IEEEexample.bib IEEEfull.bib +BST_FILES= IEEEtran.bst IEEEtranS.bst IEEEtran_bst_HOWTO.pdf + .include "../../print/teTeX/module.mk" do-install: ${INSTALL_DATA_DIR} ${PKG_LOCALTEXMFPREFIX}/tex/latex/IEEEtran - ${INSTALL_DATA} ${WRKSRC}/* ${PKG_LOCALTEXMFPREFIX}/tex/latex/IEEEtran +.for f in ${LATEX_FILES} + ${INSTALL_DATA} ${WRKSRC}/${f} ${PKG_LOCALTEXMFPREFIX}/tex/latex/IEEEtran +.endfor + ${INSTALL_DATA_DIR} ${PKG_LOCALTEXMFPREFIX}/bibtex/bib/IEEEtran +.for f in ${BIB_FILES} + ${INSTALL_DATA} ${WRKSRC}/${f} ${PKG_LOCALTEXMFPREFIX}/bibtex/bib/IEEEtran +.endfor + ${INSTALL_DATA_DIR} ${PKG_LOCALTEXMFPREFIX}/bibtex/bst/IEEEtran +.for f in ${BST_FILES} + ${INSTALL_DATA} ${WRKSRC}/${f} ${PKG_LOCALTEXMFPREFIX}/bibtex/bst/IEEEtran +.endfor .include "../../mk/bsd.pkg.mk" |