mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
4de56a776b
- these include comms/ converters/ databases/ devel/ maintained by ports@ PR: ports/101916 Submitted by: Gea-Suan Lin <gslin_AT_gslin dot org>
34 lines
897 B
Makefile
34 lines
897 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: libgnugetopt
|
|
# Date created: 2 May 1999
|
|
# Whom: Andrey Zakhvatov
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# Note that GCC contains the master copy of GNU's getopt in libiberty/
|
|
# and include/. The next time this port is updated, it should use
|
|
# the latest GCC release (the smaller -core dist is fine) for the
|
|
# distfile. -- David O'Brien <obrien@FreeBSD.org>
|
|
|
|
PORTNAME= libgnugetopt
|
|
PORTVERSION= 1.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= lioux
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= GNU getopt library
|
|
|
|
USE_BZIP2= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
do-install:
|
|
@ ${INSTALL_DATA} ${WRKSRC}/getopt.h ${PREFIX}/include
|
|
@ ${INSTALL_DATA} ${WRKSRC}/libgnugetopt.a ${PREFIX}/lib
|
|
@ ${INSTALL_DATA} ${WRKSRC}/libgnugetopt.so.1 ${PREFIX}/lib
|
|
@ cd ${PREFIX}/lib ; ${LN} -sf libgnugetopt.so.1 libgnugetopt.so
|
|
|
|
.include <bsd.port.mk>
|