2002-04-21 21:49:01 +02:00
|
|
|
# New ports collection makefile for: gtktalog
|
|
|
|
# Date created: 20 Mar 2002
|
|
|
|
# Whom: Juan Salaverria <rael@vectorstar.net>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= gtktalog
|
2004-07-13 02:36:13 +02:00
|
|
|
PORTVERSION= 1.0.4
|
- Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+
Thanks to all Helpers:
Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
ehaupt, nox, itetcu, flz, pav
PR: 116263
Tested on: pointyhat
Approved by: portmgr (pav)
2008-04-19 19:56:05 +02:00
|
|
|
PORTREVISION= 5
|
2002-04-21 21:49:01 +02:00
|
|
|
CATEGORIES= misc
|
2003-10-03 13:04:59 +02:00
|
|
|
MASTER_SITES= ${MASTER_SITE_SAVANNAH}
|
2006-03-16 10:40:48 +01:00
|
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
2002-04-21 21:49:01 +02:00
|
|
|
|
2004-12-12 15:49:37 +01:00
|
|
|
MAINTAINER= ports@FreeBSD.org
|
2004-12-15 16:35:23 +01:00
|
|
|
COMMENT= A tool to make disk catalogs
|
2002-04-21 21:49:01 +02:00
|
|
|
|
2004-07-13 02:36:13 +02:00
|
|
|
BUILD_DEPENDS= plaympeg:${PORTSDIR}/multimedia/smpeg
|
|
|
|
RUN_DEPENDS= plaympeg:${PORTSDIR}/multimedia/smpeg
|
2004-06-09 05:23:10 +02:00
|
|
|
|
2002-11-12 16:00:35 +01:00
|
|
|
USE_BZIP2= yes
|
2004-12-15 16:35:23 +01:00
|
|
|
USE_GNOME= gnomehack gnomelibs gnomeprefix gnometarget
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
2002-04-21 21:49:01 +02:00
|
|
|
|
|
|
|
MAN1= gtktalog.1
|
|
|
|
|
2004-12-15 16:35:23 +01:00
|
|
|
.if defined(WITHOUT_NLS)
|
|
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
|
|
PLIST_SUB+= NLS="@comment "
|
|
|
|
.else
|
|
|
|
USE_GETTEXT= yes
|
|
|
|
PLIST_SUB+= NLS=""
|
|
|
|
.endif
|
2002-04-21 21:49:01 +02:00
|
|
|
|
|
|
|
post-install:
|
|
|
|
.if !defined(NOPORTDOCS)
|
2004-12-15 16:35:23 +01:00
|
|
|
@${MKDIR} ${DOCSDIR}
|
|
|
|
.for f in AUTHORS BUGS ChangeLog NEWS README TODO
|
2002-04-21 21:49:01 +02:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
|
|
|
.endfor
|
|
|
|
.endif
|
|
|
|
|
2004-02-23 03:07:59 +01:00
|
|
|
.include <bsd.port.mk>
|