developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
40 lines
961 B
Makefile
40 lines
961 B
Makefile
# $NetBSD: Makefile,v 1.15 2006/03/04 21:30:32 jlam Exp $
|
|
#
|
|
|
|
NAME= textpos
|
|
DISTNAME= ${NAME}
|
|
PKGNAME= tex-${NAME}-1.2b
|
|
PKGREVISION= 2
|
|
CATEGORIES= print
|
|
MASTER_SITES= ${MASTER_SITE_TEX_CTAN:=macros/latex/contrib/supported/${NAME}/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
# HOMEPAGE=
|
|
COMMENT= Absolute positioning of text on the LaTeX page
|
|
|
|
WRKSRC= ${WRKDIR}/${NAME}
|
|
DIST_SUBDIR= ${NAME}
|
|
DISTFILES= textpos.ins LICENCE README textpos.dtx VERSION
|
|
|
|
# included in teTeX3
|
|
TEX_ACCEPTED= teTeX1 teTeX2
|
|
CONFLICTS+= teTeX-bin>=3.0
|
|
|
|
NO_CONFIGURE= yes
|
|
NO_BUILD= yes
|
|
|
|
do-extract:
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PKG_LOCALTEXMFPREFIX}/tex/latex/textpos
|
|
for f in ${DISTFILES}; do \
|
|
${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/$$f \
|
|
${PKG_LOCALTEXMFPREFIX}/tex/latex/textpos; \
|
|
done
|
|
|
|
post-install:
|
|
cd ${PKG_LOCALTEXMFPREFIX}/tex/latex/textpos; latex textpos.ins
|
|
${LOCALBASE}/bin/texconfig rehash
|
|
|
|
.include "../../mk/tex.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|