summaryrefslogtreecommitdiffstats
path: root/devel
diff options
context:
space:
mode:
authorkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2010-04-03 05:29:05 +0800
committerkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2010-04-03 05:29:05 +0800
commit7d27c9918cc3b6a59e3f233f4cf7d1ca84105504 (patch)
treee6310cd461ca173644411ca2f1409d820ccd6b2a /devel
parentf90e54a81f398aac2c1dcc63139469af39f31710 (diff)
downloadmarcuscom-ports-7d27c9918cc3b6a59e3f233f4cf7d1ca84105504.tar.gz
marcuscom-ports-7d27c9918cc3b6a59e3f233f4cf7d1ca84105504.tar.zst
marcuscom-ports-7d27c9918cc3b6a59e3f233f4cf7d1ca84105504.zip
Update to 2.0.17.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@14003 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel')
-rw-r--r--devel/gob2/Makefile43
-rw-r--r--devel/gob2/distinfo3
-rw-r--r--devel/gob2/files/patch-src_out.c16
-rw-r--r--devel/gob2/pkg-descr3
4 files changed, 65 insertions, 0 deletions
diff --git a/devel/gob2/Makefile b/devel/gob2/Makefile
new file mode 100644
index 000000000..7e8b8a130
--- /dev/null
+++ b/devel/gob2/Makefile
@@ -0,0 +1,43 @@
+# New ports collection makefile for: gob2
+# Date created: 09 November 2002
+# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= gob2
+PORTVERSION= 2.0.17
+CATEGORIES= devel
+MASTER_SITES= GNOME
+DIST_SUBDIR= gnome2
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= A preprocessor for making GObjects with inline C
+
+USE_GMAKE= yes
+GNU_CONFIGURE= yes
+USE_GNOME= glib20
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+
+PLIST_FILES= bin/gob2 share/aclocal/gob2.m4 ${EXAMPLES:S/^/%%EXAMPLESDIR%%\//}
+PLIST_DIRS= %%EXAMPLESDIR%%
+
+MAN1= gob2.1
+
+EXAMPLES= GNOME_Foo_SomeInterface.idl \
+ README \
+ foo-some-interface.gob \
+ gtk-button-count.gob \
+ my-glade-main.c \
+ my-glade.glade \
+ my-glade.gob \
+ my-person.gob
+
+post-install:
+ ${MKDIR} ${EXAMPLESDIR}
+.for f in ${EXAMPLES}
+ ${INSTALL_DATA} ${WRKSRC}/examples/${f} ${EXAMPLESDIR}
+.endfor
+
+.include <bsd.port.mk>
diff --git a/devel/gob2/distinfo b/devel/gob2/distinfo
new file mode 100644
index 000000000..70489c464
--- /dev/null
+++ b/devel/gob2/distinfo
@@ -0,0 +1,3 @@
+MD5 (gnome2/gob2-2.0.17.tar.gz) = 05fa7384b30ebb2921430b2615d2c2e5
+SHA256 (gnome2/gob2-2.0.17.tar.gz) = 80b4683af653809970ef237fa45427b203653edf0dd5e3dc8897433e9c29346c
+SIZE (gnome2/gob2-2.0.17.tar.gz) = 274156
diff --git a/devel/gob2/files/patch-src_out.c b/devel/gob2/files/patch-src_out.c
new file mode 100644
index 000000000..14f6637c6
--- /dev/null
+++ b/devel/gob2/files/patch-src_out.c
@@ -0,0 +1,16 @@
+--- src/out.c.orig 2009-07-10 16:43:05.000000000 +0200
++++ src/out.c 2009-11-27 14:07:58.000000000 +0100
+@@ -69,6 +69,13 @@
+ } else
+ g_assert_not_reached();
+
++ /*
++ * According to clang developers #line 0 is not allowed by the C spec.
++ * Gcc does accept it though. http://llvm.org/bugs/show_bug.cgi?id=5603
++ */
++ if (line == 0)
++ line += 1;
++
+ fprintf(fp, "#line %d \"%s\"\n", line, filename);
+ }
+
diff --git a/devel/gob2/pkg-descr b/devel/gob2/pkg-descr
new file mode 100644
index 000000000..008a67517
--- /dev/null
+++ b/devel/gob2/pkg-descr
@@ -0,0 +1,3 @@
+a preprocessor for making GObjects with inline C
+
+WWW: http://www.5z.com/jirka/gob.html
lass='commitgraph'>* Sync to disk the outbox, since if we crash, we endup sending mail again.Srinivasa Ragavan2009-11-051-1/+4 * Bug #557505 - [bbdb] hangs and is unresponsiveMilan Crha2009-11-043-58/+229 * Bug #596827 - Don't remove meeting attendees after editMilan Crha2009-11-042-3/+25 * Add support for Googlemail and hotmail/live/msn.com accounts.Srinivasa Ragavan2009-11-041-1/+5 * Bug 600402 - Clear search is always enabled in calendar/contact/taskMatthew Barnes2009-11-044-16/+4 * Bug #599124 - Signature always includes an empty line in front of textMilan Crha2009-11-041-3/+3 * Bug #599627 - Crash when adding a new task in a tableC de-Avillez2009-11-031-6/+2 * Fix few compiler warningsMilan Crha2009-11-032-3/+3 * Added Tamil translationvasudeven2009-11-021-454/+488 * Updated Spanish translationJorge González2009-11-021-8378/+9582 * Bug #464400 - New mail notify should display sender and subjectMilan Crha2009-10-314-20/+113 * Bug #583450 - [prefer-plain] Ability to hide html attachmentsMilan Crha2009-10-301-12/+38 * Lets the saved searches to work.Chenthill Palanisamy2009-10-301-0/+13 * Fix distcheck errors.Matthew Barnes2009-10-301-8/+8 * Bug 599890 - Search should not be remembered across foldersMatthew Barnes2009-10-301-1/+1 * Bug #570835 - Custom e-mail headers inserted with double columnMilan Crha2009-10-301-18/+16 * Bug 599837 - Junk plugin combo box is invisibleMatthew Barnes2009-10-301-2/+8 * Bug #561843 - Properly check for filename being set, to not crashMilan Crha2009-10-301-1/+1 * Bug 600019 - Menu glitches when an account name is selectedMatthew Barnes2009-10-292-0/+52 * Bug 600014 - Remove warnings from ech_config_widget_factory()Matthew Barnes2009-10-291-15/+1 * Bug #268644 - unread mail shortcut collides with gtk tree searchMilan Crha2009-10-293-0/+42 * Bug 599896 - Flush outbox option is missingMatthew Barnes2009-10-292-10/+9 * Bug 599882 - Crash in em_folder_tree_select_prev_path() when wrapping to bottomMatthew Barnes2009-10-291-49/+82 * fix a regression caused by EEvent cleanupLucian Langa2009-10-291-3/+3 * Don't update the message list when right-clicking on a folder.Matthew Barnes2009-10-287-12/+89 * Fix a regression caused by the Forward button feature.Matthew Barnes2009-10-281-12/+14 * Add a menu to the Forward toolbar button.Matthew Barnes2009-10-285-8/+212 * Bug 599842 - EConfig does not respond to disabling/enabling EPluginsMatthew Barnes2009-10-281-11/+99 * Bug #552727 - Flooded by spam checking errors if bogofilter not installedMilan Crha2009-10-282-18/+69 * Bug #550049 - Disable Mark messages as read actions when unusableMilan Crha2009-10-283-3/+165 * Fix a typo in EFilterPart.Matthew Barnes2009-10-271-1/+1 * Cleanup and rename filter classes.Matthew Barnes2009-10-2793-7319/+7712 * Prefer G_N_ELEMENTS over sizeof calculations.Matthew Barnes2009-10-2725-63/+47 * Prefer GQueue (or GNode) over EDList.Matthew Barnes2009-10-2715-305/+321 * EImport cleanup.Matthew Barnes2009-10-272-227/+299 * EEvent cleanup.Matthew Barnes2009-10-272-155/+204 * EConfig cleanup.Matthew Barnes2009-10-272-190/+314 * Remove some unfinished / unwanted bits from mail-mt.Matthew Barnes2009-10-272-76/+1 * Prefer GLib mutexes over pthread mutexes.Matthew Barnes2009-10-276-218/+148 * Bug #571039 - Shows all selected messages in a preview pane on a slow networkMilan Crha2009-10-274-15/+36 * Bug #599199 - Hangs regularly when synchro with pidgin is activatedMilan Crha2009-10-273-35/+41 * Bug #599740 - Crashing in g_thread_initMilan Crha2009-10-271-1/+2 * Updated Tamil translationdrtvasudevan2009-10-271-86/+138 * Bug #598519 - Cannot open task/memo by double click in calendar day viewMilan Crha2009-10-271-0/+12 * Bug #204900 - The sort indication arrows cover up the icons in tab headerMilan Crha2009-10-271-15/+30 * Post release version bumpChenthill Palanisamy2009-10-261-1/+1 * News update for 2.29.1 release.EVOLUTION_2_29_1Akhil Laddha2009-10-261-0/+338 * Bug #397265 - Image loading for new contact requires restarting EvolutionMilan Crha2009-10-264-186/+316 * Update overall maintainers.Chenthill Palanisamy2009-10-262-14/+14 * Updating Estonian translationIvar Smolin2009-10-261-3/+3 * Coding style and whitespace cleanups.Matthew Barnes2009-10-247-20/+19 * Fix distcheck errors.Matthew Barnes2009-10-241-0/+4 * Fix a potential calendar crash.Matthew Barnes2009-10-241-2/+1 * Put compiler warning flags in AM_CPPFLAGS instead of CFLAGS.Matthew Barnes2009-10-241-1/+3 * Bug #575208 - Use complete template message with all attachmentsMilan Crha2009-10-242-190/+143 * Bug #599131 - Crash on new contact adding with similar values as an oldMilan Crha2009-10-241-1/+4 * Bug #585715 - Skip empty parts in multipart/alternative formattingMilan Crha2009-10-241-1/+1 * Bug #248745 - Indent single mail in a threaded view tooMilan Crha2009-10-231-1/+1 * Updated Norwegian Nynorsk translationÅsmund Skjæveland2009-10-231-344/+262 * Bug 599190 - Unable to drop attachments in the attachment barMatthew Barnes2009-10-231-1/+1 * Bug #484839 - Sort, when in threading mode, properlyMilan Crha2009-10-233-24/+290 * Bug 599245 - Use bitwise AND instead of logical AND for checking flagsThomas Andersen2009-10-221-2/+2 * Updated Tamil translationdrtvasudevan2009-10-211-943/+1054 * Clean up e_shell_get_active_window()Matthew Barnes2009-10-211-12/+16 * Bug 480361 - Useful action when clicking on a mail notificationMatthew Barnes2009-10-211-39/+80 * Bug 598567 - Can only insert local image filesMatthew Barnes2009-10-212-5/+11 * Bug #593953 - LDAP SSL option order doesn't match with a backend'sMilan Crha2009-10-212-8/+9 * Bug #598631 - Add tooltip of "Ctrl+click to open a link" in buffer taggerMilan Crha2009-10-211-26/+94 * Updated Russian translationLeonid Kanter2009-10-201-11026/+10848 * Bug #238879 - Use explicit text color in a Welcome messageMilan Crha2009-10-1921-21/+21 * Updated Spanish translationJorge González2009-10-171-10/+14 * Updated Norwegian Nynorsk translationÅsmund Skjæveland2009-10-171-6762/+7935 * Bug #552779 - Sort order of messages by "From" is case sensitiveMilan Crha2009-10-162-16/+10 * Bug #267749 - Week numbers are incorrect when the week starts on SundayMilan Crha2009-10-161-8/+13 * Bug #470291 - [prefer-plain] Be able to show HTML only messagesMilan Crha2009-10-161-34/+65 * Bug #596860 - Duplicate event gets shown in calendar viewMilan Crha2009-10-162-2/+5 * Bug #339628 - Non-default Draft folders are Draft folders tooMilan Crha2009-10-164-34/+21 * Bug #555901 - Preserve Start/End/Due timezone when editing in list viewMilan Crha2009-10-164-120/+72 * Bug #522783 - Signature separator for HTML E-mailsMilan Crha2009-10-164-5/+37 * Bug #545851 - Set properly sign type on reply of signed messageMilan Crha2009-10-161-8/+33 * Bug #372435 - Show SMIME cert info from mail, not from cert dbMilan Crha2009-10-161-11/+4 * Bug #597473 - Reply-all composes reply to wrong addressMilan Crha2009-10-161-0/+6 * Bug #322261 - vCalendar replies are sent out using the default accountMilan Crha2009-10-166-53/+81 * Bug #245683 - Use QP encoding when composing message with "\nFrom "Milan Crha2009-10-161-6/+92 * Bug #565306 - "Edit Full" in "Add to address book" searches firstMilan Crha2009-10-163-12/+92 * Bug #458173 - Date selection window in "Advanced Search" inconsistentMilan Crha2009-10-161-1/+1 * Bug #411768 - Don't remove column by drag&drop out of a table headerMilan Crha2009-10-161-4/+0 * Bug #404227 - Over-aggressive appointment editor date checkMilan Crha2009-10-162-3/+38 * Bug #449520 - Adding a contact to a contact list fails when using a commaMilan Crha2009-10-161-1/+26 * Bug #468736 - Prevent recursion in em-formatMilan Crha2009-10-162-2/+15 * Slightly better error dialog on "Unable to book"Milan Crha2009-10-161-2/+7 * Bug #562512 - Make hyperlinks clickable in Memos, Tasks and CalendarMilan Crha2009-10-167-0/+592 * Bug #516000 - Wrong formatted quoted textMilan Crha2009-10-161-0/+6 * Bug #329710 - [PublishCal] 'Enable' button should update on changeMilan Crha2009-10-151-13/+19 * Bug #373297 - Option for autocomplete in address book preferencesMilan Crha2009-10-152-2/+43 * Bug #523335 - [mail-to-task] EnhancementsMilan Crha2009-10-151-6/+54 * Bug #336337 - Send & receive dialog shows the default smtp serverMilan Crha2009-10-152-4/+52 * Bug #573878 - [face] Plugin is unusableMilan Crha2009-10-155-85/+450 * Bug #542361 - Unhelpful error warningsMilan Crha2009-10-151-20/+15 * Bug #314333 - Decrypt body in reply to an inline-PGP encrypted mailMilan Crha2009-10-155-9/+85 * Bug #592117 - Calendar Printout Lovepepp2009-10-151-32/+69 * Bug #593753 - Calendar search in list view doesn't work properlyMilan Crha2009-10-152-13/+10 * Bug #597123 - Composer's Send Options doesn't workMilan Crha2009-10-149-126/+87 * Bug #329100 - Choosing adress book for birthdaysMilan Crha2009-10-131-11/+43 * Bug #594471 - Shouldn't call e_error_new/run with NULL 'parent'Milan Crha2009-10-1349-246/+188 * Bug #498095 - Fixing mnemonicsMilan Crha2009-10-133-3/+7 * Updated Catalan translation from the gnome-2-28 branchDavid Planella2009-10-131-11021/+12269 * Check whether message-list is filtered properlyMilan Crha2009-10-121-1/+1 * Bug #596720 - Account assistance repeats itself after finishingMilan Crha2009-10-122-11/+27 * Updated Italian translationLuca Ferretti2009-10-121-216/+215 * Updated Tamil translationdrtvasudevan2009-10-111-360/+211 * Updated Tamil translationdrtvasudevan2009-10-111-8366/+7551 * Updated Tamil translationdrtvasudevan2009-10-111-70/+138 * Bug 598027 - Use vCard instead of VCardMatthew Barnes2009-10-11