mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
f2779fb94a
Dave Shar <koalative at gmail.com> wishes to maintain these ports with my help. deskutils/py-send2trash - Change Makefile header, use my name and @FreeBSD.org email - Pass maintainership to koalative at gmail.com - Change license BSD to BSD3CLAUSE - Use USE_PYDISTUTILS=yes instead of easy_install - Remove PYDISTUTILS_PKGNAME and add PYDISTUTILS_AUTOPLIST graphics/founts - Change Makefile header, use my name and @FreeBSD.org email - Pass maintainership to koalative at gmail.com - Add REINPLACE, fix ELAST - Change distinfo, remove supplied icon graphics/py-pyggel - Pass maintainership to koalative at gmail.com graphics/radius-engine - Change Makefile header, use my name and @FreeBSD.org email - Pass maintainership to koalative at gmail.com irc/py-fishcrypt - Pass maintainership to koalative at gmail.com sysutils/gigolo - Change Makefile header, use my name and @FreeBSD.org email - Pass maintainership to koalative at gmail.com - Use tar:bzip2 instead of USE_BZIP2=yes - Remove TODO from DOCS - Remove useless .include <bsd.port.options.mk> - Change pkg-plist, remove mtree
45 lines
1.0 KiB
Makefile
45 lines
1.0 KiB
Makefile
# Created by: Rusmir Dusko <nemysis@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gigolo
|
|
PORTVERSION= 0.4.2
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= XFCE
|
|
MASTER_SITE_SUBDIR= src/apps/${PORTNAME}/${PORTVERSION:R}
|
|
|
|
MAINTAINER= koalative@gmail.com
|
|
COMMENT= Frontend to easily manage filesystem connections
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS= p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser
|
|
|
|
USES= gmake fuse pkgconfig tar:bzip2
|
|
USE_GNOME= cairo gtk20 gvfs intlhack
|
|
USE_XORG= x11
|
|
GNU_CONFIGURE= yes
|
|
|
|
PORTDOCS= AUTHORS ChangeLog NEWS README
|
|
|
|
OPTIONS_DEFINE= DOCS NLS
|
|
OPTIONS_SUB= yes
|
|
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
NLS_USES= gettext
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
ONLY_FOR_ARCHS_REASON= Does not compile
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|^DOCFILES.*|DOCFILES =|' \
|
|
${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} -e \
|
|
's|$$(prefix)/$$(DATADIRNAME)/locale|$$(datarootdir)/locale|' \
|
|
${WRKSRC}/po/Makefile.in.in
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|