daad0f3d6c
INSTALL/DEINSTALL script creation within pkgsrc. If an INSTALL or DEINSTALL script is found in the package directory, it is automatically used as a template for the pkginstall-generated scripts. If instead, they should be used simply as the full scripts, then the package Makefile should set INSTALL_SRC or DEINSTALL_SRC explicitly, e.g.: INSTALL_SRC= ${PKGDIR}/INSTALL DEINSTALL_SRC= # emtpy As part of the restructuring of the pkginstall framework internals, we now *always* generate temporary INSTALL or DEINSTALL scripts. By comparing these temporary scripts with minimal INSTALL/DEINSTALL scripts formed from only the base templates, we determine whether or not the INSTALL/DEINSTALL scripts are actually needed by the package (see the generate-install-scripts target in bsd.pkginstall.mk). In addition, more variables in the framework have been made private. The *_EXTRA_TMPL variables have been renamed to *_TEMPLATE, which are more sensible names given the very few exported variables in this framework. The only public variables relating to the templates are: INSTALL_SRC INSTALL_TEMPLATE DEINSTALL_SRC DEINSTALL_TEMPLATE HEADER_TEMPLATE The packages in pkgsrc have been modified to reflect the changes in the pkginstall framework.
70 lines
2.1 KiB
Makefile
70 lines
2.1 KiB
Makefile
# $NetBSD: Makefile,v 1.26 2006/03/14 01:14:31 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= tor-0.1.0.17
|
|
CATEGORIES= net security
|
|
MASTER_SITES= http://tor.eff.org/dist/
|
|
|
|
MAINTAINER= jschauma@NetBSD.org
|
|
HOMEPAGE= http://tor.eff.org/
|
|
COMMENT= Anonymizing overlay network for TCP
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
USE_PKGLOCALEDIR= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
TOR_USER?= tor
|
|
TOR_GROUP?= tor
|
|
PKG_HOME?= /var/chroot/tor
|
|
|
|
RCD_SCRIPTS= tor
|
|
PKG_GROUPS= ${TOR_GROUP}
|
|
PKG_USERS= ${TOR_USER}:${TOR_GROUP}::Torifier:${PKG_HOME}
|
|
USER_GROUP= ${TOR_USER} ${TOR_GROUP}
|
|
|
|
OWN_DIR_PERMS+= ${PKG_HOME} ${USER_GROUP} 0755
|
|
|
|
CONFIGURE_ARGS+= --localstatedir=${VARBASE:Q}
|
|
|
|
CONF_FILES+= ${PREFIX}/share/examples/tor/tor-tsocks.conf \
|
|
${PKG_SYSCONFDIR}/tor/tor-tsocks.conf
|
|
CONF_FILES+= ${PREFIX}/share/examples/tor/torrc.sample \
|
|
${PKG_SYSCONFDIR}/tor/torrc
|
|
|
|
RCD_SCRIPT= tor
|
|
|
|
FILES_SUBST+= PKG_HOME=${PKG_HOME:Q}
|
|
FILES_SUBST+= TOR_USER=${TOR_USER:Q} TOR_GROUP=${TOR_GROUP:Q}
|
|
|
|
.if !empty(PKGSRC_COMPILER:Mmipspro)
|
|
CFLAGS+= -c99
|
|
.endif
|
|
|
|
post-patch:
|
|
${SED} -e 's|@PKG_SYSCONFDIR@|${PKG_SYSCONFDIR}|g' \
|
|
-e 's|@PREFIX@|${PREFIX}|g' \
|
|
-e 's|@PKG_HOME@|${PKG_HOME}|g' \
|
|
-e 's|@TOR_USER@|${TOR_USER}|g' \
|
|
-e 's|@TOR_GROUP@|${TOR_GROUP}|g' \
|
|
-e 's|@RCD_SCRIPTS_SHELL@|${RCD_SCRIPTS_SHELL}|g' \
|
|
${FILESDIR}/tor.in > ${WRKSRC}/tor.pkgsrc.rc
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PKG_SYSCONFDIR}/tor
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/tor
|
|
${INSTALL_DATA} ${WRKSRC}/src/config/torrc.sample \
|
|
${PREFIX}/share/examples/tor/torrc.sample
|
|
${INSTALL_DATA} ${WRKSRC}/contrib/tor-tsocks.conf \
|
|
${PREFIX}/share/examples/tor/tor-tsocks.conf
|
|
${INSTALL_DATA_DIR} ${PREFIX}/${RCD_SCRIPTS_EXAMPLEDIR}
|
|
${INSTALL_SCRIPT} ${WRKSRC}/tor.pkgsrc.rc ${PREFIX}/${RCD_SCRIPTS_EXAMPLEDIR}/tor
|
|
|
|
BUILDLINK_DEPENDS.libevent+= libevent>=1.1a
|
|
# XXX the pkgsrc libevent builtin.mk does not detect the version of a builtin
|
|
# libevent, so we need to force use of the pkgsrc one
|
|
USE_BUILTIN.libevent= no
|
|
.include "../../devel/libevent/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|