diff options
author | Olivier Duchateau <olivierd@FreeBSD.org> | 2013-05-08 15:35:23 +0000 |
---|---|---|
committer | Olivier Duchateau <olivierd@FreeBSD.org> | 2013-05-08 15:35:23 +0000 |
commit | 56ee35699ad06fbb9abfda26b064904aaf4f0d1e (patch) | |
tree | 762324a92bb17e95030b3545a3ac35965176b90a /misc/xfce4-appfinder/Makefile | |
parent | c906c13fa2d4a354b643465f1a5910ea1b5fdbc7 (diff) | |
download | ports-56ee35699ad06fbb9abfda26b064904aaf4f0d1e.tar.gz ports-56ee35699ad06fbb9abfda26b064904aaf4f0d1e.zip |
- Update to 4.10.1
- Trim Makefile header
- Add new option, NLS
- Finish to convert USES
- Remove ABI version in LIB_DEPENDS
Notes
Notes:
svn path=/head/; revision=317681
Diffstat (limited to 'misc/xfce4-appfinder/Makefile')
-rw-r--r-- | misc/xfce4-appfinder/Makefile | 29 |
1 files changed, 18 insertions, 11 deletions
diff --git a/misc/xfce4-appfinder/Makefile b/misc/xfce4-appfinder/Makefile index 4e7c945ec2ae..0d21299f9bd0 100644 --- a/misc/xfce4-appfinder/Makefile +++ b/misc/xfce4-appfinder/Makefile @@ -1,30 +1,37 @@ -# New ports collection makefile for: xfce4-appfinder -# Date created: 12 October 2004 -# Whom: Oliver Lehmann <oliver@FreeBSD.org> -# +# Created by: Oliver Lehmann <oliver@FreeBSD.org> # $FreeBSD$ # PORTNAME= xfce4-appfinder -PORTVERSION= 4.10.0 -PORTREVISION= 1 +PORTVERSION= 4.10.1 CATEGORIES= misc xfce MASTER_SITES= ${MASTER_SITE_XFCE} +MASTER_SITE_SUBDIR= src/xfce/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org COMMENT= Application launcher and finder -LIB_DEPENDS= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib +LIB_DEPENDS= dbus-glib-1:${PORTSDIR}/devel/dbus-glib GNU_CONFIGURE= yes USE_BZIP2= yes -USES= gettext +USES= pathfix pkgconfig USE_GMAKE= yes -USE_GNOME= gtk20 glib20 intltool intlhack pkgconfig desktopfileutils +USE_GNOME= gtk20 glib20 intltool intlhack USE_XFCE= configenv garcon libmenu libutil xfconf -post-install: - @-update-desktop-database +OPTIONS_DEFINE= NLS + +.include <bsd.port.options.mk> + +.if ${PORT_OPTIONS:MNLS} +USES+= gettext +CONFIGURE_ARGS+=--enable-nls +PLIST_SUB+= NLS="" +.else +CONFIGURE_ARGS+=--disable-nls +PLIST_SUB+= NLS="@comment " +.endif .include <bsd.port.mk> |