diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2016-02-07 19:59:48 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2016-02-07 19:59:48 +0800 |
commit | 89acb90de86be1efd3b7c812b24582d0372f3378 (patch) | |
tree | 7f1cb11c187a7b4064828aa77c6270827f58a906 /graphics | |
parent | 233611ee107e3b848e7f36858c33dfb51cd50aab (diff) | |
download | freebsd-ports-graphics-89acb90de86be1efd3b7c812b24582d0372f3378.tar.gz freebsd-ports-graphics-89acb90de86be1efd3b7c812b24582d0372f3378.tar.zst freebsd-ports-graphics-89acb90de86be1efd3b7c812b24582d0372f3378.zip |
- Fix LICENSE
- Switch to USES=localbase
- Switch to options helpers
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/icon-slicer/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/graphics/icon-slicer/Makefile b/graphics/icon-slicer/Makefile index 8c2ae817f54..1d740b2de60 100644 --- a/graphics/icon-slicer/Makefile +++ b/graphics/icon-slicer/Makefile @@ -10,25 +10,23 @@ MASTER_SITES= http://www.freedesktop.org/software/icon-slicer/releases/ MAINTAINER= ports@FreeBSD.org COMMENT= Utility for generating icon and cursor themes -LICENSE= GPLv2 +LICENSE= MIT # in readme and sources; COPYING seem to be unrelated LIB_DEPENDS= libpopt.so:${PORTSDIR}/devel/popt -USES= pkgconfig +USES= localbase pkgconfig USE_GNOME= gtk20 GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +PORTDOCS= AUTHORS ChangeLog README PLIST_FILES= bin/${PORTNAME} -PORTDOCS= AUTHORS ChangeLog README OPTIONS_DEFINE= DOCS post-patch: @${REINPLACE_CMD} -e '/^SUBDIRS/ s|examples||' ${WRKSRC}/Makefile.in -post-install: +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} |