diff options
author | wg <wg@FreeBSD.org> | 2013-06-16 19:24:56 +0800 |
---|---|---|
committer | wg <wg@FreeBSD.org> | 2013-06-16 19:24:56 +0800 |
commit | 8bb17ab1ef629a6f206e66d6984bc89b7cf1f55c (patch) | |
tree | 63c2e40db9941ddff527be9098bb86e36699a93a | |
parent | 2931d810c4a29fe688bb1e791a7b606615995fce (diff) | |
download | freebsd-ports-gnome-8bb17ab1ef629a6f206e66d6984bc89b7cf1f55c.tar.gz freebsd-ports-gnome-8bb17ab1ef629a6f206e66d6984bc89b7cf1f55c.tar.zst freebsd-ports-gnome-8bb17ab1ef629a6f206e66d6984bc89b7cf1f55c.zip |
x11-fm/xplore: fix build with clang
- Fix build with clang, -Wno-return-type
- Add LICENSE (GPLv2)
- Trim Makefile header
Approved by: culot / jpaetzel (mentors, implicit)
-rw-r--r-- | x11-fm/xplore/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/x11-fm/xplore/Makefile b/x11-fm/xplore/Makefile index 8d4f0beabe36..63a46ab57c81 100644 --- a/x11-fm/xplore/Makefile +++ b/x11-fm/xplore/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: xplore -# Date created: 13 August 2003 -# Whom: Albert Graef <ag@muwiinfa.geschichte.uni-mainz.de> -# +# Created by: Albert Graef <ag@muwiinfa.geschichte.uni-mainz.de> # $FreeBSD$ -# PORTNAME= xplore PORTVERSION= 1.2a @@ -14,10 +10,13 @@ MASTER_SITES= http://www.musikwissenschaft.uni-mainz.de/~ag/${PORTNAME}/ MAINTAINER= ports@FreeBSD.org COMMENT= Yet another Motif file manager +LICENSE= GPLv2 + USE_IMAKE= yes USE_MOTIF= yes USE_XORG= xpm MAKE_JOBS_UNSAFE=yes +CFLAGS+= -Wno-return-type MAN1= xplore.1 xploretype.1 |