a41069ab3b
Approved by: portmgr@ (bapt@)
41 lines
1,011 B
Makefile
41 lines
1,011 B
Makefile
# New ports collection makefile for: sql-ledger
|
|
# Date created: 2005-10-29
|
|
# Whom: lth@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sql-ledger
|
|
PORTVERSION= 3.0.2
|
|
CATEGORIES= finance perl5
|
|
MASTER_SITES= http://www.sql-ledger.com/source/ \
|
|
http://abacus.sql-ledger.com/source/ \
|
|
http://pluto.sql-ledger.com/source/
|
|
|
|
MAINTAINER= 5u623l20@gmail.com
|
|
COMMENT= A double entry accounting system
|
|
|
|
BUILD_DEPENDS= p5-DBD-Pg>=0:${PORTSDIR}/databases/p5-DBD-Pg
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
NO_BUILD= yes
|
|
USE_PERL5= yes
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
SUB_FILES= pkg-message sql-ledger-httpd.conf
|
|
|
|
post-patch:
|
|
@${PERL} -pi -e 's|/usr/bin/perl|${PERL}|' \
|
|
`${FIND} ${WRKSRC} -name \*.pl`
|
|
|
|
do-install:
|
|
@cd ${WRKDIR} ; \
|
|
${TAR} -cf - ${PORTNAME} | ( cd ${PREFIX} ; ${TAR} xf - )
|
|
@cd ${PREFIX}/${PORTNAME} ; \
|
|
${CHOWN} -hR ${WWWOWN}:${WWWGRP} * ; \
|
|
${CHMOD} 711 users templates css spool
|
|
@${INSTALL_DATA} ${WRKDIR}/sql-ledger-httpd.conf ${PREFIX}/etc/
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|