mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
3487396ccd
- Add LICENSE_FILE PR: 202851 Submitted by: tkato432@yahoo.com
34 lines
736 B
Makefile
34 lines
736 B
Makefile
# Created by: Brad Hendrickse <bradh@iafrica.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gifsicle
|
|
PORTVERSION= 1.88
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://www.lcdf.org/gifsicle/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Manipulates GIF images and animations
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
PORTDOCS= NEWS README.md
|
|
PLIST_FILES= bin/gifdiff bin/gifsicle \
|
|
man/man1/gifdiff.1.gz man/man1/gifsicle.1.gz
|
|
|
|
OPTIONS_DEFINE= DOCS X11
|
|
OPTIONS_DEFAULT= X11
|
|
|
|
X11_USE= xorg=x11
|
|
X11_CONFIGURE_ENABLE= gifview
|
|
X11_CONFIGURE_WITH= x
|
|
X11_PLIST_FILES= bin/gifview man/man1/gifview.1.gz
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|