1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-30 10:38:37 +00:00
freebsd-ports/devel/cvstrac/Makefile
Tobias Kortkamp ae22a7846a
*: Clean up some things
- Fix typos
- Fix overwritten variables with focus on master/slave ports
- Remove unreferenced variables
- Sort categories
- Remove redundant option descriptions
- Clean up commented PORTREVISION
- Add missing USES

Reported by:	portscan
2021-10-12 17:01:38 +02:00

30 lines
700 B
Makefile

# Created by: Bruce M Simpson <bms@spc.org>
PORTNAME?= cvstrac
PORTVERSION= 2.0.1
PORTREVISION?= 1
CATEGORIES= devel
MASTER_SITES= http://www.cvstrac.org/
DISTNAME= cvstrac-${PORTVERSION}
MAINTAINER= portmaster@BSDforge.com
COMMENT?= Web-Based Bug And Patch-Set Tracking System For CVS
LICENSE= GPLv2
USES= cpe gmake pkgconfig sqlite
MAKEFILE= bsd-gcc.mk
MAKE_ARGS+= BCC="${CC} ${CPPFLAGS}" TCC="${CC} ${CPPFLAGS}" \
LIBSQLITE="${LDFLAGS}"
MAKE_JOBS_UNSAFE= yes
CPPFLAGS+= $$(pkg-config --cflags sqlite3)
LDFLAGS+= $$(pkg-config --libs sqlite3) -lcrypt -lm
PLIST_FILES= bin/${PORTNAME}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
.include <bsd.port.mk>