mirror of
https://git.freebsd.org/ports.git
synced 2025-05-16 01:01:49 -04:00
Changelogs: https://commons.apache.org/proper/commons-logging/changes.html Replace PORTVERSION with DISTVERSION. Pet portclippy. PR: 286425
34 lines
795 B
Makefile
34 lines
795 B
Makefile
PORTNAME= commons-logging
|
|
DISTVERSION= 1.3.5
|
|
CATEGORIES= java devel
|
|
MASTER_SITES= APACHE_COMMONS_BINARIES
|
|
PKGNAMEPREFIX= apache-
|
|
DISTNAME= ${PORTNAME}-${DISTVERSION}-bin
|
|
|
|
MAINTAINER= atanubiswas484@gmail.com
|
|
COMMENT= Generic logging wrapper library
|
|
WWW= https://commons.apache.org/proper/commons-logging/
|
|
|
|
LICENSE= APACHE20
|
|
|
|
USES= java
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION}
|
|
|
|
JARFILE= ${PORTNAME}-${DISTVERSION}.jar
|
|
|
|
PLIST_FILES= %%JAVAJARDIR%%/${PORTNAME}.jar \
|
|
%%JAVAJARDIR%%/${JARFILE}
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/${JARFILE} ${STAGEDIR}${JAVAJARDIR}
|
|
${LN} -sf ${JARFILE} ${STAGEDIR}${JAVAJARDIR}/${PORTNAME}.jar
|
|
(cd ${WRKSRC}/apidocs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|