28 lines
653 B
Makefile
28 lines
653 B
Makefile
# Created by: Sergey Matveychuk <sem@ciam.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= argp-standalone
|
|
PORTVERSION= 1.3
|
|
PORTREVISION= 2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.lysator.liu.se/~nisse/misc/ \
|
|
${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= sem
|
|
|
|
MAINTAINER= sem@FreeBSD.org
|
|
COMMENT= Standalone version of arguments parsing functions from GLIBC
|
|
|
|
USES= autoreconf libtool
|
|
USE_CSTD= gnu89
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
INSTALL_TARGET= install-strip
|
|
|
|
PLIST_FILES= lib/libargp.a \
|
|
lib/libargp.so lib/libargp.so.0 lib/libargp.so.0.0.0 \
|
|
include/argp.h
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/argp.h ${STAGEDIR}${PREFIX}/include
|
|
|
|
.include <bsd.port.mk>
|