diff options
author | adam <adam@pkgsrc.org> | 2010-06-02 13:08:22 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2010-06-02 13:08:22 +0000 |
commit | e657ec82d440a1e7bfeaf856faccab2e57641ed1 (patch) | |
tree | 1116061474a1ee194935c646b4bf0407c18f1f28 /net/dc_gui2/Makefile | |
parent | 1dea107a044010ba6f3ea81e33d9077194ac1852 (diff) | |
download | pkgsrc-e657ec82d440a1e7bfeaf856faccab2e57641ed1.tar.gz |
Changes 0.80:
* deletion of unattached GDL added.
* Polish translation update by Emil.
* fix UADDR list redisplay problem.
* fix a crash of dc_gui2_stat when there is nothing to display.
* add upload stat to dc_gui2_stat (only DCTC v0.85.9 provides upload logs).
* fix a user display problem. If a user entering the hub is already created
(used by GDL, upload, share list, ...), he was not displayed in the user
clist.
* Fix incorrect global stat values occuring when multiple 'done' files are
loaded.
* Bittorrent tab is handled by an external program: dc_gui2_bt
* To ease development of future external program, most of the configuration is
* now store in gconf instead gnome_config.
* dc_gui2 command line parameters are back (dc_gui2 --help for the list).
* update .spec file to support fedora (based on Sammy Atmadja modification).
Diffstat (limited to 'net/dc_gui2/Makefile')
-rw-r--r-- | net/dc_gui2/Makefile | 38 |
1 files changed, 20 insertions, 18 deletions
diff --git a/net/dc_gui2/Makefile b/net/dc_gui2/Makefile index 04823973ed4..a7774d625f5 100644 --- a/net/dc_gui2/Makefile +++ b/net/dc_gui2/Makefile @@ -1,39 +1,41 @@ -# $NetBSD: Makefile,v 1.47 2010/01/18 09:59:19 wiz Exp $ -# +# $NetBSD: Makefile,v 1.48 2010/06/02 13:08:22 adam Exp $ -DISTNAME= dc_gui2-0.75 -PKGREVISION= 26 +DISTNAME= dc_gui2-0.80 CATEGORIES= net -MASTER_SITES= http://ac2i.homelinux.com/dctc/ +MASTER_SITES= http://ac2i.homelinux.com/dctc/ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://ac2i.homelinux.com/dctc/ COMMENT= Graphical user interface for DCTC +LICENSE= gnu-gpl-v2 PKG_DESTDIR_SUPPORT= user-destdir -DEPENDS+= dctc>=0.85.4:../../net/dctc +DEPENDS+= dctc>=0.85.9:../../net/dctc -GNU_CONFIGURE= YES -USE_PKGLOCALEDIR= YES -CONFIGURE_ARGS+= --enable-manual-db-detect +BDB_ACCEPTED= db4 db5 +USE_LIBTOOL= yes +USE_PKGLOCALEDIR= yes USE_TOOLS+= gmake pkg-config msgfmt -USE_LIBTOOL= YES +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --enable-manual-db-detect UNLIMIT_RESOURCES+= datasize -CPPFLAGS+= -I${BUILDLINK_PREFIX.db4}/include/db4 -CPPFLAGS+= -DNO_PRINTF_LOCALE +CPPFLAGS+= -I${BDBBASE}/include/${BDB_TYPE} +CPPFLAGS+= -DNO_PRINTF_LOCALE +BUILDLINK_TRANSFORM+= l:db4:${BDB_TYPE} post-configure: - @${ECHO} '#ifndef MSG_NOSIGNAL' >> ${WRKSRC}/config.h - @${ECHO} '# define MSG_NOSIGNAL 0' >> ${WRKSRC}/config.h - @${ECHO} '#endif' >> ${WRKSRC}/config.h - @sleep 5 - @${TOUCH} ${WRKSRC}/stamp-h ${WRKSRC}/stamp-h.in + ${ECHO} '#ifndef MSG_NOSIGNAL' >> ${WRKSRC}/config.h + ${ECHO} '# define MSG_NOSIGNAL 0' >> ${WRKSRC}/config.h + ${ECHO} '#endif' >> ${WRKSRC}/config.h + ${TOUCH} ${WRKSRC}/stamp-h ${WRKSRC}/stamp-h.in .include "../../converters/libiconv/buildlink3.mk" -.include "../../databases/db4/buildlink3.mk" .include "../../devel/gettext-lib/buildlink3.mk" .include "../../devel/libgnomeui/buildlink3.mk" +.include "../../www/curl/buildlink3.mk" +.include "../../sysutils/desktop-file-utils/desktopdb.mk" +.include "../../mk/bdb.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |